@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/InterVariable.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/InterVariable-Italic.woff2") format("woff2");
}

:root {

    --color-main-50:#e6edf6;
    --color-main-100:#a9c1df;
    --color-main-200:#7a9ecb;
    --color-main-300:#4c7cb7;
    --color-main-400:#00509d;
    --color-main-500:#00509d;
    --color-main-600:#003973;
    --color-main-700:#002651;
    --color-main-800:#001531;
    --color-main-900:#000718;
    --color-main-950:#000207;

    --color-main2-50:#fffaed;
    --color-main2-100:#ffecc0;
    --color-main2-200:#fee199;
    --color-main2-300:#fed56d;
    --color-main2-400:#fdc500;
    --color-main2-500:#fdc500;
    --color-main2-600:#bc9200;
    --color-main2-700:#866700;
    --color-main2-800:#544000;
    --color-main2-900:#2d2100;
    --color-main2-950:#120b00;

    --color-primary: #2563eb;
            --color-primary-light: #dbeafe;
            --color-secondary: #f59e0b;
            --color-accent: #ef4444;
            --color-dark: #1e293b;
            --color-light: #f8fafc;
            --color-gray: #64748b;
            --color-gray-light: #e2e8f0;

}

body { -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;     letter-spacing: -0.025em; font-family: Inter, sans-serif;     line-height: 1.5; font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent; color: var(--color-main-600); font-size: .875rem; font-weight: 500;}

    header { background: linear-gradient(135deg, var(--color-main-400), var(--color-main-600))}

.menu-btn { background: transparent; border: none; color: #fff; font-size: 1.5rem; cursor: pointer;}


nav ul li a { color: #fff!important; padding:0px 20px!important}

/* ── Keyframes ─────────────────────────── */
@keyframes ring {
  0%,100% { transform: rotate(0deg); }
  10%      { transform: rotate(-18deg); }
  20%      { transform: rotate(16deg); }
  30%      { transform: rotate(-12deg); }
  40%      { transform: rotate(10deg); }
  50%      { transform: rotate(-6deg); }
  60%      { transform: rotate(4deg); }
  70%      { transform: rotate(-2deg); }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(253,197,0,.55),
                     0 0 0 0   rgba(253,197,0,.30); }
  70%  { box-shadow: 0 0 0 10px rgba(253,197,0,0),
                     0 0 0 20px rgba(253,197,0,0); }
  100% { box-shadow: 0 0 0 0   rgba(253,197,0,0),
                     0 0 0 0   rgba(253,197,0,0); }
}

@keyframes dot-blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:.4; transform:scale(.7); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── Component ─────────────────────────── */
.nav-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 6px 5px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--color-main-400);
  background: var(--color-main2-500);
  color: var(--color-main-700);
  text-decoration: none;
  line-height: 1;
  font-family: inherit;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1),
              box-shadow .22s ease,
              border-color .22s ease;
  animation: pulse-ring 2.4s ease-out infinite;
  will-change: transform;
}

/* shimmer sweep on the bg */
.nav-call::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,.45) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  pointer-events: none;
}

.nav-call:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(0,80,157,.28),
              0 2px  6px rgba(0,80,157,.15);
  border-color: var(--color-main-500);
}

.nav-call:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 2px 6px rgba(0,80,157,.18);
}

/* ── Text block ─────────────────────────── */
.nav-call-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-call-text small {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-main-600);
  opacity: .85;
}

/* live dot */
.nav-call-text small::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: dot-blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.nav-call-text span {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--color-main-700);
}

/* ── Icon bubble ─────────────────────────── */
.nav-call-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  
  flex-shrink: 0;
  transition: background .22s ease, transform .22s ease;
  overflow: hidden;
}

.nav-call:hover .nav-call-img {
  background: var(--color-main-500);
  transform: rotate(-8deg) scale(1.08);
}

.nav-call-img img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  animation: ring 4s ease-in-out infinite;
  
}
.feature-section {
            padding: 80px 0;
            background-color: var(--color-light);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-subtitle {
            color: var(--color-main);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .section-title {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .section-description {
            color: var(--color-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 30px 25px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-main), var(--color-accent));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(67, 97, 238, 0.1);
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            margin-bottom: 25px;
            background: var(--color-main-light);
            color: var(--color-main);
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--color-main), var(--color-secondary));
            color: white;
            transform: scale(1.05);
        }
        
        .feature-card h5 {
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: var(--color-gray);
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        
        .feature-link {
            display: inline-flex;
            align-items: center;
            color: var(--color-main);
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 20px;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .feature-link svg {
            margin-left: 5px;
            transition: transform 0.2s ease;
        }
        
        .feature-link:hover {
            color: var(--color-secondary);
        }
        
        .feature-link:hover i {
            transform: translateX(3px);
        }
        
        @media (max-width: 992px) {
            .feature-card {
                margin-bottom: 30px;
            }
        }


.flight-offers {
            padding: 80px 0;
            background: #ffffff;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        
        .section-subtitle {
            font-size: 1rem;
            color: var(--color-gray);
            max-width: 500px;
            margin: 0 auto 40px;
        }
        
        .offer-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--color-gray-light);
        }
        
        .offer-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        
        .card-header-img {
            position: relative;
            overflow: hidden;
            height: 180px;
        }
        
        .card-header-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .offer-card:hover .card-header-img img {
            transform: scale(1.05);
        }
        
        .card-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--color-primary);
            color: white;
            padding: 4px 10px;
            border-radius: 16px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        .card-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 8px;
        }
        
        .card-details {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            color: var(--color-gray);
            font-size: 0.85rem;
        }
        
        .card-details i {
            margin-right: 6px;
            color: var(--color-primary);
            font-size: 0.8rem;
        }
        
        .flight-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding: 12px 0;
            border-top: 1px solid var(--color-gray-light);
            border-bottom: 1px solid var(--color-gray-light);
        }
        
        .flight-info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .flight-info-label {
            font-size: 0.75rem;
            color: var(--color-gray);
            margin-bottom: 4px;
        }
        
        .flight-info-value {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-dark);
        }
        
        .price-container {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        
        .price {
            color: var(--color-gray);
            font-size: 0.9rem;
            margin: 0;
        }
        
        .price span {
            font-weight: 700;
            color: var(--color-primary);
            font-size: 1.3rem;
        }
        
        .book-btn {
            background: var(--color-primary);
            color: white;
            font-weight: 500;
            border-radius: 8px;
            padding: 10px 0;
            transition: all 0.2s ease;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 0.9rem;
        }
        
        .book-btn:hover {
            background: #1d4ed8;
            color: white;
        }
        
        .view-all-container {
            text-align: center;
            margin-top: 50px;
        }
        
        .view-all-btn {
            background: transparent;
            color: var(--color-primary);
            border: 1px solid var(--color-primary);
            font-weight: 500;
            border-radius: 8px;
            padding: 10px 30px;
            transition: all 0.2s ease;
        }
        
        .view-all-btn:hover {
            background: var(--color-primary);
            color: white;
        }
        
        .destination-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .filter-btn {
            background: white;
            border: 1px solid var(--color-gray-light);
            color: var(--color-gray);
            padding: 6px 16px;
            border-radius: 16px;
            font-size: 0.85rem;
            transition: all 0.2s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--color-primary);
            color: white;
            border-color: var(--color-primary);
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .card-header-img {
                height: 160px;
            }
            
            .destination-filter {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
            }
        }
