/* Base layout */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    background: #000;
    /* black background like the mock */
    color: #fff;
    font-family: 'Montserrat';
    overflow-x: hidden;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./Montserrat/Montserrat-VariableFont_wght.ttf');
    /* font-weight: 400; */
    font-style: normal;
}

/* Loader container */
#loader {
    position: absolute;
    /* full-screen overlay */
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px;
    box-sizing: border-box;
    opacity: 1;
    transition: opacity .4s ease;
    background-color: #000;
}

/* Responsive logo */
.loader-logo {
    width: min(75vw, 400px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 24px rgba(255, 255, 255, 0.08));
}

/* Progress line track */
.loader-track {
    position: fixed;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    width: min(92vw, 920px);
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

/* Animated fill line (0% -> 100%) */
.loader-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
            #10c8e1 0%,
            #25d49a 25%,
            #c9dc26 50%,
            #ff9a33 75%,
            #f24ca4 100%);
    border-radius: 999px;
    animation: fill-bar 1.6s ease-out forwards;
}

@keyframes fill-bar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .loader-line {
        animation-duration: 3s;
    }
}

#home {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

/* Utils */
.hidden {
    display: none;
}

.fade-out {
    opacity: 0 !important;
}

.no-scroll {
    overflow: hidden;
}

/* per-word animation support */
.word {
    display: inline-block;
}

/* Hero section with background slider */
.home-hero {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    display: block;
    color: #fff;
    isolation: isolate;
}

.home-hero::before {
    /* dark overlay for readability */
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .15), rgba(0, 0, 0, .6));
    z-index: -1;
}

/* Swiper layout */
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    height: 100dvh;
}

.hero-swiper {
    width: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -2;
    animation: slide-bg 15s linear infinite;
}

/* .slide-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; } */
.swiper-slide video {
    height: 100vh;
    width: 100vw;
    object-fit: fill;
}

.home-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.brand-mini {
    width: min(75vw, 400px);
    height: auto;
    /* margin-bottom: 16px; */
}

.hero-bottom h1 {
    margin: 8px 0 20px;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1.22;
    font-size: 21px;
}

.hero-bottom {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    width: min(92vw, 920px);
    z-index: 2;
}

/* Swiper navigation buttons with gradient background */
.swiper-button-next,
.swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    background: #ffffff00;
    color: #fff !important;
    z-index: 5;
    padding: 0 30px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 25px !important;
    font-weight: 700 !important;
}

/* Pagination dots */
.swiper-pagination {
    position: absolute;
    left: 49% !important;
    bottom: 18px !important;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    gap: 1px !important;
    z-index: 6;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45) !important;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 20px !important;
    border-radius: 10px !important;
    background: #ffffff !important;
}

.hero-track {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.hero-line {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #10c8e1, #25d49a, #c9dc26, #ff9a33, #f24ca4);
    background-size: 300% 100%;
    animation: gradient-move 4s linear infinite;
}

.cta {
    border: 0;
    padding: 12px 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, #10c8e1, #25d49a, #c9dc26, #ff9a33, #f24ca4);
    cursor: pointer;
    font-weight: 600;
}

/* Header/nav inside hero */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 40px;
    /* background: rgba(0,0,0,0.8); */
    backdrop-filter: blur(6px);
    z-index: 2;
}

