  /* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --teal-dark:   #0d7377;
      --teal-mid:    #14a98a;
      --teal-light:  #1dc8a0;
      --teal-bright: #22d8b4;
      --navy:        #0a3d4a;
      --white:       #ffffff;
      --off-white:   #f0fdfa;
      --glass-bg:    rgba(255,255,255,0.12);
      --glass-border:rgba(255,255,255,0.25);
      --glass-shadow:0 8px 32px rgba(13,115,119,0.25);
      --text-light:  rgba(255,255,255,0.88);
      --text-muted:  rgba(255,255,255,0.62);
      --transition:  all 0.35s cubic-bezier(.25,.8,.25,1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #0a3d4a 0%, #0d7377 40%, #14a98a 75%, #1dc8a0 100%);
      background-attachment: fixed;
      color: var(--white);
      overflow-x: hidden;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); }
    ::-webkit-scrollbar-thumb { background: var(--teal-bright); border-radius: 3px; }

    /* ===== UTILITY ===== */
    .glass {
      background: var(--glass-bg);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      border: 1px solid var(--glass-border);
      border-radius: 18px;
      box-shadow: var(--glass-shadow);
    }

    .glass-card {
      background: rgba(255,255,255,0.10);
      backdrop-filter: blur(14px) saturate(150%);
      -webkit-backdrop-filter: blur(14px) saturate(150%);
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(13,115,119,0.18);
      transition: var(--transition);
    }
    .glass-card:hover {
      background: rgba(255,255,255,0.18);
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(13,115,119,0.35);
    }

    section { padding: 90px 0; }
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

    .section-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--teal-bright);
      margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 22px;
    }
    .section-title span { color: var(--teal-bright); }
    .divider {
      width: 56px; height: 3px;
      background: linear-gradient(90deg, var(--teal-bright), transparent);
      border-radius: 2px;
      margin-bottom: 28px;
    }

    /* ===== FLOATING SHAPES ===== */
    .bg-shapes {
      position: fixed; inset: 0;
      pointer-events: none; z-index: 0;
      overflow: hidden;
    }
    .shape {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.18;
    }
    .shape-1 { width: 500px; height: 500px; background: #22d8b4; top: -120px; left: -120px; animation: floatA 18s ease-in-out infinite; }
    .shape-2 { width: 380px; height: 380px; background: #0d7377; bottom: 80px; right: -80px; animation: floatB 22s ease-in-out infinite; }
    .shape-3 { width: 260px; height: 260px; background: #1dc8a0; top: 45%; left: 60%; animation: floatA 14s ease-in-out infinite reverse; }

    @keyframes floatA {
      0%,100% { transform: translate(0,0); }
      50%      { transform: translate(40px,60px); }
    }
    @keyframes floatB {
      0%,100% { transform: translate(0,0); }
      50%      { transform: translate(-50px,-40px); }
    }

    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 16px 0;
      transition: var(--transition);
    }
    #navbar.scrolled {
      background: rgba(10,61,74,0.82);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.12);
      padding: 10px 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo img {
      height: 52px;
      width: auto;
     
      transition: var(--transition);
    }
    .nav-logo img:hover { transform: scale(1.04); }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 6px;
      align-items: center;
    }
    .nav-links a {
      display: block;
      padding: 8px 18px;
      text-decoration: none;
      color: var(--text-light);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      border-radius: 30px;
      transition: var(--transition);
    }
    .nav-links a:hover {
      background: rgba(255,255,255,0.14);
      color: var(--white);
    }
    .nav-links .nav-cta a {
      background: linear-gradient(135deg, var(--teal-mid), var(--teal-bright));
      color: white;
      font-weight: 600;
    }
    .nav-links .nav-cta a:hover {
      box-shadow: 0 0 20px rgba(34,216,180,0.5);
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }
    .hamburger span {
      display: block;
      width: 26px; height: 2px;
      background: white;
      border-radius: 2px;
      transition: var(--transition);
    }

    /* ===== HERO SLIDER ===== */
    #home {
      position: relative;
      height: 100vh;
      min-height: 620px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .slides-wrapper {
      position: absolute; inset: 0;
    }
    .slide {
      position: absolute; inset: 0;
      display: flex;
      align-items: center;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .slide.active { opacity: 1; z-index: 2; }

    .slide-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
    }
    .slide-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(10,61,74,0.82) 0%, rgba(13,115,119,0.55) 60%, rgba(28,200,160,0.30) 100%);
    }

    .slide-1-bg {
      background: linear-gradient(135deg, #051d24 0%, #0d5c61 50%, #12907a 100%);
    }
    .slide-2-bg {
      background: linear-gradient(135deg, #0a2e38 0%, #0a5c52 50%, #12906a 100%);
    }

    /* SVG network pattern behind slide */
    .slide-pattern {
      position: absolute; inset: 0;
      opacity: 0.06;
      background-image:
        radial-gradient(circle, rgba(255,255,255,0.7) 1.5px, transparent 1.5px);
      background-size: 52px 52px;
    }

    .slide-content {
      position: relative; z-index: 3;
      max-width: 680px;
    }
    .slide-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 30px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--teal-bright);
      margin-bottom: 22px;
    }
    .slide-badge i { font-size: 10px; }

    .slide-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5.5vw, 4rem);
      font-weight: 900;
      line-height: 1.12;
      margin-bottom: 22px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .slide-title .highlight {
      background: linear-gradient(90deg, var(--teal-bright), #8bffde);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .slide-desc {
      font-size: 17px;
      line-height: 1.7;
      color: var(--text-light);
      max-width: 520px;
      margin-bottom: 38px;
    }

    .slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal-bright) 100%);
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 20px rgba(34,216,180,0.4);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(34,216,180,0.6);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 13px 30px;
      background: rgba(255,255,255,0.10);
      backdrop-filter: blur(10px);
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.28);
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,0.20);
      transform: translateY(-3px);
    }

    /* Slide indicators */
    .slide-indicators {
      position: absolute;
      bottom: 36px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 10px;
      z-index: 10;
    }
    .indicator {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      transition: var(--transition);
      border: none;
    }
    .indicator.active {
      background: var(--teal-bright);
      transform: scale(1.3);
      box-shadow: 0 0 10px rgba(34,216,180,0.6);
    }

    .slide-arrows {
      position: absolute;
      bottom: 26px; right: 36px;
      display: flex; gap: 10px;
      z-index: 10;
    }
    .arrow-btn {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 50%;
      color: white;
      cursor: pointer;
      transition: var(--transition);
      font-size: 13px;
    }
    .arrow-btn:hover {
      background: var(--teal-mid);
      border-color: var(--teal-mid);
      box-shadow: 0 0 16px rgba(20,169,138,0.5);
    }

    /* Slide floating card */
    .slide-float-card {
      position: absolute;
      right: 6%;
      bottom: 18%;
      z-index: 5;
      padding: 20px 26px;
      min-width: 210px;
      animation: bob 4s ease-in-out infinite;
    }
    @keyframes bob {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }
    .float-card-label { font-size: 11px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
    .float-card-value { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--teal-bright); }
    .float-card-sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

    /* ===== OVERVIEW ===== */
    #overview { position: relative; z-index: 1; }
    .overview-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .overview-image {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
    }
    .overview-image img {
      width: 100%;
      border-radius: 22px;
      display: block;
      object-fit: cover;
      filter: brightness(0.88) saturate(1.1);
    }
    .overview-image .img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(13,115,119,0.35), transparent);
      border-radius: 22px;
      pointer-events: none;
    }
    .overview-image .img-border {
      position: absolute; inset: -2px;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--teal-bright), var(--teal-mid), transparent);
      z-index: -1;
    }

   /* .overview-content {} */
    .pillars { display: flex; flex-direction: column; gap: 28px; margin-top: 10px; }
    .pillar {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 22px 24px;
    }
    .pillar-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, var(--teal-mid), var(--teal-bright));
      border-radius: 14px;
      font-size: 19px;
      box-shadow: 0 4px 16px rgba(34,216,180,0.35);
    }
    .pillar h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 7px;
    }
    .pillar p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.68;
    }

    .mission-box {
      margin-top: 32px;
      padding: 24px 28px;
      background: linear-gradient(135deg, rgba(34,216,180,0.15), rgba(20,169,138,0.10));
      border: 1px solid rgba(34,216,180,0.30);
      border-radius: 16px;
    }
    .mission-box p {
      font-size: 14.5px;
      line-height: 1.75;
      font-style: italic;
      color: var(--text-light);
    }
    .mission-box p::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 38px;
      color: var(--teal-bright);
      line-height: 0;
      vertical-align: -16px;
      margin-right: 4px;
    }

    /* ===== ABOUT ===== */
    #about { position: relative; z-index: 1; }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-image {
      order: -1;
      position: relative;
      border-radius: 22px;
    }
    .about-image img {
      width: 100%;
      border-radius: 22px;
      display: block;
      object-fit: cover;
      filter: brightness(0.88) saturate(1.1);
    }
    .about-image .img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(225deg, rgba(13,115,119,0.40), transparent);
      border-radius: 22px;
      pointer-events: none;
    }
    .about-badge {
      position: absolute;
      top: 28px; right: -20px;
      padding: 14px 22px;
      text-align: center;
      border-radius: 14px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    }
    .about-badge .year { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--teal-dark); }
    .about-badge .year-sub { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin: 34px 0;
    }
    .stat-item {
      text-align: center;
      padding: 18px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      transition: var(--transition);
    }
    .stat-item:hover { background: rgba(255,255,255,0.14); }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 26px; font-weight: 900;
      color: var(--teal-bright);
    }
    .stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

    .reg-info {
      font-size: 13.5px;
      color: var(--text-muted);
      margin-top: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .reg-info i { color: var(--teal-bright); }

    /* ===== YOUTUBE ===== */
    #video-section { position: relative; z-index: 1; padding: 60px 0; }
    .video-wrapper {
      max-width: 880px;
      margin: 0 auto;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      position: relative;
    }
    .video-wrapper::before {
      content: '';
      position: absolute; inset: -2px;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--teal-bright), var(--teal-dark));
      z-index: -1;
    }
    .video-wrapper iframe {
      display: block;
      width: 100%; height: 480px;
      border: none;
    }

    /* ===== SERVICES ===== */
    #services { position: relative; z-index: 1; }
    .services-header { text-align: center; margin-bottom: 56px; }
    .services-header .divider { margin: 0 auto 28px; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      padding: 34px 28px;
    }
    .svc-icon-wrap {
      width: 60px; height: 60px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(34,216,180,0.25), rgba(20,169,138,0.15));
      border: 1px solid rgba(34,216,180,0.30);
      font-size: 24px;
      margin-bottom: 22px;
      transition: var(--transition);
    }
    .service-card:hover .svc-icon-wrap {
      background: linear-gradient(135deg, var(--teal-mid), var(--teal-bright));
      box-shadow: 0 8px 24px rgba(34,216,180,0.4);
    }
    .svc-title {
      font-size: 17px; font-weight: 700;
      margin-bottom: 12px;
    }
    .svc-desc {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.7;
    }
    .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      font-size: 13px;
      font-weight: 600;
      color: var(--teal-bright);
      text-decoration: none;
      transition: var(--transition);
    }
    .svc-link i { font-size: 11px; transition: var(--transition); }
    .svc-link:hover { color: white; }
    .svc-link:hover i { transform: translateX(4px); }

    /* ===== BRANDS ===== */
    #brands { position: relative; z-index: 1; }
    .brands-header { text-align: center; margin-bottom: 52px; }
    .brands-header .divider { margin: 0 auto 28px; }

    .brands-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .brand-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 36px 22px;
      text-align: center;
      text-decoration: none;
      color: white;
    }
    .brand-icon {
      width: 62px; height: 62px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(34,216,180,0.22), rgba(20,169,138,0.12));
      border: 1px solid rgba(34,216,180,0.28);
      font-size: 24px;
      transition: var(--transition);
    }
    .brand-card:hover .brand-icon {
      background: linear-gradient(135deg, var(--teal-mid), var(--teal-bright));
      box-shadow: 0 0 24px rgba(34,216,180,0.5);
      transform: rotate(8deg) scale(1.1);
    }
    .brand-name { font-size: 15px; font-weight: 700; }
    .brand-sub { font-size: 12px; color: var(--text-muted); }
    .brand-arrow {
      font-size: 11px; color: var(--teal-bright);
      display: flex; align-items: center; gap: 4px;
      margin-top: 4px;
      opacity: 0;
      transform: translateY(4px);
      transition: var(--transition);
    }
    .brand-card:hover .brand-arrow { opacity: 1; transform: translateY(0); }

    /* ===== CONTACT ===== */
    #contact { position: relative; z-index: 1; }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 50px;
      align-items: start;
    }
    .contact-info { padding: 40px 36px; }
    .contact-info h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 700;
      margin-bottom: 18px;
    }
    .contact-info p {
      font-size: 14.5px;
      color: var(--text-light);
      line-height: 1.75;
      margin-bottom: 34px;
    }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 22px;
    }
    .c-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--teal-mid), var(--teal-bright));
      font-size: 16px;
      box-shadow: 0 4px 14px rgba(34,216,180,0.35);
    }
    .c-text strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 2px; }
    .c-text span { font-size: 13.5px; color: var(--text-light); }

    .social-links { display: flex; gap: 12px; margin-top: 32px; }
    .social-btn {
      width: 42px; height: 42px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.20);
      color: white;
      text-decoration: none;
      font-size: 15px;
      transition: var(--transition);
    }
    .social-btn:hover {
      background: var(--teal-mid);
      border-color: var(--teal-mid);
      box-shadow: 0 0 16px rgba(20,169,138,0.5);
      transform: translateY(-3px);
    }

    /* Contact Form */
    .contact-form { padding: 44px 40px; }
    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 700;
      margin-bottom: 28px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .form-group label span { color: var(--teal-bright); }
    .form-control {
      width: 100%;
      padding: 13px 18px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: 12px;
      color: white;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      outline: none;
      transition: var(--transition);
    }
    .form-control::placeholder { color: rgba(255,255,255,0.35); }
    .form-control:focus {
      border-color: var(--teal-bright);
      background: rgba(255,255,255,0.14);
      box-shadow: 0 0 0 3px rgba(34,216,180,0.18);
    }
    textarea.form-control { resize: vertical; min-height: 120px; }

    /* reCAPTCHA mock */
    .recaptcha-box {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 12px;
      margin-bottom: 22px;
    }
    .recaptcha-check {
      width: 24px; height: 24px;
      border: 2px solid rgba(255,255,255,0.35);
      border-radius: 4px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      color: var(--teal-bright);
      transition: var(--transition);
      flex-shrink: 0;
    }
    .recaptcha-check.checked {
      background: var(--teal-bright);
      border-color: var(--teal-bright);
      color: white;
    }
    .recaptcha-label { font-size: 14px; color: var(--text-light); }
    .recaptcha-logo { margin-left: auto; font-size: 20px; color: var(--teal-bright); }

    .btn-submit {
      width: 100%;
      padding: 15px;
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 50%, var(--teal-bright) 100%);
      color: white;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.5px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 20px rgba(34,216,180,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .btn-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(34,216,180,0.55);
    }

    /* ===== FOOTER ===== */
    footer {
      position: relative; z-index: 1;
      padding: 50px 0 28px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 28px;
    }
    .footer-logo img { height: 46px;  }
    .footer-tagline { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
    .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-links a {
      font-size: 13.5px;
      color: var(--text-muted);
      text-decoration: none;
      transition: var(--transition);
    }
    .footer-links a:hover { color: var(--teal-bright); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .footer-copy { font-size: 12.5px; color: var(--text-muted); }
    .footer-reg { font-size: 11.5px; color: rgb(255, 255, 255); }

    /* ===== SCROLL TO TOP ===== */
    #scrollTop {
      position: fixed;
      bottom: 32px; right: 32px;
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--teal-mid), var(--teal-bright));
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-size: 16px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(34,216,180,0.45);
      transition: var(--transition);
      opacity: 0;
      pointer-events: none;
      z-index: 999;
    }
    #scrollTop.visible { opacity: 1; pointer-events: all; }
    #scrollTop:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 8px 28px rgba(34,216,180,0.6); }

    /* ===== MOBILE NAV ===== */
    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 72%; height: 100vh;
        background: rgba(10,61,74,0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 90px 32px 40px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(.77,0,.175,1);
        border-left: 1px solid rgba(255,255,255,0.12);
        z-index: 999;
      }
      .nav-links.open { right: 0; }
      .nav-links a { font-size: 17px; padding: 12px 16px; border-radius: 12px; }

      .overview-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-image { order: 0; }
      .about-badge { right: 12px; }
      .services-grid { grid-template-columns: 1fr; }
      .brands-grid { grid-template-columns: repeat(2, 1fr); }
      .form-row { grid-template-columns: 1fr; }
      .slide-float-card { display: none; }
      .footer-inner { justify-content: center; text-align: center; }
      .footer-links { justify-content: center; }
      .footer-bottom { justify-content: center; text-align: center; }
    }

    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .brands-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ===== AOS-LIKE ANIMATIONS ===== */
    .fade-up {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-left {
      opacity: 0;
      transform: translateX(-34px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-left.visible { opacity: 1; transform: translateX(0); }
    .fade-right {
      opacity: 0;
      transform: translateX(34px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-right.visible { opacity: 1; transform: translateX(0); }

    /* delay helpers */
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }
    .d4 { transition-delay: 0.4s; }
    .d5 { transition-delay: 0.5s; }
    .d6 { transition-delay: 0.6s; }
  