    :root {
            --primary: #04509b;
            --secondary: #1e3a8a;
            --accent: #f59e0b;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --success: #10b981;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            margin: 0;
            overflow-x: hidden;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .event-ok-button {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .event-ok-button:hover {
            transform: translateY(-2px);
            text-decoration: none;
        }
        
        .brand {
            color: var(--primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .brand img {
            height: 60px;
            width: auto;
            margin-right: 0.75rem;
        }
        
        .launch-announcement {
            text-align: center;
            padding: 2rem 1.5rem 1rem;
            margin-top: 90px;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 1.5rem;
           min-height: 85vh;
        }
        
        .launch-announcement h1 {width: 100%;
            font-size: 50px;
            color: var(--success);
            margin-bottom: 6rem;
        }
        
        .launch-announcement .subtitle {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 4rem;
        }
        
        .launch-announcement p {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            color: #1f1f1f;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.7;
        }
        .launch-announcement img {
            /* width: 100%; */
            max-width: 700px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: auto;
        }
        
        /* News Coverage Section */
        .news-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 4rem 0;
            margin: 2rem 0;
            position: relative;
            /* overflow: hidden; */
        }
        
        .news-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,10 Q20,5 30,10 T50,10" stroke="rgba(4,80,155,0.05)" stroke-width="2" fill="none"/><path d="M60,20 Q70,15 80,20 T100,20" stroke="rgba(4,80,155,0.05)" stroke-width="2" fill="none"/></svg>') repeat;
            opacity: 0.3;
        }
        
        .news-title {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .news-subtitle {
            text-align: center;
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: var(--text-light);
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }
        
        .media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
            z-index: 2;
        }
        
        .media-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .media-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
            border-radius: 20px 20px 0 0;
        }
        
        .media-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.95);
        }
        
        .media-icon {
            width: 70px;
            height: 70px;
            /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 8px 25px rgba(4, 80, 155, 0.3);
        }
        .media-icon img {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            object-fit: cover;
        }
        
        
        .publication-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }
        
        .article-title {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.5;
            font-style: italic;
        }
        
        .media-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .media-link:hover {
            color: white;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(4, 80, 155, 0.3);
        }
        
        .print-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(45deg, var(--accent), #fbbf24);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }
        
        .social-icon {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
        }
        
        /* Summit Section Styles */
        .summit-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 3rem 0;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .summit-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="25" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="15" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="35" r="1.2" fill="rgba(255,255,255,0.06)"/><circle cx="20" cy="60" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="90" cy="70" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            opacity: 0.3;
        }
        
        .summit-content {
            position: relative;
            z-index: 2;
        }
        
        .summit-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #fff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .summit-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .summit-images {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            margin: 2rem 0;
        }
        
        .summit-image {
            width: 250px;
            height: 350px;
            object-fit: cover;
            border-radius: 15px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .summit-image:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--accent);
        }
        
        .summit-image.poster1 {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        }
        
        .summit-image.poster2 {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            width: 500px;
        }
        
        .summit-image.poster3 {
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        }
        
        .register-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #6b7280;
            color: #9ca3af;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 2rem;
            box-shadow: 0 5px 15px rgba(107, 114, 128, 0.2);
            cursor: not-allowed;
            opacity: 0.6;
            pointer-events: none;
        }
        
        .footer {
            margin-top: auto;
            padding: 1.5rem 0;
            text-align: center;
            color: #474545;
            font-size: 1.2rem;
        }

         .news-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 4rem 0;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .news-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,10 Q20,5 30,10 T50,10" stroke="rgba(4,80,155,0.05)" stroke-width="2" fill="none"/><path d="M60,20 Q70,15 80,20 T100,20" stroke="rgba(4,80,155,0.05)" stroke-width="2" fill="none"/></svg>') repeat;
            opacity: 0.3;
        }
        
        .news-title {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        .news-subtitle {
            text-align: center;
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: var(--text-light);
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }
        
        /* Auto-scroll container */
        .auto-scroll-container {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding: 2rem 0;
            z-index: 2;
        }
        
        .media-scroll-track {
            display: flex;
            gap: 2rem;
            animation: autoScroll 120s linear infinite;
            width: fit-content;
            transition: animation-play-state 0.3s ease;
        }
        
        .media-scroll-track:hover {
            animation-play-state: paused;
        }
        
        /* Duplicate the cards for seamless loop */
         .media-scroll-track::after {
            content: '';
            width: 2rem;
        }
        
        @keyframes autoScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50%));
            }
        } 
        
        .media-cards {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 1.5rem;
            /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.2);
            /* position: relative;
            overflow: hidden; */
            flex-shrink: 0;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            height: 400px;
            cursor: pointer;
        }
        .media-cards img {
            width: 400px;
            height: 350px;
            border-radius: 15px;
            object-fit: cover;
            margin-right: 1rem;
        }
        
        .media-cards:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.95);
        }
        .media-cards div {
            display: flex;
            flex-direction: column;
            flex: 1;
            width: 250px;
            margin:auto 0;
        }
        
        .publication-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }
        
        .article-title {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.5;
            font-style: italic;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .media-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            width: 100%;
            justify-content: center;
        }
        
        .media-link:hover {
            color: white;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(4, 80, 155, 0.3);
        }
        
        .social-icon {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
        }
        
        /* Pause indicator */
        .pause-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 100;
            pointer-events: none;
        }
        
        .auto-scroll-container:hover .pause-indicator {
            opacity: 1;
        }

        #eventContent {
    background-color: white;
    min-height: 100vh;
    padding: 3rem 0 0;
}

