    /* RESET */
    * {margin:0;padding:0;box-sizing:border-box;}
    body {
      font-family: 'Poppins', sans-serif;
      background: #0e0e15;
      color: #fff;
      overflow-x: hidden;
    }
    :root {
      --card-radius: 12px;
      --card-shadow: 0 8px 20px rgba(9, 18, 13, 0.32);
      --hover-lift: translateY(-2px);
      --motion-fast: 0.22s ease;
    }
    section {padding: 120px 10%; position: relative;}

#fractal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* stays at the back */
  display: block;
}
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap');


  .luam-simple-nav {
    font-family: 'Inter', sans-serif;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 70px;
    padding: 0 1rem;
    background: rgba(236, 242, 237, 0.08);
    box-shadow: 0 1px 10px rgba(20, 34, 28, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
  }

  .luam-simple-nav.scrolling {
    background: rgba(231, 239, 232, 0.22);
    backdrop-filter: blur(8px);
  }

  .luam-logo img {
    height: 45px;
    transition: height 0.3s ease;
  }

  .luam-nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }

  .luam-nav-links li {
    position: relative;
  }

  .luam-nav-links a {
    text-decoration: none;
    font-weight: 550;
    font-size: 1rem;
    color: #b9c8be;
    transition: color 0.3s ease;
  }

  .luam-nav-links a:hover {
    color: #dbe8df;
  }

  /* Dropdown styles */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: rgba(26, 38, 55, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    min-width: 180px;
    padding: 0.8rem 0;
    animation: fadeIn 0.3s ease;
  }

  .dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #9db3cc;
    font-size: 0.95rem;
    transition: background 0.3s ease;
  }

  .dropdown-menu li a:hover {
    background: rgba(74, 123, 167, 0.2);
    color: #7fa8cc;
  }

  /* Hover show */
  .luam-nav-links li:hover > .dropdown-menu {
    display: block;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Mobile toggle */
  .luam-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .luam-menu-toggle span {
    width: 25px; height: 3px;
    background: #9db3cc;
    border-radius: 2px;
  }

  /* Responsive */
  @media (max-width: 768px) {
     .luam-simple-nav { justify-content: space-between;}
    .luam-nav-links {
      position: fixed;
      top: 70px; right: -100%;
      height: calc(100vh - 70px);
      width: 230px;
      background: rgba(26, 38, 55, 0.95);
      flex-direction: column;
      font-size: 2rem;
      align-items: flex-start;
      padding: 2rem;
      gap: 1.5rem;
      box-shadow: -2px 0 25px rgba(0,0,0,0.3);
      transition: right 0.4s ease;
    }
    .luam-nav-links a{
      font-size: large;
      font-weight:600;
      color: #9db3cc;
    }
    .luam-nav-links.show {
      right: 0;
    }
    .luam-menu-toggle {
      display: flex;
    }
    /* Dropdown inside mobile menu */
    .dropdown-menu {
      position: static;
      background: none;
      box-shadow: none;
      padding-left: 1rem;
      display: none;
    }
    .dropdown-menu li a {
      font-size: large;
    }
    .dropdown.open .dropdown-menu {
      display: block;
    }
  }


    /* ANIMATIONS */
    @keyframes fadeUp {0%{opacity:0;transform:translateY(40px);}100%{opacity:1;transform:translateY(0);}}
    .show {opacity:1 !important;transform:translateX(0) !important;}
    @media(max-width:768px){.program{flex-direction:column!important;}.program img{width:100%;}}

       footer { background: var(--dark-blue); color: #ccc; font-size: 0.9rem; padding: 40px 20px; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
    .footer-links a { position: relative; color: #ccc; text-decoration: none; padding-bottom: 4px; transition: color 0.3s ease; }
    .footer-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0%; height: 2px; background: var(--accent-blue); transition: width 0.3s ease; }
    .footer-links a:hover { color: #fff; }
    .footer-links a:hover::after { width: 100%; }
    .footer-legal { text-align: center; }

    .ad-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
    border-radius: 0px;
    padding: 1.5rem;
    max-width: 200px;
    min-width: 200px;
    max-height: 200px;
    min-height: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translate(100%, 0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), background 0.5s ease;
    background: linear-gradient(135deg, #1a2637, #0f1620);
  }
  .ad-box.show {
    opacity: 1;
    transform: translate(0, 0);
  }
  .ad-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
  }
  .ad-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background: #4a7ba7;
    color: #e5efff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
    /* --- Wellness Section Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

 
  .luam-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:url(joshart3d-monoliths-4692413_1920.jpg); 
    background-position: 90%;
    
    background-size: cover;
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
    text-align: center;
    padding: 0 2rem;
  }

  .luam-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 18, 14, 0.55) 0%, rgba(11, 20, 16, 0.35) 60%, rgba(11, 20, 16, 0.6) 100%);
    z-index: 1;
  }

  .luam-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
  }

  .luam-hero-title {
    font-size: clamp(2rem, 3.2vw + 0.8rem, 2.55rem);
    line-height: 1.2;
    font-weight: 600;
    color: #dfeae2;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 8px rgba(9, 20, 15, 0.28);
    margin-bottom: 1rem;
  }

  .luam-hero-subtitle {
    font-size: 1.3rem;
    color: #c8dce8;
    margin-bottom: 2rem;
  }

  .luam-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .luam-btn {
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--motion-fast), box-shadow var(--motion-fast), background-color var(--motion-fast), color var(--motion-fast), border-color var(--motion-fast);
  }

  .luam-btn.primary {
    background: #6f8f7e;
    color: #fff;
    box-shadow: 0 6px 16px rgba(33, 55, 44, 0.28);
  }

  .luam-btn.secondary {
    background: none;
    color: #c7d9cd;
    border: 1px solid #6f8f7e;
  }

  .luam-btn:hover {
    transform: var(--hover-lift);
    box-shadow: 0 8px 18px rgba(14, 24, 19, 0.32);
  }
  .trust-strip {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trust-strip span {
    font-size: 0.82rem;
    letter-spacing: 0.2px;
    color: #d9e6dd;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(170, 195, 179, 0.45);
    background: rgba(20, 37, 29, 0.36);
  }

  /* Floating circles background */
  .luam-hero-bg .floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 8s infinite ease-in-out alternate;
  }

  .circle1 {
    width: 220px;
    height: 220px;
    background: #2a5a4a;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
  }

  .circle2 {
    width: 300px;
    height: 300px;
    background: #3a5a8a;
    bottom: 10%;
    right: 12%;
    animation-delay: 1s;
  }

  .circle3 {
    width: 150px;
    height: 150px;
    background: #5a3a3a;
    bottom: 20%;
    left: 25%;
    animation-delay: 2s;
  }

  @keyframes float {
    from { transform: translateY(0px) scale(1); }
    to { transform: translateY(-30px) scale(1.05); }
  }

  /* Reveal on scroll animations */
  .reveal-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .reveal-anim.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .delay { transition-delay: .3s; }
  .delay2 { transition-delay: .6s; }

  @media (max-width: 768px) {
    .luam-hero-title {
      font-size: 1.85rem;
    }
    .luam-hero-subtitle {
      font-size: 1.1rem;
    }
  }
  :root {
            --wk-primary-font-lato: 'Lato', sans-serif;
            --wk-primary-font-poppins: 'Poppins', sans-serif;
            --wk-bg-sky: #0f1b16;
            --wk-card-bg: #172620;
            --wk-text-color-lato: #e7f0ea;
            --wk-muted-color-lato: #b4c6ba;
            --wk-text-color-poppins: #e7f0ea;
            --wk-muted-color-poppins: #aec2b5;
            --wk-radius: 10px;
            --wk-gap: 20px;
            --wk-shadow: 0 4px 14px rgba(9, 18, 13, 0.45);
            --wk-accent: #6f8f7e;
            --wk-cta-dark: #254234;
            --wk-kit-accent-green: #375b47;
            --wk-kit-accent-yellow: #6a6a3d;
            --wk-kit-accent-blue: #3f5d52;
        }

        /* Use a unique top-level class to "namespace" all styles */
        .wk-merged-section {
            position: relative;
            background: linear-gradient(to bottom, #101d17 0%, #182922 100%);
            padding: 80px 16px;
            overflow: hidden;
            z-index: 1;
        }

        /* Abstract blue background shapes for the whole merged section */
        .wk-merged-section::before, .wk-merged-section::after {
            content: '';
            position: absolute;
            z-index: -1;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(111, 143, 126, 0.22) 0%, transparent 50%);
            filter: blur(50px);
        }
        .wk-merged-section::before {
            top: -200px;
            left: -200px;
        }
        .wk-merged-section::after {
            bottom: -200px;
            right: -200px;
        }

        .wk-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* --- Minimalist/Sleek Section Styles --- */
        .wk-sleek-section {
            font-family: var(--wk-primary-font-lato);
            color: var(--wk-text-color-lato);
        }
        .wk-sleek-section * {
            font-family: var(--wk-primary-font-lato);
        }
        .wk-title-sleek {
            font-size: clamp(1.55rem, 1.5vw + 1rem, 2rem);
            font-weight: 300;
            margin: 0 0 8px;
            text-align: center;
            letter-spacing: 0.3px;
        }
        .wk-lead-sleek {
            color: var(--wk-muted-color-lato);
            margin: 0 auto 50px;
            font-size: clamp(1rem, 1.2vw + 0.5rem, 1.1rem);
            text-align: center;
            max-width: 700px;
            font-weight: 300;
        }
        .wk-kit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--wk-gap);
            margin-bottom: 3rem;
        }
        .wk-kit-card-sleek {
            position: relative;
            background-color: var(--wk-card-bg);
            border-radius: var(--card-radius);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            box-shadow: var(--card-shadow);
            border: none;
            overflow: hidden;
            opacity: 0;
            cursor: pointer;
            transform: translateY(30px);
            transition: transform var(--motion-fast), opacity 0.45s, box-shadow var(--motion-fast);
        }
        .wk-kit-card-sleek:hover {
            box-shadow: var(--card-shadow);
            transform: var(--hover-lift);
        }
        .wk-kit-card-sleek.wk-in-view {
            transform: translateY(0);
            opacity: 1;
        }
        .wk-kit-card-sleek:focus {
            outline: none;
            box-shadow: 0 0 0 2px var(--wk-accent), 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .wk-icon-sleek {
            width: 100%;
            height: 132px;
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            background-color: #243b31;
            background-size: cover;
            background-position: center;
            transition: transform var(--motion-fast), background-size var(--motion-fast);
        }
        .wk-icon-sleek img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 16px;
            transition: transform var(--motion-fast);
        }
        .wk-kit-card-sleek:hover .wk-icon-sleek img {
            transform: scale(1.04);
        }
        .wk-kit-card-sleek:hover .wk-icon-sleek {
            background-size: 106%;
        }
        .wk-kit-title-sleek {
            font-size: 1.18rem;
            font-weight: 600;
            margin: 0 0 8px;
        }
        .wk-kit-desc-sleek {
            color: var(--wk-muted-color-lato);
            font-size: 0.9rem;
            margin: 0 0 16px;
            font-weight: 300;
        }
        .wk-service-meta {
            font-size: 0.82rem;
            color: #c6d6cc;
            margin: 0.25rem 0 0.75rem;
            letter-spacing: 0.2px;
        }
        .wk-pill {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 400;
            margin: 0 4px 8px;
            background-color: rgba(74, 123, 167, 0.2);
            color: #7fa8cc;
        }
        .wk-actions-sleek {
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            margin-top: 10px;
        }
        .wk-btn-sleek {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            padding: 8px 16px;
            border-radius: 999px;
            font-weight: 400;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .wk-btn-sleek.wk-ghost {
            background: transparent;
            color: var(--wk-text-color-lato);
            border: 1px solid #6f8f7e;
            text-decoration: none;
        }
        .wk-btn-sleek.wk-ghost:hover { background: #25392f; }
        .wk-btn-sleek.wk-primary { background: #6f8f7e; color: #ffffff; }
        .wk-btn-sleek.wk-primary:hover { background: #7ea18e; }
        .wk-btn-sleek:active { transform: scale(0.95); }

        /* --- Wellness Kits Section Styles --- */
        .wk-kits-section {
            font-family: var(--wk-primary-font-poppins);
            color: var(--wk-text-color-poppins);
        }
        .wk-kits-section * {
            font-family: var(--wk-primary-font-poppins);
        }
        .wk-title-kits {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-align: center;
        }
        .wk-subtitle-kits {
            font-size: 1.2rem;
            color: var(--wk-muted-color-poppins);
            margin-bottom: 3rem;
            text-align: center;
        }
        .wk-kit-card-kits {
            background-color: var(--wk-card-bg);
            border-radius: var(--card-radius);
            box-shadow: var(--card-shadow);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform var(--motion-fast), box-shadow var(--motion-fast);
        }
        .wk-kit-card-kits:hover {
            transform: var(--hover-lift);
            box-shadow: var(--card-shadow);
        }
        .wk-kit-image-container {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        .wk-kit-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform var(--motion-fast);
        }
        .wk-kit-card-kits:hover .wk-kit-image-container img {
            transform: scale(1.02);
        }
        .wk-kit-content {
            padding: 1.5rem;
            text-align: left;
        }
        .wk-kit-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .wk-kit-description {
            font-size: 1rem;
            color: var(--wk-muted-color-poppins);
            margin-bottom: 1rem;
        }
        .wk-kit-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--wk-text-color-poppins);
        }
        .wk-cta-button {
            background-color: #6f8f7e;
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.3s ease;
            display: inline-block;
        }
        .wk-cta-button:hover {
            background-color: #7ea18e;
            transform: translateY(-2px);
        }
        .wk-kit-card-kits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.2;
            transform: scale(0);
            transition: transform 0.3s ease;
            border-radius: 1rem;
            pointer-events: none;
        }
        .wk-kit-card-kits:hover::before {
            transform: scale(1);
        }
        .wk-kit-card-kits[data-hover-color="#a8d5ba"]::before { background-color: var(--wk-kit-accent-green); }
        .wk-kit-card-kits[data-hover-color="#f7c852"]::before { background-color: var(--wk-kit-accent-yellow); }
        .wk-kit-card-kits[data-hover-color="#6971a8"]::before { background-color: var(--wk-kit-accent-blue); }

        /* General layout and animations */
        .wk-animate-rise {
            opacity: 0;
            transform: translateY(30px);
            transition: transform 0.8s cubic-bezier(.25, .8, .25, 1), opacity 0.8s;
            transition-delay: var(--wk-animation-delay);
        }
        .wk-animate-rise.wk-in-view {
            transform: translateY(0);
            opacity: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .wk-title-sleek, .wk-title-kits { font-size: 2.2rem; }
            .wk-lead-sleek, .wk-subtitle-kits { font-size: 1rem; }
            .wk-kit-card-sleek, .wk-kit-card-kits { padding: 24px; }
            .wk-kit-title-sleek, .wk-kit-title-kits { font-size: 1.2rem; }
            .wk-kit-desc-sleek, .wk-kit-desc-kits { font-size: 0.9rem; }
        }
.smooth-heading {
  font-size: 5rem;
  color: #7fa8cc;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #4a7ba7, #2a4563, #1a2637);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 7s ease infinite;
  margin-bottom: 10px;
}

.subheading {
  font-size: 1.2rem;
  color: #9db3cc;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-style: italic;
}

/* Gradient Animation */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 768px) {
  .smooth-heading { font-size: 3rem; }
  .program { flex-direction: column; text-align: center; }
  .program .text h2 { border-left: none; padding-left: 0; }
  .luam-btn { padding: 1rem 1.4rem; }
  .luam-hero-buttons { gap: 0.8rem; }
  .wk-kit-grid { gap: 1.2rem; }
  .mh-grid { gap: 1.2rem; }
  .trust-strip { gap: 0.5rem; }
  .trust-strip span { font-size: 0.78rem; }
  .mh-section,
  .about-hero-section,
  .modern-footer {
    background-attachment: scroll !important;
  }
}

  .luam-faq-section {
    position: relative;
    font-family: 'Manrope', sans-serif;
    background: #0f1620;
    color: #e8f0f8;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
  }

  /* --- SIDE BACKGROUNDS (for desktop) --- */
  .faq-side {
    position: absolute;
    top: 0; bottom: 0;
    width: 45%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1.2s ease;
    z-index: 0;
  }
  .faq-side.left {
    left: 0;
    transform: translateX(-30px);
    mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
  }
  .faq-side.right {
    right: 0;
    transform: translateX(30px);
    mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
  }
  .faq-side.active {
    opacity: 1;
    transform: translateX(0);
  }

  /* --- FAQ CONTENT --- */
  .faq-title {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
  }

  .faq-subtitle {
    font-size: 1.1rem;
    color: #9db3cc;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 2;
  }

  .faq-item {
    background: #1a2637;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #e8f0f8;
  }

  .faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #9db3cc;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 1.5rem;
    transition: all 0.4s ease;
    position: relative;
  }

  .faq-item.active .faq-answer {
    max-height: 350px;
    padding-bottom: 1rem;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }

  /* --- MOBILE VERSION --- */
  @media (max-width: 850px) {
    .faq-side {
      display: none; /* Hide sides on mobile */
    }

    .faq-mobile-img {
      width: 100%;
      height: 180px;
      border-radius: 14px;
      margin: 0.5rem 0 1rem;
      background-size: cover;
      background-position: center;
      transition: opacity 0.6s ease;
      opacity: 0;
    }

    .faq-item.active .faq-mobile-img {
      opacity: 1;
    }

    .faq-title {
      font-size: 2rem;
    }
  }


  .about-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    background-image: url(sea-7505054.jpg);
    background-position: 50% 50%;
    background-size: cover;
    backdrop-filter: blur(10px);
    border: 7px solid #2a4563;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 90%;
    position: relative;
    overflow: hidden;
  }

  .about-hero-content {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease-out;
  }

  .about-hero-content.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .about-hero {
    font-size: clamp(2.8rem, 5vw + 1rem, 5.5rem);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #7fa8cc, #4a7ba7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  #brand-name {
    background: linear-gradient(135deg, #9db3cc, #7fa8cc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
  }

  .about-tagline {
    font-size: 1.4rem;
    margin-top: 1rem;
    color: #9db3cc;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s ease-out;
  }
.about-hero-content.blurred {
  filter: blur(8px);
  pointer-events: none;
}

  .about-hero-content.visible .about-tagline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s; /* delay after title */
  }

  /* Floating navy/blue glow accents */
  .about-hero-section::before,
  .about-hero-section::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 123, 167, 0.35), transparent 70%);
    animation: floaty 14s infinite ease-in-out;
    z-index: 0;
  }

  .about-hero-section::before {
    top: -40px;
    left: -40px;
  }

  .about-hero-section::after {
    bottom: -40px;
    right: -40px;
    background: radial-gradient(circle, rgba(42, 69, 99, 0.3), transparent 70%);
    animation-delay: 4s;
  }

  @keyframes floaty {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(15px) scale(1.05); }
  }


    .mh-section {
      background-image:url(coolkicd.jpg);
      border-top: 12px solid #040438;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: 80px 20px;
      font-family: "Poppins", sans-serif;
    }
    .mh-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .mh-title {
      font-size: 2.2rem;
      font-weight: 700;
      color: #e8f0f8;
      margin-bottom: 20px;
    }
    .mh-subtitle {
      font-size: 1rem;
      color: #9db3cc;
      max-width: 700px;
      margin: 0 auto 50px;
    }
    .mh-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }
    .mh-card {
      background: rgba(26, 38, 55, 0.5);
      border-radius: var(--card-radius);
      padding: 30px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: var(--card-shadow);
      transition: transform var(--motion-fast), box-shadow var(--motion-fast);
    }
    .mh-card:hover {
      transform: var(--hover-lift);
      box-shadow: var(--card-shadow);
    }
    .mh-card img {
      width: 60px;
      margin-bottom: 20px;
    }
    .mh-card h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: #e8f0f8;
    }
    .mh-card p {
      font-size: 0.95rem;
      color: #9db3cc;
      line-height: 1.6;
    }
  
    .blog-section {
      background: #0f1620;
      padding: 80px 20px;
      font-family: "Poppins", sans-serif;
      text-align: center;
    }
    .blog-container {
      max-width: 800px;
      margin: 0 auto;
    }
    .blog-title {
      font-size: 2rem;
      font-weight: 700;
      color: #e8f0f8;
      margin-bottom: 20px;
    }
    .blog-subtitle {
      font-size: 1rem;
      color: #9db3cc;
      margin-bottom: 40px;
    }
    .blog-feature {
      border-radius: var(--card-radius);
      overflow: hidden;
      background: #1a2637;
      box-shadow: var(--card-shadow);
      transition: transform var(--motion-fast), box-shadow var(--motion-fast);
    }
    .blog-feature:hover {
      transform: var(--hover-lift);
    }
    .blog-feature img {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }
    .blog-content {
      padding: 25px;
    }
    .blog-content h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #e8f0f8;
    }
    .blog-content p {
      font-size: 1rem;
      color: #9db3cc;
      margin-bottom: 25px;
      line-height: 1.6;
    }
    .blog-btn {
      display: inline-block;
      padding: 12px 24px;
      background: linear-gradient(90deg, #4a7ba7, #2a4563);
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: opacity 0.3s ease, transform 0.2s ease;
    }
    .blog-btn:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
   
    .modern-footer {
      background: none center/cover fixed no-repeat;
      color: #c8dce8;
      font-family: "Poppins", sans-serif;
      padding: 80px 20px 40px;
      position: relative;
      overflow: hidden;
    }

    /* Blur overlay */
    .modern-footer::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(15, 22, 32, 0.75); /* dark glass tint */
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 0;
    }

    /* Gradient accent strip */
    .modern-footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: #4a7ba7;
      z-index: 2;
    }

    /* Layout */
    .modern-footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto 50px;
      position: relative;
      z-index: 3; /* content above blur */
    }

    .modern-footer-col h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 1.2rem;
      color: #ffffff;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .modern-footer-col p,
    .modern-footer-col a,
    .modern-footer-col li {
      font-size: 0.95rem;
      color: #9db3cc;
      text-decoration: none;
      line-height: 1.7;
    }

    .modern-footer-col a:hover {
      color: #e8f0f8;
    }

    .modern-footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    /* Newsletter */
    .modern-footer-newsletter {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .modern-footer-newsletter input {
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #2a3d52;
      background: #0f1620;
      color: #e8f0f8;
      font-size: 0.95rem;
    }

    .modern-footer-newsletter button {
      background: linear-gradient(90deg, #4a7ba7, #2a4563);
      border: none;
      padding: 12px;
      border-radius: 8px;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s ease, opacity 0.3s ease;
    }

    .modern-footer-newsletter button:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    /* Socials */
    .modern-footer-socials {
      display: flex;
      gap: 18px;
      margin-top: 15px;
    }

    .modern-footer-socials a {
      color: #9db3cc;
      font-size: 1.4rem;
      transition: color 0.3s ease, transform 0.2s ease;
    }

    .modern-footer-socials a:hover {
      color: #e8f0f8;
      transform: scale(1.1);
    }

    /* Bottom bar */
    .modern-footer-bottom {
      text-align: center;
      border-top: 1px solid rgba(232, 240, 248, 0.1);
      padding-top: 25px;
      font-size: 0.85rem;
      color: #9db3cc;
      position: relative;
      z-index: 3;
    }

    .heading-container {
      text-align: center;
      padding: 2rem;
    }

    footer { background: #0f1620; color: #c8dce8; font-size: 0.9rem; padding: 40px 20px; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
    .footer-links a { position: relative; color: #9db3cc; text-decoration: none; padding-bottom: 4px; transition: color 0.3s ease; }
    .footer-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0%; height: 2px; background: #4a7ba7; transition: width 0.3s ease; }
    .footer-links a:hover { color: #e8f0f8; }
    .footer-links a:hover::after { width: 100%; }
    .footer-legal { text-align: center; }


    nav {
      margin-top: 0;
    }

    nav a {
      margin: 0 1rem;
      color: #ebebeb;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: var(--accent);
    }

.hero-text {
  color: white;
  text-align: center;
  position: relative;
}
.hero-text h1 {
  font-size: 3.5rem;
}
.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* About Section */
.about {
  text-align: center;
  color: #f0f4f8;
}

/* Services Section */
.services .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}
.service-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}

/* Testimonials */
.testimonials {
  background: #f0f4f8;
  text-align: center;
}
.carousel {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.testimonial {
  display: none;
  font-style: italic;
  transition: opacity 0.3s ease-in-out;
}
.testimonial.active {
  display: block;
}
.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/* Contact */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}
.contact input, .contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact button {
  padding: 12px;
  background: #3a86ff;
  color: white;
  border: none;
  border-radius: 5px;
}
.contact button:hover {
  background: #265df2;
}

/* Footer */
footer {
  text-align: center;
  background: #222;
  color: white;
  padding: 20px 0;
  font-size: 0.9rem;
}
