        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0rem; 
}


ol, ul {
    padding-left: 0rem;
}

p {
    margin-top: 0;
    margin-bottom: 0rem;
}



        body {
            font-family: 'Poppins', sans-serif;
            background:#040818;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Top Utility Menu Bar Styles */
        .top-menu-bar {
            width: 100%;
            background-color: #1e88e5; 
            color: #ffffff;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 10px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 20;
        }

        .top-menu-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .top-menu-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .top-menu-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 20px;
        }

        .top-menu-links a {
            color: #ffffff;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .top-menu-links a:hover {
            opacity: 0.85;
        }

        .top-socials {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-socials a {
            color: #1e88e5;
            background-color: rgba(255, 255, 255, 0.35);
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background-color 0.2s;
        }

        .top-socials a:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        /* Hero Wrapper */
        .hero-section {
            position: relative;
            min-height: calc(100vh - 48px);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 24px;
            background: linear-gradient(
                to bottom,
                rgba(7, 21, 47, 0.75),
                rgba(13, 23, 53, 0.9)
            ), url('images/BuenosAires.jpg') center center / cover no-repeat;
        }

        /* Global Header Wrap layout */
        .nav-wrap {
            max-width: 1500px;
            width: 100%;
            margin: 0 auto 1.5rem auto;
            position: relative;
            z-index: 10;
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 20px;
            border-radius: 60px;
            background: rgba(255, 255, 255, .09);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, .08);
        }

        .logo {
            display: flex;
            align-items: center;
            max-width: 250px;
        }

        .logo img {
            width: 100%;
            height: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 10px;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            padding: 12px 13px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
        }

        .dropdown {
            position: absolute;
            top: 120%;
            left: 0;
            min-width: 220px;
            background: #172445;
            border-radius: 14px;
            display: none;
            padding: 8px 0;
            box-shadow: 0 20px 40px rgba(0,0,0,.35);
        }

        .dropdown a {
            padding: 12px 18px;
        }

        .nav-links li:hover > .dropdown {
            display: block;
        }

        .cta {
            padding: 14px 28px;
            border-radius: 40px;
            background: linear-gradient(90deg, #1e88e5, #1e88e5);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        .menu-btn {
            display: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        /* Highlights Panel */
        .highlights-bar {
            max-width:850px;
            width: 100%;
            margin: 0 auto 3rem auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            z-index: 2;
        }

        .highlight-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .highlight-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(30, 136, 229, 0.2);
            border: 1px solid rgba(30, 136, 229, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e88e5;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .highlight-text h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 2px;
            color: #ffffff;
        }

        .highlight-text p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Hero Content Container Layout */
        .hero {
            max-width: 900px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
            margin-top: auto;
            margin-bottom: auto;
            position: relative;
            z-index: 1;
        }

        /* Main Headline */
        .hero-title {
            font-size: 2.5em;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.03em;
            max-width: 850px;
        }

        /* Sub-description text */
        .hero-description {
  font-size: 1.5em;
  color: rgba(255, 255, 255, 0.9);
  line-height: normal;
  max-width: 750px;
  margin-bottom: 0.5rem;
  font-weight: 600;
        }

        /* Action Buttons Row */
        .cta-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 2rem;
        }

        .btn-primary {
            background-color: #1e88e5;
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
        }

        .btn-primary:hover {
            background-color: #1e88e5;
            transform: translateY(-2px);
        }

        .btn-video {
            display: inline-flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            gap: 0.5rem;
            transition: opacity 0.2s;
        }

        .btn-video:hover {
            opacity: 0.9;
        }

        .play-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            backdrop-filter: blur(5px);
        }

        /* Countdown Subsection Heading */
        .countdown-heading {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.5px;
            margin-bottom: -0.25rem;
        }

        /* Countdown Grid Layout */
        .countdown-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
            width: 100%;
            max-width: 460px;
        }

        .countdown-box {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 1rem 0.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .countdown-number {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 4px;
        }

        .countdown-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: capitalize;
        }

        /* About Us Section Layout */
        .about-section {
   padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        /* Top Dark Overlay */
        linear-gradient(
            180deg,
            rgba(4, 8, 24, 0.98) 5%,
            rgba(4, 8, 24, 0.92) 20%,
            rgba(4, 8, 24, 0.65) 35%,
            rgba(4, 8, 24, 0.35) 50%
        ),

        /* Bottom Dark Overlay */
        linear-gradient(
            0deg,
            rgba(4, 8, 24, 0.98) 5%,
            rgba(4, 8, 24, 0.92) 20%,
            rgba(4, 8, 24, 0.65) 35%,
            rgba(4, 8, 24, 0.35) 50%
        ),

        /* Overall Blue Tint */
        linear-gradient(
            rgba(4, 8, 24, 0.5),
            rgba(4, 8, 24, 0.5)
        ),

        url('images/ChatGPT Image Feb 20, 2026, 05_01_05 PM.png');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
        }

        .about-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-images-wrapper {
            position: relative;
            display: flex;
            align-items: flex-start;
            padding-right: 40px;
        }

        .about-img-large {
            width: 75%;
            height: 480px;
            object-fit: cover;
            border-radius: 24px;
            border:1px solid rgba(30, 136, 229, 0.5);
        }

        .about-img-small {
            position: absolute;
            width: 55%;
            height: 320px;
            object-fit: cover;
            border-radius: 24px;
            bottom: -40px;
            right: 0;
            border: 6px solid #050f24;
            box-shadow: 0 20px 40px rgba(30,136,229,0.4);
        }

        .dot-pattern {
    position: absolute;
    top: -20px;
    right: 15%;
    width: 120px;
    height: 140px;
    background-image:radial-gradient(#1e88e570 3px, transparent 3px);
    background-size: 20px 20px;
    z-index: 1;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .about-tag {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            color: #1e88e5;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-tag::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: #1e88e5;
            border-radius: 50%;
        }

        .about-title {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
        }

        .about-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .about-action-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 1rem;
        }

        .about-btn {
            background-color: #1e88e5;
            color: white;
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .about-btn:hover {
            background-color: #5c46e4;
            transform: translateY(-2px);
        }

        .about-phone-contact {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .phone-icon-wrap {
            width: 44px;
            height: 44px;
            border: 2px solid rgba(112, 92, 246, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e88e5;
            font-size: 1rem;
        }

        .phone-text span {
            display: block;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .phone-text strong {
            font-size: 1rem;
            color: #ffffff;
            font-weight: 600;
        }

        /* --- Experiences Section --- */
        .experiences-section {
            padding: 60px 20px;
            background-color:#040818; 
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .experiences-section::before {
            content: '';
            position: absolute;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(30, 136, 229, 0.15) 0%, transparent 70%);
            left: -50px;
            top: 20%;
            pointer-events: none;
        }

        .experiences-container {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .exp-tag-pill {
            background: rgba(30, 136, 229, 0.1);
            border: 1px solid rgba(30, 136, 229, 0.3);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #1e88e5;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .exp-main-heading {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            text-align: center;
            color: #ffffff;
            margin-bottom: 3.5rem;
        }

        .exp-grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .exp-card {
            background: #091224;
            border: 1px solid rgba(30, 136, 229, 0.12); 
            border-radius: 20px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .exp-card:hover {
            transform: translateY(-5px);
            border-color: rgba(30, 136, 229, 0.35);
        }

        .exp-card::after {
            content: '';
            position: absolute;
            top: 15px;
            right: 15px;
            width: 70px;
            height: 70px;
            background-image: radial-gradient(rgba(255, 255, 255, 0.02) 2px, transparent 2px);
            background-size: 10px 10px;
            pointer-events: none;
        }

        .exp-icon {
            font-size: 1.8rem;
            color: #1e88e5;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .exp-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .exp-card p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }


        /* Customized Central Badge Graphic Card Module */
        .exp-card-graphic {
            background: linear-gradient(135deg, #1e88e5 0%, #0c071f 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            border: 1px solid rgba(30, 136, 229, 0.2);
        }

        .circle-badge-wrap {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle, rgba(30, 136, 229, 0.15) 0%, transparent 70%);
        }


        .badge-center-icon {
            width: 60px;
            height: 60px;
            background: #1e88e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.5rem;
            box-shadow: 0 0 20px rgba(30, 136, 229, 0.6);
            z-index: 2;
        }

        .rotating-badge-text {
            position: absolute;
            width: 170px;
            height: 170px;
            border-radius: 50%;
            border: 1.5px dashed rgba(30, 136, 229, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: spinCircle 20s linear infinite;
        }

        @keyframes spinCircle {
            100% { transform: rotate(360deg); }
        }

        .rotating-badge-text span {
            position: absolute;
            left: 50%;
            top: 5px;
            transform-origin: 0 80px;
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #fff;
            letter-spacing: 1px;
        }




        /* Tablet and Mobile Media Queries */
        @media(max-width: 991px) {
            .top-menu-bar {
                flex-direction: column;
                gap: 8px;
                padding: 10px 20px;
                text-align: center;
            }
            .top-menu-right {
                flex-direction: column;
                gap: 8px;
            }
            .top-menu-links {
                gap: 12px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .menu-btn {
                display: block;
            }
            .nav-links {
                position: absolute;
                left: 0;
                right: 0;
                top: 85px;
                background: #121f41;
                border-radius: 18px;
                display: none;
                flex-direction: column;
                padding: 12px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                justify-content: space-between;
                padding: 14px 16px;
            }
            .dropdown {
                position: static;
                display: none;
                background: #1a2c58;
                margin-top: 8px;
                border-radius: 10px;
                box-shadow: none;
            }
            .nav-links li.open > .dropdown {
                display: block;
            }
            .cta {
                display: none;
            }
            .nav-wrap {
                margin-bottom: 2rem;
            }
            .highlights-bar {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-bottom: 2.5rem;
                padding: 0 8px;
            }
            
            /* About Layout Adaptations */
            .about-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .about-images-wrapper {
                margin-bottom: 40px;
                justify-content: center;
                padding-right: 0;
            }
            .about-img-large {
                width: 80%;
                height: 400px;
            }
            .about-img-small {
                width: 50%;
                height: 260px;
                right: 5%;
            }
            .dot-pattern {
                right: 12%;
            }

            /* Experiences Section Adaptations */
            .exp-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .exp-grid {
                grid-template-columns: 1fr;
            }
            .exp-card-graphic {
                order: 4; /* Repositions visual badge neatly within vertical layouts */
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 16px;
            }
            .cta-group {
                flex-direction: column;
                width: 100%;
            }
            .btn-primary {
                width: 100%;
                text-align: center;
            }
            .countdown-container {
                gap: 0.5rem;
            }
            .countdown-box {
                padding: 0.75rem 0.25rem;
            }
            .about-section {
                padding: 60px 16px;
            }
            .about-img-large {
                width: 100%;
                height: 320px;
            }
            .about-img-small {
                display: none;
            }
            .dot-pattern {
                display: none;
            }
            .about-action-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
            .about-btn {
                width: 100%;
                text-align: center;
            }
            .experiences-section {
                padding: 60px 16px;
            }
            .exp-main-heading {
                margin-bottom: 2rem;
            }
        }





        /* Core Speakers Section Container */
        .Speakers {
            width: 100%;
            margin: 0 auto;
            background-image: url(images/team-ai-h4-bg1-min.png);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            color: #ffffff;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
        }

        /* Header Layout inside Speakers block */
        .Speakers-header {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 48px;
        }

        .Speakers-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #1e88e5;
            background-color: rgba(30, 136, 229, 0.3);
            padding: 6px 14px;
            border-radius: 9999px;
            border: 1px solid rgba(30, 136, 229, 0.3);
            width: fit-content;
        }

        .Speakers-title {
            font-size: 28px;
            font-weight: 700;
            margin-top: 16px;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .Speakers-description {
            color: #9ca3af;
            font-size: 14px;
            line-height: 1.6;
            max-width: 640px;
        }

        /* Action Badge Wrapper */
        .Speakers-action-wrapper {
            display: flex;
            justify-content: flex-start;
        }

        .Speakers-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 112px;
            height: 112px;
            background-color: #1e88e5;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
            box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.4);
            transition: transform 0.3s ease;
        }

        .Speakers-btn:hover {
            transform: scale(1.05);
        }

        .Speakers-btn-arrow {
            background-color: #ffffff;
            color: #1e88e5;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            transition: transform 0.3s ease;
        }

        .Speakers-btn:hover .Speakers-btn-arrow {
            transform: translateX(4px);
        }

        /* Responsive Grid System */
        .Speakers-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        /* Card Elements */
        .Speakers-card {
            background-color: #040819;
            border: 1px solid rgba(30, 136, 229, 0.15);
            border-radius: 16px;
            padding: 16px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .Speakers-card:hover {
            border-color: rgba(30, 136, 229, 0.5);
            box-shadow: 0 20px 25px -5px rgba(30, 136, 229, 0.05);
        }

        .Speakers-image-box {
            width: 100%;
            aspect-ratio: 4 / 5;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
        }

        .Speakers-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            filter: brightness(0.9) contrast(1.05);
            transition: transform 0.5s ease;
        }

        .Speakers-card:hover .Speakers-image-box img {
            transform: scale(1.05);
        }

        .Speakers-image-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(9, 5, 20, 0.6), transparent 40%);
        }

        .Speakers-name {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.02em;
            color: #f3f4f6;
        }

        .Speakers-role {
            font-size: 12px;
            color: #9ca3af;
            margin-top: 4px;
        }

        /* Responsive Scaling Viewports (Mobile Ready System) */
        @media (min-width: 640px) {

            .Speakers-title {
                font-size: 36px;
            }
            .Speakers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .Speakers-header {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
            .Speakers-title {
                font-size: 44px;
            }
            .Speakers-action-wrapper {
                justify-content: flex-end;
            }
            .Speakers-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .Speakers-btn {
                width: 128px;
                height: 128px;
            }
        }




            .sponsor-ticket-card {
                background: url('images/partner-h4-bg1.png') center center / 100% 100% no-repeat;
                height: 180px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                transition: transform 0.3s ease;
            }
            .sponsor-ticket-card:hover {
                transform: translateY(-4px);
            }
            .sponsor-logo {
                max-width: 75%;
                max-height: 50px;
                object-fit: contain;
                filter: brightness(1) invert(0); /* Adjust if your vector assets need color shifts */
            }
        





/* Section Wrapper */
.venue-section {
    width: 100%;
    flex-direction: column;
  background-color:#040818 ;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        /* Top Dark Overlay */
        linear-gradient(
            180deg,
            rgba(4, 8, 24, 0.98) 0%,
            rgba(4, 8, 24, 0.92) 10%,
            rgba(4, 8, 24, 0.65) 25%,
            rgba(4, 8, 24, 0.35) 40%
        ),

        /* Bottom Dark Overlay */
        linear-gradient(
            0deg,
            rgba(4, 8, 24, 0.98) 0%,
            rgba(4, 8, 24, 0.92) 10%,
            rgba(4, 8, 24, 0.65) 25%,
            rgba(4, 8, 24, 0.35) 40%
        ),

        /* Overall Blue Tint */
        linear-gradient(
            rgba(4, 8, 24, 0.5),
            rgba(4, 8, 24, 0.5)
        ),

        url('images/ARG_Ponte-de-la-Mujer-Buenos-Aires-1280x719.jpg');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;


}

/* Outer Border Box */
.card-container {
    border: 2.5px dashed #1e88e5;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    gap: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Left Image Box */
.image-gallery {
    flex: 1;
    min-width: 300px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 8px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Purple tint overlay simulator */
    filter: hue-rotate(45deg) saturate(1.3); 
}


/* Right Side Layout */
.info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
}

/* Map Container */
.map-box {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Bottom Grid for Address & Contact */
.details-grid {
    display: flex;
    gap: 15px;
}

.detail-card {
    flex: 1;
    background-color: #f1effd;
    border-left: 4px solid #1e88e5;
    border-radius: 0 8px 8px 0;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.icon-box {
    color: #1e88e5;
    font-size: 1.4rem;
}

.detail-text p {
    font-size: 0.85rem;
    color: #4a4a4a;
    line-height: 1.4;
    word-break: break-word;
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
    }
    
    .details-grid {
        flex-direction: column;
    }

/* Left Image Box */
.image-gallery {
    min-width:100%;
}
/* Right Side Layout */
.info-container {
    min-width:100%;
}




    

}

.sponsors { 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background-color:#040818 ;
     }



        /* Language Selector custom injection styles */
        .lang-switch {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-left: 10px;
        }
        .lang-btn {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: color 0.2s;
            border: none;
            background: none;
            padding: 0;
        }
        .lang-btn.active {
            color: #ffffff;
        }
        .lang-divider {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.85rem;
        }
        @media(max-width: 991px) {
            .lang-switch {
                margin: 15px auto 0 auto;
                width: fit-content;
            }
        }


    
/* Trilingual Toggle Framework Styles */
.nav-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.2s ease;
}

.lang-btn.active {
    color: #1e88e5; /* Matches the top banner color */
}

.lang-btn:hover {
    color: #ffffff;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    user-select: none;
}

/* Responsive Overrides for Language Toggle Containers */
@media(max-width: 991px) {
    .nav-actions-wrapper {
        flex-direction: column;
        margin-top: 15px;
        gap: 12px;
        width: 100%;
    }
    .lang-switcher {
        margin: 0 auto;
    }
}



/* Registration Section Layout */
.registration-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        /* Top Dark Overlay */
        linear-gradient(
            180deg,
            rgba(4, 8, 24, 0.98) 0%,
            rgba(4, 8, 24, 0.92) 10%,
            rgba(4, 8, 24, 0.65) 25%,
            rgba(4, 8, 24, 0.35) 40%
        ),

        /* Bottom Dark Overlay */
        linear-gradient(
            0deg,
            rgba(4, 8, 24, 0.98) 0%,
            rgba(4, 8, 24, 0.92) 10%,
            rgba(4, 8, 24, 0.65) 25%,
            rgba(4, 8, 24, 0.35) 40%
        ),

        /* Overall Blue Tint */
        linear-gradient(
            rgba(4, 8, 24, 0.5),
            rgba(4, 8, 24, 0.5)
        ),

        url('images/Summit.png');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

}

.registration-container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
}

.registration-card {
    background:#040818;
    border: 1px solid rgba(30, 136, 299, 0.20);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(30, 136, 299, 0.2);
}

.registration-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 15px 0 25px 0;
}

/* Coming Soon Badge & Pulse Animation */
.coming-soon-badge-wrap {
    position: relative;
    display: inline-block;
    margin: 15px 0 30px 0;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid #1e88e5;
    animation: badgePulse 2s infinite ease-out;
    pointer-events: none;
}

@keyframes badgePulse {
    0% {
        transform: scale(0.96);
        opacity: 1;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.registration-desc {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 30px auto;
}

.notify-box {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    color: #1e88e5;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Customization */
@media (max-width: 576px) {
    .registration-card {
        padding: 40px 20px;
    }
    .registration-title {
        font-size: 1.75rem;
    }
    .registration-desc {
        font-size: 1rem;
    }
}


/* Agenda Section Layout */
.agenda-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background-color: #040818;
}

/* 1. Social Icons Styling */
.social-icons {
  gap: 12px;
}

/* Footer Base Styling */
.custom-footer {
  background-color:#040818;
  color: #ffffff;
  padding: 60px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-section {
  display: flex;
  align-items: center;
}


.icon-box1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: #262626;
  border-radius: 8px;
  color: #0066ff; /* Vibrant blue color matching your image */
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-box1:hover {
  background-color: #333333;
  color: #3399ff;
}




/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  

}

#scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button 20px from the bottom */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not get hidden behind other elements */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #1e88e5; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  transition: background-color 0.3s; /* Smooth hover transition */
}

#scrollToTopBtn:hover {
  background-color:#040819; /* Add a dark-grey background on hover */
}



/* Left */

.about-images-wrapper{
    position:relative;
    width:560px;
    height:520px;
}

.image-box{
    position:absolute;
    overflow:hidden;
    border-radius:38px;
    border:3px solid #111;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Large */

.image-large{
    width: 400px;
    height: 450px;
    top: 0;
    left: -100px;
}

/* Middle */

.image-middle{
    width: 270px;
    height: 300px;
    top:125px;
    left:170px;
    z-index:5;
}

/* Bottom */

.image-small{
    width: 250px;
    height: 180px;
    border-radius: 24px;
    z-index: 111;
}

.image-small.left{
    bottom:0;
    left:70px;
}

.image-small.right{
    bottom:0;
    left:330px;
}

/* Dot Pattern */

.dot-pattern{
position: absolute;
    width: 120px;
    height: 120px;
    top: -5px;
    right: 180px;
    background-image: radial-gradient(#2e5df6 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: .35;
    z-index: 0;
}

/* Right */




/* Responsive */

@media(max-width:1100px){



.about-images-wrapper{
    width:100%;
    max-width:520px;
    height:520px;
}


}

@media(max-width:768px){

.about-images-wrapper{
    transform:scale(.85);
    transform-origin:top center;
    height:450px;
}


}





/*======================================
BACKGROUND agenda
=======================================*/

.agenda{
    position:relative;
    padding:90px 0;
    overflow:hidden;
}

.glow{
    position:absolute;
    border-radius:50%;
    filter:blur(130px);
    z-index:0;
}

.glow1{
    width:450px;
    height:450px;
    background:#1e88e5;
    top:40px;
    left:40%;
}

.glow2{
    width:350px;
    height:350px;
    background:#2d6cff;
    bottom:-120px;
    left:55%;
}

.container{
    position:relative;
    z-index:5;
}

/*======================================
TOP
=======================================*/

.top-area{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:40px;
    margin-bottom:55px;
}

.tag{
    
    display:inline-block;
    background: rgba(30, 136, 229, 0.1);
    border: 1px solid rgba(30, 136, 229, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e88e5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;

}

.left h1{
    font-size:44px;
    line-height:1.1;
    font-weight:700;
}

/*======================================
DAY BUTTONS
=======================================*/

.days{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.day{
    background:transparent;
    border:1px solid #1773c6;
    color:#fff;
    border-radius:14px;
    width:200px;
    padding:15px;
    cursor:pointer;
    transition:.35s;
}

.day h3{
    margin-bottom:0px;
    font-size:22px;
    font-weight: 600;
}

.day p{
    font-size:15px;
    color:#c9c9c9;
}

.day:hover{
    transform:translateY(-5px);
    border-color:#1e88e5;
}

.day.active{
    background:linear-gradient(135deg,#1773c6,#1e88e5);
    border:none;
}

/*======================================
CARD
=======================================*/

.agenda-card{

    background:#0b0b1d;

    border:1px solid rgba(30,136,229,.25);

    border-radius:25px;

    padding:30px;

    margin-bottom:15px;
    margin-top:15px;
    transition:.4s;

    position:relative;

    overflow:hidden;

}

.agenda-card:before{

content:"";

position:absolute;

top:0;

left:-150%;

width:60%;

height:100%;

background:linear-gradient(90deg,
transparent,
rgba(255,255,255,.06),
transparent);

transition:.8s;

}

.agenda-card:hover:before{

left:180%;

}

.agenda-card:hover{

transform:translateY(-8px);

border-color:#1e88e5;

box-shadow:0 0 45px rgba(30,136,229,.35);

}

/*======================================
INFO
=======================================*/

.info{

display:flex;

gap:35px;

flex-wrap:wrap;

margin-bottom:15px;

color:#bbbbbb;

}

.info span{

display:flex;

align-items:center;

gap:10px;

font-size:15px;

}

.info i{

color:#1e88e5;

}

/*======================================
TITLE
=======================================*/

.agenda-card h2{

font-size:22px;

line-height:1.4;

margin-bottom:10px;

font-weight:700;

max-width:900px;


}

/*======================================
SPEAKERS
=======================================*/

/* Speakers Container */
.speakers{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    align-items:center;
    margin-top:25px;
}

/* Individual Speaker */
.speaker{
    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:10px 16px;
    border-radius:50px;
    transition:all .3s ease;
}

.speaker:hover{
    transform:translateY(-5px);
    border-color:#1e88e5;
    box-shadow:0 10px 25px rgba(30,136,229,.25);
}

.speaker img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #1e88e5;
}

.speaker h4{
    font-size:16px;
    margin:0;
    color:#fff;
}

.speaker p{
    margin:2px 0 0;
    font-size:13px;
    color:#bdbdbd;
}

/*======================================
RESPONSIVE
=======================================*/

@media(max-width:991px){

.left h1{

font-size:42px;

}

.top-area{

flex-direction:column;

}

.days{

width:100%;

}

.day{

flex:1;

min-width:180px;

}

.agenda-card{

padding:30px;

}

.agenda-card h2{

font-size:28px;

}

}

@media(max-width:767px){

.left h1{

font-size:34px;

}

.day{

width:100%;

}

.info{

flex-direction:column;

gap:12px;

}

.agenda-card{

padding:25px;

}

.agenda-card h2{

font-size:24px;

}

.speaker img{

width:48px;

height:48px;

}

}

@media(max-width:480px){

.container{

width:92%;

}

.left h1{

font-size:30px;

}

.tag{

font-size:12px;

}

.agenda{

padding:70px 0;

}

.agenda-card{

border-radius:18px;

}

}


.schedule-content{
    display:none;
    animation:fade .5s ease;
}

.schedule-content.active{
    display:block;
}

@keyframes fade{

from{
    opacity:0;
    transform:translateY(20px);
}

to{
    opacity:1;
    transform:translateY(0);
}

}



/*==============================
 Coffee Break
===============================*/

.break-card{
    position:relative;
    border-radius: 15px;
    background:linear-gradient(135deg, #040818a3, #2575fc8c);
    overflow: hidden;
}

.break-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );
    transform:translateX(-100%);
    animation:shine 4s infinite;
}

@keyframes shine{
    100%{
        transform:translateX(100%);
    }
}

.break-content h3{
    margin: 10px 0 8px;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}



/*==========================
Hero Section
==========================*/

.Panel{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

/*==========================
Slides
==========================*/

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity 1.5s ease;
}

.slide.show{
    opacity:1;
    visibility:visible;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoom 10s linear infinite alternate;
}

@keyframes zoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.12);
    }
}

/*==========================
Overlay
==========================*/

.overlay{
    position:absolute;
    inset:0;
    background:rgba(10,15,40,.55);
    z-index:2;
}

/*==========================
Features
==========================*/

.features{

    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    z-index:3;

}

.feature{

    position:relative;
    min-height:220px;

    padding:40px 28px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    color:#fff;

    background:rgba(0,0,0,.12);

    backdrop-filter:blur(3px);

    border-right:1px solid rgba(255,255,255,.08);

    transition:.4s;

    overflow:hidden;

}

.feature:last-child{
    border-right:none;
}

.feature::before{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(180deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.15));

    opacity:0;
    transition:.4s;

}

.feature:hover::before{
    opacity:1;
}

.feature::after{

    content:"";

    position:absolute;
    left:0;
    top:0;

    width:0;
    height:4px;

    background:#1e88e5;

    transition:.5s;

}

.feature:hover::after{
    width:100%;
}

.feature:hover{

    transform:translateY(-10px);
    background:rgba(0,0,0,.35);

}

.feature h3{

    font-size:19px;
    margin-bottom:15px;
    line-height:normal;
    position:relative;

}

.feature p{

    font-size:15px;
    line-height:normal;
    color:#f2f2f2;
    position:relative;

}

/*==========================
Responsive
==========================*/

@media(max-width:1200px){

.features{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.Panel{
height:auto;
}

.features{

position:relative;

grid-template-columns:1fr;

}

.feature{

min-height:180px;

}

}

/*==========================
Section Title
==========================*/

.section-title{
    position:absolute;
    top:70px;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:900px;
    text-align:center;
    z-index:4;
    color:#fff;
}

.section-title span{
    display:inline-block;
    font-size:18px;
    color:#1e88e5;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:10px;
    font-weight:600;
}

.section-title h2{
    font-size:44px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:18px;
}

.section-title p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
    max-width:750px;
    margin:auto;
}

@media(max-width:992px){
    .section-title{
        top:50px;
    }

    .section-title h2{
        font-size:42px;
    }
}

@media(max-width:768px){
    .section-title{
        position:relative;
        top:auto;
        left:auto;
        transform:none;
        padding:50px 20px 30px;
    }

    .section-title h2{
        font-size:32px;
    }

    .section-title p{
        font-size:16px;
    }
}
