        /* --- RESET & VARIABLES --- */

        /* =========================================================
   EXTRA RESPONSIVE ENHANCEMENTS (NON-DESTRUCTIVE)
   ========================================================= */

           /* --- CORE VARIABLES --- */
        :root {
            --primary: #002970;
            --secondary: #00baf2;
            --accent: #5135ff;
            --dark: #0f172a;
            --light: #f8fafc;
            --white: #ffffff;
            --gray: #64748b;
            --card-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
        }

        /* --- RESET --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Outfit', 'Segoe UI', sans-serif;
            color: var(--dark);
            background-color: var(--white);
            line-height: 1.6;
        }

        /* --- CONTAINER & UTILS --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 100px 0;
        }

        /* --- INTRO SECTION STYLES --- */
        .intro-section {
            background-color: var(--light);
            overflow: hidden; /* Prevents overflow on small screens */
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Desktop: Side by Side */
            gap: 60px;
            align-items: flex-start;
        }

        /* Text Styles */
        .intro-text h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--primary);
            line-height: 1.2;
            font-weight: 700;
        }

        .intro-text p {
            margin-bottom: 20px;
            color: var(--gray);
            text-align: justify; /* Keeps paragraphs neat */
            font-size: 1.05rem;
        }

        .intro-text strong {
            color: var(--primary);
            font-weight: 600;
        }

        /* Stats Grid Styles */
        .intro-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Always 2 columns for stats */
            gap: 20px;
            position: sticky;
            top: 40px; /* Sticks on desktop */
        }

        .stat-card {
            background: var(--white);
            padding: 30px 20px; /* Top/Bottom 30, Left/Right 20 */
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            text-align: center;
            border-bottom: 4px solid var(--secondary);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            display: block;
            margin-bottom: 5px;
            line-height: 1;
        }

        .stat-card p {
            font-size: 0.95rem;
            color: var(--gray);
            font-weight: 500;
            margin: 0;
        }

        /* --- ANIMATION CLASSES --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease-out forwards;
        }
        
        /* Stagger animations */
        .stagger-1 { animation-delay: 0.2s; }
        .stagger-2 { animation-delay: 0.4s; }
        .stagger-3 { animation-delay: 0.6s; }
        .stagger-4 { animation-delay: 0.8s; }

        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }


        /* =========================================================
           RESPONSIVE MEDIA QUERIES
           ========================================================= */

        /* --- TABLET & SMALL LAPTOP (992px and down) --- */
        @media (max-width: 992px) {
            .section-padding {
                padding: 70px 0;
            }

            /* STACK LAYOUT: Text Top, Stats Bottom */
            .intro-grid {
                grid-template-columns: 1fr; /* Stack vertically */
                gap: 40px;
            }

            /* Disable Sticky on mobile/tablet as it breaks flow */
            .intro-stats {
                position: static; 
                max-width: 700px; /* Keep stats from getting too wide */
                margin: 0 auto; /* Center stats */
            }
        }

        /* --- MOBILE (768px and down) --- */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .intro-text h2 {
                font-size: 2rem; /* Smaller Heading */
                text-align: left;
            }

            .intro-text p {
                text-align: left; /* Justify looks bad on mobile often, left is safer */
                font-size: 1rem;
            }

            /* Adjust Stats for Mobile */
            .intro-stats {
                gap: 15px; /* Smaller gap */
                width: 100%;
            }

            .stat-card {
                padding: 20px 15px; /* Reduce padding to fit content */
            }

            .stat-number {
                font-size: 2rem; /* Smaller numbers */
            }
        }

        /* --- SMALL MOBILE (480px and down) --- */
        @media (max-width: 480px) {
            .intro-text h2 {
                font-size: 1.75rem;
            }

            /* On very small screens, maybe stack stats or keep tight */
            .intro-stats {
                gap: 10px;
            }
            
            .stat-card p {
                font-size: 0.85rem; /* Smaller label text */
            }
        }
/* ---------- LARGE LAPTOPS (1200px ↓) ---------- */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.15rem;
        max-width: 100%;
    }

    .intro-text h2 {
        font-size: 2.2rem;
    }
}

