﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #f0f2f5;
}



.page-layout {
    display: flex;
    max-width: 1600px;
    margin: 20px auto;
    gap: 20px;
    padding: 0 20px;
}

:root {
    --primary: #1A2382;
    --primary-light: #eef2ff;
    --bg-body: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.8);
}

.sidebar {
    width: 280px;
    padding: 24px 16px;
    background: var(--bg-body);
    height: 100vh;
}

.menu-group {
    backdrop-filter: blur(10px);
    /* Glass effect */
    background-color: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 20px;
    padding: 6px;
    margin-bottom: 20px;
}

.menu-item {
    position: relative;
    /* For the active indicator */
    padding: 14px 16px;
    display: flex;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 4px;
}

    /* Icon Styling */
    .menu-item i {
        font-size: 18px;
        width: 24px;
        margin-right: 12px;
        transition: transform 0.3s ease;
    }

    /* Hover State */
    .menu-item:hover {
        background: #ffffff;
        color: var(--primary);
        transform: translateX(4px);
        /* Subtle slide effect */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

        .menu-item:hover i {
            transform: scale(1.1);
        }

    /* Active State with Side Indicator */
    .menu-item.active {
        background: var(--primary-light);
        color: var(--primary);
    }

        .menu-item.active::before {
            content: "";
            position: absolute;
            left: -6px;
            height: 20px;
            width: 4px;
            background: #433E7E !important;
            border-radius: 0 4px 4px 0;
        }

        .menu-item.active i {
            color: var(--primary);
        }

    /* Special "Education" Item Gradient */
    .menu-item.education {
        background: linear-gradient(135deg, #3E3A7A 0%, #3E3A7A 100%);
        color: white !important;
        margin-top: 10px;
    }

        .menu-item.education i {
            color: white !important;
        }

        .menu-item.education:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

@media (max-width: 768px) {
    .page-layout {
        flex-direction: column;
        /* Stack sidebar on top of content */
        padding: 10px;
        margin: 0;
    }

    .sidebar {
        width: 100%;
        /* Take full width */
        height: auto;
        /* Let it grow with content */
        padding: 10px 0;
        background: transparent;
        /* Cleaner look for mobile */
    }

    .menu-group {
        margin-bottom: 12px;
        border-radius: 15px;
        /* Slightly tighter corners for mobile */
    }

    .menu-item {
        padding: 12px;
    }

        /* Hide the side "active" bar on mobile to save space */
        .menu-item.active::before {
            display: none;
        }
}

/* Main Content */
.content-area {
    flex: 1;
    min-width: 0;
    /* Ye content ko container ke andar hi rakhega */
}

/* ========== TOP ROW LAYOUT ========== */
.top-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    /* ensures responsiveness on smaller screens */
}

/* ========== CARD STYLING ========== */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

/* ========================
   SERVICES CARD GRID - MODERN UI
   ======================== */
.services-card {
    flex: 2.5;
}

    .services-card h3 {
        font-size: 18px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 20px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.service-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 23px 33px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

    .service-item i {
        font-size: 32px;
        color: #3e4684;
        margin-bottom: 10px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .service-item p {
        font-size: 14px;
        color: #3e4684;
        font-weight: 500;
        margin: 0;
        transition: color 0.3s ease;
    }

    /* Hover effect */
    .service-item:hover {
        background-color: #f0f3ff;
        transform: translateY(-6px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

        .service-item:hover i {
            color: #3E3A7A;
            /* primary accent color */
            transform: scale(1.2) rotate(5deg);
        }

        .service-item:hover p {
            color: #3E3A7A;
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .service-item {
        padding: 18px 8px;
        min-height: 100px;
    }

        .service-item i {
            font-size: 28px;
            margin-bottom: 6px;
        }

        .service-item p {
            font-size: 13px;
        }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ========================
   NEWS PANEL - MODERN UI
   ======================== */
.news-panel {
    flex: 1;
    background: #3e3a7a;
    /* dark purple-blue */
    border-radius: 16px;
    padding: 25px 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .news-panel h3 {
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.5px;
    }

/* News grid inside the panel */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
}

/* Individual news logo boxes */
.news-logo {
    background: #fff;
    height: 96px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

    /* News logo images */
    .news-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    /* Hover effect */
    .news-logo:hover {
        transform: translateY(-5px) scale(1.08);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        filter: brightness(1.1);
    }

        .news-logo:hover img {
            transform: scale(1.05);
        }

/* ========================
   RESPONSIVE ADJUSTMENTS
   ======================== */
@media (max-width: 768px) {
    .news-panel {
        padding: 20px 10px;
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .news-logo {
        height: 70px;
        border-radius: 12px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .news-panel h3 {
        font-size: 16px;
    }
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 768px) {
    .top-row {
        flex-direction: column;
        gap: 15px;
    }

    .news-panel {
        width: 100%;
        padding: 15px;
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .news-logo {
        height: 60px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-panel h3 {
        font-size: 16px;
        text-align: center;
    }
}

/* Gift Cards */
.section-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.see-all {
    background: #ff7043;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
}


.gift-item {
    background: #eef2ff;
    padding: 30px 15px 15px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: black;
    color: white;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
}

.logo-placeholder {
    background: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 12px;
}

/* Remove all overflow-x: auto, scroll-snap-type, flex display from .gift-slider-container */
.gift-slider-container {
    width: 100%;
    padding: 10px 0;
}

/* Gift item size for Swiper */
.gift-item {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.gift-slider-container::-webkit-scrollbar {
    display: none;
}



/* Image Container - Essential for keeping logos aligned */
.image-container {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

    .image-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        /* Prevents logos from stretching */
    }

/* Badge Styling */
.badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #eafff5;
    color: #27ae60;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
}

/* RESPONSIVE BEHAVIOR */
@media (max-width: 480px) {
    .gift-item {
        flex: 0 0 140px;
        /* Slightly smaller cards on mobile */
    }

    .gift-slider-container {
        gap: 12px;
        padding-left: 15px;
        /* Adds space so cards don't touch screen edge */
    }
}

/* 1. Header Styling */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}


/* Hide scrollbar for Chrome/Safari */
.gift-slider-container::-webkit-scrollbar {
    display: none;
}

.gift-section {
    padding: 15px;
}

.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    width: 180px;
    /* card width */
    flex-shrink: 0;
    /* stops shrinking */
}

.gift-item {
    width: 250px;
    /* Fixed width desktop par overflow kar sakti hai */
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.image-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* 4. Image Handling */
.image-container {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

    .image-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        /* Keeps logo proportions perfect */
    }

/* 5. Badge & Text */
.badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e6f7ef;
    color: #27ae60;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
}

.gift-item p {
    margin: 5px 0 0;
    font-size: 14px;
    font-weight: 500;
}

/* 1. Header Styling */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}



/* Hide scrollbar for Chrome/Safari */
.gift-slider-container::-webkit-scrollbar {
    display: none;
}

/* 3. Individual Card Styling */
.gift-item {
    flex: 0 0 160px;
    /* FIXES the width so they don't shrink */
    scroll-snap-align: start;
    /* Snap point */
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* 4. Image Handling */
.image-container {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

    .image-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        /* Keeps logo proportions perfect */
    }

/* 5. Badge & Text */
.badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e6f7ef;
    color: #27ae60;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
}

.gift-item p {
    margin: 5px 0 0;
    font-size: 14px;
    font-weight: 500;
}

.gift-section {
    padding: 15px;
}

.swiper {
    width: 100%;
    padding: 10px 0;
}

.swiper-slide {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.image-container {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

    .image-container img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
    }

.badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #000;
    color: #fff;
    font-size: 9px;
    padding: 3px 7px;
    border-radius: 4px;
    z-index: 10;
}

/* Use this instead of .gift-grid */
.gift-slider-container {
    display: flex;
    /* Horizontal layout */
    flex-wrap: nowrap;
    /* Stops cards from moving to a new line */
    overflow-x: auto;
    /* Enables the slide/scroll */
    gap: 20px;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Hides scrollbar for Firefox */
    -webkit-overflow-scrolling: touch;
}

    /* Hide scrollbar for Chrome/Safari */
    .gift-slider-container::-webkit-scrollbar {
        display: none;
    }

.gift-item {
    flex: 0 0 180px;
    /* Forces each card to stay 180px wide */
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
}

/* Container - Matches your dashboard theme */
.about-container {
    /*max-width: 1200px;*/
    padding: 15px 30px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

    .about-header h3 {
        font-size: 24px;
        color: #1a237e;
        font-weight: 700;
    }

/* Blocks of Content */
.content-block {
    margin-bottom: 30px;
}

.sub-heading {
    font-size: 19px;
    color: #3e3a7a;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-content p {
    line-height: 1.7;
    color: #555;
    font-size: 15px;
}

/* Bullet Points */
.info-list {
    list-style: none;
    padding-left: 0;
}

    .info-list li {
        margin-bottom: 10px;
        padding-left: 20px;
        position: relative;
        font-size: 14px;
        color: #444;
    }

        .info-list li::before {
            content: "âœ”";
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
        }

/* Services Small Grid */
.services-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.text-item h5 {
    color: #1a237e;
    margin-bottom: 5px;
    font-size: 16px;
}

/* Legitimacy Box - Subtle highlight */
.legit-box {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3e3a7a;
}

    .legit-box h4 {
        margin-bottom: 8px;
        color: #1a237e;
    }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .about-container {
        padding: 20px;
        margin: 10px;
    }

    .about-header h3 {
        font-size: 20px;
    }

    .services-text-grid {
        grid-template-columns: 1fr;
    }
}

.popular-section {
    background-color: #fff;
    padding: 29px 48px;
    border-top: 1px solid #eee;
    font-family: sans-serif;
    border-radius: 10px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    color: #ff5722;
    /* Matches EaseMyDeal Orange */
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-row {
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 1.8;
    color: #444;
}

    .link-row strong {
        color: #333;
        margin-right: 8px;
        min-width: 160px;
        /* Aligns labels on desktop */
    }

.link-items {
    flex: 1;
}

    .link-items a {
        text-decoration: none;
        color: #666;
        transition: color 0.2s;
        white-space: nowrap;
        /* Prevents single words from splitting */
    }

        .link-items a:hover {
            color: #ff5722;
            text-decoration: underline;
        }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .link-row {
        flex-direction: column;
        /* Stack label above links on mobile */
    }

        .link-row strong {
            margin-bottom: 5px;
            font-size: 14px;
            color: #000;
        }

    .link-items {
        line-height: 2.2;
        /* Better spacing for touch targets */
    }
}

/* Container styling */
.offers-section {
    padding: 20px;
    font-family: Arial, sans-serif;
}

.section-title {
    color: #3b2a6d;
    /* Dark purple from image */
    margin-bottom: 20px;
}

/* Flexbox for Responsiveness */
.offers-container {
    display: flex;
    flex-wrap: wrap;
    /* Allows cards to wrap to the next line */
    gap: 20px;
    /* Space between cards */
    justify-content: space-between;
}

/* Individual Card Styling */
.offer-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    /* This ensures the card maintains a banner shape (like 16:9) */
    aspect-ratio: 16 / 8;
    display: flex;
}

    .offer-card img {
        width: 100%;
        height: 100%;
        display: block;
        /* 'cover' ensures the div is filled, 'top' ensures faces/text aren't cut */
        object-fit: cover;
        object-position: center;
    }

/* Responsive Breakpoint for Mobile */
@media (max-width: 576px) {
    .offer-card {
        flex: 1 1 100%;
        /* Adjusting aspect ratio slightly for mobile if needed */
        aspect-ratio: 16 / 9;
    }

        .offer-card img {
            width: 100%;
            height: 97%;
            display: block;
            object-fit: cover;
            object-position: center;
        }
}

/* General Styling */
.main-footer {
    padding: 40px 5% 0;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 1px solid #eee;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    /* Ensures columns don't get too thin */
    margin-bottom: 30px;
}

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

        .footer-col ul li {
            margin-bottom: 8px;
        }

            .footer-col ul li a {
                text-decoration: none;
                color: #333;
                font-size: 13px;
                font-weight: 600;
            }

/* App Download & Social Section */
.app-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr-code {
    width: 80px;
}

.store-buttons img {
    width: 154px;
    display: block;
    margin-bottom: -9px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

    .social-icons img {
        width: 32px;
    }

/* 1. Main Footer Wrapper */
.main-footer {
    width: 100%;
    background-color: #fff;
}

/* 2. Top Content Area (Centered) */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* 3. The Full-Width Purple Bar */
.footer-bottom-full {
    width: 100%;
    background-color: #3C3475;
    /* Dark purple */
    margin-top: 30px;
}

/* 4. The Centered Container inside the Purple Bar */
.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .footer-bottom-content p {
        color: #ffffff;
        font-size: 14px;
        margin: 0;
        font-weight: bolder;
    }

.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    /* space between icons */
}

    .payment-methods img {
        height: 38px;
        /* increase size */
        width: auto;
        display: inline-block;
    }

/* 5. Responsive Breakpoints */
@media (max-width: 992px) {
    .footer-col {
        flex: 1 1 45%;
        /* Two columns on tablets */
    }
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        /* Stack text and icons on mobile */
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .footer-col {
        flex: 1 1 100%;
        /* One column on small phones */
    }
}

.social-icons a {
    font-size: 20px;
    color: #333;
    margin-right: 12px;
    transition: color 0.3s ease;
}

    .social-icons a:hover {
        color: #3C3475;
        /* change as needed */
    }













/* Container styling */
.gift-card-section {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    /* Container ki width fix rakhega */
    margin: 20px auto;
}

.gift-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.gift-title {
    color: #1a237e;
    font-size: 18px;
    font-weight: bold;
}

.gift-see-all {
    background: #ff7043;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-size: 12px;
}

/* Slider logic */
.gift-main-slider {
    width: 100%;
    overflow: hidden;
    /* Yeh cards ko line se bahar nahi jane dega */
    position: relative;
    padding: 10px 0;
}

.gift-card-item {
    background: #eef2ff;
    /* Light blue color like your image */
    border-radius: 12px;
    padding: 35px 15px 15px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.logo-box {
    background: #fff;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 10px;
}

    .logo-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.brand-name {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

/* Navigation UI */
.custom-nav {
    color: #1a237e !important;
    transform: scale(0.6);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .gift-card-section {
        margin: 10px;
        /* Side margins kam kar diye */
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .gift-header {
        flex-direction: row;
        /* Title aur See All ek hi line mein rahenge */
        align-items: center;
    }

    .gift-title {
        font-size: 16px;
        /* Choti screen par font thoda chota */
    }

    /* Agar aap slider library (jaise Swiper/Slick) use nahi kar rahe 
       aur manual flex use kar rahe hain, toh ye scroll kaam aayega */
    .gift-main-slider {
        display: flex;
        overflow-x: auto;
        /* Touch swipe enable karne ke liye */
        gap: 15px;
        scroll-snap-type: x mandatory;
        /* Smooth snapping */
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
    }

    .gift-card-item {
        min-width: 160px;
        /* Mobile par card ki width fix rakhega scroll ke liye */
        scroll-snap-align: start;
        padding: 25px 10px 10px;
        /* Padding thodi kam ki */
    }

    .logo-box {
        height: 60px;
        /* Mobile par logo box thoda chota */
    }

    /* Hide scrollbar for clean look */
    .gift-main-slider::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 480px) {
    .gift-card-item {
        min-width: 140px;
        /* Chote phones par cards ki width thodi aur kam */
    }

    .brand-name {
        font-size: 12px;
    }

    .discount-badge {
        font-size: 9px;
        padding: 2px 6px;
    }
}








/* Modal UI Fixes */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.modal-box {
    background: #fff;
    width: 100%;
    max-width: 950px;
    /* Thoda wide for better look */
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-flex {
    display: flex;
    width: 100%;
}

/* Form Side Styling */
.form-side {
    flex: 1.2;
    padding: 40px;
    background: #fff;
}

.signup-prompt {
    text-align: right;
    font-size: 13px;
    margin-bottom: 20px;
}

    .signup-prompt a {
        color: #00bcd4;
        font-weight: bold;
        text-decoration: none;
    }

.modal-title {
    color: #000;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 500;
}

.auth-toggle {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

    .auth-toggle label {
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        font-size: 15px;
    }

    .auth-toggle input[type="radio"] {
        accent-color: #f36f21;
    }

.input-container {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: 0.3s;
}

    .input-container:focus-within {
        border-color: #f36f21;
    }

.country-select {
    padding: 12px 15px;
    background: #f9f9f9;
    border-right: 1px solid #ddd;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.input-container input {
    border: none;
    padding: 12px;
    flex: 1;
    outline: none;
    font-size: 16px;
}

.login-btn-submit {
    width: 100%;
    background: #f36f21;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.or-separator {
    text-align: center;
    margin: 20px 0;
    color: #1a237e;
    font-weight: bold;
    position: relative;
}

.google-btn {
    width: 100%;
    background: #fff;
    border: 1px solid #1a237e;
    color: #000;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

    .google-btn img {
        width: 18px;
    }

/* Trust Badges (Match image) */
.trust-badges-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    text-align: center;
}

.trust-item {
    flex: 1;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #777;
    font-size: 18px;
}

.trust-item p {
    font-size: 10px;
    color: #666;
    line-height: 1.3;
    padding: 0 5px;
}

/* Right Promo Side */
.promo-side {
    flex: 1;
    background: #e0fbfb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.promo-content {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.perc-badge {
    background: #00bcd4;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin: -35px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.promo-content p {
    font-size: 14px;
    color: #333;
}

.promo-content span {
    color: #00bcd4;
    font-weight: bold;
    font-size: 18px;
}

.promo-illustration {
    width: 100%;
    max-width: 250px;
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 900px) {
    .promo-side {
        display: none;
    }

    /* Tablet/Mobile par image hide */
    .modal-box {
        max-width: 500px;
    }

    .form-side {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .modal-title {
        font-size: 20px;
    }

    .trust-badges-grid {
        flex-wrap: wrap;
        gap: 15px;
    }

    .trust-item {
        flex: 1 1 100%;
    }

    /* Mobile par badges stack honge */
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 100;
    color: #888;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.modal-box {
    background: #fff;
    width: 100%;
    max-width: 950px;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-flex {
    display: flex;
    width: 100%;
}

/* Form Area */
.form-side {
    flex: 1.3;
    padding: 45px;
}

.signup-prompt {
    text-align: right;
    font-size: 13px;
    margin-bottom: 25px;
}

    .signup-prompt a {
        color: #00bcd4;
        font-weight: bold;
        text-decoration: none;
    }

.modal-title {
    color: #222;
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 500;
}

.auth-toggle {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

    .auth-toggle label {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        font-size: 15px;
    }

    .auth-toggle input[type="radio"] {
        accent-color: #f36f21;
        transform: scale(1.2);
    }

.input-container {
    display: flex;
    border: 1.5px solid #222;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
}

.country-select {
    padding: 12px 15px;
    background: #fff;
    border-right: 1.5px solid #222;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-container input {
    border: none;
    padding: 12px;
    flex: 1;
    outline: none;
    font-size: 16px;
    color: #333;
}

.login-btn-submit {
    width: 100%;
    background: #f36f21;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.or-separator {
    text-align: center;
    margin: 20px 0;
    color: #1a237e;
    font-weight: bold;
    position: relative;
}

    .or-separator::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 42%;
        height: 1px;
        background: #eee;
    }

    .or-separator::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 42%;
        height: 1px;
        background: #eee;
    }

.google-btn {
    width: 100%;
    background: #fff;
    border: 1.5px solid #1a237e;
    color: #000;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

    .google-btn img {
        width: 18px;
    }

/* Trust Icons */
.trust-badges-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    text-align: center;
}

.trust-item {
    flex: 1;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #666;
    font-size: 18px;
}

.trust-item p {
    font-size: 11px;
    color: #777;
    line-height: 1.4;
}

/* Promo Area */
.promo-side {
    flex: 1;
    background: #e1fbfb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.promo-content {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.perc-badge {
    background: #00bcd4;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin: -45px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.promo-content span {
    color: #00bcd4;
    font-weight: bold;
    font-size: 19px;
}

.promo-illustration {
    width: 100%;
    max-width: 280px;
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 900px) {
    .promo-side {
        display: none;
    }

    .modal-box {
        max-width: 500px;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    z-index: 100;
    color: #333;
}

/* Container Layout */
.signup-modal {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Left Section Styles */
.form-section {
    flex: 1;
    padding: 40px 60px;
}

.top-nav {
    text-align: right;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

    .top-nav a {
        color: #00a1b1;
        font-weight: 600;
        text-decoration: none;
    }

.title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 20px;
}

    .input-group label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #4a5568;
        margin-bottom: 8px;
    }

/* Specific Input Styling */
input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.bg-input {
    background-color: #f3f6ff;
    border-color: transparent;
}

.mobile-input-wrapper {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.country-code {
    padding: 12px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

/* Buttons */
.btn-primary {
    width: 100%;
    background-color: #f15a29;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

    .divider::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #edf2f7;
    }

    .divider span {
        background: #fff;
        padding: 0 15px;
        position: relative;
        color: #a0aec0;
        font-size: 14px;
        font-weight: 700;
    }

.btn-google {
    width: 100%;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

    .btn-google img {
        width: 20px;
    }

/* Badges */
.badges-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    text-align: center;
}

.badge p {
    font-size: 10px;
    color: #718096;
    margin-top: 8px;
    line-height: 1.2;
}

.icon {
    width: 45px;
    height: 45px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Right Visual Section */
.visual-section {
    flex: 1;
    background-color: #e8fbf7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.promo-card {
    position: absolute;
    top: 60px;
    left: 40px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 10;
}

.percent-circle {
    background: #1cb3a1;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: bold;
}

.bold-teal {
    color: #1cb3a1;
    font-weight: 800;
    font-size: 14px;
}

.phone-mockup {
    width: 260px;
    height: 480px;
    background: #1a202c;
    border-radius: 40px;
    border: 8px solid #2d3748;
    position: relative;
    overflow: hidden;
}

.screen-content {
    background: white;
    height: 100%;
}

.notch {
    width: 80px;
    height: 20px;
    background: #2d3748;
    margin: 0 auto;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .signup-modal {
        flex-direction: column;
        margin: 10px;
    }

    .visual-section {
        display: none;
        /* Hide illustration on small screens like original UI */
    }

    .form-section {
        padding: 30px 20px;
    }
}



/* Specific Brand Colors */
.bg-ease-orange {
    background-color: #f15a24;
}

.text-ease-cyan {
    color: #00bcd4;
}

.bg-ease-mint {
    background-color: #E6FFFA;
}

/* Input field soft blue background */
.input-field-bg {
    background-color: #f3f6ff;
}

/* Animation for the floating badge */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Hide scrollbar but keep functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.modal-overlay,
.signup-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/*.about-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    color: #333;
}*/

.contact-faq-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-section,
.faq-section {
    flex: 1;
    min-width: 320px;
}

.section-title {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 8px;
}

    .section-title span {
        font-weight: bold;
    }

/* Contact Buttons */
.contact-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-right: 29px;
}

.btn-email {
    background-color: #e74c3c;
    flex: 1.2;
}

.btn-phone {
    background-color: #1A2382;
    flex: 1;
}

/* FAQ Styles */
.faq-item {
    border-left: 4px solid #1A2382;
    padding-left: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.faq-question {
    color: #1A2382;
    font-size: 15px;
    margin-bottom: 8px;
}

.faq-answer {
    line-height: 1.6;
    font-size: 14px;
    color: #555;
}

.see-all {
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* Illustration spacing */
.contact-illustration img {
    max-width: 300px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
    }
}

.see-all {
    color: #3C3475;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
}

#extra-faqs {
    /* Ensures the new items follow the same layout */
    width: 100%;
}

.recharge-dashboard {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.service-nav {
    display: flex;
    justify-content: space-around;
    /* Spread them evenly like the image */
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-item {
    text-align: center;
    /* Removed min-width to allow items to sit closer together */
    cursor: pointer;
    flex-shrink: 0;
}

    .service-item span {
        font-size: 12px;
        color: #555;
        display: block;
        margin-top: 5px;
    }

    .service-item.active span {
        color: #3E3A7A;
        font-weight: bold;
    }

/* Ensure the grid doesn't stretch items unnecessarily */
.main-recharge-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 25px;
    /* Changed to flex-start to let banner find its natural height */
    align-items: flex-start;
}

/* Fix the Radio Buttons to be side-by-side */
.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

    .radio-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        cursor: pointer;
        color: #444;
    }

/* Updated Input Group */
/*.input-group {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
    background: #fff;
    position: relative;
    transition: border-color 0.3s ease;
}*/

.input-group:focus-within {
    border-color: #1A2382
}

.input-group label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
}

.input-group input,
.input-group select {
    border: 1px solid #c9c9c9;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 5px;
}

/* Recharge Card */
.recharge-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Banner Styling - FIXED TO PREVENT CUTTING */
.promo-banner {
    padding: 0;
    width: 100%;
    /* Removed height: 100% to prevent forced stretching */
}

    .promo-banner img {
        width: 100%;
        height: auto;
        /* Maintains natural aspect ratio */
        border-radius: 15px;
        display: block;
        /* Use contain if you want zero cropping, 
       or remove object-fit entirely with height: auto */
        object-fit: contain;
    }

.btn-proceed {
    width: 100%;
    background: #ff7f50;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .btn-proceed:hover {
        background: #ff6a33;
    }

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .main-recharge-grid {
        grid-template-columns: 1fr;
        /* Stacks vertically on tablet/mobile */
        gap: 20px;
    }

    .promo-banner {
        order: 2;
        /* Put banner below form on mobile */
    }
}
