@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #ff00ff;
    --secondary-color: #e0b0ff;
    --dark-bg: #000;
    --text-white: #ffffff;
    --yellow: #ffff00;
    --h1-font-size: clamp(2.5rem, 5vw, 4rem);
    --h2-font-size: clamp(2rem, 4vw, 3.5rem);
    --h3-font-size: clamp(1.5rem, 3vw, 2.5rem);
    --body-font-size: clamp(1rem, 1.5vw, 1.25rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

header nav, main section > div, footer > div {
    max-width: 1600px !important;
    margin: 0 auto;
    /* margin: 0 auto; */
}

body:has(.nav-links.active) {
    overflow: hidden;
}

main {
    margin-top: 80px;
}

h1 {
    font-size: 48px;
    line-height: 58px;
}

h2 {
    font-size: 38px;
    line-height: 53.2px;
}

h3 {
    font-size: 32px;
    line-height: 44.8px;
}

h4 {
    font-size: 24px;
    line-height: 33.6px;
}

h5 {
    font-size: 22px;
    line-height: 30.8px;
}

h6 {
    font-size: 20px;
    line-height: 28px;
}

.anchor-para {
    font-size: 16px;
    line-height: 22.4px;
}

.para-small {
    font-size: 14px;
    line-height: 19.6px;
}

.small-text {
    font-size: 12px;
    line-height: 16.8px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
        line-height: 50.4px;
    }
    h2 {
        font-size: 32px;
        line-height: 44.8px;
    }
    h3 {
        font-size: 27px;
        line-height: 37.8px;
    }
    h4 {
        font-size: 24px;
        line-height: 33.6px;
    }
    h5 {
        font-size: 18px;
        line-height: 25.2px;
    }
    h6 {
        font-size: 16px;
        line-height: 22.4px;
    }
    .anchor-para {
        font-size: 14px;
        line-height: 19.6px;
    }
    .para-small {
        font-size: 14px;
        line-height: 19.6px;
    }
    .small-text {
        font-size: 12px;
        line-height: 16.8px;
    }
}

.header-container,
.hero-container,
.attendees-container,
.partners-container,
.pricing-container,
.contact-container,
.footer-container {
    margin: 0 auto;
    width: 100%;
}

header,
#hero,
#benefits-section,
#attendees-section,
#partners-section,
#pricing-section,
#contact-section,
.footer {
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
}

header {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
header .cta-group {
    margin-bottom: 0;
}

#hero {
    padding-top: 120px;
    padding-bottom: 0px;
}

#benefits-section,
#attendees-section,
#partners-section,
#pricing-section,
#contact-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.footer {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.hero-content,
.benefits-grid,
.attendee-cards,
.partners-grid,
.pricing-cards,
.contact-card {
    max-width: 100%;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 40px;
}

.stats-container-mobile {
    display: none;
    padding: 24px 16px;
}

.hero-description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1280px) {
    .header-container,
    .hero-container,
    .benefits-container,
    .attendees-container,
    .partners-container,
    .pricing-container,
    .contact-container,
    .footer-container {
        max-width: 100%;
    }
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 5%;
    background-color: #000;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(50deg) translate(6px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-50deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    header {
        width: 100vw;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 3rem;
}
.nav-links  li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: absolute;
    z-index: 999;
    width: 100%;
    background: black;
    padding: 30px;
    top: 60px;
    left: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.nav-links a:not(.register-cta):hover, .nav-links a:not(.register-cta).active {
    color: #FC41DB;
    transition: all 0.6s ease;
}

#hero {
    background-image: url(/assets/v1-hero-bg-logos.png);
    background-size: 46% 120%;
    background-position: right -138px;
    background-repeat: no-repeat;
    padding: 80px 5% 10%;
    position: relative;
}

.hero-content {
    margin: 0 auto;
    position: relative;
}

.hero-top {
    text-align: left;
    margin-bottom: 60px;
}

.title-wrapper {
    display: flex;
    align-items: left;
    justify-content: center;
    margin-bottom: 24px;
    flex-direction: column;
}
.title-wrapper .pre-header img {
    width: 80px;
    height: auto;
}
.title-wrapper .pre-header {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 6px;
    font-size: 22px;
    background: linear-gradient(90deg, rgba(252,65,219,.2) 0%, rgba(160,88,255,.2) 100%);
    width: fit-content;
    padding: .7rem 2rem;
    border-radius: 50px;
    border: 1px solid #ffffff75;
    font-weight: 500;
}
.hero-top h2 {
    text-align: center;
}

#hero .hero-top h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.pd-box {
    overflow: hidden;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
}


.ops-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ops-text::before {
    content: '';
    display: inline-block;
    width: 34px;
    height: 34px;
    background: url('../../assets/white-logo.svg') no-repeat center;
    background-size: contain;
}


.hero-top h1 {
    /* font-size: 42px !important; */
    font-weight: 700;
    margin-bottom: 20px;
    /* line-height: 1.5; */
    text-align: left;
    max-width: 40%;
    margin-top: 10px;
}
.hero-top h1 .highlight {
    display: block;
}
.hero-main  .cta-group {
    justify-content: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* text-decoration: underline; */
    align-items: flex-start;
}

.hero-main  .cta-group .link-text {
    font-size: 16px;
    color: #fff;
}

.hero-top h1 span:nth-child(2) {
    display: block;
    margin-top: 30px;
    font-size: 38px;
}

.hero-top h3 {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    margin-top: 30px;
}

.summit-date {
    color: #fff;
    /* font-size: 20px; */
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    /* margin-bottom: 60px; */
}

.hero-left {
    padding-right: 40px;
}

.hero-content .cta-group {
    margin-top: 20px;
}

.key-points {
    list-style: none;
    padding: 20px;
    margin-bottom: 40px;
    background: #000;
    border-radius: 12px;
}

.key-points li {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin-left: 45px;
    border-radius: 12px;
    margin-bottom: 10px;
    list-style: disc;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.5s ease forwards;
}

.key-points li:nth-child(1) {
    animation-delay: 0.6s;
}

.key-points li:nth-child(2) {
    animation-delay: 0.8s;
}

.key-points li:nth-child(3) {
    animation-delay: 1s;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: center;
}

.primary-btn,
.secondary-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #FFFF00;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secondary-btn {
    border: 2px solid #FFFF00;
    color: #FFFF00;
}

.price-tag {
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 14px;
    border: 1px solid #FFFF00;
}

.offer-text {
    color: #fff;
    font-size: 14px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-right video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.speaker-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}




@keyframes scaleImage {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.card-content {
    flex: 1;
    padding: 24px;
}

.card-content p {
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
    opacity: 0;
    animation: revealLines 0.8s ease forwards;
    animation-delay: calc(var(--card-index) * .8s + 1s);
}

@keyframes revealLines {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-content .highlight {
    color: #00FFFF;
}

.event-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    padding: 70px 15%;
    background: #120720;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    /* border-radius: 16px; */
    width: 100%;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
    .hero-top h1 .highlight {
        display: inline;
    }
    .hero-main .cta-group  {
        align-items: center;
        justify-content: center;
    }
    #hero {
        background-image: url('../../assets/v1-banner-logo-mob.png') !important;
        background-size: 100% !important;
        background-position: bottom !important;
        background-repeat: no-repeat !important;
        padding: 20px 20px 170% 20px !important;
        
        /* background-size: 100% 100% !important; */
    }
    .hero-main .cta-group .link-text {
        font-size: 14px;
    }

    .title-wrapper .pre-header {
        font-size: 14px;
        padding: .7rem 1rem;
        margin: 0 auto;
    }
    .title-wrapper .pre-header img  {
        width: 60px;
        height: auto;
    }

    .hero-top h1 span:nth-child(2)  {
        font-size: 24px;
        margin-top: 10px;
    }

    
    footer .footer-legal .legal-links a {
        margin: 0 !important;
    }
    .nav-links li {
        align-items: flex-start;
        flex-direction: column;
    }
    .nav-links li .register-cta {
        width: 100%;
        text-align: center;
    }
    .cta-group {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 30px !important;
    }
    .hero-right {
        padding-left: 0%;
    }
    

    .hero-top {
        text-align: center;
        margin-bottom: 20px !important;
    }

    .hero-top h2 {
        font-size: 24px;
        justify-content: center;
        padding: 0 20px;
    }

    .hero-top h1 {
        /* font-size: 42px !important; */
        max-width: 100%;
        text-align: center;
    }

    .sub-banner-section  .hero-top h1 {
        font-size: 22px !important;
        max-width: 80%;
    }

    .attendee-card {
        padding: .7rem .5rem !important;
    }
    .hero-right video {
     width: 100%;
     border-radius: 10px;
    }
    .hero-right .hero-video-wrapper {
        width: 100%;
    }
    .sub-banner-section .cta-group {
        align-items: center;
    }
    .sub-banner-section .cta-group .primary-btn {
        width: 100%;
        padding: 10px 20px !important;
    }
    .section-title .highlight {
        display: inline !important;
    }

    .hero-top h3 {
        font-size: 24px;
    }

    .summit-date {
        font-size: 12px !important;
        font-family: outfit;
        gap: 5px;
    }
    .summit-date img {
        width: 12px;
        height: auto;
    }

    .pd-box {
        padding: 2px 6px;
        display: block;
        display: flex;
        width: 100%;
    }

    .ops-text::before {
        width: 30px;
        height: 30px;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        padding-right: 0;
    }
    
    .offer-text {
        text-align: center;
    }
    
    
    .key-points li {
        font-size: 16px;
        padding: 12px 5px;
        margin-left: 10px;
    }

    .card-content {
        padding: 16px;
    }

    .card-content p {
        font-size: 18px;
    }

    .event-stats {
        grid-template-columns: repeat(2, 1fr);
        background-color: #140C1D;
        border-radius: 10px;
        padding: 40px;
        gap: 10px;
        margin: 0px 0px;
        position: relative;
        max-width: 100%;
    }

    .event-stats::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        height: 80%;
        transform: translateY(10%);
        width: 1px;
        background: rgba(252, 65, 219, 0.2);
    }

    .benefits-container .card-wrapper > img {
        transform: translateX(0px) !important;
        border-radius: 10px !important;
    }




    .event-stats::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 80%;
        transform: translate(10%, 10px);
        height: 1px;
        background: rgba(252, 65, 219, 0.2);
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 12px;
    }
}

