 /* Reset-ish */
    *, *::before, *::after { box-sizing: border-box; }
    html,body { height:100%; margin:0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:#fff; }
    a { color:inherit; text-decoration:none; }

    /* ---------- Background video ---------- */
    .bg-video-wrap {
      position:fixed;
      inset:0;
      z-index:-2;
      overflow:hidden;
    }

    video.bg-video {
      position:absolute;
      left:50%;
      top:50%;
      width:100%;
      height:100%;
      min-width:100%;
      min-height:100%;
      transform:translate(-50%,-50%);
      object-fit:cover;
      /* Slightly dim video for text contrast */
      filter:brightness(0.65);
    }

    /* Fallback poster background (when video is hidden on mobile) */
    .bg-poster {
      position:fixed;
      inset:0;
      background-size:cover;
      background-position:center;
      z-index:-2;
      filter:brightness(0.65);
    }

    /* Overlay to increase contrast & allow color tint */
    .overlay {
      position:fixed;
      inset:0;
      z-index:-1;
      background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
      pointer-events:none;
    }

    /* ---------- Page content ---------- */
    .page {
      min-height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:2rem;
      position:relative;
      z-index:1;
    }

    .card {
      width:100%;
      max-width:1100px;
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(6px);
      border-radius:12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.45);
      overflow:hidden;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:0;
      align-items:stretch;
    }

    /* Image column */
    .card__media {
      min-height:260px;
      display:block;
    }
    .card__media img {
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    /* Text column */
    .card__content {
      padding:2rem;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:1rem;
    }
     .card__content p,li{
      font-weight: 500;
    }
    .eyebrow {
      font-size:.85rem;
      text-transform:uppercase;
      letter-spacing:1px;
      opacity:.85;
    }
    h1 {
      margin:0;
      font-size:clamp(1.4rem, 3.6vw, 2.2rem);
      line-height:1.05;
    }
    p.lead {
      margin:0;
      color:rgba(255,255,255,0.9);
    }
    /* 3D Animated Button */



    /* ---------- Responsive ---------- */
    @media (max-width:900px) {
      .card { grid-template-columns: 1fr; }
      .card__media { min-height:200px; }
    }

    /* Hide video on small screens (we also do this via JS for performance) */
    @media (max-width:600px) {
      video.bg-video { display:none; }
    }

    /* Focus outlines for accessibility */
    :focus { outline:3px solid rgba(255,255,255,0.25); outline-offset:3px; }
   /* ---------- Feature Section ---------- */
  .feature-section {
    width: 100%;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  }

  .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .feature-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    color: #fff;
  }

  .feature-content h1 {
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.1;
  }

  .feature-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
  }

  .feature-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .feature-btn:hover {
    background: rgba(255,255,255,0.3);
  }

  /* Responsive: stack columns on small screens */
  @media (max-width: 900px) {
    .feature-card {
      grid-template-columns: 1fr;
    }
    .feature-image {
      min-height: 250px;
    }
  }
/* Base style */
.loop-animated-header {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  text-align: center;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

/* Keyframes for gentle float/bounce effect */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px); /* moves up */
  }
  100% {
    transform: translateY(0px);
  }
}

/* Optional: add subtle color shift */
@keyframes colorShift {
  0% { color: #fff; }
  50% { color: #4a90e2; }
  100% { color: #fff; }
}

/* To combine float + color shift */
.loop-animated-header {
  animation: float 3s ease-in-out infinite, colorShift 6s ease-in-out infinite;
}

  

/* Base button style */
.feature-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(145deg, #4a90e2, #35b851);
  border-radius: 12px;
  box-shadow: 0 6px #2a5a8c, 0 12px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
}

/* Hover effect: lift and glow */
.feature-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px #2a5a8c, 0 18px 28px rgba(0, 0, 0, 0.45);
  background: linear-gradient(145deg, #5aa0f2, #4683c0);
}

/* Active effect: press down */
.feature-btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 4px #2a5a8c, 0 8px 16px rgba(0, 0, 0, 0.35);
}

/* Glowing animated effect */
.feature-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.feature-btn:hover::before {
  opacity: 1;
}

/* Optional: subtle bouncing animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

/* Add bounce on hover */
.feature-btn:hover {
  animation: bounce 1s infinite;
}

/* Base style */
.loop-animate {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  display: inline-block;
  animation: floatLoop 3s ease-in-out infinite;
}

/* Keyframes for smooth floating */
@keyframes floatLoop {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); } /* moves up */
  100% { transform: translateY(0px); }
}

/* Optional: subtle color shift for extra effect */
@keyframes colorLoop {
  0% { color: #fff; }
  50% { color: #4a90e2; }
  100% { color: #fff; }
}

/* Combine float + color shift */
.loop-animate {
  animation: floatLoop 3s ease-in-out infinite, colorLoop 6s ease-in-out infinite;
}


/* Responsive */
@media (max-width: 600px) {
  .contact-section {
    padding: 2rem 1rem;
  }

  .contact-container h2 {
    font-size: 1.8rem;
  }

  .contact-container {
    padding: 1.5rem;
  }
}