/* Title */
.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--color-main-600);
}
.section-subtitle {
    color: var(--color-main-300);
}

/* CARD */
.route-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid var(--color-main-50);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    transition: .3s ease;
}
.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
    border-color: var(--color-main-200);
}

/* Airline Row */
.airline-info {
    gap: 10px;
    margin-bottom: 12px;
}
.airline-info img {
    width: 38px;
}
.airline-info span {
    font-size: .95rem;
    font-weight: 600;
    color: var(--color-main-700);
}

/* Route */
.route h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-main-700);
}
.route span {
    color: var(--color-main-400);
}
.travel-date {
    color: var(--color-main-300);
    margin-top: 4px;
    font-size: .9rem;
}

/* Price */
.price {
    margin: 14px 0;
    color: var(--color-main-300);
}
.price span {
    color: var(--color-main-400);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Button */
.book-btn {
    background: var(--color-main2-400);
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 0;
}
.book-btn:hover {
    background: var(--color-main2-500);
}
.special-offer-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #1d55af 50%, #2b61a3 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
       
        
        .offer-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary));
            color: #000;
            padding: 8px 20px;
            font-size: 0.85rem;
            font-weight: 700;
            border-radius: 50px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .offer-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: white;
        }
        
        .offer-title span {
            background: linear-gradient(135deg, var(--color-secondary), #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }
        
        .offer-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #e0f2fe;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .offer-points {
            list-style: none;
            padding-left: 0;
            margin-bottom: 35px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .offer-points li {
            margin-bottom: 12px;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
            justify-content: center;
        }
        
        .offer-points svg {
            color: var(--color-secondary);
            background: rgba(255, 255, 255, 0.1);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            padding: 5px;
            flex-shrink: 0;
        }
        
        .countdown {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .countdown-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            min-width: 70px;
        }
        
        .countdown-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            line-height: 1;
        }
        
        .countdown-label {
            font-size: 0.8rem;
            color: #e0f2fe;
            margin-top: 5px;
        }
        
        .offer-btn {
            background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary));
            color: #000;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 12px;
            padding: 16px 40px;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .offer-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }
        
        .offer-btn:hover {
            background: linear-gradient(135deg, var(--color-secondary), #ffb700);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
            color: #000;
        }
        
        .offer-btn:hover::before {
            left: 100%;
        }
        
        @media (max-width: 768px) {
            .special-offer-section {
                padding: 60px 0;
                text-align: center;
            }
            
            .offer-title {
                font-size: 2.2rem;
            }
            
            .countdown {
                gap: 10px;
            }
            
            .countdown-item {
                min-width: 60px;
                padding: 12px;
            }
            
            .countdown-value {
                font-size: 1.5rem;
            }
        }.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-main-600);
}

.faq-subtitle {
    color: var(--color-main-300);
    margin-bottom: 20px;
}

.accordion-button {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-main-600);
    background: #f1f5fb;
}

.accordion-button:not(.collapsed) {
    background: var(--color-main2-400);
    color: #000;
}

.accordion-body {
    font-size: .95rem;
    color: var(--color-main-700);
    background: #fff;
}