.hero-states {
    background-color: #000;
    border-radius: 30px;
    padding: .5rem;
    margin-bottom: 2rem;
    background: linear-gradient(#000, #000) padding-box,
                linear-gradient(120deg, #A058FF, #FC41DB) border-box;
    border: 1px solid transparent;
    margin: 0 8rem;
}

.stat-item {
    text-align: center;
    padding: 0 2rem;
    position: relative;
    flex: 1;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 150%;
    width: 1px;
    background: #FC41DB;
}
.cta-group-details {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cta-group-details .details {
    display: flex;
    /* box-shadow: 0 0 10px #A058FF;
    background: linear-gradient(#000, #000) padding-box, linear-gradient(120deg, #FC41DB, #A058FF) border-box; */
    border: 1px solid transparent;
    row-gap: 1rem;
    /* padding: 1rem; */
    border-radius: 10px;
    gap: 20px;
    align-items: center;
}
.cta-group-details .details .divider {
    width: 1px;
    background: #FC41DB;
    padding: 0;
    height: 30px;
}

.cta-group-details .details > div {
    display: flex;
    align-items: center;
    /* flex-direction: column; */
    /* gap: 10px; */
    /* padding: 0 1.5rem; */
    /* text-align: center; */
}


.cta-group-details .details > div > div:first-child {
    color: #FC41DB;

}
.cta-group-details .details > div .date::before {
    content: url('../../assets/date-icon.svg');
    display: inline-block;
    transform: scale(1.2);
    margin-right: 8px;
    vertical-align: middle;
}
.cta-group-details .details > div .location::before {
    content: url('../../assets/venue-icon.svg');
    display: inline-block;
    transform: scale(1.2);
    margin-right: 8px;
    vertical-align: middle;
}

.stat-item h2 {
    font-size: 4rem;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.event-details {
    margin: 1.5rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-white);
}

.event-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location::before {
    content: url('../../images/location.svg');
    margin-right: 0.5rem;
}

.date::before {
    content: url('../../images/calendar.svg');
    margin-right: 0.5rem;
}

.hero-description {
    max-width: 1000px;
    margin: 2rem auto;
}

.hero-description h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .content p {
        font-size: 18px !important;
    }
    
    .hero-description p {
        font-size: 18px;
    }
    
    .speaker-card p {
        font-size: 16px !important;
    }
}

.highlight {
    color: #FC41DB;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: center;
}

.early-bird {
    margin-top: 2rem;
}

.primary-btn,
.secondary-btn {
    display: inline-block;
    padding: 12px 15px;
    border-radius: 5px;
    /* font-size: 16px; */
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background: var(--yellow);
    color: var(--dark-bg);
    border: 2px solid var(--yellow);
}

.secondary-btn {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
    position: relative;
    overflow: hidden;
}

.apply-awards::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 120%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 0, 0.1) 45%,
        rgba(255, 255, 0, 0.3) 50%,
        rgba(255, 255, 0, 0.1) 55%,
        transparent 100%
    );
    transform: translateX(-100%) rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    30%, 100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.secondary-btn:hover {
    background: var(--yellow);
    color: var(--dark-bg);
}

.secondary-btn:hover::before {
    animation: shine 1s;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .primary-btn,
    .secondary-btn {
        width: 250px !important;
        padding: 10px 25px !important;
        font-size: 16px !important;
    }
    
    .price-tag {
        font-size: 12px !important;
    }
}

#features {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

#features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.footer {
    background: #000;
    padding: 1.5rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo,
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img,
.logo img {
    width: 140px;
    height: 40px;
}

