 :root {
      --orange: #E65100;
      --orange-light: #FF6D00;
      --orange-dark: #BF360C;
      --blue: #0D2B5B;
      --blue-light: #1565C0;
      --white: #FFFFFF;
      --bg: #F7F9FC;
      --text: #1a1a2e;
      --text-light: #666;
      --shadow: 0 8px 32px rgba(0,0,0,0.12);
      --radius: 16px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

    /* ── HEADER ─────────────────────────────────────────────── */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(13,43,91,0.97);
      backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 0 28px; height: 72px;
      display: flex; align-items: center; justify-content: space-between;
      transition: box-shadow 0.3s;
    }
    header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

    .logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-wrap img { height: 70px; width: 70px; object-fit: contain; padding: 2px; }
    .logo-text { font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.2; }
    .logo-text span { color: var(--orange-light); }

    nav { display: flex; align-items: center; gap: 2px; }
    nav a {
      color: rgba(255,255,255,0.82); text-decoration: none;
      font-size: 0.87rem; font-weight: 500; padding: 8px 13px;
      border-radius: 8px; transition: all 0.2s;
    }
    nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
    .btn-nav-call {
      background: var(--orange); color: #fff !important;
      border-radius: 50px !important; padding: 9px 22px !important;
      font-weight: 600 !important; margin-left: 8px;
    }
    .btn-nav-call:hover { background: var(--orange-dark) !important; transform: scale(1.04); }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; border: none; background: none; padding: 8px;
    }
    .hamburger span { display: block; width: 26px; height: 2.5px; background: #fff; border-radius: 4px; transition: all 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .mobile-nav {
      display: none; position: fixed; top: 72px; left: 0; right: 0;
      background: var(--blue); padding: 16px 20px;
      flex-direction: column; gap: 6px; z-index: 999;
      border-bottom: 2px solid var(--orange);
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      color: rgba(255,255,255,0.88); text-decoration: none;
      font-size: 0.97rem; font-weight: 500; padding: 12px 16px;
      border-radius: 10px; transition: background 0.2s;
    }
    .mobile-nav a:hover { background: rgba(255,255,255,0.08); }
    .mobile-nav .btn-nav-call { text-align: center; margin: 4px 0 0; }

    /* ── HERO ────────────────────────────────────────────────── */
    .hero img{ 
      padding-top: 70px;
      width:100%;
    } 

    /* ── COUNTERS ────────────────────────────────────────────── */
    .counters {
      background: var(--blue);
      display: grid; grid-template-columns: repeat(4, 1fr);
      border-top: 3px solid var(--orange);
    }
    .counter-item { text-align: center; padding: 40px 20px; border-right: 1px solid rgba(255,255,255,0.08); }
    .counter-item:last-child { border-right: none; }
    .counter-num { font-size: 2.6rem; font-weight: 800; color: var(--orange-light); display: block; }
    .counter-label { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 500; margin-top: 4px; }

    /* ── SECTION COMMON ──────────────────────────────────────── */
    section { padding: 90px 24px; }
    .container { max-width: 1180px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-label {
      display: inline-block; background: linear-gradient(135deg, var(--orange), var(--orange-light));
      color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; padding: 6px 20px; border-radius: 50px; margin-bottom: 14px;
    }
    .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--blue); line-height: 1.25; margin-bottom: 14px; }
    .section-sub { font-size: 1.02rem; color: var(--text-light); max-width: 560px; margin: 0 auto; line-height: 1.75; }

    /* ── ABOUT ───────────────────────────────────────────────── */
    #about { background: var(--bg); }
    .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
    .glass-card {
      background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.95); border-radius: var(--radius);
      padding: 34px 26px; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s;
    }
    .glass-card:hover { transform: translateY(-7px); box-shadow: 0 18px 50px rgba(0,0,0,0.14); }
    .card-icon {
      width: 58px; height: 58px; border-radius: 14px;
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.45rem; color: #fff; margin-bottom: 18px;
    }
    .glass-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
    .glass-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

    /* ── SERVICES ────────────────────────────────────────────── */
    #services { background: linear-gradient(180deg, var(--bg) 0%, #eaecf4 100%); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 18px; }
    .service-card {
      background: #fff; border-radius: 14px; padding: 28px 18px; text-align: center;
      border: 1.5px solid rgba(230,81,0,0.08); box-shadow: 0 4px 14px rgba(0,0,0,0.05);
      transition: all 0.3s; cursor: default;
    }
    .service-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 14px 34px rgba(230,81,0,0.15); }
    .service-icon {
      width: 54px; height: 54px; border-radius: 50%;
      background: rgba(230,81,0,0.08); display: flex; align-items: center; justify-content: center;
      font-size: 1.35rem; color: var(--orange); margin: 0 auto 14px; transition: all 0.3s;
    }
    .service-card:hover .service-icon { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: #fff; }
    .service-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--blue); }

    /* ── WHY CHOOSE US ───────────────────────────────────────── */
    #benefits { background: var(--blue); }
    #benefits .section-title { color: #fff; }
    #benefits .section-sub { color: rgba(255,255,255,0.65); }
    .compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
    .compare-card { border-radius: var(--radius); padding: 36px 30px; }
    .compare-card.us { background: linear-gradient(135deg, var(--orange-light), var(--orange-dark)); box-shadow: 0 16px 50px rgba(230,81,0,0.38); }
    .compare-card.others { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); }
    .compare-card h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 26px; display: flex; align-items: center; gap: 10px; }
    .compare-item { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.9); font-size: 0.93rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .compare-item:last-child { border-bottom: none; }
    .compare-item i { flex-shrink: 0; }
    .compare-item.check i { color: #4ade80; }
    .compare-item.cross i { color: rgba(255,255,255,0.35); }

    /* ── DELIVERY PROCESS ────────────────────────────────────── */
    #process { background: var(--bg); }
    .steps-wrap { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; gap: 0; }
    .step-item { flex: 1; min-width: 170px; max-width: 230px; text-align: center; position: relative; }
    .step-item::after {
      content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
      position: absolute; right: -18px; top: 22px; font-size: 1.1rem; color: var(--orange); opacity: 0.45;
    }
    .step-item:last-child::after { display: none; }
    .step-num {
      width: 70px; height: 70px; border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      color: #fff; font-size: 1.5rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px; box-shadow: 0 8px 24px rgba(230,81,0,0.3);
      transition: transform 0.3s;
    }
    .step-item:hover .step-num { transform: scale(1.12) rotate(6deg); }
    .step-icon { font-size: 2rem; color: var(--blue); margin-bottom: 12px; }
    .step-item h4 { font-size: 0.97rem; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
    .step-item p { font-size: 0.83rem; color: var(--text-light); padding: 0 10px; }

    /* ── APP COMING SOON ─────────────────────────────────────── */
    #app { background: linear-gradient(135deg, var(--blue) 0%, #1a3a7a 55%, #0a1f45 100%); text-align: center; }
    #app .section-title { color: #fff; }
    #app .section-sub { color: rgba(255,255,255,0.72); }
    .app-inner { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
    .app-text { max-width: 480px; text-align: left; }
    .app-text .section-header { text-align: left; margin-bottom: 24px; }
    .app-text .section-title { font-size: clamp(1.55rem, 3vw, 2.1rem); }
    .app-badges-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
    .store-badge {
      display: inline-flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.22);
      color: #fff; padding: 12px 22px; border-radius: 12px;
      font-size: 0.88rem; font-weight: 700; text-decoration: none; transition: all 0.25s;
    }
    .store-badge:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
    .store-badge i { font-size: 1.6rem; }
    .store-badge span { display: block; font-size: 0.68rem; font-weight: 400; opacity: 0.75; }
    .coming-note { margin-top: 18px; font-size: 0.87rem; color: rgba(255,255,255,0.58); display: flex; align-items: center; gap: 8px; }
    .coming-note i { color: var(--orange-light); }

    .phone-mockup {
      width: 200px; height: 390px;
      background: linear-gradient(160deg, #1e3a6e, #0d2b5b);
      border-radius: 36px; border: 3px solid rgba(255,255,255,0.18);
      position: relative; flex-shrink: 0;
      box-shadow: 0 28px 64px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.04);
      animation: phone-float 4s ease-in-out infinite;
    }
    @keyframes phone-float { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-18px) rotate(-3deg); } }
    .phone-notch { width: 60px; height: 18px; background: rgba(255,255,255,0.1); border-radius: 0 0 12px 12px; margin: 0 auto; }
    .phone-screen {
      margin: 12px 10px 0; border-radius: 20px; height: 292px;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 10px; overflow: hidden; position: relative;
    }
    .phone-screen::before {
      content: ''; position: absolute; width: 130px; height: 130px;
      background: rgba(255,255,255,0.06); border-radius: 50%; top: -35px; right: -35px;
    }
    .phone-screen i { font-size: 2.6rem; color: rgba(255,255,255,0.9); }
    .phone-screen p { font-size: 0.76rem; color: rgba(255,255,255,0.88); font-weight: 600; text-align: center; padding: 0 14px; }
    .phone-coming { font-size: 0.65rem !important; color: rgba(255,255,255,0.6) !important; }

    /* ── CUSTOMER BENEFITS ───────────────────────────────────── */
    #cust-benefits { background: var(--bg); }
    .benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
    .benefit-card {
      background: #fff; border-radius: var(--radius); padding: 30px 24px;
      border: 1.5px solid #e6eaf3; box-shadow: 0 4px 14px rgba(0,0,0,0.05); transition: all 0.3s;
    }
    .benefit-card:hover { border-color: var(--orange); transform: translateY(-5px); box-shadow: 0 14px 38px rgba(230,81,0,0.12); }
    .benefit-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .benefit-card h4 { font-size: 1.02rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
    .benefit-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

    /* ── CONTACT ─────────────────────────────────────────────── */
    #contact { background: #eaecf4; }
    .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
    .contact-card {
      background: #fff; border-radius: var(--radius); padding: 36px 26px; text-align: center;
      border: 1.5px solid #e6eaf3; box-shadow: 0 4px 14px rgba(0,0,0,0.05); transition: all 0.3s;
    }
    .contact-card:hover { transform: translateY(-5px); box-shadow: 0 16px 42px rgba(0,0,0,0.1); }
    .contact-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
    .contact-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
    .contact-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
    .contact-card a {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 14px; background: var(--orange); color: #fff;
      padding: 10px 22px; border-radius: 50px;
      font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.2s;
    }
    .contact-card a:hover { background: var(--orange-dark); transform: scale(1.04); }

    /* ── SOCIAL ──────────────────────────────────────────────── */
    #social { background: var(--blue); text-align: center; padding: 70px 24px; }
    #social h2 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
    #social p { color: rgba(255,255,255,0.65); margin-bottom: 30px; }
    .social-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
    .social-btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 32px; border-radius: 50px; font-size: 1rem; font-weight: 700; text-decoration: none; transition: all 0.3s; }
    .social-btn.ig { background: linear-gradient(135deg, #fd5949, #d6249f, #285AEB); color: #fff; box-shadow: 0 8px 24px rgba(214,36,159,0.35); }
    .social-btn.ig:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 34px rgba(214,36,159,0.5); }
    .social-btn.fb { background: #1877F2; color: #fff; box-shadow: 0 8px 24px rgba(24,119,242,0.3); }
    .social-btn.fb:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 34px rgba(24,119,242,0.48); }

    /* ── FOOTER ──────────────────────────────────────────────── */
    footer { background: #040f24; color: rgba(255,255,255,0.65); padding: 50px 24px 28px; }
    .footer-inner {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 36px;
    }
    .footer-brand img { height: 130px; object-fit: contain;     padding: 3px; margin-bottom: 14px; display: block; }
    .footer-brand p { font-size: 0.87rem; line-height: 1.75; max-width: 340px; }
    .footer-links h4 { color: #fff; font-weight: 700; margin-bottom: 18px; font-size: 0.97rem; }
    .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--orange-light); }
    .footer-bottom { max-width: 1180px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; text-align: center; font-size: 0.83rem; color: rgba(255,255,255,0.38); }
    .footer-legal { display: flex; justify-content: center; align-items: center; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
    .footer-legal a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; font-weight: 500; position: relative; transition: color 0.25s ease; }
    .footer-legal a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px; background: var(--orange-light); transition: width 0.25s ease; }
    .footer-legal a:hover { color: var(--orange-light); }
    .footer-legal a:hover::after { width: 100%; }
    .footer-legal .footer-sep { color: rgba(255,255,255,0.25); font-size: 0.85rem; }
    .footer-copyright { display: inline-flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap; }
    .footer-copyright a { color: var(--orange-light); text-decoration: none; font-weight: 500; transition: text-decoration 0.2s ease; }
    .footer-copyright a:hover { text-decoration: underline; }

    /* ── FLOATING BTNS ───────────────────────────────────────── */
    .float-btn {
      position: fixed; width: 54px; height: 54px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.35rem; color: #fff; text-decoration: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.28); z-index: 900;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .float-btn:hover { transform: scale(1.15); }
    .float-wa { bottom: 88px; right: 18px; background: #11c826; box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    .float-tr { bottom: 160px; right: 18px; background: #0d2b5b; box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4); cursor: pointer;}
    .float-call-btn { bottom: 18px; right: 18px; background: var(--orange); box-shadow: 0 6px 20px rgba(230,81,0,0.4); }
    .back-top {
      position: fixed; bottom: 18px; left: 18px; width: 44px; height: 44px; border-radius: 50%;
      background: var(--blue); border: 2px solid rgba(255,255,255,0.14); color: #fff;
      font-size: 1.05rem; display: none; align-items: center; justify-content: center;
      cursor: pointer; z-index: 900; box-shadow: 0 4px 16px rgba(0,0,0,0.22);
      transition: all 0.25s;
    }
    .back-top.show { display: flex; }
    .back-top:hover { background: var(--orange); transform: scale(1.1); }

    /* ── REVEAL ANIMATION ────────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── ASSOCIATE SECTION ───────────────────────────────────── */
    #associate {
      background: linear-gradient(160deg, #0a1f45 0%, var(--blue) 45%, #1a3a7a 100%);
      padding: 100px 24px 120px;
      overflow: visible;
      position: relative;
    }
    #associate::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
    }
    #associate .section-title { color: #fff; }
    #associate .section-sub { color: rgba(255,255,255,0.68); }

    .associate-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 32px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .assoc-cards { display: flex; flex-direction: column; gap: 20px; }

    .assoc-card {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 16px;
      padding: 22px 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: all 0.3s;
      cursor: default;
    }
    .assoc-card:hover {
      background: rgba(255,255,255,0.14);
      border-color: rgba(230,81,0,0.5);
      transform: translateX(0) scale(1.02);
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }
    .assoc-cards.left .assoc-card:hover { transform: translateX(4px) scale(1.02); }
    .assoc-cards.right .assoc-card:hover { transform: translateX(-4px) scale(1.02); }

    .assoc-emoji {
      font-size: 1.8rem;
      line-height: 1;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .assoc-card h4 { font-size: 0.97rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
    .assoc-card p { font-size: 0.84rem; color: rgba(255,255,255,0.72); line-height: 1.6; }

    .assoc-image-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }
    .assoc-image-ring {
      width: 300px;
      height: 340px; 
      display: flex;
      align-items: flex-end;
      justify-content: center;
      overflow: hidden;
      position: relative; 
      flex-shrink: 0;
    }
    .assoc-image-ring img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .assoc-badge {
      position: absolute;
      bottom: -18px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #fff;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 8px 22px;
      border-radius: 50px;
      white-space: nowrap;
      box-shadow: 0 6px 20px rgba(230,81,0,0.45);
      letter-spacing: 0.5px;
    }

    /* ── RESPONSIVE ──────────────────────────────────────────── */
    @media (max-width: 768px) {
      nav { display: none; }
      .hamburger { display: flex; }
      .counters { grid-template-columns: repeat(2, 1fr); }
      .counter-item:nth-child(2n) { border-right: none; }
      .step-item::after { display: none; }
      .steps-wrap { flex-direction: column; align-items: center; gap: 28px; }
      .step-item { max-width: 100%; }
      .footer-inner { grid-template-columns: 1fr; }
      .app-inner { flex-direction: column-reverse; align-items: center; }
      .app-text { text-align: center; }
      .app-text .section-header { text-align: center; }
      .app-badges-row { justify-content: center; }
      .coming-note { justify-content: center; }
      .associate-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .assoc-image-wrap { order: -1; }
      .assoc-image-ring { width: 240px; height: 280px; }
      .assoc-cards.left .assoc-card:hover,
      .assoc-cards.right .assoc-card:hover { transform: scale(1.02); }
    }
    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; align-items: center; }
      .counters { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── REELS SLIDER ────────────────────────────────────────── */
    #reels {
      background: #fff;
      padding: 90px 0;
      overflow: hidden;
    }
    #reels .section-header { padding: 0 24px; }
    #reels .section-title { color: var(--blue); }
    #reels .section-label { background: linear-gradient(135deg, #16a34a, #15803d); }

    .reels-outer {
      position: relative;
      padding: 0 64px;
    }
    .reels-track-wrap {
      overflow: hidden;
      border-radius: 4px;
    }
    .reels-track {
      display: flex;
      gap: 20px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
      cursor: grab;
      touch-action: pan-y;
      user-select: none;
      -webkit-user-select: none;
    }
    .reels-track:active { cursor: grabbing; }

    .reel-card {
      flex: 0 0 calc((100% - 100px) / 6);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(0,0,0,0.12);
      background: #000;
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      aspect-ratio: 9 / 16;
    }
    .reel-card:hover { 
      box-shadow: 0 18px 48px rgba(0,0,0,0.22);
    }
    .reel-card video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border: none;
      display: block;
    }
    .reel-card .reel-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s;
      background: rgba(0,0,0,0.18);
      pointer-events: none;
    }
    .reel-card:hover .reel-overlay { opacity: 1; }
    .reel-overlay .play-icon {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: rgba(255,255,255,0.22);
      backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.4rem;
    }
    .reel-placeholder {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #1e293b, #0f172a);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      color: #64748b;
      font-size: 0.88rem;
      font-weight: 500;
    }
    .reel-placeholder i { font-size: 2.8rem; color: #334155; }
    .reel-placeholder span { font-size: 0.78rem; color: #475569; text-align: center; padding: 0 16px; }

    .reel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background: #fff;
      box-shadow: 0 4px 18px rgba(0,0,0,0.16);
      color: var(--blue);
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all 0.25s;
    }
    .reel-nav:hover { background: #16a34a; color: #fff; transform: translateY(-50%) scale(1.1); box-shadow: 0 8px 24px rgba(22,163,74,0.35); }
    .reel-nav:disabled { opacity: 0.35; pointer-events: none; }
    .reel-nav.prev { left: 8px; }
    .reel-nav.next { right: 8px; }

    .reels-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
      height: 12px;
      line-height: 1;
    }
    .reels-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #cbd5e1;
      border: none;
      cursor: pointer;
      transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
      padding: 0;
      margin: 0;
      display: inline-block;
      vertical-align: middle;
      flex: 0 0 auto;
      align-self: center;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      outline: none !important;
      box-shadow: none !important;
      background-clip: padding-box;
      -webkit-tap-highlight-color: transparent;
      font-size: 0;
      line-height: 0;
    }
    .reels-dot::-moz-focus-inner { border: 0; padding: 0; }
    .reels-dot:focus,
    .reels-dot:focus-visible,
    .reels-dot:active,
    .reels-dot:hover { outline: none !important; box-shadow: none !important; }
    .reels-dot.active {
      background: #16a34a;
      width: 24px;
      height: 8px;
      border-radius: 999px;
    }

    @media (max-width: 1024px) and (min-width: 768px) {
      .reel-card { flex: 0 0 calc((100% - 60px) / 4); }
    }
    @media (max-width: 768px) {
      .reel-card { flex: 0 0 calc((100% - 20px) / 2); }
      .reels-outer { padding: 0 48px; }
    }




    #google_translate_element{
    position:fixed;
    top:20px;
    right:20px;
    z-index:9999;
}

.goog-te-gadget{
    font-size:0;
}

.goog-te-combo{
    padding:8px 15px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:15px;
    cursor:pointer;
}