:root {
  --main-50:#e6edf6; --main-400:#00509d; --main-500:#00509d;
  --main-600:#003973; --main-700:#002651;
  --main2-300:#fed56d; --main2-400:#fdc500; --main2-500:#fdc500;
}
/* ── KEYFRAMES ─────────────────────── */
@keyframes fadeUp   {from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeRight{from{opacity:0;transform:translateX(-40px)}to{opacity:1;transform:translateX(0)}}
@keyframes shimmer  {0%{background-position:-300% center}100%{background-position:300% center}}
@keyframes pulseRing{0%{box-shadow:0 0 0 0 rgba(253,197,0,.6)}70%{box-shadow:0 0 0 18px rgba(253,197,0,0)}100%{box-shadow:0 0 0 0 rgba(253,197,0,0)}}
@keyframes float    {0%,100%{transform:translateY(0) rotate(var(--r,0deg))}50%{transform:translateY(-14px) rotate(var(--r,0deg))}}
@keyframes spinSlow {from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes spinRev  {from{transform:rotate(0deg)}to{transform:rotate(-360deg)}}
@keyframes orbPulse {0%,100%{transform:scale(1);opacity:.14}50%{transform:scale(1.18);opacity:.26}}
@keyframes dotBlink {0%,100%{opacity:1;transform:scale(1)}50%{opacity:.3;transform:scale(.6)}}
@keyframes cloudDrift{from{transform:translateX(-140%)}to{transform:translateX(110vw)}}
@keyframes lineGrow {from{width:0}to{width:100%}}
@keyframes badgePop {0%{opacity:0;transform:scale(.6) translateY(10px)}80%{transform:scale(1.06)}100%{opacity:1;transform:scale(1)}}
@keyframes planeTrail{0%{left:-10%;opacity:0}10%{opacity:1}90%{opacity:1}100%{left:110%;opacity:0}}
@keyframes borderGlow{0%,100%{border-color:rgba(253,197,0,.3)}50%{border-color:rgba(253,197,0,.8)}}

/* ── HERO ──────────────────────────── */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  background:linear-gradient(150deg, var(--main-700) 0%, var(--main-600) 50%, #004a8c 100%);
  padding:110px 24px 120px;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 40%, rgba(0,80,157,.4) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 15% 85%, rgba(253,197,0,.07) 0%, transparent 60%);
  pointer-events:none;
}

/* grid */
.hero-grid{
  position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.032) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.032) 1px,transparent 1px);
  background-size:72px 72px;
  pointer-events:none;
}

/* diagonal slab */
.hero-slab{
  position:absolute;
  top:0;right:-160px;width:58%;height:100%;
  background:linear-gradient(135deg,rgba(0,80,157,.22) 0%,transparent 65%);
  transform:skewX(-14deg);
  pointer-events:none;
}

/* orbs */
.orb{position:absolute;border-radius:50%;pointer-events:none;}
.orb--1{width:680px;height:680px;top:-190px;right:-170px;background:radial-gradient(circle,rgba(253,197,0,.09) 0%,transparent 65%);animation:orbPulse 7s ease-in-out infinite;}
.orb--2{width:440px;height:440px;bottom:-130px;left:-110px;background:radial-gradient(circle,rgba(0,80,157,.55) 0%,transparent 65%);animation:orbPulse 9s ease-in-out infinite 3s;}
.orb--3{width:250px;height:250px;top:20%;left:-50px;background:radial-gradient(circle,rgba(253,197,0,.055) 0%,transparent 70%);animation:orbPulse 5s ease-in-out infinite 1.5s;}

/* spinning rings */
.ring{position:absolute;border-radius:50%;pointer-events:none;top:50%;right:-200px;transform:translateY(-50%);}
.ring--1{width:560px;height:560px;border:1px solid rgba(253,197,0,.1);animation:spinSlow 45s linear infinite;}
.ring--2{width:380px;height:380px;border:1px solid rgba(253,197,0,.08);right:-120px;animation:spinRev 30s linear infinite;}
.ring--3{width:210px;height:210px;border:1.5px dashed rgba(253,197,0,.18);right:-50px;animation:spinSlow 20s linear infinite;}

/* floating dots */
.dots-layer{position:absolute;inset:0;pointer-events:none;}
.dot{position:absolute;border-radius:50%;background:var(--main2-500);}
.dot:nth-child(1){width:7px;height:7px;top:13%;left:6%;opacity:.4;animation:float 4.2s ease-in-out infinite;}
.dot:nth-child(2){width:4px;height:4px;top:31%;left:12%;opacity:.25;animation:float 5.8s ease-in-out infinite 1s;}
.dot:nth-child(3){width:9px;height:9px;top:64%;left:5%;opacity:.3;animation:float 3.6s ease-in-out infinite .5s;}
.dot:nth-child(4){width:5px;height:5px;top:79%;left:21%;opacity:.2;animation:float 6s ease-in-out infinite 2s;}
.dot:nth-child(5){width:7px;height:7px;top:19%;right:8%;opacity:.35;animation:float 4.8s ease-in-out infinite .8s;}
.dot:nth-child(6){width:4px;height:4px;top:49%;right:5%;opacity:.2;animation:float 5.2s ease-in-out infinite 1.6s;}
.dot:nth-child(7){width:8px;height:8px;top:74%;right:13%;opacity:.3;animation:float 4s ease-in-out infinite 2.4s;}