.footer-logo span,
.logo span {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    font-family: poppins;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

@media (max-width: 576px) {
    .hero-states {
        margin: 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

#why-section {
    padding: 6rem 5%;
    background-color: var(--dark-bg);
    position: relative;
    margin: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.why-content {
    max-width: 650px;
}

.why-content h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.why-content .highlight {
    background: linear-gradient(90deg, #FC41DB 0%, #AD58FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.features-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    max-width: 600px;
}

.features-box ul {
    list-style: none;
}

.features-box ul li {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-box ul li:last-child {
    margin-bottom: 0;
}

.features-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FC41DB;
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #FC41DB 0%, #AD58FF 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    transition: transform 0.2s ease;
}

.schedule-btn:hover {
    transform: translateY(-2px);
}

.circle-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
}

@media (max-width: 768px) {
    #why-section {
        flex-direction: column;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 30px;
    }
    
    .why-content h2 {
        font-size: 30px;
    }

    .features-box {
        padding: 1.5rem;
    }

    .circle-decoration {
        width: 100%;
        height: 300px;
    }
}

.location-date-section {
    background: #000;
    padding: 2rem 5%;
    width: 100%;
}

.location-date-container {
    background: linear-gradient(0deg, rgba(252,65,219,.2) 0%, rgba(160,88,255,.2) 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.location-date-info {
    display: flex;
    gap: 6rem;
}

.location-group .info-value::before {
    content: url(../../images/location.svg);
    margin-right: 0.5rem;
}

.location-group,
.date-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date-group .info-value::before {
    content: url(../../images/calendar.svg);
    margin-right: 0.5rem;
}

.info-label {
    color: #FC41DB;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 10px;
}

.info-value svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.action-buttons .book-pass-btn {
    margin: 0;
}

.book-pass-btn {
    background-color: #FFFF14;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    text-decoration: none !important;
}

.see-agenda-btn {
    text-decoration: none !important;
    background: transparent;
    color: #FFFF14;
    padding: 1rem 1.5rem;
    border: 1px solid #FFFF14;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-wrap: nowrap;
    font-family: 'Outfit', sans-serif;
}

.book-pass-btn:hover, .see-agenda-btn:hover, .cta-buttons .primary-btn:hover, .book-btn:not(.disabled):hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {

    .title-wrapper {
        margin-bottom: 0px !important;
    }
    .location-date-section {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .location-date-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    .info-value {
        font-size: 14px;
    }
    .action-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .book-pass-btn, .see-agenda-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Buzz Section Styles */
#buzz-section {
    padding: 6rem 5%;
    background-color: var(--dark-bg);
    position: relative;
    /* max-width: 1440px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 0 5%;
}

.circle-decoration {
    /* width: 500px;
    height: 500px;
    border: 1px solid rgba(252, 65, 219, 0.3);
    border-radius: 50%;
    flex-shrink: 0; */
    position: relative;
}


.buzz-content {
    max-width: 600px;
    margin-left: auto;
}

.buzz-content h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.buzz-content h2 .highlight, #attendees-section h2 .highlight {
    background:#FC41DB ;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* display: block; */
}

.buzz-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.buzz-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.buzz-box p {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .circle-decoration {
        /* width: 400px; */
        height: 400px;
    }
}

@media (max-width: 968px) {
    #buzz-section {
        /* flex-direction: column; */
        padding: 4rem 0%;
        flex-direction: column-reverse !important;
    }

    .circle-decoration {
        /* width: 300px; */
        height: 300px;
    }

    .buzz-content {
        margin-left: 0;
        text-align: left;
    }

    .buzz-content h2 {
        font-size: 30px;
    }
}

/* Speakers Section Styles */
#speakers-section {
    padding: 2rem 5%;
    background-color: #1A0F2E;
}


#speakers-section .speaker-content p {
    font-size: 18px;
}

.section-title {
    text-align: center;
    /* font-size: 50px; */
    font-weight: 700;
    margin: 2rem 0;
    color: var(--text-white);
}

.section-title .highlight {
    background:#FC41DB ;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* display: block; */
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* max-width: 1440px; */
    margin: 0 auto 3rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}


.speaker-image {
    padding: 20px 20px 0px 20px;
    background-color: #1C1C1C;
    border-radius: 25px;
    position: relative;
    background-image: url(../../assets/image-highlighter.svg);
    background-size: auto 70%;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.speaker-image img[alt="linkedIn"] {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.speaker-image img[alt="linkedIn"]:hover {
    transform: translateY(-5px);
    background-color: #262626;
}

.speaker-content {
    padding: 20px;
    width: 100%;
    background-color: #1C1C1C;
    border-radius: 25px;
    text-align: center;
}

.speaker-card h5 {
    color: #FC41DB;
    /* font-size: 1.25rem; */
    font-weight: 500;
    margin-bottom: .3rem;
}

.speaker-card p {
    color: rgba(255, 255, 255, 0.9);
    /* font-size: 20px; */
    line-height: 1.6;
}

.speaker-card img {
    width: 250px;
    height: auto;
    border-radius: 12px;
    margin-top: auto;
}

.speakers-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-page {
    display: none;
    transition: opacity 0.3s ease;
}

.carousel-page.active {
    display: block;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        /* font-size: 30px !important; */
        margin: 2rem !important;
    }
}

/* Benefits Section Styles */
#benefits-section {
    background: #000;
    /* padding: 6rem 5%; */
    position: relative;
    padding: 80px 20px;
}


/* #benefits-section .benefits-title .highlight {
    display: block;
} */

.benefits-container {
    /* max-width: 1440px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    margin: 0 5%;
}

.benefits-container .card-wrapper {
    display: flex;
    gap: 7rem;
    align-items: center;
    justify-content: center;
}
.benefits-container .card-wrapper:nth-child(odd) > img {
    transform: translateX(2%);
}

.benefits-container .card-wrapper:nth-child(even) > img {
    transform: translateX(-2%);
}

.benefits-container .card-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.benefits-container .card-wrapper img {
    border-radius: 20px;
}

.benefits-title {
    /* font-size: 50px; */
    font-weight: 700;
    color: var(--text-white);
    /* position: sticky; */
    top: 6rem;
    text-align: center;
}


.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    background: #141414;
    border: 1px solid rgba(252, 65, 219, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    flex-direction: column;
    background: linear-gradient(#141414, #141414) padding-box,
                linear-gradient(120deg, #444444, #141414) border-box;
    border: 1px solid transparent;
}


.number {
    width: 48px;
    height: 48px;
    background: #A058FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    flex-shrink: 0;
}

.content h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.content p {
    color: rgba(255, 255, 255, 0.9);
    /* font-size: 1rem;
    line-height: 1.6; */
}

img[alt="arrow"] {
    margin-left: 5px;
}

#previous-summit {
    background: #000;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    background: url(../../assets/bg-pattern.svg) no-repeat right center;
    background-size: 50% 100%;
    padding: 5rem 0;
}

.previous-summit-container {
    width: 65%;
    display: flex;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(90deg, #120720 0%, #9f41da 180%);
}

.previous-summit-card {
    position: relative;
}

.previous-summit-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0%;
    
}

.previous-summit-title .section-title {
    max-width: 55%;
}
.previous-summit-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


/* Responsive Design */
@media (max-width: 968px) {
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sponsers-section {
        padding: 3rem 5% !important;
    }
    .sponsers-section h2 img {
        width: 30%;
    }
    .sponsers-section h4 {
        font-size: 18px;
        padding: 0 !important;
    }
    #benefits-section {
        padding: 50px 20px;
    }

    .benefits-title {
        position: static;
        text-align: center;
        /* font-size: 30px; */
        /* margin-bottom: 0px !important; */
    }

    .benefit-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .benefit-card {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .content h3 {
        font-size: 1.25rem;
    }
}

/* Attendees Section Styles */
#attendees-section {
    background: #000;
    padding: 6rem 5%;
}

.attendees-container {
    /* max-width: 1440px; */
    margin: 0 auto;
}

.attendees-title {
    /* font-size: 50px; */
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
}

.attendee-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.attendee-card {
    background: #141414;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    background: linear-gradient(#141414, #141414) padding-box, linear-gradient(120deg, #444444, #141414) border-box;
    border: 1px solid transparent;
}

.attendee-card:hover {
    transform: translateY(-5px);
}

.attendee-card img {
    width: 82px;
    height: 82px;
    margin-bottom: 1.5rem;
}

.attendee-card h4 {
    color: #fff;
    /* font-size: 1.25rem; */
    font-weight: 500;
    /* line-height: 1.4; */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .attendee-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    #pricing-section {
        padding: 3rem 5% !important;
    }
    .pricing-card .status p {
        /* font-size: 18px;
        font-weight: 600; */
    }
    .attendee-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        grid-row-gap: 20px;
    }
    .attendee-cards > .attendee-card {
        height: 105px;
        width: 100%;
    }
    .attendee-card img {
        width: 35px;
        height: auto;
        margin-bottom: 5px;
    }
    .attendee-card h4 {
        font-size: 12px;
        line-height: 1.4;
        font-weight: 400;
    }
    
    /* .attendees-title {
        font-size: 30px;
    } */
}

/* Pricing Section Styles */
#pricing-section {
    background: #120721;
    /* background: linear-gradient(0deg, rgba(252,65,219,.2) 0%, rgba(160,88,255,.2) 100%); */
    padding: 4rem 5%;
    min-height: 100vh;
}

#pricing-section .section-title .highlight{
    display: inline;
}

.pricing-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

/* Timeline Styles */
.timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    gap: 8rem;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 35%;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
}

.timeline-item:not(.active) .timeline-dot {
    border: 1px solid #696969;
}

.timeline-item:not(.active) h4, .timeline-item:not(.active) p {
    color: #696969;
}