/* ---------- TABLETS (992px ↓) ---------- */
@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-image-wrapper img {
        width: 100%;
        height: auto;
    }

    .intro-text p,
    .future-content p {
        text-align: left;
    }

    .timeline-wrap {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ---------- MOBILE (768px ↓) ---------- */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    h1, h2 {
        line-height: 1.25;
    }

    .badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-meta {
        font-size: 0.85rem;
    }

    .cta-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card {
        padding: 24px;
    }

    .speakers-grid {
        gap: 20px;
    }

    .speaker-img-wrapper {
        height: 220px;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .helpline-large {
        font-size: 3rem;
    }
}

/* ---------- SMALL MOBILE (576px ↓) ---------- */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .intro-text h2,
    .section-header h2 {
        font-size: 1.8rem;
    }

    .event-card {
        padding: 22px;
    }

    .event-title {
        font-size: 1.1rem;
    }

    .event-desc {
        font-size: 0.9rem;
    }

    .speaker-name {
        font-size: 1.1rem;
    }

    .speaker-role {
        font-size: 0.85rem;
    }

    .logo-grid {
        gap: 14px;
    }

    .logo-box {
        width: 120px;
        height: 60px;
    }

    .logo-box img {
        max-height: 40px;
    }
}

        :root {
            --primary: #002970; /* Paytm Blue */
            --secondary: #00baf2; /* Paytm Cyan */
            --accent: #5135ff; /* FCRF Purple */
            --gradient: linear-gradient(93deg, #5135FF 10.65%, #FF5455 89.35%);
            --dark: #0f172a;
            --light: #f8fafc;
            --white: #ffffff;
            --gray: #64748b;
            --card-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
            --hover-shadow: 0 20px 40px -5px rgba(0,0,0,0.15);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Outfit', sans-serif;
            color: var(--dark);
            background-color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--primary); }
        a { text-decoration: none; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- UTILITY CLASSES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .text-center { text-align: center; }
        .section-padding { padding: 100px 0; }
        
        .badge {
            background: rgba(0, 186, 242, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 20px;
        }

        /* --- ANIMATION CLASSES --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered Delay */
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }

        /* --- HERO SECTION --- */
        .hero {
            background-color: var(--white);
            background-image: radial-gradient(circle at 10% 20%, rgba(0, 186, 242, 0.05) 0%, transparent 20%),
                              radial-gradient(circle at 90% 80%, rgba(81, 53, 255, 0.05) 0%, transparent 20%);
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 120px 0 80px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content { text-align: left; }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            letter-spacing: -1px;
            color: var(--primary);
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 30px;
            max-width: 90%;
        }

        .hero-meta {
            font-size: 0.9rem;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 30px;
            display: block;
        }

        .hero-image-wrapper {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .hero-image-wrapper img {
            border-radius: 20px;
            box-shadow: 0 30px 60px -15px rgba(0, 41, 112, 0.15);
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .cta-btn {
            padding: 16px 40px;
            background: var(--gradient);
            color: var(--white);
            font-weight: 600;
            border-radius: 50px;
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(81, 53, 255, 0.3);
            display: inline-block;
            border: none;
        }
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 84, 85, 0.4);
            color: var(--white);
        }

        /* --- INTRO & STATS --- */
        .intro-section { background-color: var(--light); }

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: flex-start; /* Align top for long text */
        }

        .intro-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .intro-text p { margin-bottom: 20px; color: var(--gray); text-align: justify; }

        .intro-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            position: sticky;
            top: 20px;
        }

        .stat-card {
            background: var(--white);
            padding: 30px;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            text-align: center;
            border-bottom: 4px solid var(--secondary);
            transition: transform 0.3s;
        }
        .stat-card:hover { transform: translateY(-5px); }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            display: block;
        }

        /* --- TIMELINE SECTION --- */
        .timeline-section {
            background: var(--white);
            position: relative;
        }

        .section-header {
            max-width: 700px;
            margin: 0 auto 80px;
            text-align: center;
        }
        .section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }

        .timeline-wrap {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-wrap::after {
            content: '';
            position: absolute;
            width: 4px;
            background: #e2e8f0;
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .event-row {
            display: flex;
            justify-content: flex-end;
            padding-left: 50%;
            padding-bottom: 60px;
            position: relative;
        }

        .event-row:nth-child(even) {
            justify-content: flex-start;
            padding-left: 0;
            padding-right: 50%;
            text-align: right;
        }

        .event-row:nth-child(even) .event-card { align-items: flex-end; }
        .event-row:nth-child(even) .date-badge { left: auto; right: -60px; }

        .event-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--accent);
            border: 4px solid var(--white);
            border-radius: 50%;
            left: 50%;
            top: 20px;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: 0 0 0 4px rgba(81, 53, 255, 0.1);
        }

        .event-card {
            width: 90%;
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            box-shadow: var(--card-shadow);
            position: relative;
            transition: 0.3s;
            margin-left: 40px; 
        }

        .event-row:nth-child(even) .event-card { margin-left: 0; margin-right: 40px; }

        .event-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
        }

        .date-badge {
            background: var(--primary);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 15px;
        }

        .event-title {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .event-location {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: block;
            font-weight: 500;
        }

        .event-desc {
            font-size: 0.95rem;
            color: #475569;
        }

        /* --- SPEAKERS SECTION --- */
        .speakers-section { background: var(--white); position: relative; }

        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .speaker-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s ease;
            border: 1px solid #e2e8f0;
            text-align: center;
            padding-bottom: 20px;
            position: relative;
        }

        .speaker-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
            border-color: transparent;
        }

        .speaker-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .speaker-card:hover::after { transform: scaleX(1); }

        .speaker-img-wrapper {
            width: 100%;
            height: 250px;
            overflow: hidden;
            margin-bottom: 15px;
            background-color: #f1f5f9;
        }

        .speaker-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .speaker-card:hover .speaker-img-wrapper img { transform: scale(1.05); }

        .speaker-info { padding: 0 15px; }
        .speaker-name {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 5px;
            font-weight: 700;
        }
        .speaker-role {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 500;
            line-height: 1.4;
        }

        /* --- FUTURE & CTA SECTION --- */
        .future-section {
            background: var(--light);
            text-align: center;
        }
        
        .future-content { max-width: 900px; margin: 0 auto; }
        .future-content p { color: var(--gray); font-size: 1.1rem; text-align: justify; margin-bottom: 20px; }

        .cta-box {
            background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
            padding: 60px;
            border-radius: 20px;
            margin-top: 60px;
            text-align: center;
            border: 1px solid #bae6fd;
        }

        .helpline-large {
            font-size: 4rem;
            font-weight: 700;
            color: #ef4444; 
            display: block;
            margin: 20px 0;
        }

        /* --- CONCLUSION SECTION --- */
        .conclusion-section {
            background: var(--white);
            padding: 60px 0;
            border-top: 1px solid #e2e8f0;
        }
        .conclusion-text {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            color: var(--gray);
            font-size: 1.1rem;
        }

        /* --- PARTNERS --- */
        .partners-section {
            background: var(--light);
            text-align: center;
        }

        .logo-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .logo-box {
            background: var(--white);
            border: 1px solid #cbd5e1;
            border-radius: 12px;
            width: 180px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            transition: all 0.3s ease;
        }

        .logo-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(81, 53, 255, 0.15);
            border-color: var(--accent);
        }

        .logo-box img {
            max-width: 90%;
            max-height: 50px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .logo-box:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        /* --- FOOTER --- */
        .footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 60px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-content { text-align: center; margin-bottom: 40px; }
            .hero-content p { margin-left: auto; margin-right: auto; }
            .hero h1 { font-size: 2.8rem; }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .intro-grid { grid-template-columns: 1fr; }
            .intro-stats { position: static; margin-top: 40px; }
            
            /* Timeline Reset for Mobile */
            .timeline-wrap::after { left: 20px; }
            .event-dot { left: 20px; }
            .event-row { padding-left: 50px; padding-right: 0; justify-content: flex-start; text-align: left; }
            .event-row:nth-child(even) { padding-left: 50px; padding-right: 0; text-align: left; }
            .event-card, .event-row:nth-child(even) .event-card { margin-left: 0; width: 100%; }
            .event-row:nth-child(even) .event-card { align-items: flex-start; }
            .logo-box { width: 140px; height: 70px; }
        }
  