/* clouds */
.cloud{position:absolute;opacity:.055;pointer-events:none;}
.cloud svg{fill:#fff;}
.cloud--1{top:9%;animation:cloudDrift 34s linear infinite;}
.cloud--2{top:62%;animation:cloudDrift 46s linear infinite 16s;}

/* plane trails */
.trail{position:absolute;pointer-events:none;display:flex;align-items:center;gap:6px;}
.trail--1{top:21%;animation:planeTrail 15s linear infinite 3s;}
.trail--2{top:70%;animation:planeTrail 20s linear infinite 9s;}
.trail-plane{font-size:1.25rem;filter:drop-shadow(0 0 8px rgba(253,197,0,.65));}
.trail-line{width:80px;height:2px;background:linear-gradient(90deg,rgba(253,197,0,.7),transparent);border-radius:100px;}

/* ── CONTENT ───────────────────────── */
.hero-content{
  position:relative;z-index:10;
  max-width:820px;
  text-align:center;
  margin:0 auto;
}

/* badge */
.hero-badge{
  display:inline-flex;align-items:center;gap:9px;
  padding:8px 20px 8px 12px;
  border-radius:100px;
  border:1.5px solid rgba(253,197,0,.35);
  background:rgba(253,197,0,.08);
  backdrop-filter:blur(10px);
  color:var(--main2-400);
  font-size:.77rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
  margin-bottom:30px;
  animation:badgePop .65s cubic-bezier(.34,1.56,.64,1) .15s both;
  animation:borderGlow 3s ease-in-out infinite, badgePop .65s cubic-bezier(.34,1.56,.64,1) .15s both;
}
.badge-dot{width:8px;height:8px;border-radius:50%;background:#22c55e;animation:dotBlink 1.6s ease-in-out infinite;flex-shrink:0;}

/* pre-headline */
.hero-pre{
  font-size:.82rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(255,255,255,.4);
  margin-bottom:14px;
  animation:fadeUp .6s ease .3s both;
}

/* main headline */
.hero-title{
  
  font-size:clamp(3rem,7.5vw,5.6rem);
  font-weight:800;
  line-height:1.04;
  color:#fff;
  letter-spacing:-.025em;
  margin-bottom:0;
  animation:fadeUp .75s ease .4s both;
}
/* .hero-title .t1{display:block;}
.hero-title .t2{display:block;position:relative;margin-top:4px;} */

/* gold shimmer text */
.gold-word{
  display:inline-block;
  background:linear-gradient(90deg,var(--main2-500) 0%,var(--main2-300) 25%,#fff 50%,var(--main2-300) 75%,var(--main2-500) 100%);
  background-size:300% auto;
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  animation:shimmer 3.5s linear infinite;
}

/* underline swoosh */
.title-swoosh{
  display:block;
  height:5px;border-radius:100px;
  background:linear-gradient(90deg,var(--main2-500),var(--main2-300));
  opacity:.65;
  margin:8px auto 0;
  width:clamp(160px,28%,300px);
  animation:lineGrow 1.1s cubic-bezier(.77,0,.18,1) .95s both;
}

/* subtitle */
.hero-sub{
  font-size:clamp(1rem,2.2vw,1.18rem);
  line-height:1.72;
  color:rgba(255,255,255,.65);
  max-width:540px;
  margin:24px auto 0;
  font-style:italic;
  animation:fadeUp .7s ease .58s both;
}

/* ── divider ── */
.divider{
  display:flex;align-items:center;gap:14px;justify-content:center;
  margin:34px 0;
  animation:fadeUp .7s ease .68s both;
}
.div-line{flex:1;max-width:100px;height:1px;}
.div-line--l{background:linear-gradient(90deg,transparent,rgba(253,197,0,.4));}
.div-line--r{background:linear-gradient(90deg,rgba(253,197,0,.4),transparent);}
.div-icon{font-size:1.3rem;opacity:.75;animation:float 3s ease-in-out infinite;}

/* ── BUTTONS ── */
.hero-ctas{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
  animation:fadeUp .7s ease .78s both;
  margin-bottom:48px;
}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:15px 34px;
  border-radius:100px;
  font-family:'DM Sans',sans-serif;
  font-size:.96rem;font-weight:700;letter-spacing:.01em;
  text-decoration:none;cursor:pointer;border:none;
  position:relative;overflow:hidden;
  transition:transform .22s cubic-bezier(.34,1.56,.64,1),box-shadow .22s ease;
}
.btn::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(105deg,transparent 38%,rgba(255,255,255,.22) 50%,transparent 62%);
  background-size:200% 100%;
  animation:shimmer 3s linear infinite;
}
.btn:hover{transform:translateY(-3px) scale(1.05);}
.btn:active{transform:scale(.97);}

/* primary */
.btn--primary{
  background:var(--main2-500);
  color:var(--main-700);
  box-shadow:0 8px 30px rgba(253,197,0,.38);
  animation:pulseRing 2.5s ease-out infinite;
}
.btn--primary:hover{box-shadow:0 16px 44px rgba(253,197,0,.55); background:var(--main2-400);}

/* ghost */
.btn--ghost{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:2px solid rgba(255,255,255,.3);
  backdrop-filter:blur(10px);
}
.btn--ghost:hover{background:rgba(255,255,255,.16);border-color:rgba(255,255,255,.55);box-shadow:0 8px 28px rgba(255,255,255,.08);}

/* outline gold */
.btn--gold-outline{
  background:transparent;
  color:var(--main2-500);
  border:2px solid rgba(253,197,0,.45);
}
.btn--gold-outline:hover{background:rgba(253,197,0,.1);border-color:var(--main2-500);box-shadow:0 8px 28px rgba(253,197,0,.2); color:var(--main2-500);}

.btn-ico{font-size:1rem;line-height:1;}

/* ── trust strip ── */
.hero-trust{
  display:flex;align-items:center;justify-content:center;gap:12px;
  animation:fadeUp .7s ease .9s both;
  margin-bottom:52px;
  flex-wrap:wrap;
}
.avatars{display:flex;}
.av{
  width:36px;height:36px;border-radius:50%;
  border:2.5px solid rgba(255,255,255,.28);
  margin-left:-11px;
  background:linear-gradient(135deg,var(--main-400),var(--main-600));
  display:flex;align-items:center;justify-content:center;
  font-size:.74rem;color:#fff;font-weight:700;
}
.av:first-child{margin-left:0;}
.trust-copy{font-size:.82rem;color:rgba(255,255,255,.55);line-height:1.45;}
.trust-copy strong{color:var(--main2-400);display:block;font-size:.88rem;}

/* ── stats ── */
.hero-stats{
  display:flex;justify-content:center;gap:0;flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:36px;
  animation:fadeUp .7s ease 1.02s both;
}
.stat{flex:1;min-width:120px;max-width:190px;text-align:center;padding:0 20px;position:relative;}
.stat::after{content:'';position:absolute;right:0;top:10%;height:80%;width:1px;background:rgba(255,255,255,.1);}
.stat:last-child::after{display:none;}
.stat-ico{font-size:1.55rem;margin-bottom:7px;display:block;animation:float 4s ease-in-out infinite;}
.stat:nth-child(2) .stat-ico{animation-delay:.9s;}
.stat:nth-child(3) .stat-ico{animation-delay:1.8s;}
.stat-num{font-family:'Syne',sans-serif;font-size:2.1rem;font-weight:800;color:#fff;line-height:1;margin-bottom:4px;}
.stat-num em{color:var(--main2-500);font-style:normal;}
.stat-lbl{font-size:.7rem;color:rgba(255,255,255,.42);font-weight:600;letter-spacing:.06em;text-transform:uppercase;}

/* wave */
.hero-wave{position:absolute;bottom:0;left:0;right:0;line-height:0;pointer-events:none;}
.hero-wave svg{width:100%;height:72px;}

/* responsive */
@media(max-width:600px){
  .hero-title{font-size:2.5rem;}
  .hero-ctas{flex-direction:column;align-items:center;}
  .btn{width:100%;max-width:300px;justify-content:center;}
  .ring,.orb--1{display:none;}
  .stat::after{display:none;}
  .stat{padding:0 10px;}
}.footer-section {
            background: linear-gradient(135deg, var(--color-main-800) 0%, #0f172a 100%);
            color: #e2e8f0;
            padding: 70px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-main2-400), var(--color-accent));
        }
        
        .footer-title {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-main2-400), #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }
        
        .footer-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #94a3b8;
            margin-bottom: 25px;
            max-width: 300px;
        }
        
        .footer-subtitle {
            font-weight: 700;
            font-size: 1.1rem;
            color: #f1f5f9;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }
        
        .footer-subtitle::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--color-main2-400);
            border-radius: 2px;
        }
        
        .footer-links,
        .footer-contact {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        
        .footer-links li,
        .footer-contact li {
            margin-bottom: 12px;
            transition: transform 0.2s ease;
        }
        
        .footer-links li:hover,
        .footer-contact li:hover {
            transform: translateX(5px);
        }
        
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a::before {
            content: '›';
            margin-right: 8px;
            color: var(--color-main2-400);
            font-weight: bold;
            transition: transform 0.2s ease;
        }
        
        .footer-links a:hover {
            color: #f1f5f9;
        }
        
        .footer-links a:hover::before {
            transform: translateX(3px);
        }
        
        .footer-contact li {
            color: #94a3b8;
            font-size: 0.95rem;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .footer-contact i {
            color: var(--color-main2-400);
            font-size: 1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            color: #cbd5e1;
            justify-content: center;
            align-items: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-social a:hover {
            background: var(--color-main2-400);
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 25px;
        }
        
        .footer-bottom p {
            margin: 0;
            font-size: 0.9rem;
            color: #64748b;
        }
        
        .newsletter-form {
            margin-top: 15px;
        }
        
        .newsletter-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 10px 15px;
            color: white;
            font-size: 0.9rem;
            width: 100%;
            margin-bottom: 10px;
            transition: all 0.2s ease;
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--color-main2-400);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .newsletter-btn {
            background: var(--color-main2-400);
            color: #000;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 600;
            font-size: 0.9rem;
            width: 100%;
            transition: all 0.2s ease;
        }
        
        .newsletter-btn:hover {
            background: var(--color-main2-500);
            transform: translateY(-2px);
        }
        
        .payment-methods {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .payment-method {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 6px;
            padding: 5px 10px;
            font-size: 0.8rem;
            color: #94a3b8;
        }
        
        @media (max-width: 768px) {
            .footer-section {
                padding: 50px 0 20px;
                text-align: center;
            }
            
            .footer-text {
                max-width: 100%;
            }
            
            .footer-subtitle::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-social {
                justify-content: center;
            }
        }

/* terms style starts here */

 /* Hero Section */
        .terms-hero {
            background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .terms-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: var(--color-secondary);
            color: #000;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }
        
        .hero-badge svg {
            margin-right: 8px;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #e0f2fe;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Content Section */
        .terms-content {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        .terms-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--color-gray-light);
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--color-secondary);
            border-radius: 2px;
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section:last-child {
            margin-bottom: 0;
        }
        
        .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--color-primary);
            color: white;
            border-radius: 50%;
            font-weight: 700;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .section-heading {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .section-content {
            color: var(--color-gray);
            line-height: 1.7;
            margin-left: 51px;
        }
        
        .highlight-box {
            background: var(--color-primary-light);
            border-left: 4px solid var(--color-primary);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        
        .nav-pills {
            position: sticky;
            top: 100px;
        }
        
        .nav-pills .nav-link {
            color: var(--color-gray);
            font-weight: 500;
            padding: 12px 20px;
            margin-bottom: 8px;
            border-radius: 10px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
        }
        
        .nav-pills .nav-link i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .nav-pills .nav-link.active {
            background: var(--color-primary);
            color: white;
        }
        
        .nav-pills .nav-link:hover:not(.active) {
            background: var(--color-gray-light);
            color: var(--color-dark);
        }
        
        .last-updated {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
            border: 1px solid var(--color-gray-light);
        }
        
        @media (max-width: 768px) {
            .terms-hero {
                padding: 80px 0 60px;
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .terms-card {
                padding: 25px;
            }
            
            .section-heading {
                font-size: 1.3rem;
            }
        }








/* terms style ends here */

/* privacy style starts here */

/* Hero Section */
        .privacy-hero {
            background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .privacy-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: var(--color-secondary);
            color: #000;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }
        
        .hero-badge svg {
            margin-right: 8px;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #e0f2fe;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Content Section */
        .privacy-content {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        .privacy-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--color-gray-light);
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right:0;
            margin:0 auto;
            width: 60px;
            height: 4px;
            background: var(--color-secondary);
            border-radius: 2px;
        }
        
        .privacy-section {
            margin-bottom: 40px;
        }
        
        .privacy-section:last-child {
            margin-bottom: 0;
        }
        
        .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--color-primary);
            color: white;
            border-radius: 50%;
            font-weight: 700;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .section-heading {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .section-content {
            color: var(--color-gray);
            line-height: 1.7;
            margin-left: 51px;
        }
        
        .info-list {
            list-style: none;
            padding-left: 0;
            margin: 15px 0;
        }
        
        .info-list li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }
        
        .info-list li::before {
            content: '•';
            color: var(--color-primary);
            font-weight: bold;
            position: absolute;
            left: 10px;
        }
        
        .highlight-box {
            background: var(--color-primary-light);
            border-left: 4px solid var(--color-primary);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        
        .nav-pills {
            position: sticky;
            top: 100px;
        }
        
        .nav-pills .nav-link {
            color: var(--color-gray);
            font-weight: 500;
            padding: 12px 20px;
            margin-bottom: 8px;
            border-radius: 10px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
        }
        
        .nav-pills .nav-link i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .nav-pills .nav-link.active {
            background: var(--color-primary);
            color: white;
        }
        
        .nav-pills .nav-link:hover:not(.active) {
            background: var(--color-gray-light);
            color: var(--color-dark);
        }
        
        .last-updated {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
            border: 1px solid var(--color-gray-light);
        }
        
        @media (max-width: 768px) {
            .privacy-hero {
                padding: 80px 0 60px;
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .privacy-card {
                padding: 25px;
            }
            
            .section-heading {
                font-size: 1.3rem;
            }
        }

/* privacy style ends here */

/* about us style starts here */
/* Hero Section */
        .about-hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--color-secondary), #fbbf24);
            color: #000;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 25px;
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -0.5px;
        }
        
        .hero-title span {
            background: linear-gradient(135deg, var(--color-secondary), #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            line-height: 1.6;
            color: #cbd5e1;
            max-width: 600px;
            margin-bottom: 40px;
        }
        
        /* Story Section */
        .story-section {
            padding: 100px 0;
            background: white;
        }
        
        .story-content {
            position: relative;
        }
        
        .story-text {
            font-size: 1.1rem;
            color: var(--color-gray);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .quote-card {
            background: linear-gradient(135deg, var(--color-primary-light), #eff6ff);
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
            border-left: 5px solid var(--color-primary);
            position: relative;
        }
        
        .quote-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 4rem;
            color: var(--color-primary);
            opacity: 0.2;
            font-family: serif;
        }
        
        .quote-text {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--color-dark);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Technology Section */
        .tech-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--color-dark);
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--color-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .tech-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--color-gray-light);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        }
        
        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }
        
        .tech-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 2rem;
        }
        
        .tech-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 15px;
        }
        
        .tech-desc {
            color: var(--color-gray);
            line-height: 1.7;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: white;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
        }
        
        .stat-value {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--color-gray);
            font-weight: 600;
        }
        
        /* Pledge Section */
        .pledge-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .pledge-content {
            position: relative;
            z-index: 2;
        }
        
        .pledge-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .pledge-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: white;
        }
        
        .pledge-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .pledge-features li {
            margin-bottom: 20px;
            padding-left: 40px;
            position: relative;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .pledge-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            width: 30px;
            height: 30px;
            background: var(--color-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: bold;
        }
        
        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: #f8fafc;
        }
        
        .team-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .team-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
        }
        
        .team-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 5px;
        }
        
        .team-role {
            color: var(--color-primary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .team-desc {
            color: var(--color-gray);
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-value {
                font-size: 2.5rem;
            }
            
            .quote-card {
                padding: 30px 25px;
            }
            
            .tech-card {
                margin-bottom: 30px;
            }
        }

/* about us style ends here */

/* contact css starts here */

 /* Hero Section */
        .contact-hero {
            background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: var(--color-secondary);
            color: #000;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #e0f2fe;
            max-width: 600px;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: #f8fafc;
        }
        
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--color-gray-light);
        }
        
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .contact-method {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--color-gray-light);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-method::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        }
        
        .contact-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }
        
        .contact-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 15px;
        }
        
        .contact-detail {
            font-size: 1.1rem;
            color: var(--color-gray);
            margin-bottom: 10px;
        }
        
        .contact-subdetail {
            font-size: 0.95rem;
            color: var(--color-gray);
            opacity: 0.8;
        }
        
        /* Office Hours */
        .office-hours {
            background: var(--color-primary-light);
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
            border-left: 4px solid var(--color-primary);
        }
        
        .hours-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 20px;
        }
        
        .hours-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .day {
            font-weight: 600;
            color: var(--color-dark);
        }
        
        .time {
            color: var(--color-gray);
        }
        
        /* Map Section */
        .map-section {
            padding: 80px 0;
            background: white;
        }
        
        .map-placeholder {
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            border-radius: 16px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-gray);
            font-size: 1.1rem;
        }
        
        .map-icon {
            font-size: 3rem;
            color: var(--color-primary);
            margin-bottom: 20px;
        }
        
        /* Support Section */
        .support-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }
        
        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .support-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--color-gray-light);
            transition: all 0.3s ease;
        }
        
        .support-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .support-icon {
            width: 60px;
            height: 60px;
            background: var(--color-primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--color-primary);
            font-size: 1.5rem;
        }
        
        .support-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 10px;
        }
        
        .support-desc {
            color: var(--color-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .contact-hero {
                padding: 80px 0 60px;
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .contact-card {
                padding: 30px 25px;
            }
            
            .contact-methods {
                grid-template-columns: 1fr;
            }
        }

/* contact css ends here */


/* content css starts here */

.content-section {
            
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .tagline {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .main-heading {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--color-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .intro-text {
            font-size: 1.2rem;
            color: var(--color-gray);
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--color-gray-light);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.5rem;
        }
        
        .benefit-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 15px;
        }
        
        .benefit-text {
            color: var(--color-gray);
            line-height: 1.7;
        }
        
        .weekly-deals {
            background: linear-gradient(135deg, var(--color-primary-light), #eff6ff);
            border-radius: 20px;
            padding: 50px 40px;
            margin: 60px 0;
            text-align: center;
           
        }
        
        .deals-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 20px;
        }
        
        .deals-text {
            font-size: 1.1rem;
            color: var(--color-gray);
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .newsletter-btn {
            background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary));
            color: #000;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 10px;
            border: none;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
        }
        
        .features-section {
            margin: 60px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 25px;
        }
        
        .feature-item {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
         
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature-title svg {
            color: var(--color-primary);
        }
        
        .feature-text {
            color: var(--color-gray);
            line-height: 1.6;
        }
        
        .trust-section {
            background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
            color: white;
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            margin: 60px 0;
        }
        
        .trust-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--color-secondary);
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #e0f2fe;
        }
        
        .trust-text {
            font-size: 1.1rem;
            color: #e0f2fe;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .final-cta {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: #f8fafc;
            border-radius: 16px;
        }
        
        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 20px;
        }
        
        .cta-btn {
            background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary));
            color: #000;
            font-weight: 700;
            padding: 15px 40px;
            border-radius: 12px;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
        }
        
        @media (max-width: 768px) {
            .main-heading {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .trust-stats {
                gap: 20px;
            }
            
            .stat-value {
                font-size: 2rem;
            }
        }







/* content css ends here */


/* cookie banner styles */

/* ═══════════════════════════════════════════
   Cookie Consent — color tokens
═══════════════════════════════════════════ */
:root {
  --color-main-400:#00509d;
  --color-main-500:#00509d;
  --color-main-600:#003973;
  --color-main-700:#002651;
  --color-main2-400:#fdc500;
  --color-main2-500:#fdc500;
}

/* ── Keyframes ─────────────────────────── */
@keyframes banner-in {
  from { transform: translateY(110%) scale(.97); opacity:0; }
  to   { transform: translateY(0)    scale(1);   opacity:1; }
}
@keyframes overlay-in  { from{opacity:0} to{opacity:1} }
@keyframes toast-in {
  0%   { opacity:0; transform:translateX(-50%) translateY(16px) scale(.9); }
  60%  { opacity:1; transform:translateX(-50%) translateY(-4px) scale(1.02); }
  100% { opacity:1; transform:translateX(-50%) translateY(0)    scale(1); }
}
@keyframes toast-out {
  from { opacity:1; transform:translateX(-50%) translateY(0); }
  to   { opacity:0; transform:translateX(-50%) translateY(-12px); }
}
@keyframes prefs-open {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes shimmer-bar {
  0%   { background-position:-200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes cookie-bounce {
  0%,100% { transform:rotate(-8deg) scale(1);   }
  50%     { transform:rotate( 8deg) scale(1.12); }
}

/* ── Overlay ───────────────────────────── */
.cookie-overlay {
  display:none;
  position:fixed;inset:0;
  background:rgba(0,57,115,.18);
  backdrop-filter:blur(3px);
  -webkit-backdrop-filter:blur(3px);
  z-index:9998;
  animation:overlay-in .35s ease forwards;
}
.cookie-overlay.active { display:none; }

/* ── Banner ────────────────────────────── */
.cookie-banner {
  display:none;
  position:fixed;
  bottom:24px; left:50%;
  transform:translateX(-50%);
  width: min(540px, calc(100vw - 32px));
  background:#fff;
  border-radius:20px;
  box-shadow:
    0 24px 60px rgba(0,57,115,.22),
    0  6px 18px rgba(0,57,115,.12),
    0  0   0 1.5px var(--color-main-400);
  overflow:hidden;
  z-index:9999;
  font-family:'Segoe UI', sans-serif;
}
.cookie-banner.active {
  display:block;
  animation:banner-in .5s cubic-bezier(.34,1.38,.64,1) forwards;
}
.cookie-banner.closing {
  animation:banner-in .35s cubic-bezier(.55,.06,.68,.19) reverse forwards;
}

/* accent shimmer bar */
.cookie-accent-bar {
  height:5px;
  background: linear-gradient(
    90deg,
    var(--color-main-600) 0%,
    var(--color-main-400) 30%,
    var(--color-main2-500) 50%,
    var(--color-main-400) 70%,
    var(--color-main-600) 100%
  );
  background-size:200% 100%;
  animation:shimmer-bar 3s linear infinite;
}

.cookie-inner {
  padding:22px 24px 22px;
}

/* ── Header ────────────────────────────── */
.cookie-header {
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:12px;
}

.cookie-icon {
  width:48px; height:48px;
  border-radius:14px;
  background:var(--color-main-600);
  color:var(--color-main2-500);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  animation:cookie-bounce 3.5s ease-in-out infinite;
}

.cookie-title {
  margin:0 0 2px;
  font-size:1.08rem;
  font-weight:800;
  color:var(--color-main-700);
  letter-spacing:-.01em;
}
.cookie-subtitle {
  margin:0;
  font-size:.75rem;
  color:#64748b;
  font-weight:500;
}

/* ── Body ──────────────────────────────── */
.cookie-body {
  font-size:.82rem;
  line-height:1.6;
  color:#475569;
  margin:0 0 14px;
}
.cookie-link {
  color:var(--color-main-500);
  font-weight:700;
  text-decoration:none;
  border-bottom:1.5px solid var(--color-main2-400);
  transition:color .2s;
}
.cookie-link:hover { color:var(--color-main-700); }

/* ── Toggle button ─────────────────────── */
.cookie-toggle-btn {
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:none;
  border:1.5px solid var(--color-main-400);
  color:var(--color-main-600);
  font-size:.78rem;
  font-weight:700;
  padding:5px 12px;
  border-radius:100px;
  cursor:pointer;
  transition:background .2s, color .2s;
  margin-bottom:0;
}
.cookie-toggle-btn svg {
  transition:transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cookie-toggle-btn.open svg { transform:rotate(180deg); }
.cookie-toggle-btn:hover {
  background:var(--color-main-400);
  color:#fff;
}

/* ── Preferences panel ─────────────────── */
.cookie-prefs {
  display:none;
  flex-direction:column;
  gap:2px;
  margin-top:12px;
  border:1.5px solid #e2e8f0;
  border-radius:14px;
  overflow:hidden;
}
.cookie-prefs.open {
  display:flex;
  animation:prefs-open .3s ease forwards;
}

.cookie-pref-item {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:11px 14px;
  cursor:pointer;
  background:#f8fafc;
  border-bottom:1px solid #e2e8f0;
  transition:background .18s;
  gap:12px;
}
.cookie-pref-item:last-child { border-bottom:none; }
.cookie-pref-item:hover { background:#f1f5f9; }
.cookie-pref-required { opacity:.7; cursor:default; }

.cookie-pref-info { flex:1; }
.cookie-pref-name {
  display:block;
  font-size:.82rem;
  font-weight:700;
  color:var(--color-main-700);
}
.cookie-pref-desc {
  display:block;
  font-size:.72rem;
  color:#64748b;
  margin-top:1px;
}

/* ── Toggle switches ───────────────────── */
.cookie-switch {
  position:relative;
  width:40px; height:22px;
  border-radius:100px;
  background:#cbd5e1;
  flex-shrink:0;
  transition:background .25s;
  cursor:pointer;
}
.cookie-switch--on,
.cookie-switch[aria-checked="true"] {
  background:var(--color-main-500);
}
.cookie-pref-required .cookie-switch--on {
  background:var(--color-main-400);
  cursor:not-allowed;
}
.cookie-switch-thumb {
  position:absolute;
  top:3px; left:3px;
  width:16px; height:16px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 1px 4px rgba(0,0,0,.2);
  transition:transform .25s cubic-bezier(.34,1.56,.64,1);
}
.cookie-switch[aria-checked="true"] .cookie-switch-thumb,
.cookie-switch--on .cookie-switch-thumb {
  transform:translateX(18px);
}

/* ── Action buttons ────────────────────── */
.cookie-actions {
  display:flex;
  gap:8px;
  margin-top:18px;
  flex-wrap:wrap;
}
.cookie-btn {
  flex:1;
  min-width:100px;
  padding:10px 14px;
  border-radius:100px;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.02em;
  cursor:pointer;
  border:2px solid transparent;
  transition:transform .2s cubic-bezier(.34,1.56,.64,1),
             box-shadow .2s ease,
             background .2s, color .2s;
}
.cookie-btn:hover  { transform:translateY(-2px); }
.cookie-btn:active { transform:scale(.97); }

.cookie-btn--decline {
  background:#f1f5f9;
  color:#475569;
  border-color:#e2e8f0;
}
.cookie-btn--decline:hover {
  background:#e2e8f0;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.cookie-btn--custom {
  background:#fff;
  color:var(--color-main-600);
  border-color:var(--color-main-400);
}
.cookie-btn--custom:hover {
  background:var(--color-main-50, #e6edf6);
  box-shadow:0 4px 14px rgba(0,80,157,.15);
}

.cookie-btn--accept {
  background:var(--color-main-600);
  color:var(--color-main2-500);
  border-color:var(--color-main-600);
  position:relative;
  overflow:hidden;
}
.cookie-btn--accept::after {
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,.25) 50%,transparent 60%);
  background-size:200% 100%;
  animation:shimmer-bar 2.5s linear infinite;
}
.cookie-btn--accept:hover {
  background:var(--color-main-500);
  box-shadow:0 6px 20px rgba(0,57,115,.35);
}

/* ── Toast ─────────────────────────────── */
.cookie-toast {
  display:none;
  position:fixed;
  bottom:32px; left:50%;
  transform:translateX(-50%);
  background:var(--color-main-600);
  color:var(--color-main2-500);
  font-size:.82rem;
  font-weight:700;
  padding:10px 20px;
  border-radius:100px;
  gap:8px;
  align-items:center;
  box-shadow:0 8px 28px rgba(0,57,115,.35);
  z-index:10000;
  white-space:nowrap;
}
.cookie-toast.show {
  display:flex;
  animation:toast-in .4s cubic-bezier(.34,1.56,.64,1) forwards;
}
.cookie-toast.hide {
  animation:toast-out .3s ease forwards;
}

/* cookie banner styles */