.timeline-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #141414;
}
.timeline-item.active .timeline-dot {
    
    box-shadow: 0 0 0 2px rgba(252, 65, 219, 0.2);
    border: 1px solid transparent;
    background: linear-gradient(#141414, #141414) padding-box,
                linear-gradient(90deg, #FC41DB 0%, #AD58FF 100%) border-box;
}
.timeline-item.active .timeline-dot span {
    background: linear-gradient(90deg, #FC41DB 0%, #AD58FF 100%);
    border-color: #FC41DB;
    box-shadow: 0 0 0 2px rgba(252, 65, 219, 0.2);
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.timeline-label h4 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-item.active h4 {
    color: #FC41DB;
    background: linear-gradient(90deg, #FC41DB 0%, #AD58FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-label p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.timeline-item.active p {
    color: #FC41DB;
}

/* Pricing Cards Styles */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    /* max-width: 1000px; */
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-cards > *:nth-child(1) {
    grid-column: 1 / -1;
}

.pricing-cards > *:nth-child(2),
.pricing-cards > *:nth-child(3) {
    grid-column: span 1;
}

.pricing-card {
    background: #000;
    border: 1px solid rgba(252, 65, 219, 0.2);
    border-radius: 1.5rem;
    width: 30%;
    padding: 2rem 2rem;
    padding-top: 4rem;
    text-align: center;
    position: relative;
    background: linear-gradient(#000, #000) padding-box,
                linear-gradient(90deg, #FC41DB 0%, #AD58FF 100%) border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    overflow: hidden;
}

.pricing-card:not(.disabled) {
    box-shadow: 0px 1px 26px 2px rgba(160,88,255,0.59);
    -webkit-box-shadow: 0px 1px 23px 4px rgba(160,88,255,0.59);
    -moz-box-shadow: 0px 1px 23px 4px rgba(160,88,255,0.59);
}

.pricing-card .sold-out-icon {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    width: 60%;
    height: auto;
}

.pricing-card.super-early-bird .book-btn{
    width: 50%;
    padding: 20px 0;
    font-size: 28px;
}
.pricing-card.super-early-bird .book-btn .price-tag{
    font-size: 18px;
}

.pricing-card.super-early-bird h3 {
    margin-bottom: 0px;
    font-size: 32px;
}
.pricing-card.super-early-bird p {
    font-size: 24px;
}

.pricing-card.disabled {
    background: none;
}

.pricing-card.disabled > *:not(.sold-out-icon) {
    opacity: 0.4;
}

.sponsers-grid a {
    font-size: 24px;
}

.book-btn.disabled {
    cursor: not-allowed;
    pointer-events: none;
}
.pricing-card .status {
    background: #171717;
    color: #FC41DB;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-size: 18px;
    white-space: nowrap;
    margin-bottom: 30px;
    margin-top: 10px;
    line-height: 1.8;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
}
.pricing-card .status p {
    /* background: linear-gradient(90deg, #FC41DB 0%, #AD58FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    color: #FC41DB;
    font-weight: 600;
    
}
.pricing-cards-inner {
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; gap: 2rem;
    margin-top: 2rem;
}
.pricing-cards-inner .pricing-card-inner {
    text-align: left;
    width: 100%;
    margin-bottom: 20px;

}
.pricing-cards-inner .pricing-card-inner p {
    font-size: 20px;
    color: #949494;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}
.pricing-cards-inner .pricing-card-inner p::after{
    display: block;
    height: 1px;
    width: 100%;
    background: #A058FF;
    opacity: 0.5;
    margin-bottom: 10px;
    content: '';
    margin-top: 15px;
}
.pricing-cards-inner .pricing-card-inner ul {
    font-size: 14px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    margin-top: 15px;
}
.pricing-card.disabled .book-btn.disabled {
    background: #FFEB3B;
    color: #000;
}
.pricing-cards-inner .pricing-card-inner ul li {
    margin-bottom: 10px;
    list-style: none;
}
.pricing-cards-inner .pricing-card-inner ul li::before {
    content: url(../../images/tick.svg);
    color: #FC41DB;
    font-size: 16px;
    margin-right: 10px;
}

.pricing-cards-inner .pricing-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid #5c3391;
    margin-top: 20px;
}

.pricing-cards-inner .pricing-card-footer div {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}
.pricing-cards-inner .pricing-card-footer div img {
    opacity: .4;
}
.pricing-cards-inner .pricing-card-footer div p:first-child {
    color: #949494;
    font-size: 14px;
}
.pricing-cards-inner .pricing-card-footer div p:last-child {
    color: #fff;
    font-size: 16px;
}

/* .pricing-cards-inner .pricing-card {
    width: calc(50% - 1rem);
} */

.pricing-card.disabled .status {
    background: rgba(255, 255, 255, 0.1);
    /* color: rgba(255, 255, 255, 0.6); */
}

.pricing-card h4 {
    color: #fff;
    /* font-size: 2rem; */
    margin-bottom: 2rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.pricing-card.disabled h3 {
    color: rgba(255, 255, 255, 0.6);
}

.price-box {
    /* background: #0d001c; */
    border-radius: 1rem;
    /* padding: 2rem; */
    margin-bottom: 1rem;
}

.price {
    font-size: 4rem;
    color: #FC41DB;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
    /* background: linear-gradient(90deg, #FC41DB 0%, #AD58FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
}

.pricing-card.disabled .price {
    color: #FC41DB;
}

.currency {
    font-size: 2.5rem;
}

.suffix {
    font-size: 16px;
    color: #fff;
}

.original-price {
    color: #fff;
    text-decoration: line-through;
    font-size: 1.125rem;
    text-align: left;
}

.book-btn {
    background: #FFEB3B;
    color: #000;
    border: none;
    border-radius: 5px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;

    /* width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; */
}

.book-btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0;
    }
    .pricing-cards-inner .pricing-card {
        width: 100%;
    }

    .timeline {
        gap: 4rem;
    }
    .pricing-card.super-early-bird .price {
        font-size: 28px;
    }
    .pricing-card.super-early-bird .book-btn{
        width: 100%;
        padding: 20px 0;
        font-size: 18px;
    }
    .pricing-card.super-early-bird .book-btn .price-tag{
        font-size: 14px;
    }
    .pricing-card.super-early-bird .price-box {
        margin-bottom: 0px;
    }
}

@media (max-width: 576px) {
    .pricing-card {
       width: 100%;
    }
    .pricing-card h3{
        font-size: 20px;
        margin-bottom: 1rem;
    }
    .pricing-cards-inner .pricing-card-footer {
        margin-top: 15px;
    }
    .pricing-cards-inner .pricing-card-inner p {
        font-size: 18px;
    }
    .timeline {
        /* flex-direction: column; */
        gap: 2rem;
    }

    .timeline::before {
       width: 70%;
    }
}

/* Partners Section Styles */
#partners-section {
    background: #000;
    padding: 6rem 5%;
    text-align: center;
}

.section-title {
    /* font-size: 50px; */
    font-weight: 700;
    color: #fff;
    margin-bottom: 4rem;
}

.section-title .highlight {
    color: #FC41DB;
    /* display: block; */
}

.partners-grid {
    display: flex;
    /* grid-template-columns: repeat(8, 1fr); */
    gap: 1.5rem;
    justify-content: center;
    max-width: 1440px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.partners-grid:nth-child(2) {
    /* grid-template-columns: repeat(7, 1fr); */
    margin-top: 1.5rem;
}

.partner-logo {
    background: #fff;
    border-radius: 0.5rem;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    /* aspect-ratio: 3/2; */
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.no-more-btn {
    background: transparent;
    border: 1px solid rgba(252, 65, 219, 0.3);
    color: #FC41DB;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 3rem;
    font-family: 'Outfit', sans-serif;
}

.no-more-btn:hover {
    background: rgba(252, 65, 219, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .partners-grid:nth-child(2) {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 968px) {
    .event-details p {
        align-items: flex-start;
        flex-direction: column;
    }
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .partners-grid:nth-child(2) {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid:nth-child(2) {
        flex-wrap: wrap;
    }
    
    /* .section-title {
        font-size: 2.5rem;
    } */
}

/* Contact Section Styles */
#contact-section {
    background: #120720;
    padding: 6rem 5%;
}

.contact-container {
    /* max-width: 1440px; */
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-card {
    position: relative;
    background: #000;
    border-radius: 1.5rem;
    padding: 2px; /* Space for gradient border */
    overflow: hidden;
}

/* Gradient border effect */
.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(
        90deg,
        rgba(252, 65, 219, 0.4) 0%,
        rgba(173, 88, 255, 0.4) 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.contact-content h3 {
    /* font-size: 50px; */
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}



.contact-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media (max-width: 968px) {
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-content {
        text-align: center;
        padding: 1rem;
    }

    .contact-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 1rem;
    }

    .contact-content h3 {
        font-size: 30px;
    }

    .contact-content p {
        font-size: 1rem;
    }
}

/* Desktop breakpoints */
@media screen and (min-width: 1441px) {
    .header-container,
    .hero-container,
    /* .benefits-container, */
    .attendees-container,
    .partners-container,
    .pricing-container,
    .contact-container,
    .footer-container {
        /* max-width: 1200px; */
    }

    .stats-container {
        gap: 3rem;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1440px) {
    .header-container,
    .hero-container,
    .benefits-container,
    .attendees-container,
    .partners-container,
    .pricing-container,
    .contact-container,
    .footer-container {
        /* max-width: min(1200px, 90%); */
    }

    /* .hero-content h1 {
        font-size: 24px;
    } */
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .header-container,
    .hero-container,
    .benefits-container,
    .attendees-container,
    .partners-container,
    .pricing-container,
    .contact-container,
    .footer-container {
        max-width: 90%;
    }

    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    /* .hero-content h1 {
        font-size: 22px;
    } */

    .stats-container {
        gap: 2rem;
    }
}

/* Grid adjustments for different screens */
/* .partners-grid {
    display: grid;
    gap: clamp(1rem, 2vw, 2rem);
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
} */

.benefits-grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 3rem);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Fluid typography */
:root {
    --h1-font-size: clamp(2.5rem, 5vw, 4rem);
    --h2-font-size: clamp(2rem, 4vw, 3.5rem);
    --h3-font-size: clamp(1.5rem, 3vw, 2.5rem);
    --body-font-size: clamp(1rem, 1.5vw, 1.25rem);
}

/* Fluid spacing */
.section-padding {
    padding-top: clamp(3rem, 6vw, 6rem);
    padding-bottom: clamp(3rem, 6vw, 6rem);
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Flexible cards */
.card {
    padding: clamp(1rem, 2vw, 2rem);
}

/* Container padding */
.container-padding {
    padding-left: max(5%, 1rem);
    padding-right: max(5%, 1rem);
}

/* Responsive navigation */
@media screen and (min-width: 992px) {
    .nav-links {
        display: flex;
        gap: clamp(1rem, 2vw, 2rem);
    }
}

/* Responsive buttons */
.button {
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(0.875rem, 1vw, 1rem);
}

/* Mobile-specific styles for hero section */
@media screen and (max-width: 768px) {

    #previous-summit {
        flex-direction: column;
        background: none;
        padding: 2rem 0%;
    }
    
    .previous-summit-container {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 2rem 6%;
        /* background: none; */
    }
    .previous-summit-title {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0%;
        
    }
    
    .previous-summit-title .section-title {
        max-width: 100%;
    }
    .previous-summit-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    #speakers-section {
        padding: 1rem 5%;
    }
    .pricing-card .status {
        /* max-width: 250px;
        text-wrap: auto; */
    }
    .pricing-card .status p {
        /* font-size: 12px; */
    }
    .pricing-cards .book-btn {
        font-size: 16px;
        padding: 10px 20px;
        width: 250px;
    }
    .stat-item p {
        font-size: 12px;
        width: fit-content;
        /* text-wrap: nowrap; */
    }
    .stat-item h2 {
        font-size: 18px;
    }
    #hero .summit-date img {
        width: 15px;
        height: 15px;
        margin-right: 5px;
    }
    .hero {
        padding: 5rem 1.25rem 2rem;
        text-align: center;
    }
    #hero {
        padding-top: 20px;
    }
    #hero .hero-content {
        margin-top: 20px;
    }
    #hero .hero-content h1 {
        /* font-size: 16px; */
        width: 100%;
    }
    .hero-title {
        background: linear-gradient(91.78deg, #AA14F0 -1.22%, #FF62F5 100%);
        border-radius: 2rem;
        padding: 1.25rem;
        margin-bottom: 2rem;
    }

    .hero-title h1 {
        font-size: 1.25rem;
        line-height: 1.4;
        letter-spacing: -0.01em;
    }

    .hero-stats {
        display: inline-flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 10px;
    }

    .stat-item .number {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .stat-item:nth-child(2)::after, .stat-item:nth-child(4)::after {
        opacity: 0;
    }
    .stat-item .label {
        font-size: 0.625rem;
        letter-spacing: 0.05em;
    }

    .location-date {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        font-size: 0.875rem;
    }

    .hero-description {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-description h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        font-weight: 600;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;

    }

    .primary-btn, .secondary-btn {
        width: 70%;
        padding: 1rem;
        border-radius: 5px;
        /* font-size: 14px; */
        font-weight: 600;
        text-align: center;
    }

    .primary-btn {
        background: #FFFF00;
        color: #000;
    }

    .secondary-btn {
        background: transparent;
        border: 1px solid #FFFF00;
        color: #FFFF00;
    }

    .early-bird {
        font-size: 16px;
        opacity: 0.6;
        margin-top: 1rem;
    }

    /* Location and date icons alignment */
    .location, .date {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .location i, .date i {
        width: 1rem;
        height: 1rem;
    }
}

/* Small mobile devices */
@media screen and (max-width: 375px) {
    .hero-title h1 {
        font-size: 1.125rem;
    }

    .hero-description h2 {
        font-size: 1.25rem;
    }

    .stat-item .number {
        font-size: 1.25rem;
    }

    .stat-item .label {
        font-size: 0.5rem;
    }
}

.agenda-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.agenda-popup.active {
    display: flex;
    opacity: 1;
}

.agenda-content {
    background-color: #0A0A0A;
    border-radius: 24px;
    padding: 32px;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #4F4F4F;
}

.agenda-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.agenda-header h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.agenda-items {
    display: flex;
    flex-direction: column;
    gap: 25px;

}

.agenda-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
}

.time {
    background-color: #281A26;
    color: #fff;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    width: 180px;
    text-align: center;
}

.time-text {
    background: linear-gradient(90deg, #FC41DB 0%, #AD58FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.session {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.session h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.session p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.book-pass-btn {
    width: 100%;
    background-color: #FFE600;
    color: #000;
    border: none;
    border-radius: 5px;
    padding: 16px;
    margin-top: 42px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Scrollbar styling */
.agenda-content::-webkit-scrollbar {
    width: 8px;
}

.agenda-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.agenda-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* For Firefox */
.agenda-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.1);
}

/* Responsive styles for mobile */
@media screen and (max-width: 768px) {
    .timeline .timeline-item:nth-child(2) .timeline-dot{
        margin-bottom: 15px;
    }
    .timeline .timeline-item:nth-child(3) .timeline-dot{
        margin-bottom: 15px;
    }
    .timeline {
        padding: 0;
    }
    .timeline-dot {
        width: 20px;
        height: 20px;
        margin-top: 10px;
    }
    .timeline-label h4 {
        font-size: 14px;
    }
    .timeline-label p {
        font-size: 12px;
    }
    .agenda-content {
        padding: 20px;
        width: 95%;
        margin: 16px;
        max-height: 85vh;
    }

    .agenda-header h2 {
        font-size: 20px;
    }

    .close-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .agenda-items {
        gap: 20px;
    }

    .agenda-item {
        /* grid-template-columns: 1fr; */
        gap: 30px;
    }

    .time {
        font-size: 13px;
        padding: 8px 12px;
        width: 150px;
    }

    .session h3 {
        font-size: 16px;
    }

    .session p {
        font-size: 13px;
    }

    .book-pass-btn {
        padding: 10px 5px;
        font-size: 16px;
        margin-top: 24px;
        width:50%;
    }
    .track-header .book-pass-btn {
        width: 250px;
    }
}

/* Extra small devices */
@media screen and (max-width: 375px) {
    .agenda-content {
        padding: 16px;
    }

    .agenda-header h2 {
        font-size: 18px;
    }

    .close-btn {
        padding: 4px 10px;
        font-size: 12px;
    }

    .time {
        font-size: 12px;
        padding: 6px 10px;
    }

    .session h3 {
        font-size: 15px;
    }

    .session p {
        font-size: 12px;
    }

    .book-pass-btn {
        padding: 10px 5px;
        font-size: 16px;
    }
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
    .stats-container {
        display: none; /* Hide desktop version */
    }

    .stats-container-mobile {
        display: block; /* Show mobile version */
        margin: 2rem 1rem;
        line-height: 2;
        margin-bottom:0px ;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Award Categories Section */
#award-categories {
    background: #000;
    padding: 80px 24px;
    text-align: center;
}

#award-categories h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 60px;
}

#award-categories h2 .highlight {
    color: #FF00FF;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.category-badge {
    border: 1px solid #FFFF00;
    border-radius: 0 0 24px 24px;
    padding: 24px;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.stars {
    color: #FFFF00;
    font-size: 24px;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.category-badge h3 {
    color: #FFFF00;
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

.year {
    background: #FFFF00;
    color: #000;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    bottom: 24px;
    transform: translateY(50%);
}

/* Carousel and Load More Controls */
.load-more-btn {
    display: none;
    background: #FF00FF;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    margin: 32px auto 0;
    cursor: pointer;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-controls button {
    background: transparent;
    border: 1px solid #FF00FF;
    color: #FF00FF;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.carousel-controls button:hover {
    background: #FF00FF;
    color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    #award-categories {
        padding: 60px 16px;
    }

    #award-categories h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .category-badge {
        padding: 20px;
        min-height: 180px;
    }

    .category-badge h3 {
        font-size: 18px;
    }

    .load-more-btn {
        display: block;
    }

    .carousel-controls {
        display: none;
    }

    .hidden-mobile {
        display: none;
    }
}

/* Tab Styles */
.tab-buttons {
    display: flex;
    gap: 16px;
    margin-right: 16px;
}

.tab-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 8px 16px;
    cursor: pointer;
    position: relative;
    font-family: 'Outfit', sans-serif;
}

.tab-btn.active {
    color: #000;
    background: #FF00FF;
    border-radius: 5px;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

/* Mobile responsive updates */
@media (max-width: 576px) {
    .tab-buttons {
        gap: 8px;
    }

    .tab-btn {
        font-size: 14px;
        padding: 6px 12px;
    }

    .tab-btn.active::after {
        bottom: -16px;
    }
} 

@media screen and (max-width: 1920px) and (max-height: 1080px) {
    .why-section {
        gap: 50px;
    }
    .why-content, .buzz-content {
        flex: 1;
    }
    .circle-decoration {
        flex: 1;
    }
}

#hero .hero-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #6E00FF; /* Bright purple background */
    padding: 5px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 1000;
    animation: bannerSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: top;
}

@keyframes bannerSlideDown {
    0% {
        transform: translateY(-100%) scaleY(0);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
}

#hero .hero-banner p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

#hero .get-pass-btn {
    background: #FFFF00;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

#hero .get-pass-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    #hero .hero-banner {
        padding: 8px 16px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    #hero .hero-banner p {
        font-size: 14px;
    }

    #hero .get-pass-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Video Section Styles */
#video-section {
    padding: 6rem 5%;
    background-color: var(--dark-bg);
    position: relative;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.video-container h2 {
    font-size: 50px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 3rem;
    line-height: 1.2;

}

.video-container .highlight {
    background: linear-gradient(90deg, #FC41DB 0%, #AD58FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-wrapper {
    position: relative;
    width: 70%;
    padding-bottom: 36.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(#141414, #141414) padding-box,
                linear-gradient(120deg, #A058FF, #FC41DB) border-box;
    border: 1px solid transparent;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    align-items: baseline;
}

@media (max-width: 768px) {
    .video-container .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 0;
    }
    .video-wrapper {
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    #video-section {
        padding: 4rem 5%;
    }

    .video-container h2 {
        font-size: 30px;
        margin-bottom: 2rem;
    }

    .video-container .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .book-pass-btn, .see-agenda-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .video-container h2 {
        font-size: 24px;
    }
}

.speaker-card {
    background: #141414;
    border-radius: 32px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    order: var(--random-order);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* height: 80%; */
}

.speaker-card h2 {
    color: white;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.speaker-card .highlight {
    color: #FFFF00;
}

.speaker-profile {
    margin-top: 30px;
}

.speaker-profile img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.speaker-info {
    background: white;
    border-radius: 16px;
    padding: 15px;
    margin-top: 20px;
}

.speaker-info h3 {
    color: #000;
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.speaker-info p {
    color: #666;
    font-size: 16px;
    margin: 5px 0 0;
}

@media (max-width: 768px) {
    .video-container .cta-buttons {
        flex-direction: row !important;
        width: 100%;
    }
    .video-container .cta-buttons .book-pass-btn{
        margin: 0;
        display: block;
    }
    .video-container .cta-buttons a {
        font-size: 14px !important;
        padding: 10px 5px !important;
    }
    .video-container .cta-buttons .see-agenda-btn{
        width: 250px;
    }
}


.agenda-container {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.section-title {
    text-align: center;
    /* font-size: 2.5rem; */
    margin-bottom: 3rem;
    color: #fff;
}

#agenda-section .track-header .bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 10px 30px;
    margin-bottom: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#agenda-section .track-header .bottom-content .date-content p:first-child, #agenda-section .track-header .bottom-content .location-content p:first-child {
    font-size: 14px;
    font-weight: 400;
    color: #949494;
    font-family: 'outfit', sans-serif;
}

#agenda-section .track-header .bottom-content .date-content p:last-child, #agenda-section .track-header .bottom-content .location-content p:last-child {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    font-family: 'outfit', sans-serif;
}

.date-content img, .location-content img{
    width: 15px;
    height: 15px;
    margin-right: 5px;
    margin-top: 5px;
}



/* .highlight {
    color: #FFE500;
} */

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'outfit', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
}

.tab-btn:hover {
    border-color: rgba(255, 229, 0, 0.5);
    color: #FFE500;
}

.tab-btn.active {
    background: #FFE500;
    color: #000;
    border-color: #FFE500;
}

.tab-content {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.agenda-items {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.agenda-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.agenda-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    border-color: rgba(255, 229, 0, 0.2);
}

.time {
    color: #FFE500;
    font-weight: 500;
    min-width: 180px;
    font-size: 1.1rem;
}

.session h3 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.session p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .agenda-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .time {
        min-width: unset;
        font-size: 1rem;
    }

    .tab-buttons {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* .section-title {
        font-size: 2rem;
    } */
}

    
#hero {
    background-image: url(/assets/v1-hero-bg-logos.png);
    background-size: 46% 120%;
    background-position: right -138px;
    background-repeat: no-repeat;
    padding: 80px 5% 10%;
    position: relative;
}
    html {
        scroll-behavior: smooth;
    }

    /* Base animation class */
    [class*="animate-"] {
        opacity: 0;
        transition: all 0.8s ease-out;
    }

    /* Fade and slide up */
    .animate-fade-up {
        transform: translateY(30px);
    }
    .animate-fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Fade and slide down */
    .animate-fade-down {
        transform: translateY(-30px);
    }
    .animate-fade-down.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Fade and slide right */
    .animate-fade-right {
        transform: translateX(-30px);
    }
    .animate-fade-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* Fade and slide left */
    .animate-fade-left {
        transform: translateX(30px);
    }
    .animate-fade-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .register-cta {
        background: #ffff00;
        color: #000 !important;
        padding: 12px 15px;
        display: block;
        border-radius: 5px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
        /* border: 2px solid transparent; */
    }
    .register-cta.apply-awards {
        background: transparent;
        border: 1px solid #ffff00;
        color: #ffff00 !important;
    }
    .apply-awards {
        overflow: hidden;
    }

    .apply-awards:hover {
        background: rgba(255, 255, 0, 0.1);
        border-color: #ffff00;
        color: #ffff00 !important;
        box-shadow: 
            0 0 10px rgba(255, 255, 0, 0.5),
            0 0 20px rgba(255, 255, 0, 0.3),
            0 0 30px rgba(255, 255, 0, 0.1);
        transform: translateY(-2px);
        transition: all 0.3s ease;
    }

    .register-cta:hover {
        transform: translateY(-2px);
    }

    .agenda-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        overflow-y: auto;
        backdrop-filter: blur(8px);
    }

    .agenda-content {
        background: #1A0F2E;
        max-width: 800px;
        margin: 50px auto;
        padding: 2.5rem;
        border-radius: 24px;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .agenda-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .tab-buttons {
        display: flex;
        gap: 1rem;
    }

    .tab-btn {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        padding: 0.75rem 1.5rem;
        border-radius: 100px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'outfit', sans-serif;
        font-weight: 500;
    }

    .tab-btn:hover {
        border-color: rgba(255, 229, 0, 0.5);
        color: #FFE500;
    }

    .tab-btn.active {
        background: #FFE500;
        color: #000;
        border-color: #FFE500;
    }

    .close-btn {
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.6);
        font-size: 1.5rem;
        cursor: pointer;
        transition: color 0.3s ease;
        padding: 0.5rem;
        line-height: 1;
    }

    .close-btn:hover {
        color: #FFE500;
    }

    .agenda-items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .agenda-item {
        display: flex;
        gap: 2rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        transition: all 0.3s ease;
    }

    .agenda-item:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-2px);
        border-color: rgba(255, 229, 0, 0.2);
    }

    .time {
        color: #FFE500;
        font-weight: 500;
        min-width: 180px;
        font-size: 1.1rem;
    }

    .session h3 {
        color: #fff;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .session p {
        color: rgba(255, 255, 255, 0.6);
        margin: 0.5rem 0 0;
        font-size: 0.9rem;
    }


    .book-pass-btn:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .agenda-content {
            margin: 20px;
            padding: 1.5rem;
        }

        .agenda-item {
            flex-direction: column;
            gap: 0.75rem;
            padding: 1.25rem;
        }

        .time {
            min-width: unset;
            font-size: 1rem;
        }

        .tab-buttons {
            gap: 0.5rem;
        }

        .tab-btn {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
    }

    .benefits-container {
        /* max-width: 1200px; */
        margin: 0 auto;
    }

    .benefits-title {
        text-align: center;
        /* font-size: 3rem; */
        margin-bottom: 60px;
        color: #ffffff;
    }

    .benefits-cards {
        display: grid;
        /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
        gap: 30px;
        padding: 20px;
    }

    .benefit-card {
        border-radius: 15px;
        padding: 45px 50px;
        display: flex;
        gap: 20px;
        transition: transform 0.3s ease;
        width: 35%;
    }

    .sub-banner-section.future-performance {
        background-color: #120720;
        background-image: url(../../assets/future-pattern.svg);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .sub-banner-section .hero-top {
        margin-bottom: 25px;
    }
    .sub-banner-section .hero-top .title-wrapper {
        margin-bottom: 14px;
    }

    /* .benefit-card .number {
        font-size: 2.5rem;
        font-weight: bold;
        color: #FFD700;
        line-height: 1;
    } */

    .benefit-card .content h4 {
        color: #ffffff;
        margin-bottom: 10px;
        /* font-size: 1.5rem; */
    }

    .benefit-card .content p {
        color: rgba(255, 255, 255, 0.8);
        /* line-height: 1.6; */
    }

    @media (max-width: 768px) {
        .benefits-title {
            /* font-size: 30px; */
            text-align: center;
            margin-bottom: 2rem;
        }

        .benefits-cards {
            grid-template-columns: 1fr;
            padding: 20px 0;
        }

        .benefit-card {
            padding: 35px 30px;
            width: 100%;
            border-radius: 10px;
        }
        .benefit-card .content p {
            font-size: 14px !important;
        }
        .benefits-container .card-wrapper, .benefits-container .card-wrapper:nth-child(even) {
            flex-direction: column;
            gap: 2rem;
        }
    }

    /* Base styles for tab content */
    .tab-content {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        position: absolute;
        width: 100%;
        left: 0;
    }

    /* Active tab content styles */
    .tab-content.active {
        display: block;
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    /* Container positioning */
    #agenda-section .agenda-container {
        position: relative;
    }

    /* Ensure tab buttons are clickable */
    #agenda-section .tab-buttons {
        position: relative;
        z-index: 2;
    }

    /* Tab button styles */
    #agenda-section .tab-btn {
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 100px;
    }

    #agenda-section .tab-btn:hover {
        border-color: rgba(255, 229, 0, 0.5);
        color: #FFE500;
    }

    #agenda-section .tab-btn.active {
        background: #FFE500;
        color: #000;
        border-color: #FFE500;
    }

    /* Ensure agenda items are visible */
    #agenda-section .agenda-items {
        opacity: 1;
        visibility: visible;
    }

    @media (max-width: 768px) {
        #agenda-section .tab-buttons {
            flex-wrap: wrap;
            justify-content: center;
        }
    }

    .price-tag {
position: relative;
right: 0;
top: 0;
background: rgba(0, 0, 0, 0.8);
padding: 4px 8px;
border-radius: 100px;
font-size: 0.85rem;
font-weight: 600;
color: #FFE500;
transition: all 0.3s ease;
border: 1px solid #FFE500;
margin-left: 4px;
}

.primary-btn:hover .price-tag, .book-pass-btn:hover .price-tag, .register-cta:hover .price-tag, .book-btn:hover .price-tag {
background: #FFE500;
color: #000;
border-color: #000;
}

.register-cta .price-tag {
position: relative;
right: 0;
top: 0;
background: rgba(0, 0, 0, 0.8);
padding: 4px 8px;
border-radius: 100px;
font-size: 0.85rem;
font-weight: 600;
color: #FFE500;
transition: all 0.3s ease;
border: 1px solid #FFE500;
margin-left: 4px;
}

.register-cta:hover .price-tag {
background: #FFE500;
color: #000;
border-color: #000;
}

/* Update agenda section styles */
#agenda-section {
    padding:5rem 5% 6rem 5%;
    background: #120720;
    min-height: auto;
}

.agenda-container {
    /* max-width: 900px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.agenda-track {
    width: 100%;
}

.track-header.disabled {
    opacity: 0.5;
}

.track-header.disabled .book-pass-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
    pointer-events: none;
}

.track-header.disabled .sold-out {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #FFE500;
    margin-left: 30px;
    margin-top: 10px;
    padding: 8px 12px;
    border: 1px solid #FFE500;
    border-radius: 100px;
}

.track-content {
    display: flex;
    /* flex-direction: column; */
    gap: 24px;
    justify-content: space-around;
    align-items: flex-start;
}

.track-content.lead-gen {
    flex-direction: row-reverse;
}

.track-header > img {
    width: 100%;
}

.track-header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #000;
    /* padding: 10px 30px; */
    align-items: flex-start;
    width: 35%;
    border-radius: 20px;
    overflow: hidden;
    background-color: #120720;
}

    .track-header h3 {
    /* font-size: 24px; */
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    padding: 0 30px;
    margin-top: 20px;

}

