/* =========================================
   Global Variables & Color Palette
   Based on the provided image hex codes
========================================= */
:root {
  --color-light-blue: #C1F6ED;
  --color-dark-teal: #02353C;
  --color-forest-green: #449342;
  --color-mid-green: #2EAF7D;
  --color-cyan: #3FD0C9;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  background-color: var(--color-dark-teal); /* Fallback */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =========================================
   SVG Background & Animations
========================================= */
.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

/* Subtle motion classes applied via JS */
.motion-enabled .shape-1 {
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.motion-enabled .shape-2 {
  animation: waveMotion 15s ease-in-out infinite alternate;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 40px) scale(1.05); }
}

@keyframes waveMotion {
  0% { transform: translateY(0) scaleY(1); }
  100% { transform: translateY(20px) scaleY(1.02); }
}

/* =========================================
   Navigation & Buttons
========================================= */
.navbar {
  background: transparent !important;
  padding: 1.5rem 2rem;
}

.nav-link {
  color: var(--color-light-blue) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: white !important;
}

.btn-custom {
  background: transparent;
  border: 1px solid var(--color-cyan);
  color: white;
  border-radius: 30px;
  padding: 8px 24px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-custom:hover {
  background: var(--color-cyan);
  color: var(--color-dark-teal);
}

.btn-gradient {
  background: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-mid-green) 100%);
  border: none;
  color: white;
  border-radius: 30px;
  padding: 12px 36px;
  font-weight: 600;
}

/* =========================================
   Typography & Layout
========================================= */
.hero-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  min-height: 80vh;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  color: var(--color-light-blue);
}

/* =========================================
   Footer & Social Icons
========================================= */
footer {
  background-color: #000000;
  color: white;
  padding: 2rem 0;
  margin-top: auto;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  text-decoration: none;
  margin: 0 5px;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: var(--color-mid-green);
  color: white;
}

/* Vertical buttons for contact page */
.contact-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 10px 0;
  padding: 12px 20px;
  background-color: #1a1a1a;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  text-align: left;
  border: 1px solid #333;
  transition: all 0.3s;
}

.contact-btn:hover {
  background-color: var(--color-mid-green);
  color: white;
  border-color: var(--color-mid-green);
}

/* PDF Container */
#pdf-viewer {
  width: 100%;
  height: 75vh;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}