@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))}

    .content-box {
    /* Reset and base styles */
    color: var(--color-dark);
   
    line-height: 1.6;
}

/* Headings */
.content-box h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 2.5rem 0 1.5rem 0;
    color: var(--color-dark);
    position: relative;
    padding-bottom: 1rem;
}

.content-box h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.content-box h2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 2.2rem 0 1.2rem 0;
    color: var(--color-dark);
    position: relative;
    padding-left: 1.5rem;
}

.content-box h2::before {
    content: '';
    position: absolute;
    left: 0;
    top:0;
    width: 6px;
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 3px;
}

.content-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 1.8rem 0 1rem 0;
    color: var(--color-dark);
}

.content-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 1.5rem 0 0.8rem 0;
    color: var(--color-primary);
}

.content-box h5 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 1.3rem 0 0.6rem 0;
    color: var(--color-main-600);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.content-box h6 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 1.1rem 0 0.5rem 0;
    color: var(--color-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Paragraphs */
.content-box p {
   
    line-height: 1.7;
    margin: 1.2rem 0;
    color: var(--color-gray);
}

.content-box p:first-child {
    margin-top: 0;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* Links */
.content-box a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.content-box a:hover {
    color: var(--color-main-600);
    border-bottom-color: var(--color-secondary);
}

.content-box a:focus {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Lists */
.content-box ul,
.content-box ol {
    margin: 1.5rem 0;
    padding-left: 1.4rem;
}

.content-box li {
    margin: 0.8rem 0;
    padding-left: 0.5rem;
    line-height: 1.6;
    color: var(--color-gray);
}

/* Unordered List specific */
.content-box ul {
    list-style: none;
}

.content-box ul li {
    position: relative;
}

.content-box ul li::before {
    content: '';
    position: absolute;
    left: -0.8rem;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

/* Ordered List specific */
.content-box ol {
    list-style: none;
    counter-reset: item;
}

.content-box ol li {
    counter-increment: item;
    position: relative;
}

.content-box ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: -1.8rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Nested Lists */
.content-box ul ul,
.content-box ol ol,
.content-box ul ol,
.content-box ol ul {
    margin: 0.5rem 0 0.5rem 1.5rem;
}

.content-box ul ul li::before {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary-light);
}

.content-box ol ol li::before {
    content: counters(item, ".") " ";
}

/* Special emphasis paragraphs */
.content-box p.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.6;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--color-primary-light);
}

.content-box p.small {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.5;
    margin: 1rem 0;
}

/* Utility classes */
.content-box .text-primary {
    color: var(--color-primary);
    font-weight: 600;
}

.content-box .text-secondary {
    color: var(--color-secondary);
    font-weight: 600;
}

.content-box .text-muted {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-box h1 {
        font-size: 2.2rem;
        margin: 2rem 0 1.2rem 0;
    }
    
    .content-box h2 {
        font-size: 1.8rem;
        margin: 1.8rem 0 1rem 0;
    }
    
    .content-box h3 {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .content-box h4 {
        font-size: 1.3rem;
    }
    
    .content-box h5 {
        font-size: 1.1rem;
    }
    
    .content-box h6 {
        font-size: 1rem;
    }
    
    .content-box p {
        font-size: 1rem;
    }
    
    .content-box ul,
    .content-box ol {
        padding-left: 1.5rem;
    }
}

@media (max-width: 576px) {
    .content-box h1 {
        font-size: 1.8rem;
    }
    
    .content-box h2 {
        font-size: 1.5rem;
    }
    
    .content-box h3 {
        font-size: 1.3rem;
    }
}

nav ul li a { color: #fff!important; padding:0px 20px!important}

.nav-call { display: flex; gap:10px; align-items: center; justify-content: center; text-decoration: none; line-height: 1; border:1px solid var(--color-main-400); border-radius: 100px; padding:4px 4px 4px 10px; background: var(--color-main2-500); color: #333;}
.nav-call-text {}
.nav-call-text small { display: block; }
.nav-call-text span { display: block; font-weight: 700;}
.nav-call-img {}
.nav-call-img img {border: 2px solid #00b646; border-radius: 100px;}
.menu-trigger { background: #ffffff23; border:0px; color: #fff; padding:5px 10px; border-radius: 4px;}

.mob-menu {padding:0px;}
.mob-menu li { list-style:none; padding:10px; border-bottom:1px solid #eee; }
.mob-menu li a { color: var(--color-dark); font-weight: 600; text-decoration: none; }


/* Identity Section */
.identity-section {
    padding: 80px 0;
}

.identity-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.identity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.identity-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.identity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.identity-card p {
    color: #666;
    line-height: 1.6;
}

.mission-card .identity-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.vision-card .identity-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.goal-card .identity-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Company Section */
.company-section {
    padding: 80px 0;
}

.services-list {
    margin-top: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #555;
}

.about-feature-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.history-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.history-badge {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.history-badge .year {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.history-badge .foundation {
    display: block;
    font-size: 1.2rem;
    opacity: 0.9;
}

.history-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.history-milestone {
    display: flex;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.milestone-dot {
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 5px;
}

.milestone-content {
    flex: 1;
}

/* Transparency Section */
.transparency-section {
    padding: 80px 0;
}

.transparency-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.transparency-card:hover {
    transform: translateY(-5px);
}

.transparency-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.transparency-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.transparency-card p {
    color: #666;
    line-height: 1.6;
}




.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 i {
            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-section {
    background: linear-gradient(135deg, var(--color-main-50) 0%, var(--color-main-100) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(0, 80, 157, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-main-600) 0%, var(--color-main-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-main2-400), var(--color-main2-600));
    border-radius: 2px;
}

.faq-subtitle {
    color: var(--color-main-700);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Modern Accordion Styling */
.accordion {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 41, 81, 0.1);
    border: 1px solid var(--color-main-100);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-main-50);
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item:hover {
    background: var(--color-main-50);
}

.accordion-button {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-main-800);
    background: transparent;
    padding: 1.5rem 2rem;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 3rem;
}

.accordion-button:not(.collapsed) {
    background: var(--color-main-50);
    color: var(--color-main-700);
    box-shadow: none;
}

.accordion-button::after {
    content: '+';
    background-image: none;
    font-size: 1.5rem;
    font-weight: 300;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-main-400);
    transform: none;
    position: absolute;
    right: 2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
    color: var(--color-main-600);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0px rgba(0, 80, 157, 0.1);
    border-color: var(--color-main-200);
}

.accordion-button:hover {
    color: var(--color-main-600);
    background: var(--color-main-50);
}

.accordion-body {
    font-size: 1rem;
    color: var(--color-main-700);
    background: transparent;
    padding: 1rem 0 1.5rem 0;
    line-height: 1.7;
    border-top: 1px solid var(--color-main-100);
    margin: 0 2rem;
}

.accordion-collapse.show {
    background: var(--color-main-50);
}


/* Responsive Design */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .accordion-button {
        padding: 1.25rem 1.5rem;
        padding-right: 2.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 0 1.5rem 1.25rem 1.5rem;
        margin: 0 1.5rem;
    }
    
    .accordion-button::after {
        right: 1.5rem;
    }
   
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.75rem;
    }
    
    .accordion-button {
        padding: 1rem 1.25rem;
        padding-right: 2.25rem;
    }
    
    .accordion-body {
        padding: 0 1.25rem 1rem 1.25rem;
        margin: 0 1.25rem;
    }
}.testimonials-section {
   
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 80, 157, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(253, 197, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-main-600) 0%, var(--color-main-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-main2-400), var(--color-main2-600));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--color-main-700);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--color-main-100);
    box-shadow: 0 4px 20px rgba(0, 41, 81, 0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--color-main-50);
    line-height: 1;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 41, 81, 0.12);
    border-color: var(--color-main-200);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--color-main-700);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-style: italic;
}

/* User Info */
.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 41, 81, 0.1);
}