.track-header .bottom-content img{
    opacity: .4;
}

.track-header h3 .highlight {
    color: #FC41DB;
    background: none;
    -webkit-text-fill-color: #FC41DB;
}

.track-description {
    /* font-size: 16px; */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    padding: 0 30px;
    margin: 20px 0;
}
.track-header .book-pass-btn {
    margin-left: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.book-pass-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFF00;
    padding: 10px 15px;
    border-radius: 5px;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    width: auto;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.book-pass-btn:hover {
    transform: translateY(-2px);
}

#countdown {
    color: #FC41DB;
    font-weight: 700;
}

.price-tag {
    /* background: rgba(0, 0, 0, 0.1); */
    padding: 4px 8px;
    border-radius: 20px;
}

.track-topics {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 50%;
}

.topic-item {
    background: #1e0a29;
    border-left: 3px solid #FC41DB;
    padding: 16px 20px;
    color: #FFFFFF;
    /* font-size: 18px; */
    line-height: 1.4;
    transition: all 0.3s ease;
    /* cursor: pointer; */
    border-radius: 0 8px 8px 0;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
    animation-delay: calc(var(--data-count) * 0.2s);
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add IntersectionObserver animation class */
.topic-item.animate {
    animation: slideIn 0.5s ease forwards;
    animation-delay: calc(var(--data-count) * 0.2s + 3s);
}


/* Default state before animation */
.topic-item {
    opacity: 0;
    transform: translateX(-20px);
}

.topic-item[data-count="1"] { --data-count: 1; }
.topic-item[data-count="2"] { --data-count: 2; }
.topic-item[data-count="3"] { --data-count: 3; }
.topic-item[data-count="4"] { --data-count: 4; }
.topic-item[data-count="5"] { --data-count: 5; }
.topic-item[data-count="6"] { --data-count: 6; }
.topic-item[data-count="7"] { --data-count: 7; }
.topic-item[data-count="8"] { --data-count: 8; }


.topic-item:hover {
    /* background: rgba(26, 15, 46, 0.8); */
    transform: translateX(5px);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    #agenda-section {
        padding: 60px 20px;
    }

    .track-content, .track-content.lead-gen {
        flex-direction: column;
        width: 100%;
    }
    .track-header, .track-topics {
        width: 100%;
        /* height: 500px; */
    }

    .track-header h3 {
        font-size: 28px;
        margin-top: 10px;
    }

    .track-description {
        font-size: 16px;
    }

    .track-header .bottom-content > div > p:first-child {
        font-size: 12px !important;
        margin-bottom: 5px;
    }
    .track-header .bottom-content > div > p:last-child {
        font-size: 14px !important;
    }

    .topic-item {
        font-size: 14px;
        padding: 14px 16px;
    }

    .book-pass-btn {
        /* width: 100%; */
        justify-content: center;
        padding: 10px 5px;
        font-size: 16px;
        gap: 5px;
    }
}