#eventContent .container {

    border-radius: 0;
    box-shadow: none;
    margin: 50px auto 0;
    max-width:100vw;
    padding: 0 3rem !important;
    height: auto;
}

/* Header Styling - Similar to MakeGPT */
#eventContent h1 {
    color: #1976d2 !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 2rem !important;
    text-align: center;
    line-height: 1.2;
}

#eventContent .text-center > p {
    color: #1976d2 !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    margin-bottom: 3rem !important;
    text-align: center;
}

/* Two Column Layout */
#eventContent .row {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-direction: row-reverse; /* Image on right, text on left */
}

#eventContent .col-lg-6 {
    flex: 1;
}

/* Young Founders Track Section */
#eventContent h3 {
    color: #1976d2 !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.8rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#eventContent h3 i {
    color: #1976d2;
    font-size: 2.5rem;
}

/* Content Styling - Clean and Professional */
#eventContent p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;

}
#eventContent strong {
    color: #000;
    font-weight: 700;
}

/* List Styling - Simple and Clean */
#eventContent ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0 2rem 0;
}

#eventContent ul li {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    border-left: none;
    background: transparent;
}

#eventContent ul li::before {
    content: "•";
    color: #1976d2;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.5rem;
}

/* Info Details - Clean Style */
#eventContent p[style*="font-size: 1.1rem"] {
    background: transparent;
    border-radius: 0;
    border-left: none;
    font-size: 1.3rem !important;
}

#eventContent p[style*="font-size: 1.1rem"] i {
    font-size: 1.1rem;
    color: #1976d2;
    margin-right: 0.5rem;
}

/* Button Container */
#eventContent .text-center:last-of-type {
    margin-top: 3rem;
}

#eventContent div[style*="display: inline-flex"] {
    display: flex !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* Primary Button Styling - Blue */
#eventContent a[href*="forms.google.com"] {
    background: #1976d2 !important;
    color: white !important;
    padding: 1rem 2.5rem !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3) !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

#eventContent a[href*="forms.google.com"]:hover {
    background: #1565c0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4) !important;
}

/* Secondary Button Styling - White with Border */
#eventContent button[onclick="showMainPage()"] {
    background: white !important;
    color: #1976d2 !important;
    padding: 1rem 2.5rem !important;
    border: 2px solid #1976d2 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

#eventContent button[onclick="showMainPage()"]:hover {
    background: #1976d2 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

/* Image Styling - Clean with Rounded Corners */
#eventContent img[alt="Gates India ICT Summit"] {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#eventContent img[alt="Gates India ICT Summit"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}