
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f8fafc;
            color: #0a2540;
            scroll-behavior: smooth;
        }

        /* scroll padding for fixed header */
        html {
            scroll-padding-top: 90px;
        }

    
        
        :root {
            --dark-blue: #0b2b44;
            --sky-blue: #3b82f6;
            --sky-light: #7ab9e8;
            --white: #ffffff;
            --yellow-accent: #e2bc3c;
            --yellow-dark: #f5ce58;
            --gray-light: #f1f5f9;
            --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: var(--dark-blue);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.8rem 2rem;
            transition: all 0.2s;
        }

        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        /* logo area */
        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }


        .logo-img img {
            width: 260px;
            /* height: 42px; */
            object-fit: contain;
            border-radius: 10px;
        }

        /* fallback text if image not loaded — but we use placeholder */
        .logo-text h2 {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            letter-spacing: -0.3px;
            line-height: 1.2;
        }

        .logo-text span {
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--yellow-accent);
            display: block;
            letter-spacing: 0.5px;
        }

        /* desktop nav links */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            list-style: none;
            transition: all 0.3s ease;
        }

        .nav-links li a {
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            color: #ffffff;
            padding: 0.5rem 0.2rem;
            transition: 0.2s;
            border-bottom: 2px solid transparent;
        }

        .nav-links li a:hover {
            color: var(--yellow-accent);
            border-bottom-color: var(--yellow-accent);
        }

        .register-nav-btn {
            background: linear-gradient(135deg, var(--yellow-accent), var(--yellow-dark));
            color: #0b1d26 !important;
            padding: 0.55rem 1.4rem !important;
            border-radius: 999px;
            font-weight: 700 !important;
            border: none !important;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
            letter-spacing: 0.5px;
        }

        .register-nav-btn:hover {
            background: linear-gradient(135deg, var(--yellow-dark), var(--yellow-accent));
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
            color: #02141d !important;
        }

        /* mobile menu toggle */
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
        }

        /* responsive */
        @media (max-width: 880px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 75px;
                left: -100%;
                flex-direction: column;
                background: var(--dark-blue);
                width: 70%;
                height: calc(100vh - 75px);
                align-items: flex-start;
                padding: 2rem 1.5rem;
                gap: 1.8rem;
                transition: 0.3s ease-in-out;
                box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li a {
                font-size: 1.1rem;
            }

            .register-nav-btn {
                width: fit-content;
            }

            .navbar {
                padding: 0.7rem 1.2rem;
            }
        }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: 'Inter', sans-serif;
                background: #0B1120;
                overflow-x: hidden;
            }

            /* HERO SECTION */
            .hero {
                position: relative;
                width: 100%;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #0A1128;
                /* fallback dark blue */
                overflow: hidden;
            }

            /* Background image with dark blue / sky blue gradient overlay */
            .hero-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-image: url('img/hero3.jpeg');
                background-size: 100% 140%;
                /* zoom vertically */
                background-position: center;
                /* keep center visible */
                background-repeat: no-repeat;
                z-index: 0;
            }

            /* Strong dark overlay with deep navy & slight sky tint */
            .hero-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, rgba(7, 34, 82, 0.648) 0%, rgba(7, 28, 55, 0.495) 50%, rgba(0, 35, 65, 0.92) 100%);
                backdrop-filter: brightness(0.92);
                z-index: 1;
            }

            /* Content container */
            .hero-container {
                position: relative;
                z-index: 2;
                max-width: 1320px;
                width: 90%;
                margin: 0 auto;
                padding: 5rem 1rem;
                color: #ffffff;
            }

            /* badge top */
            .event-badge {
                display: inline-block;
                background: rgba(0, 160, 255, 0.18);
                backdrop-filter: blur(4px);
                border-left: 4px solid #38bdf8;
                padding: 0.45rem 1.2rem;
                font-weight: 600;
                font-size: 0.9rem;
                letter-spacing: 1px;
                border-radius: 0 30px 30px 0;
                margin-bottom: 1.5rem;
                color: #e0f2fe;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }

            .event-badge i {
                margin-right: 8px;
                color: #7dd3fc;
            }

            /* main title */
            .hero-title {
                font-size: clamp(2.2rem, 6vw, 4.2rem);
                font-weight: 800;
                line-height: 1.2;
                margin-bottom: 0.75rem;
                background: linear-gradient(135deg, #FFFFFF 0%, #BFDBFE 100%);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                letter-spacing: -0.02em;
            }

            .hero-sub {
                font-size: clamp(1rem, 4vw, 1.25rem);
                font-weight: 400;
                color: #cbd5e6;
                max-width: 85%;
                margin-bottom: 1rem;
                border-left: 3px solid #38bdf8;
                padding-left: 1rem;
            }

            /* Theme quote */
            .theme-quote {
                margin: 1.5rem 0 1.2rem 0;
            }

            .quote-text {
                font-size: clamp(1.5rem, 5vw, 2.5rem);
                font-weight: 700;
                color: #ffffff;
                letter-spacing: -0.3px;
                background: linear-gradient(120deg, #e0f2fe, #7dd3fc);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                display: inline-block;
            }

            .quote-sub {
                font-size: 1rem;
                font-weight: 500;
                color: #b9d0f0;
                margin-top: 0.3rem;
                letter-spacing: 0.3px;
            }

            /* event details grid (time, date, venue, format) */
            .info-grid {
                display: flex;
                flex-wrap: wrap;
                gap: 1.8rem;
                margin: 2rem 0 2rem;
                background: rgba(2, 20, 45, 0.55);
                backdrop-filter: blur(8px);
                padding: 1.2rem 1.8rem;
                border-radius: 42px;
                border: 1px solid rgba(56, 189, 248, 0.3);
                justify-content: flex-start;
            }

            .info-item {
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 1rem;
                font-weight: 500;
            }

            .info-item i {
                font-size: 1.5rem;
                color: #38bdf8;
                width: 32px;
                text-align: center;
            }

            .info-item span strong {
                font-weight: 700;
                color: white;
            }

            .info-item span {
                color: #e2e8f0;
            }

            .format-badge {
                background: #0f2b44;
                padding: 0.25rem 1rem;
                border-radius: 100px;
                font-size: 0.85rem;
                font-weight: 600;
                color: #7dd3fc;
                margin-left: 0.3rem;
            }

            /* Stats row (150+ Business, 40+ Countries, etc) */
            .stats-row {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 1rem;
                margin: 2rem 0 2.5rem;
            }

            .stat-card {
                flex: 1;
                min-width: 140px;
                background: rgba(0, 30, 60, 0.65);
                backdrop-filter: blur(6px);
                border-radius: 28px;
                padding: 1.2rem 0.8rem;
                text-align: center;
                transition: all 0.25s ease;
                border-bottom: 2px solid #38bdf8;
                border-right: 1px solid rgba(56, 189, 248, 0.3);
            }

            .stat-card:hover {
                transform: translateY(-6px);
                background: rgba(0, 45, 80, 0.8);
                border-bottom-color: #7dd3fc;
            }

            .stat-number {
                font-size: 2rem;
                font-weight: 800;
                color: white;
                letter-spacing: -0.5px;
                line-height: 1.2;
            }

            .stat-label {
                font-size: 0.85rem;
                font-weight: 500;
                color: #b9e2ff;
                margin-top: 6px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            /* CTA Buttons */
            .cta-group {
                display: flex;
                flex-wrap: wrap;
                gap: 1.2rem;
                margin-top: 1rem;
                align-items: center;
            }

            .btn-primary {
                background: linear-gradient(95deg, #0284c7, #38bdf8);
                border: none;
                padding: 0.9rem 2.2rem;
                border-radius: 48px;
                font-weight: 700;
                font-size: 1rem;
                color: #ffffff;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
                display: inline-flex;
                align-items: center;
                gap: 12px;
                font-family: inherit;
            }

            .btn-primary i {
                font-size: 1.1rem;
            }

            .btn-primary:hover {
                transform: scale(1.02);
                background: linear-gradient(95deg, #0e7ab3, #4aaef5);
                box-shadow: 0 12px 28px rgba(56, 189, 248, 0.5);
            }

            .btn-outline {
                background: transparent;
                border: 1.5px solid #38bdf8;
                padding: 0.85rem 2rem;
                border-radius: 48px;
                font-weight: 600;
                font-size: 1rem;
                color: #eef5ff;
                cursor: pointer;
                transition: 0.2s;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                font-family: inherit;
                backdrop-filter: blur(4px);
            }

            .btn-outline:hover {
                background: rgba(56, 189, 248, 0.2);
                border-color: #7dd3fc;
                color: white;
                transform: translateY(-2px);
            }

            /* award hint */
            .award-note {
                margin-top: 2rem;
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 0.9rem;
                color: #b9e2ff;
                background: rgba(0, 20, 40, 0.5);
                width: fit-content;
                padding: 0.5rem 1.2rem;
                border-radius: 60px;
                backdrop-filter: blur(4px);
            }

            .award-note i {
                color: #facc15;
                font-size: 1.1rem;
            }

            /* responsive touches */
            @media (max-width: 900px) {
                .hero-container {
                    padding: 3rem 1rem;
                }

                .info-grid {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 1rem;
                    border-radius: 28px;
                    padding: 1.2rem;
                }

                .stats-row {
                    gap: 0.8rem;
                }

                .stat-card {
                    min-width: 120px;
                }

                .hero-sub {
                    max-width: 100%;
                }

                .cta-group {
                    justify-content: center;
                }

                .btn-primary,
                .btn-outline {
                    width: auto;
                    padding: 0.8rem 1.6rem;
                }
            }

            @media (max-width: 640px) {
                .stats-row {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
                }

                .stat-card {
                    padding: 0.9rem 0.4rem;
                }

                .stat-number {
                    font-size: 1.6rem;
                }

                .info-item i {
                    font-size: 1.2rem;
                    width: 28px;
                }
            }

            /* decorative line */
            .divider-glow {
                width: 80px;
                height: 3px;
                background: linear-gradient(90deg, #38bdf8, #0f2b44);
                margin: 0.6rem 0 0.2rem;
                border-radius: 4px;
            }
    
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: 'Inter', sans-serif;
                background: #0B1120;
                overflow-x: hidden;
            }

            /* HERO SECTION */
            .hero {
                position: relative;
                width: 100%;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #0A1128;
                /* fallback dark blue */
                overflow: hidden;
            }

            /* Background image with dark blue / sky blue gradient overlay */
            .hero-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-image: url('img/hero3.jpeg');
                background-size: 100% 140%;
                /* zoom vertically */
                background-position: center;
                /* keep center visible */
                background-repeat: no-repeat;
                z-index: 0;
            }

            /* Strong dark overlay with deep navy & slight sky tint */
            .hero-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, rgba(7, 34, 82, 0.648) 0%, rgba(7, 28, 55, 0.495) 50%, rgba(0, 35, 65, 0.92) 100%);
                backdrop-filter: brightness(0.92);
                z-index: 1;
            }

            /* Content container */
            .hero-container {
                position: relative;
                z-index: 2;
                max-width: 1320px;
                width: 90%;
                margin: 0 auto;
                padding: 5rem 1rem;
                color: #ffffff;
            }

            /* badge top */
            .event-badge {
                display: inline-block;
                background: rgba(0, 160, 255, 0.18);
                backdrop-filter: blur(4px);
                border-left: 4px solid #38bdf8;
                padding: 0.45rem 1.2rem;
                font-weight: 600;
                font-size: 0.9rem;
                letter-spacing: 1px;
                border-radius: 0 30px 30px 0;
                margin-bottom: 1.5rem;
                color: #e0f2fe;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }

            .event-badge i {
                margin-right: 8px;
                color: #7dd3fc;
            }

            /* main title */
            .hero-title {
                font-size: clamp(2.2rem, 6vw, 4.2rem);
                font-weight: 800;
                line-height: 1.2;
                margin-bottom: 0.75rem;
                background: linear-gradient(135deg, #FFFFFF 0%, #BFDBFE 100%);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                letter-spacing: -0.02em;
            }

            .hero-sub {
                font-size: clamp(1rem, 4vw, 1.25rem);
                font-weight: 400;
                color: #cbd5e6;
                max-width: 85%;
                margin-bottom: 1rem;
                border-left: 3px solid #38bdf8;
                padding-left: 1rem;
            }

            /* Theme quote */
            .theme-quote {
                margin: 1.5rem 0 1.2rem 0;
            }

            .quote-text {
                font-size: clamp(1.5rem, 5vw, 2.5rem);
                font-weight: 700;
                color: #ffffff;
                letter-spacing: -0.3px;
                background: linear-gradient(120deg, #e0f2fe, #7dd3fc);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                display: inline-block;
            }

            .quote-sub {
                font-size: 1rem;
                font-weight: 500;
                color: #b9d0f0;
                margin-top: 0.3rem;
                letter-spacing: 0.3px;
            }

            /* event details grid (time, date, venue, format) */
            .info-grid {
                display: flex;
                flex-wrap: wrap;
                gap: 1.8rem;
                margin: 2rem 0 2rem;
                background: rgba(2, 20, 45, 0.55);
                backdrop-filter: blur(8px);
                padding: 1.2rem 1.8rem;
                border-radius: 42px;
                border: 1px solid rgba(56, 189, 248, 0.3);
                justify-content: flex-start;
            }

            .info-item {
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 1rem;
                font-weight: 500;
            }

            .info-item i {
                font-size: 1.5rem;
                color: #38bdf8;
                width: 32px;
                text-align: center;
            }

            .info-item span strong {
                font-weight: 700;
                color: white;
            }

            .info-item span {
                color: #e2e8f0;
            }

            .format-badge {
                background: #0f2b44;
                padding: 0.25rem 1rem;
                border-radius: 100px;
                font-size: 0.85rem;
                font-weight: 600;
                color: #7dd3fc;
                margin-left: 0.3rem;
            }

            /* Stats row (150+ Business, 40+ Countries, etc) */
            .stats-row {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 1rem;
                margin: 2rem 0 2.5rem;
            }

            .stat-card {
                flex: 1;
                min-width: 140px;
                background: rgba(0, 30, 60, 0.65);
                backdrop-filter: blur(6px);
                border-radius: 28px;
                padding: 1.2rem 0.8rem;
                text-align: center;
                transition: all 0.25s ease;
                border-bottom: 2px solid #38bdf8;
                border-right: 1px solid rgba(56, 189, 248, 0.3);
            }

            .stat-card:hover {
                transform: translateY(-6px);
                background: rgba(0, 45, 80, 0.8);
                border-bottom-color: #7dd3fc;
            }

            .stat-number {
                font-size: 2rem;
                font-weight: 800;
                color: white;
                letter-spacing: -0.5px;
                line-height: 1.2;
            }

            .stat-label {
                font-size: 0.85rem;
                font-weight: 500;
                color: #b9e2ff;
                margin-top: 6px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            /* CTA Buttons */
            .cta-group {
                display: flex;
                flex-wrap: wrap;
                gap: 1.2rem;
                margin-top: 1rem;
                align-items: center;
            }

            .btn-primary {
                background: linear-gradient(95deg, #0284c7, #38bdf8);
                border: none;
                padding: 0.9rem 2.2rem;
                border-radius: 48px;
                font-weight: 700;
                font-size: 1rem;
                color: #ffffff;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
                display: inline-flex;
                align-items: center;
                gap: 12px;
                font-family: inherit;
            }

            .btn-primary i {
                font-size: 1.1rem;
            }

            .btn-primary:hover {
                transform: scale(1.02);
                background: linear-gradient(95deg, #0e7ab3, #4aaef5);
                box-shadow: 0 12px 28px rgba(56, 189, 248, 0.5);
            }

            .btn-outline {
                background: transparent;
                border: 1.5px solid #38bdf8;
                padding: 0.85rem 2rem;
                border-radius: 48px;
                font-weight: 600;
                font-size: 1rem;
                color: #eef5ff;
                cursor: pointer;
                transition: 0.2s;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                font-family: inherit;
                backdrop-filter: blur(4px);
            }

            .btn-outline:hover {
                background: rgba(56, 189, 248, 0.2);
                border-color: #7dd3fc;
                color: white;
                transform: translateY(-2px);
            }

            /* award hint */
            .award-note {
                margin-top: 2rem;
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 0.9rem;
                color: #b9e2ff;
                background: rgba(0, 20, 40, 0.5);
                width: fit-content;
                padding: 0.5rem 1.2rem;
                border-radius: 60px;
                backdrop-filter: blur(4px);
            }

            .award-note i {
                color: #facc15;
                font-size: 1.1rem;
            }

            /* responsive touches */
            @media (max-width: 900px) {
                .hero-container {
                    padding: 3rem 1rem;
                }

                .info-grid {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 1rem;
                    border-radius: 28px;
                    padding: 1.2rem;
                }

                .stats-row {
                    gap: 0.8rem;
                }

                .stat-card {
                    min-width: 120px;
                }

                .hero-sub {
                    max-width: 100%;
                }

                .cta-group {
                    justify-content: center;
                }

                .btn-primary,
                .btn-outline {
                    width: auto;
                    padding: 0.8rem 1.6rem;
                }
            }

            @media (max-width: 640px) {
                .stats-row {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
                }

                .stat-card {
                    padding: 0.9rem 0.4rem;
                }

                .stat-number {
                    font-size: 1.6rem;
                }

                .info-item i {
                    font-size: 1.2rem;
                    width: 28px;
                }
            }

            /* decorative line */
            .divider-glow {
                width: 80px;
                height: 3px;
                background: linear-gradient(90deg, #38bdf8, #0f2b44);
                margin: 0.6rem 0 0.2rem;
                border-radius: 4px;
            }

                /* extra micro-interactions */
                .btn-primary,
                .btn-outline {
                    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
                }

                .hero-container {
                    animation: fadeSlideUp 0.9s ease-out;
                }

                @keyframes fadeSlideUp {
                    0% {
                        opacity: 0;
                        transform: translateY(24px);
                    }

                    100% {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                .stat-card,
                .info-grid {
                    animation: fadeIn 0.7s ease-out 0.2s both;
                }

                @keyframes fadeIn {
                    from {
                        opacity: 0;
                        transform: scale(0.97);
                    }

                    to {
                        opacity: 1;
                        transform: scale(1);
                    }
                }

                .cta-group {
                    animation: fadeInUp 0.6s ease-out 0.3s both;
                }

                @keyframes fadeInUp {
                    from {
                        opacity: 0;
                        transform: translateY(12px);
                    }

                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                .event-badge {
                    animation: slideRight 0.5s ease-out;
                }

                @keyframes slideRight {
                    from {
                        opacity: 0;
                        transform: translateX(-18px);
                    }

                    to {
                        opacity: 1;
                        transform: translateX(0);
                    }
                }
          
                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                }

                body {
                    font-family: 'Inter', sans-serif;
                    background: #0A1128;
                    color: #f0f6ff;
                    line-height: 1.5;
                }


                .about-section {
                    background: linear-gradient(145deg, #071a2f 0%, #041222 100%);
                    position: relative;
                    padding: 5rem 1rem;
                    border-top: 1px solid rgba(56, 189, 248, 0.2);
                    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
                }

                .container {
                    max-width: 1320px;
                    margin: 0 auto;
                    width: 90%;
                }

                .section-header {
                    text-align: center;
                    margin-bottom: 3rem;
                }

                .section-header h2 {
                    font-size: clamp(1.8rem, 4vw, 2.5rem);
                    font-weight: 700;
                    background: linear-gradient(135deg, #FFFFFF, #7dd3fc);
                    -webkit-background-clip: text;
                    background-clip: text;
                    color: transparent;
                    display: inline-block;
                }

                .section-subhead {
                    color: #94a3b8;
                    margin-top: 0.5rem;
                    font-size: 1rem;
                }

                /* WASME card (featured) */
                .wasme-card {
                    background: rgba(8, 28, 48, 0.7);
                    backdrop-filter: blur(12px);
                    border-radius: 2rem;
                    padding: 2rem;
                    margin-bottom: 3.5rem;
                    border: 1px solid rgba(56, 189, 248, 0.35);
                    transition: all 0.2s;
                    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.3);
                }

                .wasme-flex {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 2rem;
                    align-items: center;
                }

                .wasme-text {
                    flex: 2;
                }

                .wasme-text h3 {
                    font-size: 1.8rem;
                    font-weight: 700;
                    margin-bottom: 1rem;
                    color: white;
                    letter-spacing: -0.3px;
                }

                .wasme-text p {
                    color: #cbd5e6;
                    margin-bottom: 1rem;
                    line-height: 1.6;
                }

                .un-badge {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    background: rgba(56, 189, 248, 0.15);
                    padding: 0.4rem 1rem;
                    border-radius: 60px;
                    font-size: 0.8rem;
                    font-weight: 500;
                    margin-top: 0.5rem;
                }

                .wasme-stats {
                    flex: 1;
                    background: rgba(2, 20, 35, 0.6);
                    border-radius: 1.5rem;
                    padding: 1.5rem;
                    text-align: center;
                    border-left: 3px solid #38bdf8;
                }

                .wasme-stats .big-number {
                    font-size: 2.5rem;
                    font-weight: 800;
                    color: #7dd3fc;
                }

                /* 3 pillar cards (connect, collaborate, prosper) */
                .pillar-grid {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 2rem;
                    margin: 3rem 0 4rem;
                }

                .pillar-card {
                    flex: 1;
                    min-width: 240px;
                    background: rgba(12, 35, 55, 0.65);
                    backdrop-filter: blur(4px);
                    border-radius: 2rem;
                    padding: 2rem 1.5rem;
                    transition: all 0.3s ease;
                    border-bottom: 3px solid #38bdf8;
                    text-align: center;
                }

                .pillar-card:hover {
                    transform: translateY(-8px);
                    background: rgba(20, 55, 85, 0.8);
                    border-bottom-color: #7dd3fc;
                }

                .pillar-icon {
                    font-size: 3rem;
                    color: #38bdf8;
                    margin-bottom: 1.2rem;
                }

                .pillar-card h3 {
                    font-size: 1.8rem;
                    font-weight: 700;
                    margin-bottom: 0.75rem;
                    background: linear-gradient(120deg, #fff, #bfdbfe);
                    -webkit-background-clip: text;
                    background-clip: text;
                    color: transparent;
                }

                .pillar-card p {
                    color: #cbd5e6;
                    font-size: 0.95rem;
                    line-height: 1.5;
                }

                /* SDG & Indian Vision row */
                .alignment-row {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 2rem;
                    margin-top: 2rem;
                    justify-content: space-between;
                }

                .sdg-box {
                    flex: 2;
                    background: rgba(0, 25, 45, 0.6);
                    border-radius: 1.8rem;
                    padding: 1.8rem;
                    border: 1px solid rgba(56, 189, 248, 0.3);
                }

                .sdg-icons {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 2rem;
                    margin-top: 1.2rem;
                    justify-content: space-around;
                }

                .sdg-item {
                    text-align: center;
                    flex: 1;
                    min-width: 100px;
                }

                .sdg-item i {
                    font-size: 2.5rem;
                    color: #38bdf8;
                    background: rgba(56, 189, 248, 0.1);
                    padding: 0.8rem;
                    border-radius: 60px;
                }

                .sdg-item h4 {
                    margin: 0.8rem 0 0.3rem;
                    font-weight: 700;
                }

                .sdg-item p {
                    font-size: 0.8rem;
                    color: #9bb3d0;
                }

                .vision-box {
                    flex: 1.2;
                    background: linear-gradient(125deg, rgba(2, 45, 70, 0.7), rgba(0, 20, 45, 0.8));
                    border-radius: 1.8rem;
                    padding: 1.8rem;
                    border-right: 2px solid #38bdf8;
                }

                .vision-box h3 {
                    font-size: 1.4rem;
                    margin-bottom: 1rem;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }

                .vision-tags {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 1rem;
                    margin-top: 1rem;
                }

                /* SDG logos */
                .sdg-logo {
                    width: 50px;
                    height: 50px;
                    object-fit: contain;
                    margin-bottom: 0.5rem;
                }

                .vision-tag {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    background: rgba(255, 255, 255, 0.15);
                    /* Light background for contrast */
                    padding: 0.5rem 1rem;
                    border-radius: 40px;
                    font-weight: 600;
                    font-size: 0.9rem;
                    border: 1px solid rgba(56, 189, 248, 0.6);
                    backdrop-filter: blur(2px);
                }

                .vision-tag img {
                    width: 63px;
                    height: 63px;
                    object-fit: contain;
                    filter: brightness(1) invert(0);
                    /* Makes dark logos white – adjust if needed */
                }

                /* .vision-tag {
      background: rgba(56, 189, 248, 0.2);
      padding: 0.5rem 1.2rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      backdrop-filter: blur(2px);
      border: 1px solid #38bdf860;
    } */

                hr.divider-light {
                    margin: 2rem 0 0;
                    border-color: rgba(56, 189, 248, 0.2);
                }

                @media (max-width: 800px) {
                    .pillar-grid {
                        flex-direction: column;
                    }

                    .wasme-flex {
                        flex-direction: column;
                    }

                    .alignment-row {
                        flex-direction: column;
                    }

                    .info-grid {
                        flex-direction: column;
                        align-items: flex-start;
                    }
                }

                @keyframes fadeSlideUp {
                    from {
                        opacity: 0;
                        transform: translateY(20px);
                    }

                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                .wasme-card,
                .pillar-card,
                .sdg-box,
                .vision-box {
                    animation: fadeSlideUp 0.6s ease-out forwards;
                }
       
                    .pillar-grid {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 2rem;
                        margin: 3rem 0 4rem;
                    }

                    .pillar-card {
                        flex: 1;
                        min-width: 240px;
                        background: rgba(12, 35, 55, 0.65);
                        backdrop-filter: blur(4px);
                        border-radius: 2rem;
                        padding: 2rem 1.5rem;
                        text-align: center;
                        border-bottom: 3px solid #38bdf8;
                    }

                    .pillar-icon {
                        font-size: 3rem;
                        color: #38bdf8;
                        margin-bottom: 1.2rem;
                    }

                    .pillar-card h3 {
                        font-size: 1.8rem;
                        margin-bottom: 0.75rem;
                        background: linear-gradient(120deg, #fff, #bfdbfe);
                        -webkit-background-clip: text;
                        background-clip: text;
                        color: transparent;
                    }

                    .alignment-row {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 2rem;
                        margin-top: 2rem;
                    }

                    .sdg-box {
                        flex: 2;
                        background: rgba(0, 25, 45, 0.6);
                        border-radius: 1.8rem;
                        padding: 1.8rem;
                        border: 1px solid rgba(56, 189, 248, 0.3);
                    }

                    .sdg-icons {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 2rem;
                        margin-top: 1.2rem;
                        justify-content: space-around;
                    }

                    .sdg-item {
                        text-align: center;
                        flex: 1;
                    }

                    .sdg-item i {
                        font-size: 2.5rem;
                        color: #38bdf8;
                        background: rgba(56, 189, 248, 0.1);
                        padding: 0.8rem;
                        border-radius: 60px;
                    }

                    .vision-box {
                        flex: 1.2;
                        background: linear-gradient(125deg, rgba(2, 45, 70, 0.7), rgba(0, 20, 45, 0.8));
                        border-radius: 1.8rem;
                        padding: 1.8rem;
                        border-right: 2px solid #38bdf8;
                    }

                    .vision-tags {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 1rem;
                        margin-top: 1rem;
                    }

                    .vision-tag {
                        background: rgba(56, 189, 248, 0.2);
                        padding: 0.5rem 1.2rem;
                        border-radius: 40px;
                        font-weight: 600;
                        font-size: 0.9rem;
                        border: 1px solid #38bdf860;
                    }

                    /* ========== AGENDA SECTION (new professional design) ========== */
                    .agenda-section {
                        background: #07192e;
                        padding: 5rem 1rem;
                        position: relative;
                    }

                    .agenda-container {
                        max-width: 1280px;
                        margin: 0 auto;
                        width: 90%;
                    }

                    .agenda-timeline {
                        display: flex;
                        flex-direction: column;
                        gap: 1.2rem;
                    }

                    .agenda-card {
                        background: rgba(8, 28, 55, 0.65);
                        backdrop-filter: blur(4px);
                        border-radius: 1.8rem;
                        border-left: 5px solid #38bdf8;
                        transition: 0.2s;
                        overflow: hidden;
                        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
                    }

                    .agenda-card:hover {
                        background: rgba(20, 45, 75, 0.75);
                        transform: translateX(6px);
                    }

                    .agenda-header {
                        display: flex;
                        flex-wrap: wrap;
                        align-items: baseline;
                        gap: 1rem;
                        padding: 1.2rem 1.8rem;
                        background: rgba(0, 30, 55, 0.5);
                        border-bottom: 1px solid rgba(56, 189, 248, 0.3);
                    }

                    .time-badge {
                        font-family: monospace;
                        font-weight: 800;
                        font-size: 1.2rem;
                        background: #0a2942;
                        padding: 0.2rem 0.9rem;
                        border-radius: 40px;
                        color: #7dd3fc;
                        letter-spacing: 0.5px;
                    }

                    .act-name {
                        font-size: 1.4rem;
                        font-weight: 700;
                        background: linear-gradient(135deg, #ffffff, #a5d8ff);
                        -webkit-background-clip: text;
                        background-clip: text;
                        color: transparent;
                    }

                    .agenda-details {
                        padding: 1.4rem 1.8rem;
                    }

                    .session-title {
                        font-size: 1.25rem;
                        font-weight: 700;
                        margin-bottom: 0.5rem;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        flex-wrap: wrap;
                    }

                    .session-title i {
                        color: #38bdf8;
                        width: 28px;
                    }

                    .session-desc {
                        color: #cbd5e6;
                        margin-bottom: 0.8rem;
                        line-height: 1.5;
                        padding-left: 2rem;
                    }

                    .sub-session {
                        margin-top: 0.6rem;
                        padding-left: 2rem;
                        border-left: 2px solid #2c6280;
                    }

                    .sub-session p {
                        margin: 0.3rem 0;
                        font-size: 0.9rem;
                    }

                    .award-category-list {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 0.5rem;
                        margin-top: 0.5rem;
                        padding-left: 2rem;
                    }

                    .award-cat {
                        background: #0a2a44;
                        padding: 0.2rem 0.8rem;
                        border-radius: 30px;
                        font-size: 0.75rem;
                        font-weight: 500;
                        color: #b9e2ff;
                    }

                    hr.divider-light {
                        margin: 2rem 0 0;
                        border-color: rgba(56, 189, 248, 0.2);
                    }

                    @media (max-width: 800px) {
                        .agenda-header {
                            flex-direction: column;
                            align-items: flex-start;
                        }

                        .session-desc,
                        .sub-session,
                        .award-category-list {
                            padding-left: 0.8rem;
                        }

                        .pillar-grid,
                        .wasme-flex,
                        .alignment-row {
                            flex-direction: column;
                        }

                        .info-grid {
                            flex-direction: column;
                        }
                    }

                    @keyframes fadeSlideUp {
                        from {
                            opacity: 0;
                            transform: translateY(20px);
                        }

                        to {
                            opacity: 1;
                            transform: translateY(0);
                        }
                    }

                    .agenda-card {
                        animation: fadeSlideUp 0.5s ease-out forwards;
                    }
    
                        /* Base styles to match the existing theme */
                        * {
                            margin: 0;
                            padding: 0;
                            box-sizing: border-box;
                        }

                        body {
                            font-family: 'Inter', system-ui, -apple-system, sans-serif;
                            background: #0A1128;
                            color: #f0f6ff;
                        }

                        /* Corridor Section Styles */
                        .corridors-section {
                            background: linear-gradient(145deg, #071a2f 0%, #041222 100%);
                            padding: 5rem 1rem;
                            border-top: 1px solid rgba(56, 189, 248, 0.2);
                            border-bottom: 1px solid rgba(56, 189, 248, 0.2);
                        }

                        .corridors-container {
                            max-width: 1320px;
                            margin: 0 auto;
                            width: 90%;
                        }

                        .section-header {
                            text-align: center;
                            margin-bottom: 3rem;
                        }

                        .section-header h2 {
                            font-size: clamp(1.8rem, 4vw, 2.5rem);
                            font-weight: 700;
                            background: linear-gradient(135deg, #FFFFFF, #7dd3fc);
                            -webkit-background-clip: text;
                            background-clip: text;
                            color: transparent;
                            display: inline-block;
                        }

                        .section-subhead {
                            color: #94a3b8;
                            margin-top: 0.5rem;
                            font-size: 1rem;
                        }

                        /* Corridor Grid */
                        .corridors-grid {
                            display: flex;
                            flex-wrap: wrap;
                            gap: 2rem;
                            margin-bottom: 3rem;
                        }

                        .corridor-card {
                            flex: 1;
                            min-width: 280px;
                            background: rgba(8, 28, 48, 0.7);
                            backdrop-filter: blur(8px);
                            border-radius: 2rem;
                            overflow: hidden;
                            transition: transform 0.25s ease, box-shadow 0.25s ease;
                            border: 1px solid rgba(56, 189, 248, 0.3);
                            box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.3);
                        }

                        .corridor-card:hover {
                            transform: translateY(-6px);
                            border-color: rgba(56, 189, 248, 0.6);
                            box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.4);
                        }

                        /* Header with regional accent */
                        .corridor-header {
                            padding: 1.5rem 1.5rem 1rem;
                            border-bottom: 1px solid rgba(56, 189, 248, 0.2);
                            position: relative;
                        }

                        .region-icon {
                            font-size: 2rem;
                            margin-bottom: 0.75rem;
                        }

                        .corridor-title {
                            font-size: 1.6rem;
                            font-weight: 700;
                            letter-spacing: -0.3px;
                            background: linear-gradient(135deg, #fff, #b9e2ff);
                            -webkit-background-clip: text;
                            background-clip: text;
                            color: transparent;
                            margin-bottom: 0.5rem;
                        }

                        .corridor-stats {
                            display: flex;
                            gap: 1rem;
                            margin-top: 0.75rem;
                            flex-wrap: wrap;
                        }

                        .stat-pill {
                            background: rgba(56, 189, 248, 0.15);
                            padding: 0.25rem 0.75rem;
                            border-radius: 40px;
                            font-size: 0.8rem;
                            font-weight: 600;
                            color: #7dd3fc;
                            display: inline-flex;
                            align-items: center;
                            gap: 6px;
                        }

                        .stat-pill i {
                            font-size: 0.8rem;
                        }

                        /* Content area */
                        .corridor-content {
                            padding: 1.25rem 1.5rem 1.5rem;
                        }

                        .corridor-desc {
                            color: #cbd5e6;
                            font-size: 0.9rem;
                            line-height: 1.5;
                            margin-bottom: 1.25rem;
                        }

                        .sector-tags {
                            display: flex;
                            flex-wrap: wrap;
                            gap: 0.5rem;
                            margin-bottom: 1.25rem;
                        }

                        .sector-tag {
                            background: rgba(2, 45, 70, 0.8);
                            padding: 0.25rem 0.8rem;
                            border-radius: 30px;
                            font-size: 0.7rem;
                            font-weight: 500;
                            color: #b9e2ff;
                            border: 1px solid rgba(56, 189, 248, 0.3);
                        }

                        .country-list {
                            margin: 1rem 0;
                        }

                        .country-list h4 {
                            font-size: 0.85rem;
                            font-weight: 600;
                            color: #7dd3fc;
                            margin-bottom: 0.6rem;
                            display: flex;
                            align-items: center;
                            gap: 6px;
                        }

                        .country-chips {
                            display: flex;
                            flex-wrap: wrap;
                            gap: 0.5rem;
                        }

                        .country-chip {
                            background: rgba(255, 255, 255, 0.05);
                            padding: 0.2rem 0.7rem;
                            border-radius: 30px;
                            font-size: 0.7rem;
                            font-weight: 500;
                            color: #e2e8f0;
                            transition: 0.1s;
                        }

                        /* Footer note about corridor sessions */
                        .corridor-footer-note {
                            text-align: center;
                            margin-top: 2rem;
                            background: rgba(2, 30, 50, 0.6);
                            backdrop-filter: blur(8px);
                            border-radius: 3rem;
                            padding: 1.2rem 1.5rem;
                            border: 1px solid rgba(56, 189, 248, 0.3);
                        }

                        .footer-features {
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                            gap: 2rem;
                            font-size: 0.85rem;
                            font-weight: 500;
                            color: #b9e2ff;
                        }

                        .footer-features span {
                            display: inline-flex;
                            align-items: center;
                            gap: 8px;
                        }

                        .footer-features i {
                            color: #38bdf8;
                        }

                        /* Responsive */
                        @media (max-width: 900px) {
                            .corridors-grid {
                                flex-direction: column;
                            }

                            .footer-features {
                                flex-direction: column;
                                gap: 0.8rem;
                                text-align: center;
                            }
                        }
                
                            * {
                                margin: 0;
                                padding: 0;
                                box-sizing: border-box;
                            }

                            body {
                                font-family: 'Inter', system-ui, -apple-system, sans-serif;
                                background: #0A1128;
                                color: #f0f6ff;
                            }

                            /* Dark value section */
                            .value-section {
                                background: radial-gradient(circle at 10% 20%, #041222, #020a1a);
                                padding: 5rem 1rem;
                                position: relative;
                                border-top: 1px solid rgba(56, 189, 248, 0.2);
                                border-bottom: 1px solid rgba(56, 189, 248, 0.2);
                            }

                            .value-container {
                                max-width: 1320px;
                                margin: 0 auto;
                                width: 90%;
                            }

                            .section-header {
                                text-align: center;
                                margin-bottom: 3rem;
                            }

                            .section-header h2 {
                                font-size: clamp(1.8rem, 4vw, 2.5rem);
                                font-weight: 700;
                                background: linear-gradient(135deg, #FFFFFF, #7dd3fc);
                                -webkit-background-clip: text;
                                background-clip: text;
                                color: transparent;
                                display: inline-block;
                            }

                            .section-subhead {
                                color: #94a3b8;
                                margin-top: 0.5rem;
                                font-size: 1rem;
                            }

                            /* Two column layout */
                            .value-grid {
                                display: flex;
                                flex-wrap: wrap;
                                gap: 2rem;
                                margin-bottom: 2rem;
                            }

                            .value-card {
                                flex: 1;
                                min-width: 320px;
                                background: rgba(6, 20, 35, 0.75);
                                backdrop-filter: blur(8px);
                                border-radius: 2rem;
                                padding: 2rem 1.8rem;
                                border: 1px solid rgba(56, 189, 248, 0.25);
                                transition: transform 0.25s ease, box-shadow 0.25s ease;
                                box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
                            }

                            .value-card:hover {
                                transform: translateY(-5px);
                                border-color: rgba(56, 189, 248, 0.6);
                                box-shadow: 0 25px 40px -12px rgba(56, 189, 248, 0.2);
                            }

                            /* Header with icon and title */
                            .card-header {
                                display: flex;
                                align-items: center;
                                gap: 12px;
                                margin-bottom: 1.5rem;
                                border-bottom: 2px solid rgba(56, 189, 248, 0.4);
                                padding-bottom: 1rem;
                            }

                            .card-header i {
                                font-size: 2.2rem;
                                color: #38bdf8;
                                background: rgba(56, 189, 248, 0.15);
                                padding: 0.6rem;
                                border-radius: 1rem;
                            }

                            .card-header h3 {
                                font-size: 1.6rem;
                                font-weight: 700;
                                background: linear-gradient(120deg, #fff, #a5d8ff);
                                -webkit-background-clip: text;
                                background-clip: text;
                                color: transparent;
                            }

                            /* Benefit list */
                            .benefit-list {
                                display: flex;
                                flex-direction: column;
                                gap: 1.2rem;
                            }

                            .benefit-item {
                                display: flex;
                                gap: 1rem;
                                align-items: flex-start;
                            }

                            .benefit-icon {
                                flex-shrink: 0;
                                width: 28px;
                                color: #38bdf8;
                                font-size: 1.1rem;
                                margin-top: 0.2rem;
                            }

                            .benefit-text {
                                flex: 1;
                            }

                            .benefit-title {
                                font-weight: 700;
                                font-size: 1rem;
                                color: #ffffff;
                                margin-bottom: 0.25rem;
                            }

                            .benefit-desc {
                                font-size: 0.85rem;
                                color: #b9cef0;
                                line-height: 1.4;
                            }

                            .highlight-number {
                                font-weight: 800;
                                color: #7dd3fc;
                                background: rgba(56, 189, 248, 0.2);
                                padding: 0.1rem 0.3rem;
                                border-radius: 8px;
                                font-size: 0.9rem;
                            }

                            /* small badge for awards */
                            .award-badge {
                                background: linear-gradient(95deg, #0f2b44, #063a5a);
                                border-left: 3px solid #facc15;
                                padding: 0.6rem 1rem;
                                border-radius: 1rem;
                                margin-top: 0.5rem;
                                font-size: 0.8rem;
                                font-weight: 500;
                            }

                            hr.divider-light {
                                margin: 1.5rem 0;
                                border-color: rgba(56, 189, 248, 0.2);
                            }

                            /* Responsive */
                            @media (max-width: 800px) {
                                .value-grid {
                                    flex-direction: column;
                                }

                                .card-header h3 {
                                    font-size: 1.3rem;
                                }

                                .benefit-title {
                                    font-size: 0.9rem;
                                }
                            }
      
                                * {
                                    margin: 0;
                                    padding: 0;
                                    box-sizing: border-box;
                                }

                                body {
                                    font-family: 'Inter', system-ui, -apple-system, sans-serif;
                                    background: #0A1128;
                                    color: #f0f6ff;
                                }

                                .sponsor-section {
                                    background: radial-gradient(ellipse at 20% 30%, #071a2f, #020a1a);
                                    padding: 5rem 1rem;
                                    position: relative;
                                    border-top: 1px solid rgba(56, 189, 248, 0.2);
                                    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
                                }

                                .container {
                                    max-width: 1320px;
                                    margin: 0 auto;
                                    width: 90%;
                                }

                                .section-header {
                                    text-align: center;
                                    margin-bottom: 3rem;
                                }

                                .section-header h2 {
                                    font-size: clamp(1.8rem, 4vw, 2.5rem);
                                    font-weight: 700;
                                    background: linear-gradient(135deg, #FFFFFF, #7dd3fc);
                                    -webkit-background-clip: text;
                                    background-clip: text;
                                    color: transparent;
                                    display: inline-block;
                                }

                                .section-subhead {
                                    color: #94a3b8;
                                    margin-top: 0.5rem;
                                    font-size: 1rem;
                                }

                                /* Packages Grid */
                                .packages-grid {
                                    display: flex;
                                    flex-wrap: wrap;
                                    gap: 2rem;
                                    margin-bottom: 4rem;
                                }

                                .package-card {
                                    flex: 1;
                                    min-width: 280px;
                                    background: rgba(6, 20, 35, 0.8);
                                    backdrop-filter: blur(8px);
                                    border-radius: 2rem;
                                    padding: 2rem 1.5rem;
                                    border: 1px solid rgba(56, 189, 248, 0.3);
                                    transition: transform 0.25s ease, box-shadow 0.25s ease;
                                    position: relative;
                                    overflow: hidden;
                                }

                                .package-card:hover {
                                    transform: translateY(-6px);
                                    border-color: #38bdf8;
                                    box-shadow: 0 20px 35px -10px rgba(56, 189, 248, 0.2);
                                }

                                .package-badge {
                                    position: absolute;
                                    top: 1.2rem;
                                    right: 1.2rem;
                                    background: #facc15;
                                    color: #0a1128;
                                    font-size: 0.7rem;
                                    font-weight: 800;
                                    padding: 0.25rem 0.8rem;
                                    border-radius: 30px;
                                    letter-spacing: 0.5px;
                                }

                                .package-icon {
                                    font-size: 2.5rem;
                                    color: #38bdf8;
                                    margin-bottom: 1rem;
                                }

                                .package-title {
                                    font-size: 1.8rem;
                                    font-weight: 800;
                                    margin-bottom: 0.5rem;
                                    background: linear-gradient(120deg, #fff, #bfdbfe);
                                    -webkit-background-clip: text;
                                    background-clip: text;
                                    color: transparent;
                                }

                                .package-desc {
                                    font-size: 0.85rem;
                                    color: #b9d0f0;
                                    margin-bottom: 1.5rem;
                                    border-left: 2px solid #38bdf8;
                                    padding-left: 0.8rem;
                                }

                                .feature-list {
                                    list-style: none;
                                    margin: 1.2rem 0;
                                }

                                .feature-list li {
                                    margin-bottom: 0.8rem;
                                    display: flex;
                                    gap: 10px;
                                    font-size: 0.85rem;
                                    color: #cbd5e6;
                                }

                                .feature-list li i {
                                    color: #38bdf8;
                                    width: 20px;
                                    margin-top: 0.2rem;
                                }

                                .limited-tag {
                                    background: rgba(250, 204, 21, 0.2);
                                    border-left: 2px solid #facc15;
                                    padding: 0.5rem;
                                    font-size: 0.7rem;
                                    font-weight: 600;
                                    margin-top: 1rem;
                                    text-align: center;
                                }

                                /* Two column layout for value grids */
                                .value-row {
                                    display: flex;
                                    flex-wrap: wrap;
                                    gap: 2rem;
                                    margin-bottom: 4rem;
                                }

                                .value-box {
                                    flex: 1;
                                    background: rgba(8, 28, 48, 0.65);
                                    backdrop-filter: blur(4px);
                                    border-radius: 1.5rem;
                                    padding: 1.8rem;
                                    border: 1px solid rgba(56, 189, 248, 0.25);
                                }

                                .value-box h3 {
                                    font-size: 1.4rem;
                                    margin-bottom: 1.2rem;
                                    display: flex;
                                    align-items: center;
                                    gap: 10px;
                                    color: #7dd3fc;
                                }

                                .value-list {
                                    display: flex;
                                    flex-wrap: wrap;
                                    gap: 0.8rem;
                                }

                                .value-item {
                                    flex: 1 1 calc(50% - 0.8rem);
                                    min-width: 180px;
                                    display: flex;
                                    align-items: center;
                                    gap: 8px;
                                    font-size: 0.85rem;
                                    color: #cbd5e6;
                                }

                                .value-item i {
                                    color: #38bdf8;
                                    width: 20px;
                                }

                                /* Awards Section */
                                .awards-section {
                                    background: rgba(2, 25, 45, 0.6);
                                    border-radius: 2rem;
                                    padding: 2rem;
                                    margin-top: 2rem;
                                    border: 1px solid rgba(56, 189, 248, 0.3);
                                }

                                .awards-header {
                                    text-align: center;
                                    margin-bottom: 2rem;
                                }

                                .awards-header h3 {
                                    font-size: 1.8rem;
                                    font-weight: 700;
                                    background: linear-gradient(120deg, #fff, #facc15);
                                    -webkit-background-clip: text;
                                    background-clip: text;
                                    color: transparent;
                                }

                                .awards-grid {
                                    display: flex;
                                    flex-wrap: wrap;
                                    justify-content: center;
                                    gap: 1rem;
                                }

                                .award-category {
                                    background: rgba(250, 204, 21, 0.1);
                                    border: 1px solid rgba(250, 204, 21, 0.4);
                                    padding: 0.5rem 1.2rem;
                                    border-radius: 40px;
                                    font-size: 0.85rem;
                                    font-weight: 500;
                                    color: #facc15;
                                    transition: 0.2s;
                                }

                                .award-category:hover {
                                    background: rgba(250, 204, 21, 0.2);
                                    transform: scale(1.02);
                                }

                                /* CTA Button */
                                .sponsor-cta {
                                    text-align: center;
                                    margin-top: 3rem;
                                }

                                .btn-sponsor {
                                    background: linear-gradient(95deg, #0284c7, #38bdf8);
                                    border: none;
                                    padding: 1rem 2.5rem;
                                    border-radius: 60px;
                                    font-weight: 700;
                                    font-size: 1rem;
                                    color: #0a1128;
                                    cursor: pointer;
                                    transition: 0.2s;
                                    display: inline-flex;
                                    align-items: center;
                                    gap: 12px;
                                }

                                .btn-sponsor:hover {
                                    transform: translateY(-2px);
                                    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
                                }

                                @media (max-width: 900px) {
                                    .value-item {
                                        flex: 1 1 100%;
                                    }

                                    .package-card {
                                        min-width: 100%;
                                    }
                                }

                                .award-category {
                                    display: flex;
                                    align-items: center;
                                    gap: 10px;
                                    font-weight: 500;
                                }

                                .award-category i {
                                    color: #c89b3c;
                                    /* gold shade */
                                    font-size: 18px;
                                }
 