.event-stripe-section {
    background: linear-gradient(160deg, rgba(160, 88, 255, 0.2) 0%, rgba(252, 65, 219, .3) 100%);
    /* background: rgba(26, 15, 46, 0.95); */
    padding: 24px 5%;
    margin: 0 5%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.event-stripe-section .stripe-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-stripe-section .event-details {
    display: flex;
    gap: 48px;
    align-items: center;
}

.event-stripe-section .detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-stripe-section .label {
    color: #FC41DB;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-stripe-section .value {
    color: white;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-stripe-section .location-icon,
.event-stripe-section .calendar-icon {
    font-size: 20px;
}

.event-stripe-section .cta-buttons {
    display: flex;
    gap: 16px;
}

.event-stripe-section .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.event-stripe-section .btn:hover {
    transform: translateY(-2px);
}

.event-stripe-section .book-pass {
    background: #FFFF00;
    color: #000000;
}

.event-stripe-section .see-agenda {
    background: transparent;
    color: #FFFF00;
    border: 1px solid #FFFF00;
}

.meet-makers-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(#141414, #141414) padding-box, linear-gradient(120deg, #FC41DB, #141414) border-box; */
    border: 1px solid transparent;
    border-radius: 30px;
    padding: 2rem 3rem;
    background-image: url(../../assets/meet-makers-pattern.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .meet-makers  {
        padding: 2rem !important;
    }
    .meet-makers-container {
        flex-direction: column;
        background-image: url(../../assets/meet-makers-pattern-mob.svg);
        padding: 2rem 1rem;
    }
    .event-stripe-section {
        padding: 20px;
    }

    .event-stripe-section .stripe-container {
        flex-direction: column;
        /* gap: 24px; */
    }

    .event-stripe-section .event-details {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .event-stripe-section .detail-item {
        gap: 4px;
    }

    .event-stripe-section .label {
        font-size: 12px;
    }

    .event-stripe-section .value {
        font-size: 16px;
    }

    .event-stripe-section .cta-buttons {
        width: 100%;
        gap: 12px;
    }

    .event-stripe-section .btn {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
    }
    .cta-group-details {
        justify-content: center;
    }

    .cta-group-details .details {
        gap: 25px;
        padding: 0px 5px;
        border-radius: 5px;
        border-radius: 10px;
    }
    .cta-group-details .details > .date-wrapper  {
        padding-right: 0;
    }
    .cta-group-details .details > div {
        width: 45%;
    }
    .cta-group-details .details > .location-wrapper {
        padding-left: 0;
    }
    .cta-group-details .details p {
        font-size: 12px;
    }
    .cta-group-details .details .location::before, .cta-group-details .details .date::before {
        width: 12px;
        height: auto;
        margin-right: 2px;
    }
    #attendees-section {
        padding: 50px 20px;
    }
    .buzz-content h2 .highlight, #attendees-section h2 .highlight {
        display: inline !important;
    }
    .highlight {
        display: inline !important;
    }
}

/* Small Mobile Screens */
@media screen and (max-width: 380px) {
    .event-stripe-section .event-details {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .event-stripe-section .cta-buttons {
        flex-direction: column;
    }

    .event-stripe-section .btn {
        width: 100%;
    }
} 


/* Sponsors Section Styles */
.sponsers-section {
    /* background: var(--dark-bg); */
    padding: 6rem 5%;
    /* background: linear-gradient(0deg, rgba(252, 65, 219, .2) 0%, rgba(160, 88, 255, .2) 100%); */
    background-image: url(../../assets/future-pattern.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.sponsers-section h4 {
    font-weight: 400;
    text-align: center;
    padding: 0 19%;
    margin-bottom: 2rem;
}

.sponsers-section h2 img {
    margin-bottom: -10px;
}

.sponsers-container {
    margin: 0 5%;
}

.sponsers-title {
    /* font-size: 3rem; */
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 2rem;
}

.sponsers-grid {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin: 0 auto;
}

.sponser-card {
    /* background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(252, 65, 219, 0.2); */
    /* border-radius: 16px; */
    /* padding: 2rem 4rem; */
    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.3s ease;
    background: linear-gradient(#141414, #141414) padding-box,
                linear-gradient(120deg, #A058FF, #FC41DB) border-box;
    /* border: 1px solid transparent; */
}

.sponser-card:hover {
    transform: translateY(-5px);
}

.sponser-card img {
    height: 150px;
    width: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 968px) {
    .sponsers-title {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .sponsers-title .highlight {
        display: block !important;
    }

    .sponsers-grid {
        align-items: center;
        gap: 1rem;
    }

    .sponsers-grid .cta-group {
        margin-top: 0 !important;
    }

    .sponsers-grid .cta-group .primary-btn {
        width: 100%;
    }

    .sponser-card img {
        height: 100px;
    }
}
.sub-banner-section .summit-date {
    /* font-size: 24px; */
}
@media (max-width: 576px) {


    .sponser-card img {
        height: 100px;
    }
}
.sub-banner-section {
    padding: 80px 0;
}
.sub-banner-section h1 {
    max-width: 100%;
}
.sub-banner-section .highlight{
    background:#FC41DB;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* --- Testimonials Section Styles --- */
#testimonials-section {
  background: #120720;
  padding: 2rem 5% 4rem 5%;
}
#testimonials-section .section-title {
  margin-bottom: 3rem;
}
#testimonials-section .section-title .highlight {
    display: block !important;
}
.testimonials-carousel {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #FC41DB #1A0F2E;
  justify-content: center;
}
.testimonial-card {
  flex: 0 0 340px;
  background: #181028;
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 #0008;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  max-width: 340px;
}
.testimonial-media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
}
.testimonial-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  background: #222;
  display: block;
}
.testimonial-play-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgb(255 255 255 / 11%);
  border: 1px solid #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  backdrop-filter: blur(2px);
}
.testimonial-play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.testimonial-play-btn .icon {
  display: block;
  width: 15px;
  height: 15px;
  background: url('../../images/play-icon.svg') center/contain no-repeat;
}
.testimonial-card.playing .testimonial-play-btn .icon {
  background-image: url('../../images/pause-icon.svg');
}
.testimonial-info {
    padding: 40px 20px 20px 20px;
    text-align: left;
    width: 100%;
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000000 80%);
    border-radius: 0 0 28px 28px;
}
.testimonial-name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonial-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 0px;
}
.testimonial-company {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .testimonials-carousel {
    gap: 70px;
    flex-direction: column;
    align-items: center;
  }
  .testimonial-card {
    flex-basis: 260px;
    min-height: 400px;
    max-width: 260px;
  }
}
@media (max-width: 600px) {
    .sub-banner-section {
        padding: 30px 0;
    }
  #testimonials-section {
    padding: 3rem 2% 2rem 2%;
  }
  .testimonial-card {
    flex-basis: 90vw;
    max-width: 80vw;
    min-height: 650px;
  }
  .testimonial-info {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000000 65%);
    padding: 65px 10px 10px 10px;
  }
}
/* --- End Testimonials Section Styles --- */

