* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #222f6e;
            --secondary-color: #00aeef;
            --accent-color: #E91E63;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --dark-color: #010147;
            --text-color: #010147;
            --gradient: linear-gradient(190deg, #1a1a2e, #222f6e,  #222f6e);
            --gradient2: linear-gradient(45deg, #1a1a2e,  #222f6e);
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
            background: var(--primary-color);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-icon {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(34, 47, 110, 0.95);
            backdrop-filter: blur(10px);
            padding: 2.5rem 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 1.5rem 0;
            background: rgba(34, 47, 110, 0.98);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            font-size: 2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .lang-switcher {
            margin-left: 1rem;
        }

        .lang-switcher a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            transition: all 0.3s;
        }

        .lang-switcher a:hover {
            background: rgba(255, 255, 255, 0.2);
        }


         /* Bootstrap Navbar Reset */
        .navbar {
            padding: 2.5rem 0 !important;
        }
        
        .navbar.scrolled {
            padding: 1.5rem 0 !important;
        }
        
        .nav-container {
            padding: 0 20px !important;
        }
        
        /* Dark Theme Card Backgrounds */
        .card {
            background: rgba(34, 47, 110, 0.3) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: #fff;
        }
        
        .card h3, .card h4 {
            color: var(--secondary-color);
        }
        
        .card p {
            color: rgba(255, 255, 255, 0.85);
        }
        
        /* Timeline Dark Theme */
        .timeline-content {
            background: rgba(34, 47, 110, 0.3) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        .timeline-content h4 {
            color: var(--secondary-color);
        }
        
        .timeline-content p {
            color: rgba(255, 255, 255, 0.85);
        }
        
        .timeline-time {
            color: var(--secondary-color) !important;
        }
        
        /* Committee Members Dark Theme */
        .committee-member {
            background: rgba(34, 47, 110, 0.3) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        .committee-name {
            color: #fff;
        }
        
        .committee-role {
            color: rgba(255, 255, 255, 0.7) !important;
        }
        
        /* Registration Form Dark Theme */
        .registration-form {
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .form-label {
            color: #fff;
        }
        
        .form-input, .form-textarea, .form-select {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        
        .form-input::placeholder, .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--secondary-color);
            outline: none;
        }
        
        /* Select dropdown options styling */
        .form-select option {
            background: var(--dark-color);
            border-color: var(--secondary-color);
            color: #fff;
            padding: 10px;
        }
        
        .form-select option:hover,
        .form-select option:checked {
            background: var(--secondary-color);
            color: #fff;
        }
        
        /* Venue Info Dark Theme */
        .venue-info {
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        .venue-title {
            color: var(--secondary-color) !important;
        }
        
        .venue-detail {
            color: rgba(255, 255, 255, 0.85);
        }
        
        .venue-detail i {
            color: var(--secondary-color);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: transparent;
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            padding: 2rem;
            max-width: 900px;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-number {
            font-size: clamp(4rem, 10vw, 8rem);
            font-weight: 900;
            color: rgba(255, 255, 255, 0.3);
            line-height: 1;
            margin: 1rem 0;
            animation: fadeInUp 1s ease 0.3s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Countdown */
        .countdown {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1rem 0;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .countdown-item {
            background: rgba(0,0,0,0.08) !important;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            min-width: 40px;
            border: 2px solid rgba(0,41,175, 0.8) !important;
        }

        .countdown-value {
            font-size: 2rem;
            font-weight: 500;
            display: block;
        }

        .countdown-label {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 0.5rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: var(--gradient2) !important;
            color: var(--light-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 2rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease 0.5s backwards;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Section Styles */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            color: var(--light-color);
            margin-bottom: .1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 75%;
            height: 2px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--secondary-color);
            font-size: 1.1rem;
            margin-top: 1.5rem;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        /* Speaker Card */
        .speaker-card {
            text-align: center;
        }

        .speaker-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            box-shadow: 0 10px 30px rgba(46, 58, 135, 0.3);
        }

        .speaker-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .speaker-title {
            color: #666;
            margin-bottom: 1rem;
        }

        .speaker-bio {
            color: #888;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            transform: scale(1.1);
        }

        /* Agenda/Schedule */
        .agenda-timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-time {
            min-width: 120px;
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.2rem;
            padding-top: 0.5rem;
        }

        .timeline-content {
            flex: 1;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 30px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--gradient);
            box-shadow: 0 0 0 4px white, 0 0 0 6px var(--secondary-color);
        }

        .timeline-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .timeline-speaker {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .timeline-desc {
            color: #666;
            line-height: 1.6;
        }

        /* Committee Members */
        .committee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .committee-member {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }

        .committee-member:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .committee-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient);
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        .committee-name {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .committee-role {
            color: #666;
            font-size: 0.9rem;
        }

        /* Registration Form */
        .registration-form {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--secondary-color);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
            background: rgba(0,0,0,0.05) !important;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(0, 165, 207, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-button {
            width: 100%;
            padding: 1.2rem;
            background: var(--gradient2);
            color: white;
            border: 2px solid rgba(0, 174, 239, 0.2) !important;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(46, 58, 135, 0.3);
        }

        /* Venue Section */
        .venue-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .venue-info {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .venue-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .venue-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .venue-item {
            display: flex;
            gap: 1rem;
            align-items: start;
        }

        .venue-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background: var(--gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .venue-text h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .venue-text p {
            color: #666;
            line-height: 1.6;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .resp{ width:100%;}
        /* Footer */
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 2rem 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            font-size:.85rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: .3rem;
        }

        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
        }

        .footer-socials a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .footer-copy {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-copy p a{ color: #00aeef; text-decoration:none;}

        .hero-logo  {
            width: 140px;
        }

        /* Mobile Responsive */
        @media (max-width: 900px) {
            .countdown {
            display: flex;
            justify-content: center;
            gap: .5rem !important;
            margin: .5rem 0;
            flex-wrap: wrap;
        }

        .countdown-item {
            padding: 1rem 0.5rem !important;
        }

        .countdown-value {
            font-size: 1.5rem !important;
            font-weight: 500;
            display: block;
        }

        .countdown-label {
            font-size: 0.6rem !important;
            opacity: 0.9;
            margin-top: 0.5rem;
        }
        .cta-button{
            padding: 0.8rem 2rem;
            font-size: 1rem;
        }
        .hero-title {
            font-size: clamp(1.5rem, 5vw, 3rem);
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
        .hero-subtitle {
            font-size: clamp(0.8rem, 2vw, 1.2rem);
            margin-bottom: 1.5rem;
        }
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(46, 58, 135, 0.98);
                width: 100%;
                padding: 2rem;
                transition: left 0.3s;
                gap: 1rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .menu-toggle {
                display: block;
            }

            .countdown {
                gap: 1rem;
            }

            .countdown-item {
                padding: 1rem 1.5rem;
                min-width: 80px;
            }

            .countdown-value {
                font-size: 2rem;
            }

            .venue-container {
                grid-template-columns: 1fr;
            }

            .registration-form {
                padding: 2rem 1.5rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                flex-direction: column;
                gap: 1rem;
            }

            .timeline-time {
                min-width: auto;
            }
        }

        /* Animations on Scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floating WhatsApp Button */
        .whatsapp-fab {
            position: fixed;
            bottom: 3rem;
            right: .8rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            cursor: pointer;
            transition: all 0.3s;
            z-index: 999;
            text-decoration: none;
        }

        .fab i {
            display: block;
            line-height: 32;
        }

        .whatsapp-fab:hover {
            background: #128C7E;
            color: white;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* ===== Bootstrap Overrides & Custom Fixes ===== */
        
        /* Logo Image Sizing */
        .logo img {
            height: 60px;
            width: auto;
            display: block;
        }

        .navbar.scrolled .logo img {
            height: 50px;
        }

        /* Bootstrap Navbar Reset */
        .navbar {
            padding: 2.5rem 0 !important;
        }
        
        .navbar.scrolled {
            padding: 1.5rem 0 !important;
        }
        
        .nav-container {
            padding: 0 20px !important;
        }
        
        /* Social Icons Fix */
        .social-links a i,
        .footer-socials a i {
            font-size: 18px !important;
            line-height: 1 !important;
            width: auto !important;
            height: auto !important;
        }
        
        .social-links a,
        .footer-socials a {
            font-size: 18px !important;
        }
        
        .social-links a:hover {
            transform: scale(1.1) !important;
            box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
        }
        
        .footer-socials a:hover {
            background: var(--secondary-color) !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
        }
        
        /* ===== Dark Theme Styles ===== */
        
        /* Dark Theme Card Backgrounds */
        .card {
            background: rgba(34, 47, 110, 0.3) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: #fff;
        }
        
        .card h3, .card h4 {
            color: var(--secondary-color);
        }
        
        .card p {
            color: rgba(255, 255, 255, 0.85);
        }
        
        /* Timeline Dark Theme */
        .timeline-content {
            background: rgba(34, 47, 110, 0.3) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        .timeline-content h4 {
            color: var(--secondary-color);
        }
        
        .timeline-content p {
            color: rgba(255, 255, 255, 0.85);
        }
        
        .timeline-time {
            color: var(--secondary-color) !important;
        }
        
        /* Committee Members Dark Theme */
        .committee-member {
            background: rgba(34, 47, 110, 0.3) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        .committee-name {
            color: #fff;
        }
        
        .committee-role {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        /* Larger Committee Icon for Images with Flag */
        .committee-icon {
            width: 120px !important;
            height: 120px !important;
            border-radius: 50%;
            background: var(--gradient);
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .committee-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .committee-icon .flag-badge {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: 2px solid white;
            overflow: hidden;
            background: white;
        }

        .committee-icon .flag-badge .fi {
            font-size: 35px;
            line-height: 35px;
        }
        
        /* Registration Form Dark Theme */
        .registration-form {
            background: rgba(34, 47, 110, 0.3) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .form-label {
            color: #fff;
        }
        
        .form-input, .form-textarea, .form-select {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        
        .form-input::placeholder, .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.2);
        }
        
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--secondary-color);
            outline: none;
        }
        
        /* Venue Info Dark Theme */
        .venue-info {
            background: rgba(34, 47, 110, 0.3) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        .venue-title {
            color: var(--secondary-color) !important;
        }
        
        .venue-detail {
            color: rgba(255, 255, 255, 0.85);
        }
        
        .venue-detail i {
            color: var(--secondary-color);
        }
        
        /* CTA Button Dark Theme Adjustment */

        /* ===== Enhanced Speaker Images with Flag Support ===== */
        .speaker-image {
            width: 200px !important;
            height: 200px !important;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            box-shadow: 0 10px 30px rgba(46, 58, 135, 0.3);
            position: relative;
            overflow: visible;
            border: 4px solid rgba(255, 255, 255, 0.2);
        }

        .speaker-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .speaker-image i {
            z-index: 1;
        }

        .speaker-image .flag-badge {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 3px solid white;
            overflow: hidden;
            background: white;
        }

        .speaker-image .flag-badge .fi {
            font-size: 45px;
            line-height: 45px;
        }

        .speaker-name {
            color: #fff !important;
        }

        .speaker-title {
            color: rgba(255, 255, 255, 0.8) !important;
        }

        .speaker-bio {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        /* Country Flag Badge on Speaker Image (Top Right) */
        .speaker-image .country-flag {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid white;
            overflow: hidden;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }

        .speaker-image .country-flag .fi {
            font-size: 40px;
            line-height: 40px;
            display: block;
        }