.site-logo {
    width: clamp(90px, 14vw, 160px);
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.nav-list a {
    color: #eaeaea;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: .4px;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    background: linear-gradient(90deg, #10c8e1, #25d49a, #c9dc26, #ff9a33, #f24ca4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* fallback makes gradient visible in text */
    -webkit-text-fill-color: transparent;
}

.btn-gradient {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 6px 5px rgba(0, 0, 0, 0.208);
    white-space: nowrap;
    background: linear-gradient(90deg, #10c8e1, #25d49a, #c9dc26, #ff9a33, #f24ca4);
    border: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: visible;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from -90deg, #10c8e1, #6aff00, #c9dc26 , #d9ff00, #f24ca4 ,#d9ff00,#c9dc26,#6aff00,#10c8e1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 2px;
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    z-index: -1;
    transition: background 0.3s ease-in-out;
}

.btn-gradient:hover {
    background: #000000;
}

.btn-gradient:hover::after {
    background: #000000;
}

@keyframes rotate-border {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Mobile Menu Toggle Button - Hidden by default */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 102;
    position: absolute;
    right: 15px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay Page */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
    overscroll-behavior: none;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

/* Close Button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-menu-close svg {
    width: 28px;
    height: 28px;
    color: #fff;
    stroke-width: 2.5;
}

.mobile-menu-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 60px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.mobile-menu-logo {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 80px;
    text-align: center;
}

.mobile-menu-logo img {
    width: 100%;
    height: auto;
}

.mobile-menu-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.mobile-nav-list li {
    width: 100%;
    text-align: center;
}

.mobile-nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
    background: linear-gradient(90deg, #10c8e1, #25d49a, #c9dc26, #ff9a33, #f24ca4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.mobile-menu-button {
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
    text-align: center;
}

.mobile-menu-button .btn-gradient {
    width: 100%;
    padding: 16px 30px;
    font-size: 14px;
    text-align: center;
}

/* Hide mobile menu overlay on desktop */
@media (min-width: 481px) {
    .mobile-menu-overlay {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Keep desktop nav visible until 480px */
@media (max-width: 880px) {

    /* Adjust nav spacing but keep it visible */
    .main-nav {
        gap: 25px;
    }

    .nav-list {
        gap: 25px;
    }

    .nav-list a {
        font-size: 14px;
    }

    .main-nav .btn-gradient {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* About ZEE RISE Section */
.about-section {
    min-height: 100vh;
    background: #000;
    padding: 120px 40px;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    width: 100%;
}

.about-title {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0 0 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-gradient-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            #10c8e1 0%,
            #c9dc26 25%,
            #ff9a33 50%,
            #f24ca4 100%,
            #10c8e1 140%);
    margin: 0 auto 60px;
    max-width: 450px;
    position: relative;
}

.about-gradient-line::before,
.about-gradient-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.about-gradient-line::before {
    left: -5px;
    transform: translate(-50%, -50%);
    border-width: 1.5px 12px 1.5px 0;
    border-color: transparent #10c8e1 transparent transparent;
}

.about-gradient-line::after {
    right: -5px;
    transform: translate(50%, -50%);
    border-width: 1.5px 0px 1.5px 12px;
    border-color: transparent transparent transparent #f24ca4;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}

.about-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.about-logo {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
}

.about-tagline {
    color: #fff;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-para {
    color: #ffffffde;
    font-size: 18px;
    text-align: justify;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .who-is-it-for {
        padding: 100px 32px 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-logo-section {
        align-items: center;
        text-align: center;
    }

    .about-logo {
        max-width: 240px;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 80px 24px 50px;
    }

    .about-gradient-line {
        margin-bottom: 40px;
    }

    .about-content {
        gap: 32px;
    }

    .about-logo {
        max-width: 200px;
    }

    .about-para {
        line-height: 1.7;
    }
}

/* WHO IS IT FOR Section */
.who-is-it-for {
    min-height: 100vh;
    background: #000;
    padding: 120px 40px;
    padding-top: 60px;
    padding-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.who-title {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0 0 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.who-cards {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 24px;
    margin: 0 100px;
    margin-top: 0px;
}

.who-cards .who-card:nth-child(4),
.who-cards .who-card:nth-child(5) {
    grid-column: span 1;
}

.who-cards .who-card:nth-child(4) {
    grid-column: 1;
}

.who-cards .who-card:nth-child(5) {
    grid-column: 3;
}

.who-card {
    background: #0e0e0e;
    /* border: 1px solid rgba(60, 60, 60, 0.8); */
    border-radius: 25px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    height: 300px;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.who-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(90deg, #10c8e1, #25d49a, #c9dc26, #ff9a33, #f24ca4);
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.who-card:hover {
    background: #0e0e0e;
    border-color: rgba(80, 80, 80, 1);
}

.who-card:hover::before {
    opacity: 1;
}

.card-gradient {
    border: 2px solid transparent;
    background: rgba(30, 30, 30, 0.8);
    background-clip: padding-box;
}

.card-gradient::before {
    opacity: 1;
    background: linear-gradient(90deg, #10c8e1, #25d49a, #c9dc26, #ff9a33, #f24ca4);
}

.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.who-card:hover .card-icon {
    transform: scale(1.05);
}

.card-title {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 500;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
    /* text-transform: uppercase; */
    line-height: 1.3;
}

.card-desc {
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Responsive for WHO IS IT FOR */
@media (max-width: 1024px) {
    .who-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-cards .who-card:nth-child(4),
    .who-cards .who-card:nth-child(5) {
        grid-column: span 1;
    }

    .who-cards .who-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .who-is-it-for {
        padding: 100px 32px 60px;
    }

    .who-title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 40px;
    }

    .who-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .who-cards .who-card:nth-child(5) {
        grid-column: 1;
        max-width: 100%;
    }

    .who-card {
        padding: 28px 20px;
    }
}

@media (max-width: 640px) {
    .who-is-it-for {
        padding: 80px 24px 50px;
    }

    .who-title {
        margin-bottom: 32px;
    }

    .who-card {
        padding: 24px 18px;
    }

    .card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
}

/* RECAP Section */
.recap-section {
    height: auto;
    background: #000;
    padding: 120px 40px;
    padding-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recap-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
}

.recap-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.recap-item.recap-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.recap-swiper.recap-hidden {
    display: none;
}

.recap-title {
    font-size: 55px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0 0 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.recap-btn {
    margin-top: 20px;
    padding: 14px 30px;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: visible;
}

.recap-btn.btn-gradient {
    position: relative;
    overflow: visible;
}

.recap-btn.btn-gradient::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, #10c8e1, #25d49a, #c9dc26, #ff9a33, #f24ca4, #10c8e1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 2px;
}

.recap-btn.btn-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    z-index: -1;
    transition: background 0.3s ease-in-out;
}

.recap-btn.btn-gradient:hover::before {
    opacity: 1;
}

.recap-btn.btn-gradient:hover {
    background: #000000;
}

.recap-btn.btn-gradient:hover::after {
    background: #000000;
}

.btn-dark {
    background: rgba(60, 60, 60, 0.8);
    color: #fff;
    border: 1px solid rgba(100, 100, 100, 0.5);
}

.btn-dark:hover {
    background: rgba(80, 80, 80, 0.9);
    border-color: rgba(120, 120, 120, 0.7);
}

.recap-swiper {
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
    padding: 20px 0 60px;
    overflow: visible;
}

.recap-swiper .swiper-wrapper {
    align-items: center;
}

.recap-swiper .swiper-slide {
    height: auto;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0.7;
    transform: scale(0.85);
}

.recap-swiper .swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 2;
}

.recap-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.7;
    transform: scale(0.85);
}

.recap-slide-content {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.recap-slide-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recap-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recap-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recap-screen video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Video Container with Controls */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls,
.video-container:active .video-controls {
    opacity: 1;
}

/* Show controls on mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
    .video-controls {
        opacity: 1;
    }
}

.video-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    min-width: 32px;
    min-height: 32px;
}

.video-btn:hover {
    opacity: 0.8;
}

.video-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.video-time {
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    min-width: 80px;
}

.video-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    margin: 0 8px;
}

.video-progress {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.video-progress-bar:hover {
    height: 6px;
}

.video-progress-bar:hover .video-progress {
    background: #10c8e1;
}

.recap-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 40px; */
}

.recap-screen {
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: #fff;
}

.recap-logo {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.recap-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.recap-topic {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
}

.recap-swiper .swiper-pagination {
    position: relative;
    margin-top: 24px;
    bottom: auto;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.recap-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.recap-swiper .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 10px;
    background: #ffffff;
}

/* Responsive for RECAP */
@media (max-width: 768px) {
    .recap-section {
        padding: 100px 32px 60px;
    }

    .recap-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .recap-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .recap-section {
        padding: 80px 24px 50px;
    }

    .recap-topic {
        font-size: 18px;
    }

    .recap-logo {
        font-size: 36px;
    }
}

/* AGENDA Section */
.agenda-section {
    min-height: auto;
    background: #000;
    padding: 120px 40px;
    padding-top: 60px;
}

.agenda-container {
    max-width: 1400px;
    margin: 0 auto;
}

.agenda-title {
    font-size: 55px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0 0 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* City Tabs Swiper */
.city-tabs-swiper {
    margin: 60px 0 20px;
    padding: 0 40px;
    display: block;
    visibility: visible;
    overflow: visible;
}

/* City Tabs Navigation Arrows */
.city-tabs-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    padding: 0 40px;
    /* margin-bottom: 40px; */
}

.city-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    width: 80px;
    height: 20px;
    position: relative;
}

.city-nav-btn:hover {
    opacity: 0.7;
}

.city-nav-btn svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.city-nav-prev svg {
    color: #fff;
}

.city-nav-next svg {
    color: #fff;
}

.city-tab {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 999px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.city-tab .city-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.city-tab .city-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.city-tab.active {
    background: #fff;
}

.city-tab.active .city-name {
    color: #000;
}

.city-tab.active .city-date {
    color: rgba(0, 0, 0, 0.7);
}

.city-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

/* Event Details */
.event-details {
    display: flex;
    justify-content: start;
    align-items: start;
    margin: 40px 0 60px;
    flex-wrap: wrap;
    gap: 10px;
}


.details-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

.details-left p {
    color: #fff;
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
}

.details-left strong {
    font-weight: 600;
}

.view-schedule-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 60px;
}

.btn-view-schedule {
    padding: 14px 30px;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: visible;
}

/* Remove hover effect for btn-view-schedule */
.btn-view-schedule.btn-gradient:hover {
    background: linear-gradient(90deg, #10c8e1, #25d49a, #c9dc26, #ff9a33, #f24ca4);
}

.btn-view-schedule.btn-gradient:hover::before {
    opacity: 1;
}

.btn-view-schedule.btn-gradient:hover::after {
    background: inherit;
}

/* HIDE SCHEDULE state - black background, gray text, light gray border */
.btn-view-schedule.btn-gradient.hide-schedule-state {
    background: #000000 !important;
    color: #666666 !important;
    border: 1px solid #999999 !important;
}

.btn-view-schedule.btn-gradient.hide-schedule-state::before {
    opacity: 0 !important;
}

.btn-view-schedule.btn-gradient.hide-schedule-state::after {
    background: #000000 !important;
}

.btn-view-schedule.btn-gradient.hide-schedule-state:hover {
    background: #000000 !important;
    color: #666666 !important;
    border: 1px solid #999999 !important;
}

.btn-view-schedule.btn-gradient.hide-schedule-state:hover::before {
    opacity: 0 !important;
}

.btn-view-schedule.btn-gradient.hide-schedule-state:hover::after {
    background: #000000 !important;
}

/* Timeline Schedule */
.timeline-schedule {
    margin: 60px 0;
}

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #10c8e1, #25d49a, #c9dc26, #ff9a33, #f24ca4);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 20px 0;
    opacity: 1;
    visibility: visible;
}

.timeline-item.right {
    text-align: left;
}

.timeline-item.left {
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 2px solid #000;
}

.timeline-content {
    max-width: 45%;
}

.timeline-item.right .timeline-content {
    margin-left: calc(50% + 30px);
}

.timeline-item.left .timeline-content {
    margin-right: calc(50% + 30px);
}

.timeline-time {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.timeline-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Speakers Section */
.speakers-section {
    cursor: auto !important;
    margin-top: 0px;
    padding-top: 0px;
}

.speakers-title {
    font-size: 25px;
    padding-left: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
    text-transform:uppercase;
}

.speakers-slider {
    cursor: auto !important;
    padding-bottom: 80px;
    position: relative;
    height: 70vh;
}

.speakers-slider .swiper-button-next,
.speakers-slider .swiper-button-prev {
    color: #fff;
    width: 100px !important;
    min-height: 2px !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    bottom: -50px !important;
    position: absolute !important;
    display: block !important;
    transition: all 0.3s ease;
    padding: 15px 20px !important;
    margin-top: 150px !important;
    cursor: pointer;

}

.speakers-slider .swiper-button-next::before,
.speakers-slider .swiper-button-prev::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #fff;
    transform: translateY(-50%);
}

.speakers-slider .swiper-button-prev {
    left: calc(50% - 110px) !important;
    right: auto !important;
}

.speakers-slider .swiper-button-next {
    left: calc(50% + 10px) !important;
    right: auto !important;
}

.speakers-slider .swiper-button-next:hover,
.speakers-slider .swiper-button-prev:hover {
    opacity: 0.7;
}

.speakers-slider .swiper-button-next::after,
.speakers-slider .swiper-button-prev::after {
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
}

.speakers-slider .swiper-button-prev::after {
    font-size: 10px !important;
    /* content: '←'; */
    /* left: -25px; */
}

.speakers-slider .swiper-button-next::after {
    font-size: 10px !important;

    /* content: '→'; */
    right: 18px;
}

.speakers-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.speakers-slider .swiper-pagination-bullet-active {
    background: #fff;
}

.speaker-card {
    cursor: auto !important;
    background: transparent;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.speaker-img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
}

.speaker-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.speaker-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.speaker-company {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Modals */
.speaker-modal,
.speaker-details-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.speaker-modal.active,
.speaker-details-modal.active {
    display: flex;
}

.modal-content {
    background: transparent;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    isolation: isolate;
}

.modal-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(90deg, #f24ca4, #ff9a33, #c9dc26, #25d49a, #10c8e1);
    z-index: -2;
}

.modal-content::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 18px;
    background: #000;
    z-index: -1;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-speaker-info,
.modal-speaker-details {
    text-align: center;
    position: relative;
    z-index: 1;
}

.modal-speaker-info img,
.modal-speaker-details img {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    margin: 0 auto 30px;
}

.modal-speaker-info h3,
.modal-speaker-details h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
}

.modal-speaker-info p,
.modal-speaker-details p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0;
}

.modal-info-btn {
    margin-top: 20px;
    padding: 14px 40px;
}

.speaker-bio {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.speaker-bio p {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

/* Responsive for AGENDA */
@media (max-width: 968px) {
    .city-tabs-swiper {
        padding: 0 20px;
    }

    .city-tab {
        padding: 12px 24px;
    }

    .city-tabs-nav {
        padding: 0 20px;
        gap: 40px;
    }

    .city-nav-btn {
        width: 60px;
        height: 16px;
    }

    .event-details {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .agenda-section {
        padding: 80px 24px 50px;
    }

    .agenda-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .city-tab {
        padding: 10px 16px;
    }

    .city-tab .city-name {
        font-size: 14px;
    }

    .city-tab .city-date {
        font-size: 12px;
    }

    .city-tabs-nav {
        padding: 0 20px;
        gap: 30px;
    }

    .city-nav-btn {
        width: 50px;
        height: 14px;
    }

    .timeline-content {
        max-width: calc(50% - 30px);
        margin-left: calc(50% + 30px) !important;
        margin-right: 0 !important;
    }

    .timeline-item.left .timeline-content {
        margin-left: 0 !important;
        margin-right: calc(50% + 30px) !important;
        text-align: right;
    }

    .timeline-dot {
        left: 50% !important;
        transform: translateX(-50%);
    }

    .speaker-img {
        width: 150px;
        height: 150px;
    }
}

/* REGISTER Section */
.register-section {
    min-height: 80vh;
    background: #000;
    padding: 120px 40px;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    max-width: 1400px;
    width: 100%;
}

.register-title {
    font-size: 55px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0 0 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.register-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 50px;
    padding-right: 0px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.form-field label {
    color: #ffffff74;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 12px;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.form-field input {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgb(255, 255, 255);
    padding: 12px 0;
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    position: relative;
    flex: 1;
    z-index: 2;
}

.form-field:has(input:focus) label,
.form-field:has(input:not(:placeholder-shown)) label,
.form-field:has(input:valid:not(:placeholder-shown)) label {
    opacity: 0;
    visibility: hidden;
}

.form-field input:focus {
    background: #fff !important;
    border-bottom-color: #ffffff;
}

.form-field::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    /* background: linear-gradient(90deg, #f24ca4, #ff9a33, #c9dc26, #25d49a, #10c8e1); */
    transition: width 0.3s ease;
}

.form-field.filled::after {
    width: 100%;
}

.form-field input:not(:placeholder-shown),
.form-field input:valid {
    background: transparent !important;
    border-bottom: 1px solid rgb(255, 255, 255);
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Override browser autofill background */
.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:hover,
.form-field input:-webkit-autofill:focus,
.form-field input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: #fff !important;
    background: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}

.privacy-text {
    color: #fff;
    font-size: 12px;
    line-height: 1.6;
    margin: 8px 0 0;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-submit {
    margin-top: 8px;
    padding: 14px 40px;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    width: 50%;
    position: relative;
    overflow: visible;
}

.register-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

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

/* Responsive for REGISTER */
@media (max-width: 968px) {
    .register-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .register-logo {
        order: -1;
    }

    .register-logo img {
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .register-section {
        padding: 80px 24px 50px;
    }

    .register-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .register-form {
        gap: 28px;
    }

    .form-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .form-field label {
        min-width: auto;
    }

    .form-field input {
        font-size: 14px;
        width: 100%;
    }

    .privacy-text {
        font-size: 11px;
    }
}

/* FOOTER Section */
.site-footer {
    background: #000;
    padding: 80px 40px 40px;
    min-height: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    position: relative;
    background: transparent;
    border-radius: 30px;
    padding: 60px 80px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    isolation: isolate;
}

.footer-content::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 31px;
    background: linear-gradient(90deg, #10c8e1, #25d49a, #c9dc26, #ff9a33, #f24ca4);
    z-index: -2;
}

.footer-content::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    background: #000;
    z-index: -1;
}


.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.footer-heading {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-email {
    font-size: 25px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-email a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-email a:hover {
    opacity: 0.8;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    padding-left: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-tagline {
    font-size: 16px;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive for FOOTER */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 50px 40px;
    }

    .footer-left {
        text-align: center;
    }

    .footer-heading {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 60px 24px 30px;
    }

    .footer-content {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .footer-content::before {
        border-radius: 20px;
    }

    .footer-content::after {
        border-radius: 17px;
    }

    .footer-heading {
        font-size: clamp(28px, 6vw, 40px);
    }

    .footer-email {
        font-size: 16px;
    }

    .footer-logo-img {
        max-width: 250px;
    }

    .footer-social {
        gap: 20px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

@keyframes slide-bg {
    0% {
        background-position: 50% 50%;
        transform: scale(1);
    }

    25% {
        background-position: 80% 50%;
        transform: scale(1.04);
    }

    50% {
        background-position: 20% 50%;
        transform: scale(1.08);
    }

    75% {
        background-position: 65% 50%;
        transform: scale(1.04);
    }

    100% {
        background-position: 50% 50%;
        transform: scale(1);
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES FOR ALL DEVICES
   ============================================ */

/* Tablet and Below (max-width: 1024px) */
@media (max-width: 1024px) {

    /* Header */
    .site-header {
        padding: 30px 30px;
    }

    .site-logo {
        width: clamp(80px, 12vw, 140px);
    }

    .main-nav {
        gap: 30px;
    }

    .nav-list {
        gap: 30px;
    }

    .nav-list a {
        font-size: 14px;
    }

    .main-nav .btn-gradient {
        padding: 12px 20px;
        font-size: 14px;
    }


    .hero-bottom h1 {
        font-size: clamp(18px, 3.5vw, 22px);
    }

    /* About Section */
    .about-section {
        padding: 100px 40px 60px;
    }

    .about-title {
        font-size: clamp(32px, 5vw, 40px);
    }

    /* Who Is It For */
    .who-is-it-for {
        padding: 100px 40px 60px;
    }

    .who-title {
        font-size: clamp(32px, 5vw, 40px);
    }

    /* Agenda */
    .agenda-section {
        padding: 100px 40px 60px;
    }

    .agenda-title {
        font-size: clamp(32px, 5vw, 40px);
    }

    /* Recap */
    .recap-section {
        padding: 100px 40px 60px;
    }

    .recap-title {
        font-size: clamp(32px, 5vw, 40px);
    }

    /* Register */
    .register-section {
        padding: 100px 40px 60px;
    }

    .register-title {
        font-size: clamp(32px, 5vw, 40px);
    }
}

/* Tablet (max-width: 968px) */
@media (max-width: 968px) {

    /* Header */
    .site-header {
        padding: 25px 24px;
    }

    .main-nav {
        gap: 25px;
    }

    .nav-list {
        gap: 25px;
    }

    .nav-list a {
        font-size: 13px;
    }

    .main-nav .btn-gradient {
        padding: 10px 18px;
        font-size: 12px;
    }

    /* Hero */
    .hero-bottom {
        bottom: 10%;
        width: 85vw;
    }

    .brand-mini {
        width: min(50vw, 280px);
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-logo-section {
        align-items: center;
        text-align: center;
    }

    .about-logo {
        max-width: 300px;
    }

    /* Who Is It For - Cards */
    .who-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Agenda - City Tabs */
    .city-tabs-swiper {
        padding: 0 20px;
    }

    .city-tab {
        padding: 14px 28px;
    }

    .city-tab .city-name {
        font-size: 16px;
    }

    .city-tab .city-date {
        font-size: 13px;
    }

    /* Event Details */
    .event-details {
        flex-direction: column;
        gap: 20px;
    }

    /* Timeline */
    .timeline-content {
        max-width: calc(50% - 25px);
    }

    /* Speakers */
    .speakers-slider {
        padding: 0 20px;
    }

    /* Recap */
    .recap-swiper {
        padding: 0 20px;
    }

    /* Register */
    .register-content {
        flex-direction: column;
        gap: 40px;
    }

    .register-logo {
        max-width: 300px;
        margin: 0 auto;
    }
}

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

    /* Header */
    .site-header {
        padding: 20px 20px;
    }

    .site-logo {
        width: clamp(70px, 18vw, 120px);
    }

    /* Hide desktop nav on mobile */
    .nav-list {
        display: none;
    }

    .main-nav .btn-gradient {
        display: none;
    }

    /* Hero Section */
    .home-hero {
        min-height: 100vh;
    }

    .home-logo {
        top: 40%;
        transform: translate(-50%, -50%);
    }

    .brand-mini {
        width: min(60vw, 280px);
    }

    .hero-bottom {
        bottom: 10%;
        width: 90vw;
        padding: 0 20px;
        gap: 24px;
    }

    .hero-bottom h1 {
        font-size: clamp(16px, 4.5vw, 20px);
        line-height: 1.6;
    }

    .hero-bottom .btn-gradient {
        width: 100%;
        max-width: 320px;
        padding: 14px 20px;
        font-size: 13px;
    }

    /* Swiper buttons hide on mobile */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .swiper-pagination {
        left: 0% !important;
        bottom: 20px !important;
        transform: translateX(-0%);
        justify-content: center;
    }

    /* About Section */
    .about-section {
        padding: 80px 24px 50px;
    }

    .about-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .about-gradient-line {
        margin-bottom: 40px;
        max-width: 300px;
    }

    .about-content {
        gap: 30px;
    }

    .about-logo {
        max-width: 250px;
    }

    .about-para {
        font-size: 16px;
        text-align: left;
    }

    /* Who Is It For */
    .who-is-it-for {
        padding: 80px 24px 50px;
    }

    .who-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .who-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0;
    }

    .who-card {
        padding: 30px 24px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-desc {
        font-size: 14px;
    }

    /* Agenda */
    .agenda-section {
        padding: 80px 24px 50px;
    }

    .agenda-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .city-tabs-swiper {
        margin: 40px 0 20px;
        padding: 0 20px;
    }

    .city-tab {
        padding: 12px 20px;
    }

    .city-tab .city-name {
        font-size: 15px;
    }

    .city-tab .city-date {
        font-size: 12px;
    }

    .city-tabs-nav {
        padding: 0 20px;
        gap: 40px;
    }

    .city-nav-btn {
        width: 60px;
        height: 16px;
    }

    .event-details {
        padding: 30px 20px;
    }

    .event-details p {
        font-size: 14px;
    }

    .btn-view-schedule {
        padding: 14px 30px;
        font-size: 14px;
    }

    .timeline-schedule {
        margin-top: 40px;
        padding: 0 20px;
    }

    .timeline-content {
        max-width: calc(50% - 20px);
        font-size: 14px;
    }

    .timeline-time {
        font-size: 12px;
    }

    .timeline-title {
        font-size: 14px;
    }

    .timeline-desc {
        font-size: 12px;
    }

    .speakers-section {
        margin-top: 60px;
        height: 50vh;
    }

    .speakers-slider .swiper-button-prev {
        margin-top: 0px !important;
    }

    .speakers-slider .swiper-button-next {
        margin-top: 0px !important;
    }

    .speakers-title {
        font-size: clamp(22px, 5vw, 28px);
        margin-bottom: 30px;
    }

    .speakers-slider {
        padding: 0 20px;
    }

    .speaker-card {
        padding: 15px;
    }

    .speaker-img {
        width: 100%;
        max-width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .speaker-name {
        font-size: 14px;
        margin-top: 12px;
    }

    .speaker-title {
        font-size: 12px;
        margin-top: 4px;
    }

    .speaker-company {
        font-size: 11px;
        margin-top: 4px;
    }

    /* Recap */
    .recap-section {
        padding: 80px 24px 50px;
    }

    .recap-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .recap-btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    .recap-swiper {
        margin-top: 40px;
        padding: 0 20px;
    }

    /* Register */
    .register-section {
        padding: 80px 24px 50px;
    }

    .register-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .register-content {
        gap: 30px;
    }

    .register-form {
        gap: 24px;
    }

    .form-field input {
        font-size: 14px;
        padding: 10px 0;
    }

    .form-field label {
        font-size: 14px;
    }

    .privacy-text {
        font-size: 11px;
    }

    .register-submit {
        padding: 14px 30px;
        font-size: 14px;
    }

    .register-logo {
        max-width: 250px;
    }

    /* Footer */
    .site-footer {
        padding: 60px 24px 30px;
    }

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

    .footer-right {
        padding-left: 0px;
    }

    .footer-left {
        text-align: start;
    }


    .footer-content {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .footer-heading {
        font-size: clamp(24px, 6vw, 32px);
    }

    .footer-email {
        font-size: 14px;
    }

    .footer-logo-img {
        max-width: 200px;
    }

    .footer-social {
        gap: 20px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

    /* Header */

    .slide-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: 50% 50%;
        z-index: -2;
        animation: slide-bg 30s linear infinite;
    }

    .site-header {
        padding: 16px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-logo {
        width: 150px;
    }

    /* Show hamburger menu button */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop nav */
    .nav-list {
        display: none !important;
    }

    .main-nav .btn-gradient {
        display: none !important;
    }

    /* Mobile Menu Overlay Styles */
    .mobile-menu-close {
        top: 16px;
        right: 16px;
        padding: 10px;
    }

    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
    }

    .mobile-menu-content {
        padding: 60px 30px 40px;
        height: 100%;
    }

    .mobile-menu-logo {
        max-width: 200px;
        margin-bottom: 50px;
    }

    .mobile-nav-list {
        gap: 35px;
    }

    .mobile-nav-list a {
        font-size: 18px;
    }

    .mobile-menu-button {
        max-width: 320px;
    }

    .mobile-menu-button .btn-gradient {
        padding: 14px 0px;
        font-size: 13px;
    }

    /* Hero */
    .home-logo {
        top: 50%;
    }

    .brand-mini {
        width: min(70vw, 260px);
    }

    .hero-bottom h1 {
        font-size: clamp(16px, 4.5vw, 20px);
        line-height: 1.6;
    }

    .hero-bottom {
        bottom: 10%;
        width: 95vw;
        gap: 20px;
    }

    .hero-bottom h1 {
        font-size: clamp(14px, 4vw, 18px);
        line-height: 1.7;
    }

    .hero-bottom .btn-gradient {
        max-width: 280px;
        padding: 12px 18px;
        font-size: 11px;
    }

    /* About */
    .about-section {
        padding: 60px 20px 40px;
    }

    .about-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .about-gradient-line {
        max-width: 250px;
        margin-bottom: 30px;
    }

    .about-logo {
        max-width: 0px;
    }

    .about-para {
        text-align: justify;
        font-size: 14px;
        line-height: 1.6;
    }

    /* Who Is It For */
    .who-is-it-for {
        padding: 60px 20px 40px;
    }

    .who-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .who-card {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon svg {
        width: 70px;
        height: 70px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-desc {
        font-size: 13px;
    }

    /* Agenda */
    .agenda-section {
        padding: 60px 20px 40px;
    }

    .agenda-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .city-tabs-swiper {
        padding: 0 34px !important;
        margin: 40px 0 20px !important;
        overflow: visible;
    }

    .city-tabs-swiper .swiper-slide {
        width: calc(66% - 7.5px) !important;
        flex-shrink: 0;
    }

    .city-tabs-swiper .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .city-tab {
        padding: 10px 16px;
        width: 100%;
        min-width: 120px;
    }

    .city-tab .city-name {
        font-size: 14px;
    }

    .city-tab .city-date {
        font-size: 11px;
    }

    .city-tabs-nav {
        justify-content: center;
        gap: 30px;
        padding: 0 20px !important;
    }

    .speakers-slider .swiper-button-next {
        margin-top: 0px !important;
        padding-left: 0px !important;
    }

    .speakers-slider .swiper-button-prev {
        margin-top: 0px !important;
        padding-left: 0px !important;
    }

    .speakers-slider .swiper-button-next::before {
        left: 0;
    }

    .speakers-slider .swiper-button-prev::before {
        left: 0;
    }

    .city-nav-btn {
        width: 50px;
        height: 14px;
    }

    .event-details {
        padding: 24px 16px;
    }

    .event-details p {
        font-size: 13px;
    }

    .timeline-content {
        max-width: calc(50% - 15px);
        font-size: 12px;
    }

    .timeline-time {
        font-size: 11px;
    }

    .timeline-title {
        font-size: 13px;
    }

    .timeline-desc {
        font-size: 11px;
    }

    .speaker-card {
        padding: 12px;
    }

    .speaker-img {
        width: 100%;
        max-width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .speaker-name {
        font-size: 13px;
        margin-top: 10px;
    }

    .speaker-title {
        font-size: 11px;
        margin-top: 3px;
    }

    .speaker-company {
        font-size: 10px;
        margin-top: 3px;
    }

    /* Recap */
    .recap-section {
        padding: 60px 20px 40px;
    }

    .recap-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    /* Register */
    .register-section {
        padding: 60px 20px 40px;
    }

    .register-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .register-form {
        gap: 20px;
        padding-left: 0px;
        display: flex;
        flex-direction: column;
        /* align-items: center; */
    }

    .form-field input {
        font-size: 13px;
    }

    .form-field label {
        font-size: 13px;
    }

    .privacy-text {
        font-size: 10px;
        line-height: 1.5;
    }

    .register-logo {
        max-width: 0px;

    }

    .register-submit {
        padding: 14px 5 0px;
        font-size: 14px;
    }

    /* Footer */
    .site-footer {
        padding: 50px 20px 24px;
    }

    .footer-content {
        padding: 30px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .footer-left {
        text-align: center;
    }

    .footer-heading {
        font-size: clamp(20px, 6vw, 28px);
    }

    .footer-email {
        font-size: 13px;
    }

    .footer-logo-img {
        max-width: 180px;
    }

    .social-icon {
        width: 14px;
        height: 14px;
    }

    .footer-copyright p {
        font-size: 11px;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .hero-bottom h1 {
        font-size: 13px;
    }

    .about-title,
    .who-title,
    .agenda-title,
    .recap-title,
    .register-title {
        font-size: 22px;
    }

    .city-tab {
        padding: 8px 12px;
    }

    .city-tab .city-name {
        font-size: 12px;
    }

    .city-tab .city-date {
        font-size: 10px;
    }
}