/* --- Testimonials Mute Button Styles --- */
.testimonial-mute-btn {
  position: absolute;
  bottom: 28px;
  left: 18px;
  width: 48px;
  height: 48px;
  background: rgb(255 255 255 / 18%);
  border: 1.5px solid #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(2px);
}
.testimonial-mute-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.testimonial-mute-btn .icon {
  width: 35px;
  height: 35px;
  display: block;
  background: url('../../images/mute.svg') center/contain no-repeat;
}
.testimonial-mute-btn:not(.muted) .icon {
  background-image: url('../../images/unmute.svg');
}

/* --- End Testimonials Mute Button Styles --- */

/* --- Reviews Section Styles --- */
#reviews-section {
    background: #000;
    padding: 6rem 5%;
}

#reviews-section .reviews-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

#reviews-section .reviews-container {
    display: grid;
    grid-template-rows: min-content ;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.reviews-container:first-child {
    grid-template-rows: 18% 25% 18% 20% !important;
}
.reviews-container:nth-child(3) {
    grid-template-rows: 20% 18% 20% 20% !important;
}



.review-testimonial-card {
    background: url('../../assets/testimonial-card-bg.png') no-repeat center center;
    background-size: 100% 100%;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: fit-content !important;
    /* min-height: 280px; */
    display: flex;
    flex-direction: column;
}

