        :root {
            --primary-pink: #1e88e5;
            --gradient-pink: #ff007f;
            --dark-purple: #100624;
            --topbar-box-bg: rgba(255, 255, 255, 0.08);
            --dropdown-bg: #190938;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #ffffff;
            overflow-x: hidden;
            background-color:#140628;
        }

        /* Header Positioning Over Hero Section */
        header {
            position: absolute;
            left: 0;
            width: 100%;
            z-index: 100;
        }

       .header_container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            position: relative;
        }

        /* Top Bar */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 0.85rem;
            min-height: 48px;
        }

        .contact-box {
            padding: 12px 30px;
            display: flex;
            align-items: center;
            gap: 30px;
            margin-left: 260px;
            border-bottom-left-radius: 6px;
            border-bottom-right-radius: 6px;
            backdrop-filter: blur(5px);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #ffffff;
            font-size: 0.82rem;
            font-weight: 500;
        }

        .contact-item i {
            color: #ffffff;
        }

        .social-links {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .social-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            font-size: 0.75rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #1e88e5;
            border-color: #1e88e5;
        }

        /* Navigation Bar */
        .main-navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
        }

        /* Floating Brand Logo Badge */
        .brand-logo {
            position: absolute;
            top: 0;
            left: 20px;
            background-color:#140628;
            padding: 30px 10px;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #ffffff;
            z-index: 10;
            box-shadow: 0 10px 25px rgba(30, 136, 229, 0.4);
        }

        .brand-logo i {
            font-size: 2.2rem;
            margin-bottom: 6px;
        }

        .brand-logo span {
            font-weight: 900;
            font-size: 1.15rem;
            letter-spacing: 1.5px;
        }

        /* Navigation Links */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 8px;
            margin-left: 260px;
            align-items: center;
            margin-bottom: 0rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #ffffff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s ease;
        }

        .nav-link.active,
        .nav-link:hover {
            color: #1e88e5;
        }

        .nav-link i {
            font-size: 0.65rem;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .nav-link i {
            transform: rotate(180deg);
        }

        /* Dropdown Styling */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--dropdown-bg);
            min-width: 180px;
            list-style: none;
            border-radius: 8px;
            padding: 10px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.08);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li a {
            color: #d8d8d8;
            text-decoration: none;
            padding: 8px 20px;
            display: block;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .dropdown-menu li a:hover {
            background-color: #1e88e5;
            color: #ffffff;
            padding-left: 25px;
        }

        /* Header CTA Button */
        .btn-header {
            background-color:#140628;
            color: #ffffff;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
        }

        .btn-header:hover {
            background-color: #ffffff;
            color: #1e88e5;
        }

        /* Hero Section */
        .hero {
            height: 100%;
            min-height: 750px;
            background: url('images/hero-section.png') center/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(20, 6, 40, 0.92) 0%, rgba(30, 136, 229, 0.65) 50%, rgba(20, 6, 40, 0.92) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            padding: 120px 20px 0;
        }

        .hero h2 {
            font-size: 65px;
            font-weight: 700;
            line-height: 0.95;
            letter-spacing: 2px;
            text-transform: uppercase;
            background:linear-gradient(180deg, #140628d4 0%, #0e0ef2b0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .hero h1 {
            font-size: 70px;
            font-weight: 700;
            line-height: 0.85;
            letter-spacing: 3px;
            text-transform: uppercase;
            background:linear-gradient(180deg, #140628d4 0%, #0e0ef2b0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            margin-bottom: 25px;
        }

        .subtitle {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 40px;
            color: #ffffff;
        }

        .event-info {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            margin-left: 70px;
        }

        .info {
            display: flex;
            align-items: center;
            gap: 16px;
            text-align: left;
        }

        .info i {
            font-size: 42px;
            color: #ffffff;
        }

        .info-text {
            font-size: 15px;
            font-weight: 500;
            line-height: 1.2;
        }

        .info-text strong {
            font-size: 20px;
            font-weight: 800;
            display: block;
        }

        .buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.4s ease;
            letter-spacing: 0.5px;
            display: inline-block;
        }

        .pink {
            background:#140628;
            color: #fff;
            box-shadow: 0 8px 20px rgba(20, 6, 40, 0.4);
        }

        .white {
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            background: transparent;
        }

        .pink:hover {
            background: #fff;
            color: #1e88e5;
        }

        .white:hover {
            background: #fff;
            color: #222;
            border-color: #fff;
        }

        /* Mobile Controls */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero h2 {
                font-size: 80px;
            }
            .hero h1 {
                font-size: 130px;
            }
        }

        @media (max-width: 992px) {
            .contact-box {
                margin-left: 0;
                border-radius: 0;
            }

            .brand-logo {
                position: relative;
                top: 0;
                left: 0;
                padding: 12px 20px;
                border-radius: 12px;
                box-shadow: none;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dropdown-bg);
                margin-left: 0;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.4);
                z-index: 200;
            }

            .nav-menu.show {
                display: flex;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: rgba(0, 0, 0, 0.2);
                margin-top: 8px;
                display: none;
            }

            .nav-item.open .dropdown-menu {
                display: block;
            }

            .mobile-toggle {
                display: block;
            }

            .nav-btn-wrapper {
                display: none;
            }

            .hero h2 {
                font-size: 60px;
            }

            .hero h1 {
                font-size: 95px;
            }

            .subtitle {
                font-size: 18px;
            }

            .event-info {
                gap: 30px;
                margin-left: 0px;
            }
        }

        @media (max-width: 768px) {
            .hero h2 {
                font-size: 42px;
            }

            .hero h1 {
                font-size: 65px;
            }

            .subtitle {
                font-size: 15px;
            }

            .info {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .info-text strong {
                font-size: 18px;
            }

            .info-text {
                font-size: 14px;
            }
        }

        @media (max-width: 650px) {
            .top-bar {
                flex-direction: column;
                gap: 10px;
                padding: 10px 0;
            }

            .contact-box {
                flex-direction: column;
                gap: 8px;
                width: 100%;
                text-align: center;
            }
        }

        /* Top Bar Menu Styling */
        .top-menu-bar {
            background-color: #1e88e5; /* Matching blue background */
            width: 100%;
            padding: 16px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        /* Left Side Text */
        .top-menu-left {
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 400;
        }

        .top-menu-left strong {
            font-weight: 700;
        }

        /* Right Side Navigation Links */
        .top-menu-right {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
            margin-bottom: 0rem;
        }

        .top-menu-right li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.92rem;
            font-weight:400;
            transition: opacity 0.2s ease;
        }

        .top-menu-right li a:hover {
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .top-menu-bar {
                flex-direction: column;
                gap: 12px;
                padding: 16px 20px;
                text-align: center;
            }

            .top-menu-right {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
        }

.a_btn{
    color: #140628;
    text-decoration: none;

}

/*============================*/

.countdown-section{

padding:90px 0%;
/*background:#140628;
display:flex;
justify-content:center;
align-items:center;
gap:70px;
flex-wrap:wrap;*/

}



.left-title h2{

font-size:43px;
font-weight:800;
color:#fff;
text-transform:uppercase;

}

.left-title span{

color:#1e88e5;

}

/*=============================*/

.countdown{

display:flex;
align-items:center;
gap:12px;
flex-wrap:wrap;

}

.time-box{

width:150px;
height:150px;

border-radius:28px;

background:#140628;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
border: 2px solid rgb(30 136 229);
box-shadow: 10px 10px 0 rgb(30 136 229 / 12%), 0 0 25px rgba(255, 0, 140, .08);
transition:.35s;

}

.time-box:hover{

transform:translateY(-6px);
box-shadow: 14px 14px 0 rgb(30 136 229 / 18%), 0 0 40px rgb(30 136 229 / 20%);

}

.number{

font-size:60px;
font-weight:800;
color:#fff;
line-height:1;

}

.label{

font-size:18px;
letter-spacing:3px;
margin-top:8px;
color:#fff;

}

.separator{

font-size:70px;
font-weight:700;
color:#9d8cb9;

margin-top:-20px;

}

/*=========================*/

@media(max-width:1200px){

.countdown-section{

flex-direction:column;
text-align:center;

}

.left-title{

max-width:100%;

}

}

@media(max-width:768px){

.left-title h2{

font-size:40px;

}

.countdown{

justify-content:center;

}

.time-box{

width:120px;
height:120px;

}

.number{

font-size:44px;

}

.label{

font-size:15px;

}

.separator{

display:none;

}

}

@media(max-width:480px){

.countdown{

gap:15px;

}

.time-box{

width:100px;
height:100px;
border-radius:20px;

}

.number{

font-size:34px;

}

.label{

font-size:13px;

}

.left-title h2{

font-size:32px;

}

}

/*=========================
ABOUT SECTION
==========================*/

.about-section{
    position:relative;
    padding:90px 0;
    overflow:hidden;
    padding-bottom: 0px;

}

.about-section .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

    flex-wrap:wrap;

}

/*=========================
LEFT SIDE
==========================*/

.about-left{

    min-width:520px;

    position:relative;

    height:570px;

}

/* Orbit */

.orbit-bg{

    position:absolute;

    left:50%;

    top:35%;

    transform:translate(-50%,-50%);

    width:600px;

    opacity:.35;

    animation:rotateOrbit 40s linear infinite;

}

@keyframes rotateOrbit{

from{
transform:translate(-50%,-50%) rotate(0deg);
}

to{
transform:translate(-50%,-50%) rotate(360deg);
}

}

/*=========================
MAIN IMAGE
==========================*/

.main-image{

    position:absolute;

    left:170px;

    top:80px;

    width:300px;

    height:380px;

    overflow:hidden;

    border-radius:35px;

    border:5px solid #1e88e5;

    z-index:10;

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.main-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/*=========================
SMALL IMAGES
==========================*/

.small-image{

position:absolute;
overflow:hidden;
border-radius:25px;
border:3px solid #1e88e5;
box-shadow:0 20px 40px rgba(0,0,0,.3);
transition:.4s;
cursor:pointer;
z-index: 111;


}

.small-image:hover{

transform:translateY(-10px) scale(1.05);

}

.small-image img{

width:100%;

height:100%;

object-fit:cover;

}

/* Top Left */

.image1{

width:150px;

height:190px;

top:30px;

left:40px;

}

/* Bottom Left */

.image2{
width: 130px;
height: 130px;
bottom: 180px;
left: 35px;

}

/* Right */

.image3{
width: 130px;
height: 130px;
right: 75px;
top: 120px;

}

/* Bottom Right */

.image4{
    width: 160px;
    height: 170px;
    right: 80px;
    bottom: 40px;

}

/*=========================
RIGHT CONTENT
==========================*/

.about-right{


position:relative;

}

.watermark{
    position: absolute;
    right: 200px;
    top: -50px;
    font-size: 80px;
    font-weight: 800;
    opacity: .05;
    text-transform: uppercase;
    pointer-events: none;

}

.about-right h2{
    font-size: 43px;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;

}

.about-right h2 span{

color:#1e88e5;

}

.about-right p{
color: #9f98b2;
font-size: 0.95rem;
line-height: 1.6;
margin-bottom:40px;
}

/*==================================
BUTTON & AUTHOR
===================================*/

.author{
    display:flex;
    align-items:center;
    gap:40px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.btn-about{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#1e88e5;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.35s;
    box-shadow: 0 12px 30px rgb(30 136 229 / 35%);
    text-decoration: none;
}

.btn:hover{
    background:#ffffff;
    color:#1b0d3d;
    transform:translateY(-4px);
}



/*==================================
RESPONSIVE
===================================*/

@media(max-width:1200px){

.about-section .container{
    flex-direction:column;
    gap:70px;
}

.about-left,
.about-right{
    width:100%;
}

.about-left{
    min-width:auto;
    height:650px;
}

.watermark{
    display:none;
}

.about-right h2{
    font-size:50px;
}

}

@media(max-width:768px){

.about-section{
    padding:80px 20px;
}

.about-left{
    height:520px;
}

.main-image{
    width:190px;
    height:300px;
    left:50%;
    transform:translateX(-50%);
}

.image1{
    width:120px;
    height:150px;
    left:10px;
    top:20px;
}

.image2{
    width:110px;
    height:110px;
    left:10px;
    bottom:80px;
}

.image3{
    width:110px;
    height:110px;
    right:10px;
    top:120px;
}

.image4{
    width:130px;
    height:140px;
    right:20px;
    bottom:20px;
}

.orbit-bg{
    width:500px;
}

.about-right h2{
    font-size:38px;
}

.about-right p{
    font-size:16px;
}



}

@media(max-width:480px){

.about-left{
    height:450px;
}

.orbit-bg{
    width:360px;
}

.about-right h2{
    font-size:32px;
}





}


/* --- Header Section --- */

 .ClimateWeek {
    position: relative;
    padding: 90px 0;

        }


        .title-wrapper {
            position: relative;
        }


        .main-title {
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
    text-align: center;
    font-size: 43px;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
        }

        .main-title span {
            color:  #1e88e5;
        }

        .ClimateWeek-description {
            color: #9f98b2;
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: center;
        }

.ClimateWeek-description::before  {
content: "";
    position: absolute;
    width: 100%;
    height: 350px;
    background: radial-gradient(circle, rgb(30 136 229 / 45%) 0%, rgb(30 136 229 / 22%) 35%, transparent 75%);
    left: 50%;
    transform: translateX(-50%);
    filter: blur(35px);
    z-index: -111;
    top: 0;
}






        .btn-learn-more {
            display: inline-block;
            background-color:  #1e88e5;
            color: #ffffff;
            text-decoration: none;
            padding: 0.85rem 2.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            justify-self: start;
            box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
        }



        .btn-learn-more:hover {
            background-color: #1e88e5;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
        }

        /* --- Cards Section --- */
        .ClimateWeek-card-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2.5rem 2rem;
/*            padding-top: 60px;*/
        }

    @media (max-width: 576px) {
     .ClimateWeek-card-grid {
      grid-template-columns: repeat(1, 1fr);
      }
    }



        .ClimateWeek-card {
            background-color:#100624;
            border:1px solid rgb(30 136 229);
            border-radius: 20px;
            padding: 1rem 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            position: relative;
            box-shadow: 10px 10px 0px #1e88e5;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

.ClimateWeek-card-title{

    font-size:1.2rem;
}



        .ClimateWeek-card:before {
background-image: url(images/image-011.png);
    --background-overlay: '';
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 30% auto;
}



        .ClimateWeek-card:hover {
            transform: translateY(-4px);
            box-shadow: 14px 14px 0px #1e88e5;
            border-color: rgba(30, 136, 229, 0.3);
        }

        .ClimateWeek-card-content {
            flex: 1;
        }

        .ClimateWeek-cardtitle {
            font-size: 1.25rem;
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

        .ClimateWeek-card-text {
            color:#fff4f4;
            font-size: 0.9rem;
            line-height: 1.5;
            max-width: 250px;
        }

        .ClimateWeek-card-icon {
   flex-shrink: 0;
    width: 60px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
        }

        .ClimateWeek-card-icon svg {
            width: 100%;
            height: 100%;
            stroke: #a49cb5;
            stroke-width: 1.5;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }



        /* Background decorative elements */
        .schedule-watermark {
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 75px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            letter-spacing: 12px;
            user-select: none;
            z-index: 0;
            white-space: nowrap;
        }





        /* Title Styling */
        .schedule {
            text-align: center;
        }

        .schedule h1 {
      
    letter-spacing: -0.5px;
    text-align: center;
    font-size: 43px;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
        }

        .schedule h1 span {
            color:#1e88e5;
        }

        /* Date Pill Selector */
        .date-badge {
display: inline-flex ;
    align-items: center;
    gap: 8px;
    border: 1px solid rgb(30 136 229 / 40%);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
    position: relative;
    background: rgb(16 6 36 / 60%);
        }

        .date-badge::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 8px 8px 0 8px;
            border-style: solid;
            border-color:rgb(30 136 229 / 40%) transparent transparent transparent;
        }

        .date-badge i {
            font-size: 0.9rem;
            color: #ffffff;
        }

        /* Schedule List */
        .schedule-list {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        .schedule-card {
            display: flex;
            background-color:#100624;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .schedule-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(30, 136, 229, 0.1);
        }

        .schedule-box {
            background-color:#1e88e5;
            width: 15%;
            padding:10px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-shrink: 0;
        }

        .schedule-box1 {
            background-color:#1e88e5;
            width: 100%;
            padding:10px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-shrink: 0;
        }



        .schedule-box .lecture {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .schedule-box .schedule {
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.5px;
        }

        .scheduleinfo-box {
            padding: 10px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex-grow: 1;
        }

        .scheduleinfo-box h2 {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 8px;
            color: #ffffff;
        }

        .scheduleinfo-box p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .scheduleinfo-box .view-details {
            display: inline-block;
            color: #ff2a85;
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.2s ease;
        }

        .scheduleinfo-box .view-details:hover {
            color: #ffffff;
        }

        /* Button */
        .btn-discover {
            background: linear-gradient(90deg, #ff2a85, #ff2a85);
            color: #ffffff;
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 42, 133, 0.4);
        }

        .btn-discover:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 42, 133, 0.6);
            background: #e02374;
        }

        /* Responsive Layout adjustments */
        @media (max-width: 600px) {
            .schedule-card {
                flex-direction: column;
            }

            .schedule-box {
                width: 100%;
                padding: 18px 15px;
            }

            .scheduleinfo-box {
                padding: 20px;
                text-align: center;
            }
        }

.Agenda{

position: relative;
    padding: 90px 0;
    padding-bottom: 0px;

    }


.Speakers {

position: relative;
    padding: 90px 0;

}


  .Speaker-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      width: 100%;
    }

    .Speaker {
      position: relative;
      border-radius: 20px;
      border:2px solid #1e88e5;
      overflow: hidden;
      aspect-ratio: 3 / 4;
      background-size: cover;
      background-position: center;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .Speaker:hover {
      transform: translateY(-5px);
      box-shadow:0 15px 30px rgb(29 129 219 / 35%);
    }

    /* Bottom overlay for Speaker info */
    .Speaker-content-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(180deg, rgb(28 128 218 / 20%) 0%, rgb(30 136 229 / 90%) 80%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      text-align: center;
      padding: 20px 10px 15px;
      color: #ffffff;
    }

    .Speaker-content-bottom h3 {
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: 1px;
      margin-bottom: 4px;
      
    }

    .Speaker-content-bottom p {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1px;
      color: #e0e0e0;
      margin-bottom: 12px;
     
    }

    .social-icons {
      display: flex;
      gap: 8px;
    }

    .social-icons a {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background-color: #1e88e5;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      font-size: 0.75rem;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .social-icons a:hover {
      background-color: #ff4081;
      transform: scale(1.1);
    }

    /* Responsive Breakpoints */
    @media (max-width: 992px) {
      .Speaker-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .Speaker-container {
        grid-template-columns: 1fr;
      }
    }



   /* Main Section Container */
    .contact-section {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      background-image: url("images/contact.png");
      background-position: bottom right;
      background-repeat: no-repeat;
      background-size: cover;
      overflow: hidden;
    }

    .contact-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:linear-gradient(90deg, #120224cf 60%, rgb(30 136 229 / 20%) 20%);
      z-index: 1;
    }

    .contact-container {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1200px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    /* Left Side Form Styles */
    .form-wrapper {
      position: relative;
      padding-right: 20px;
    }

    /* Large Background Watermark Text */
    .bg-watermark {
      position: absolute;
      top: -45px;
      left: 0;
      font-size: 5rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.04);
      letter-spacing: 2px;
      pointer-events: none;
      user-select: none;
    }

    .form-title {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .form-title span {
      color: #1e88e5;
    }

    .form-description {
      color: #b0a3c0;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    /* Right Side Combined Card (Info + Map) */
    .info-map-card {
      display: flex;
      background: #1e88e5;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      min-height: 420px;
    }

    /* Pink Contact Info Block */
    .info-block {
      flex: 1;
      padding: 35px 25px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      text-align: center;
      color: #ffffff;
    }

    .info-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
    }

    .icon-circle {
      width: 50px;
      height: 50px;
      background-color: #120224;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      color: #1e88e5;
      font-size: 1.2rem;
    }

    .info-heading {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .info-contact {
      font-size: 0.8rem;
      line-height: 1.4;
      color: #fce4ec;
    }

    .info-contact a {
      color: #fce4ec;
      text-decoration: none;
    }

    .info-contact a:hover {
      text-decoration: underline;
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top:0px;
    }

    .social-icon {
      width: 28px;
      height: 28px;
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-size: 0.75rem;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background: #fff;
      color: #1e88e5;
    }

    /* Embedded Google Map Block */
    .map-block {
      flex: 1.2;
      position: relative;
      min-height: 300px;
    }

    .map-block iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    /* Responsive Breakdown */
    @media (max-width: 992px) {
      .contact-container {
        grid-template-columns: 1fr;
      }
      
      .form-wrapper {
        padding-right: 0;
      }

      .bg-watermark {
        font-size: 3.5rem;
        top: -30px;
      }
    }

    @media (max-width: 600px) {
      .info-map-card {
        flex-direction: column;
      }

      .map-block {
        height: 250px;
      }

      .form-title {
        font-size: 1.8rem;
      }
    }

        .sponsors-grid {
   
            color: #ffffff;
            padding: 90px 0px;
        }


        /* Pill Header */
        .header-pill-wrapper {
            position: relative;
            margin-bottom: 45px;
            margin-top: 45px;
            display: flex;
            justify-content: center;

        }

        .header-pill {
            position: relative;
            background-color: #100624;
            border: 2px solid #1e88e5;
            box-shadow:0 0 15px rgb(30 136 229 / 25%);
            padding: 12px 36px;
            border-radius: 50px;
            font-size: 16px;
            font-weight:700;
            letter-spacing: 1px;
            color: #ffffff;
            z-index: 2;
        }

        /* Bottom Pointer Arrow */
        .header-pill-wrapper::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 14px;
            height: 14px;
            background-color: #110729;
            border-right: 2px solid #1e88e5;
            border-bottom: 2px solid #1e88e5;
            z-index: 1;
        }
     

        .sponsors {
            background-color: #1f1246;
            border-radius: 16px;
            width: 100%;
            height:100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
            transition: transform 0.2s ease, background-color 0.2s ease;
            cursor: pointer;
        }

        .sponsors:hover {
            transform: translateY(-2px);
            background-color: #1f1246;
        }

        /* Responsive */
        @media (max-width: 768px) {
        
       
            .sponsors {
                width: 100%;
                height:100%;
            }
        }


        .ticket {
            width: 200px;
            position: relative;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }


        /* Right Content Area */
        .info-column {
            flex: 1 1 450px;
            padding: 20px;
        }

        .App-title {
            font-size: 38px;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .App-title span {
            color:#1e88e5;
        }

        .App-description {
            color: #a099b5;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* Included features box with phone preview layout */
        .features-card {
border: 2px solid #100624;
    background-color: rgba(26, 12, 59, 0.5);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 10px 10px 0px #090217;
    display: flex;
    gap: 20px;
    align-items: center;
    width: 340px;
        }

        .features-content {
            flex: 1;
        }

        .features-card h3 {
            font-size: 14px;
            letter-spacing: 0.5px;
            margin-bottom:0px;
            text-transform: uppercase;
        }

        .features-list {
            list-style: none;
        }

        .features-list li {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .features-list li::before {
            content: "✓";
            display: inline-block;
            width: 16px;
            height: 16px;
            background-color: transparent;
            border: 1px solid #ec2b7b;
            color: #ec2b7b;
            border-radius: 50%;
            text-align: center;
            line-height: 14px;
            font-size: 10px;
            font-weight: bold;
        }



        /* Responsive Breakpoints */
        @media (max-width: 900px) {
           
            .ticket-column, .info-column {
                width: 100%;
            }
        }

        @media (max-width: 600px) {
            .ticket-column {
                flex-direction: column;
                align-items: center;
            }
            .features-card {
                flex-direction: column;
                text-align: center;
            }
            .features-list li {
                justify-content: center;
            }
        }




        .phone {
            display: flex;
            gap: 30px;
            width: 100%;
            align-items: center;
            flex-wrap: wrap;
                padding: 60px 0px;
        }










        /* Footer Container */
        .site-footer {
            width: 100%;
            position: relative;
            overflow: hidden;
            padding: 40px 0 30px 0;
        }



        /* Inner Content Wrapper */
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Top Divider Line */
        .footer-divider {
            width: 100%;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.08);
            margin-bottom: 30px;
        }

        /* Copyright Text */
        .copyright-text {
            text-align: center;
            font-size: 14px;
            color: #a099b5;
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        .copyright-text strong {
            color: #ffffff;
            font-weight: 700;
        }




/*==========================
Hero Section
==========================*/

.inner-banner{
background:linear-gradient(rgb(20 6 40 / 70%), rgb(30 136 229 / 10%)), url(images/inner.png) center center / cover no-repeat;
display:flex;
align-items:flex-start;
justify-content:center;
padding: 120px 0px 50px;
position:relative;
overflow:hidden;

}

.inner-banner h1{
margin-top:35px;
font-size:72px;
font-weight:800;
letter-spacing:2px;
color:#fff;

}

/*==========================
Content Section
==========================*/

.inner-content{
padding:50px 20px;
}


.inner-content p{

font-size:17px;

font-weight:300;

color:#bdb6ca;

text-align:left;

margin-bottom:30px;

}

/*==========================
Responsive
==========================*/

@media(max-width:1200px){

.inner-banner{

height:320px;

}

.inner-banner h1{

font-size:60px;

}

.inner-content{

padding:80px 20px;

}

.inner-content p{

font-size:20px;

}

}

@media(max-width:991px){

.inner-banner{

height:280px;

}

.inner-banner h1{

font-size:48px;

}

.inner-content{

padding:70px 20px;

}

.inner-content p{

font-size:18px;

}

}

@media(max-width:768px){

.inner-banner{

height:240px;

}

.inner-banner h1{

font-size:40px;
margin-top:28px;

}

.inner-content{

padding:60px 18px;

}

.inner-content p{

font-size:17px;

line-height:1.9;

}

}

@media(max-width:480px){

.inner-banner{
height: 350px;
padding: 254px 0px 10px;

}

.inner-banner h1{

font-size:32px;
margin-top:20px;

}

.inner-content{

padding:45px 15px;

}

.inner-content p{

font-size:16px;

}

}











/* Smooth Scroll */
html{
    scroll-behavior:smooth;
}

/* Back to Top Button */
#backToTop{
    position:fixed;
    bottom:30px;
    right:30px;
    width:55px;
    height:55px;
    border:none;
    outline:none;
    border-radius:50%;
    background:linear-gradient(135deg,#00b4ff,#005bea);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s ease;
    z-index:9999;
}

#backToTop:hover{
    transform:translateY(-5px) scale(1.08);
    box-shadow:0 12px 25px rgba(0,0,0,.35);
}

#backToTop.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

@media(max-width:768px){
    #backToTop{
        width:48px;
        height:48px;
        font-size:18px;
        bottom:20px;
        right:20px;
    }
}