.user-details h5 {
    color: var(--color-main-800);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.user-details p {
    color: var(--color-main-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Rating Stars */
.rating {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.rating i {
    color: var(--color-main2-400);
    font-size: 1.1rem;
}

/* Carousel Navigation */
.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 41, 81, 0.15);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -24px;
}

.carousel-control-next {
    right: -24px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--color-main-50);
    box-shadow: 0 6px 20px rgba(0, 41, 81, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--color-main-600);
    mask-size: 60%;
    mask-repeat: no-repeat;
    mask-position: center;
    width: 20px;
    height: 20px;
}

.carousel-control-prev-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.carousel-indicators {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-main-200);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--color-main-400);
    width: 30px;
    border-radius: 5px;
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--color-main-600) 0%, var(--color-main-400) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.stats-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-main2-400);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .stats-banner {
        padding: 1.5rem;
        margin-top: 3rem;
    }
    
    .stats-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .user-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .user-details h5 {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* HERO SECTION */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-main-400), var(--color-main-600));
    color: #fff;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

/* BADGE */
.hero-badge {
    display: inline-block;
    background: var(--color-main2-400);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* TITLE */
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
}
.hero-title span {
    color: var(--color-main2-400);
}

/* SUBTITLE */
.hero-subtitle {
    margin-top: 15px;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* CTA BUTTON */
.hero-btn {
    background: var(--color-main2-400);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    color: #000;
    transition: .3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.hero-btn:hover {
    background: var(--color-main2-500);
}

/* IMAGE */
.hero-img {
    max-width: 90%;
    animation: float 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-section {
        padding: 60px 0;
    }
}.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: #fff;
            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 i {
            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 i {
            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;
        }
        
  
        /* 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, #024eb1, #053779);
            -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-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%);
        }
        
        
        
        @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;
        }
        
    
        
        .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);
        }
        
       
 
       
        
        @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 */