/* .review-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(252, 65, 219, 0.2);
} */

.review-testimonial-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    position: relative;
}

.review-profile-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(252, 65, 219, 0.3);
}

.review-profile-info {
    flex: 1;
}

.review-profile-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.review-profile-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 2px 0 0 0;
    line-height: 1.2;
}

.review-linkedin-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.review-testimonial-card:hover .review-linkedin-icon {
    opacity: 1;
}

.review-testimonial-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    font-weight: 400;
    /* flex: 1; */
}

.review-hashtags {
    display: flex;
    flex-wrap: wrap;
    /* gap: 8px; */
    color: #67B3FF;
}

.blue-highlight {
    color: #67B3FF;
}

.review-hashtags span {
    /* background: rgba(0, 122, 255, 0.1); */
    /* color: #67B3FF; */
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    /* border: 1px solid rgba(0, 122, 255, 0.2); */
}

/* Ensure equal height for all cards in the same row */
.review-testimonial-card:nth-child(1),
.review-testimonial-card:nth-child(2),
.review-testimonial-card:nth-child(3) {
    height: 100%;
}

.review-testimonial-card:nth-child(4),
.review-testimonial-card:nth-child(5),
.review-testimonial-card:nth-child(6) {
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #reviews-section .reviews-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    #reviews-section {
        padding: 4rem 5%;
    }
    
    #reviews-section .reviews-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(1, 1fr) !important;
        gap: 1rem;
    }

    .reviews-container > .review-testimonial-card:nth-child(3), .reviews-container > .review-testimonial-card:nth-child(4) {
        display: none;
    }
    
    .review-testimonial-card {
        padding: 1.25rem;
    }
    
    .review-profile-image {
        width: 40px;
        height: 40px;
    }
    
    .review-profile-info h4 {
        font-size: 14px;
    }
    
    .review-profile-info p {
        font-size: 12px;
    }
    
    .review-testimonial-text {
        font-size: 14px;
    }
    
    .review-hashtags span {
        font-size: 11px;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .review-testimonial-card {
        padding: 1rem;
    }
    
    .review-profile-image {
        width: 36px;
        height: 36px;
    }
    
    .review-linkedin-icon {
        width: 16px;
        height: 16px;
    }
}

/* --- Gallery Section Styles --- */
#gallery-section {
    padding: 50px 150px;
    background-color: #000;
}

#gallery-section .gallery-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    /* overflow-y: hidden; */
    width: fit-content;
    min-width: fit-content;
    max-width: none;
    padding: 32px 0;
}

.gallery-carousel {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    /* max-width: 100vw; */
    padding-bottom: 16px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.gallery-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
#gallery-section .gallery-container .gallery-grid {
    display: grid;
    height: 450px;
    gap: 10px;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
}
#gallery-section .gallery-container .gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.18);
    background: #181028;
    display: block;
}

.gallery-container-1 .gallery-grid:nth-child(1) {
    width: 200px;
    grid-template-rows: 60% 40%;
}
.gallery-container-1 .gallery-grid:nth-child(2) {
    width: 300px;
    grid-template-rows: 40% 60%;
}
.gallery-container-1 .gallery-grid:nth-child(3) {
    width: 400px;
    grid-template-rows: 50% 50%;
}
.gallery-container-1 .gallery-grid:nth-child(4) {
    width: 200px;
    grid-template-rows: 30% 70%;
}
.gallery-container-1 .gallery-grid:nth-child(5) {
    width: 150px;
    grid-template-rows: 50% 50%;
}
.gallery-container-1 .gallery-grid:nth-child(6) {
    width: 450px;
    grid-template-rows: 60% 40%;
}

.gallery-container-2 .gallery-grid:nth-child(1) {
    width: 200px; 
    grid-template-rows: 30% 70%;
}
.gallery-container-2 .gallery-grid:nth-child(2) {
    width: 450px;
    grid-template-rows: 50% 50%;
}
.gallery-container-2 .gallery-grid:nth-child(3) {
    width: 250px;
    grid-template-rows: 60% 40%;
}
.gallery-container-2 .gallery-grid:nth-child(4) {
    width: 308px;
    grid-template-rows: 40% 60%;
}
.gallery-container-2 .gallery-grid:nth-child(5) {
    width: 180px;
    grid-template-rows: 60% 40%;
}
.gallery-container-2 .gallery-grid:nth-child(6) {
    width: 260px;
    grid-template-rows: 35% 65%;
}

.gallery-container-3 .gallery-grid:nth-child(1) {
    width: 260px;
    grid-template-rows: 60% 40%;
}
.gallery-container-3 .gallery-grid:nth-child(2) {
    width: 200px;
    grid-template-rows: 35% 65%;
}
.gallery-container-3 .gallery-grid:nth-child(3) {
    width: 300px;
    grid-template-rows: 60% 40%;
}

@media (max-width: 900px) {
    #gallery-section .gallery-container .gallery-grid {
        height: 260px;
        width: 120px;
    }
    #gallery-section .section-title {
        margin: 1rem !important;
    }
    #gallery-section .gallery-container .gallery-grid img {
        border-radius: 5px;
    }
}
@media (max-width: 600px) {
    #gallery-section  {
        padding: 30px 20px;
    }
    #gallery-section .gallery-container {
        gap: 5px;
        padding: 16px 0;
    }
    #gallery-section .gallery-container .gallery-grid {
        height: 250px;
        width: 150px;
        gap: 5px;
    }
    .gallery-carousel {
        gap: 5px;
    }
    /* .sub-banner-section .highlight {
        display: block !important;
    } */

}

.hero-video-wrapper {
    position: relative;
    width: 60%;
}

.hero-mute-btn {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: rgb(255 255 255 / 18%);
    border: 1.5px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(2px);
}

.hero-mute-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-mute-btn .icon {
    width: 25px;
    height: 25px;
    display: block;
    background: url('../../images/mute.svg') center/contain no-repeat;
}

.hero-mute-btn:not(.muted) .icon {
    background-image: url('../../images/unmute.svg');
}

@media (max-width: 600px) {
    .hero-mute-btn {
        width: 26px;
        height: 26px;
        bottom: 10px;
        right: 10px;
    }
    .hero-mute-btn .icon {
        width: 20px;
        height: 20px;
    }
}

.reviews-wrapper {
  overflow: hidden;
  position: relative;
  height: 600px; /* Adjust to fit 3 rows (6 cards) as in your design */
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.reviews-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 1;
}
.reviews-wrapper:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 1;
}
.reviews-wrapper-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0rem;
  animation: reviews-vertical-scroll 12s linear infinite;
  margin-bottom: 2rem;
}
/* .reviews-wrapper:hover .reviews-wrapper-inner {
  animation-play-state: paused;
} */
@keyframes reviews-vertical-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@media (max-width: 1024px) {
  .reviews-wrapper-inner { gap: 1.5rem; }
}
@media (max-width: 768px) {
    .reviews-wrapper {
        height: 100%;
    }
  .reviews-wrapper-inner { 
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 600px;
    /* animation: none; */
   }
  /* .reviews-wrapper-inner:not(:first-child) {
    display: none;
  }
  .reviews-wrapper:before, .reviews-wrapper:after {
    display: none;
  } */
}







