.hero {
    display: flex;
    /* padding: 0px 56px; */
    position: relative;
    z-index: 1;
    padding-top: 0px;
    border-radius: 0;
    overflow: hidden;
    padding-bottom: 0px;
}

.hero-container {
    /* max-width: 1400px; */
    width: 100%;
    margin: 0px auto;
}

.hero-main {
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 60vh;
    position: relative;
    padding: 40px 56px;
    border-radius: 0 !important;
    border: 0 !important;
}

.date-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-title {
    font-size: clamp(1.75rem, 1rem + 3vw, 3.625rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
    width: 50%;
    text-wrap: balance;
}

.hero-subtitle {
    background: #011638;
    color: #fff;
    border-radius: var(--bs-form-valid-border-color);
    line-height: 1.6;
    font-weight: 500;
    padding: 40px 56px;
    text-wrap: balance;
    position: relative;
    overflow: hidden;
}

    .hero-subtitle::after {
        content: '';
        position: absolute;
        inset: 0px;
        background: linear-gradient(92deg, var(--text-primary), transparent);
    }

    .hero-subtitle p {
        font-size: clamp(1.75rem, 1.75rem + 0vw, 1.75rem);
        position: relative;
        z-index: 1;
        margin: 0px;
        width: 70%;
    }

    .hero-subtitle b {
        color: var(--accent-gold);
        font-weight: 700;
    }

    .hero-subtitle div {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        /* Double width for seamless loop */
        height: 100%;
        z-index: 0;
        animation: slideBackground 30s linear infinite;
    }

        .hero-subtitle div img {
            width: 100%;
            /* Half of container width */
            height: 100%;
            object-fit: cover;
            object-position: bottom;
            display: block;
            float: left;
        }

@keyframes slideBackground {
    0% {
        transform: translateX(45%);
    }

    50% {
        transform: translateX(0%);
        /* Move left by half the width */
    }

    100% {
        transform: translateX(45%);
        /* Move left by half the width */
    }
}

/* Pause on hover for better UX */
.hero-subtitle:hover div {
    animation-play-state: paused;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
}

.right-column-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

    .right-column-stack .glass-card {
        flex: 1 1 0%;
    }

.countdown-card {
    padding: 32px 40px;
    justify-content: center;
}

.countdown-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.timer-item {
    text-align: center;
}

.timer-value {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.timer-label {
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 8px;
}

.timer-separator {
    font-size: 24px;
    color: var(--accent-gold);
    padding-top: 8px;
}

.seconds-pulse {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin-left: 8px;
    animation: 1s ease-in-out 0s infinite normal none running pulse;
}

@keyframes pulse {

    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.enquiry-card {
    padding: 32px 40px;
    position: relative;
    justify-content: center;
}

.enquiry-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--accent-gold);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.06;
    pointer-events: none;
}

.enquiry-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.enquiry-desc {
    font-size: 15px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.enquiry-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-orange {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
    color: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    cursor: none;
}

    .btn-orange:hover {
        background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
        transform: translateY(-2px);
        box-shadow: rgba(217, 119, 6, 0.25) 0px 8px 24px;
        color: rgb(255, 255, 255);
    }

.btn-outline-hero {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid rgba(15, 23, 42, 0.2);
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: none;
    text-align: center;
}

    .btn-outline-hero:hover {
        background: rgba(15, 23, 42, 0.04);
        border-color: rgba(15, 23, 42, 0.35);
        color: var(--text-primary);
    }

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 0px;
    padding: 24px 40px;
    align-items: center;
}

.stat-item {
    padding: 0px 24px;
    border-right: 1px solid var(--glass-border);
}

    .stat-item:last-of-type {
        border-right-width: medium;
        border-right-style: none;
        border-right-color: currentcolor;
    }

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

    .stat-value span {
        font-size: 20px;
        color: var(--accent-gold);
    }

    .stat-value .orange {
        color: var(--accent-gold);
    }

.stat-label {
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 8px;
}

.stat-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 24px;
    border-left: 1px solid var(--glass-border);
}

    .stat-contact span {
        font-size: 15px;
        color: var(--text-secondary);
    }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(15, 23, 42, 0.15);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: 2s ease-in-out 0s infinite normal none running scrollDot;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }

    100% {
        transform: translateY(16px);
        opacity: 0;
    }
}

.pe-Hero {
    margin-top: 0;
    padding-block: 0;
}

.pe-Hero-glass-card {
    padding: 0 !important;
}

.pe-hero-banner {
    position: relative;
    width: 100%;
    min-height: 480px;
    background: linear-gradient(135deg, rgba(7, 20, 40, 0.51) 0%, rgba(15, 34, 68, 0.55) 35%, rgba(10, 26, 53, 0.59) 70%, rgb(6, 18, 32) 100%);
    overflow: hidden;
    border-radius: 28px 28px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pe-hero-banner-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

    .pe-hero-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.pe-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: radial-gradient(at 15% 40%, rgba(5, 150, 105, 0.12) 0%, transparent 55%), radial-gradient(at 85% 15%, rgba(217, 119, 6, 0.08) 0%, transparent 45%), radial-gradient(at 60% 80%, rgba(5, 150, 105, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.pe-hero-banner::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 800 400\"><defs><pattern id=\"g\" width=\"50\" height=\"50\" patternUnits=\"userSpaceOnUse\"><path d=\"M 50 0 L 0 0 0 50\" fill=\"none\" stroke=\"rgba(255,255,255,0.03)\" stroke-width=\"0.5\"/></pattern></defs><rect width=\"800\" height=\"400\" fill=\"url(%23g)\"/></svg>");
    pointer-events: none;
}

.pe-hero-content {
    position: relative;
    z-index: 2;
    padding: 56px 64px;
    max-width: 100%;
}

.pe-hero-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.pe-logo-icon {
    width: 80px;
    height: 80px;
    position: relative;
    filter: drop-shadow(rgba(5, 150, 105, 0.3) 0px 0px 30px);
}

    .pe-logo-icon svg {
        width: 100%;
        height: 100%;
    }

.pe-logo-text {
    font-size: 56px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    letter-spacing: -2.5px;
    line-height: 1;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 2px 20px;
}

.pe-hero-tagline {
    font-weight: 600;
    font-size: clamp(1.375rem, 1.125rem + 1vw, 2rem);
    color: rgb(255, 255, 255);
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0.95;
    letter-spacing: -0.3px;
}

.pe-hero-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    max-width: 100%;
    font-size: clamp(1rem, 0.85rem + 0.6vw, 1.375rem);
}

    .pe-hero-desc strong {
        color: rgb(255, 255, 255);
        font-weight: 700;
    }

.pe-hero-map {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    opacity: 0.2;
    background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 800 500\"><defs><pattern id=\"dots\" width=\"60\" height=\"60\" patternUnits=\"userSpaceOnUse\"><circle cx=\"30\" cy=\"30\" r=\"1.5\" fill=\"rgba(255,255,255,0.15)\"/></pattern></defs><rect width=\"800\" height=\"500\" fill=\"url(%23dots)\"/><circle cx=\"580\" cy=\"180\" r=\"4\" fill=\"%23059669\" opacity=\"0.5\"/><circle cx=\"610\" cy=\"160\" r=\"3\" fill=\"%23d97706\" opacity=\"0.4\"/><circle cx=\"550\" cy=\"200\" r=\"3.5\" fill=\"%23059669\" opacity=\"0.35\"/><circle cx=\"640\" cy=\"140\" r=\"2.5\" fill=\"%23d97706\" opacity=\"0.3\"/><circle cx=\"520\" cy=\"220\" r=\"2\" fill=\"%23059669\" opacity=\"0.25\"/><line x1=\"580\" y1=\"180\" x2=\"610\" y2=\"160\" stroke=\"%23059669\" stroke-width=\"0.6\" opacity=\"0.2\"/><line x1=\"610\" y1=\"160\" x2=\"640\" y2=\"140\" stroke=\"%23d97706\" stroke-width=\"0.6\" opacity=\"0.2\"/><line x1=\"580\" y1=\"180\" x2=\"550\" y2=\"200\" stroke=\"%23059669\" stroke-width=\"0.6\" opacity=\"0.2\"/><line x1=\"550\" y1=\"200\" x2=\"520\" y2=\"220\" stroke=\"%23059669\" stroke-width=\"0.6\" opacity=\"0.15\"/></svg>") center center / cover no-repeat;
    pointer-events: none;
}

.pe-partner-section {
    display: flex;
    justify-content: space-between;
    gap: 0px;
    overflow: hidden;
    min-height: 300px;
    position: relative;
    border-radius: 0 0 24px 24px;
}

.pe-partner-text {
    padding: 56px 56px 56px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 60%;
    background: linear-gradient(to right, rgb(10, 58, 94) 0%, rgb(21, 74, 114) 30%, rgb(13, 46, 74) 70%, rgb(8, 30, 50) 80%, transparent 100%);
}

.pe-partner-heading {
    font-size: 40px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1.15;
    letter-spacing: -1.5px;
    text-shadow: rgba(0, 0, 0, 0.2) 0px 2px 16px;
}

.pe-partner-image {
    position: absolute;
    overflow: hidden;
    z-index: 1;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 60%;
}

    .pe-partner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-height: 400px;
        display: block;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

.pe-partner-section:hover .pe-partner-image img {
    transform: scale(1.03);
}

.pe-roadmap-section {
    display: flex;
    gap: 48px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.pe-roadmap-text {
    font-size: clamp(1rem, 0.85rem + 0.6vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.85;
    position: relative;
    z-index: 1;
    padding: 40px 64px;
    width: 50%;
}

    .pe-roadmap-text strong {
        color: var(--text-primary);
        font-weight: 700;
        font-style: italic;
    }

.pe-roadmap-image {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
    border-radius: 0% 0px 0px 28px;
}

    .pe-roadmap-image:hover {
        transform: translateY(-4px);
        box-shadow: rgba(15, 23, 42, 0.16) 0px 32px 80px, rgba(255, 255, 255, 0.5) 0px 0px 0px 1px;
    }

    .pe-roadmap-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.pe-brand-section {
    display: flex;
    gap: 56px;
    align-items: end;
    justify-content: end;
    position: relative;
    overflow: hidden;
}

.pe-brand-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 0% 28px 0px 0%;
    box-shadow: rgba(15, 23, 42, 0.14) 0px 28px 72px, rgba(255, 255, 255, 0.5) 0px 0px 0px 1px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}

    .pe-brand-image:hover {
        transform: translateY(-4px);
        box-shadow: rgba(15, 23, 42, 0.18) 0px 36px 88px, rgba(255, 255, 255, 0.5) 0px 0px 0px 1px;
    }

    .pe-brand-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.pe-brand-logo-overlay {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .pe-brand-logo-overlay svg {
        width: 52px;
        height: 52px;
        filter: drop-shadow(rgba(0, 0, 0, 0.4) 0px 2px 10px);
    }

    .pe-brand-logo-overlay span {
        font-size: 30px;
        font-weight: 800;
        color: rgb(255, 255, 255);
        letter-spacing: -1.5px;
        text-shadow: rgba(0, 0, 0, 0.4) 0px 2px 16px;
    }

.pe-brand-text {
    color: var(--text-secondary);
    line-height: 1.85;
    position: relative;
    z-index: 1;
    width: 50%;
    font-size: clamp(1rem, 0.85rem + 0.6vw, 1.5rem);
    padding: 40px 64px;
}

    .pe-brand-text strong {
        color: var(--text-primary);
        font-weight: 700;
        font-style: italic;
    }

.pe-ambient-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.pe-dot-1 {
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    top: 20%;
    right: 15%;
    opacity: 0.4;
    animation: 8s ease-in-out 0s infinite normal none running floatDot;
}

.pe-dot-2 {
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    top: 35%;
    right: 25%;
    opacity: 0.3;
    animation: 10s ease-in-out 2s infinite normal none running floatDot;
}

.pe-dot-3 {
    width: 5px;
    height: 5px;
    background: var(--primary-green);
    top: 60%;
    right: 10%;
    opacity: 0.25;
    animation: 12s ease-in-out 4s infinite normal none running floatDot;
}

@keyframes floatDot {

    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.5;
    }
}

@media (max-width: 900px) {
    .pe-partner-section {
        flex-direction: column;
    }

    .pe-partner-image {
        position: relative;
        width: 100%;
        min-height: 230px;
        order: 0;
        margin-top: -70px;
    }

        .pe-partner-image::after {
            display: none;
        }

    .pe-partner-text {
        padding: 40px 32px;
        width: 100%;
        background: linear-gradient(to bottom, rgb(10, 58, 94) 0%, rgb(21, 74, 114) 30%, rgb(13, 46, 74) 70%, rgb(8, 30, 50) 80%, transparent 100%);
    }

    .pe-roadmap-section {
        flex-direction: column;
    }

    .pe-roadmap-text {
        order: 2;
        width: 100%;
    }

        .pe-roadmap-text p {
            backdrop-filter: blur(10px);
            padding: 15px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.33);
        }

    .pe-roadmap-image {
    }

    .pe-brand-section {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .pe-brand-text {
        order: 1;
        width: 100%;
    }

    .pe-brand {
    }

    .pe-brand-image {
        order: 2;
        min-height: 240px;
        width: 100%;
        border-radius: 0px;
    }

    .pe-brand-text p {
        backdrop-filter: blur(10px);
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.33);
        padding: 15px;
    }

    .pe-brand-text {
        order: 1;
        width: 100%;
        padding: 32px 24px;
    }

    .pe-roadmap-image {
        position: absolute;
        right: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        order: 1;
        border-radius: 0px;
    }

        .pe-roadmap-image img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

    .pe-hero-content {
        padding: 40px 32px;
    }

    .pe-hero-logo-text {
        font-size: 40px;
    }

    .pe-hero-tagline {
        font-size: 20px;
    }

    .pe-partner-heading {
        font-size: 32px;
    }

        .pe-partner-heading br {
            display: inline;
        }
}

@media (max-width: 480px) {
    .pe-hero-logo-text {
        font-size: 32px;
    }

    .pe-logo-icon {
        width: 60px;
        height: 60px;
    }

    .pe-hero-content {
        padding: 32px 24px;
    }

    .pe-hero-banner {
        min-height: 400px;
    }

    .pe-partner-text {
        padding: 32px 24px;
    }

    .pe-partner-heading {
        font-size: 26px;
    }

    .pe-roadmap-text {
        padding: 32px 24px;
    }

    .pe-brand-section {
    }

    .pe-brand-logo-overlay {
        bottom: 20px;
        left: 20px;
    }

        .pe-brand-logo-overlay svg {
            width: 40px;
            height: 40px;
        }

        .pe-brand-logo-overlay span {
            font-size: 24px;
        }
}

.pe-Hero-bharat-container {
    margin-top: 0;
}





.pe-stats-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    background: linear-gradient(180deg, var(--bg-surface) 0%, #e8f5e9 50%, var(--bg-surface) 100%);
    overflow: hidden;
    position: relative;
}

    .pe-stats-section::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 50%;
        width: 1px;
        height: 100%;
        background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
    }

.pe-stats-left {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pe-stats-heading {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.pe-stats-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pe-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pe-stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(5, 150, 105, 0.2) 0px 4px 16px;
}

    .pe-stat-icon svg {
        width: 24px;
        height: 24px;
        color: rgb(255, 255, 255);
    }

.pe-stat-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pe-stats-right {
    /* padding: 48px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;*/
    position: relative;
    z-index: 1;
}

    .pe-stats-right::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100px;
        height: 100%;
        background: linear-gradient(to right, rgb(240, 253, 244), transparent);
        z-index: 1;
    }

.pe-capacity-chart {
    text-align: center;
}

.pe-capacity-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pe-capacity-value {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 24px;
}

.pe-capacity-bars {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.pe-capacity-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pe-bar {
    width: 80px;
    border-radius: 8px 8px 0px 0px;
    position: relative;
    transition: 0.4s;
}

    .pe-bar:hover {
        transform: scaleY(1.05);
    }

.pe-bar-fossil {
    height: 80px;
    background: linear-gradient(to top, rgb(100, 116, 139), rgb(148, 163, 184));
}

.pe-bar-nonfossil {
    height: 120px;
    background: linear-gradient(to top, var(--primary-green), var(--light-green));
    box-shadow: rgba(5, 150, 105, 0.2) 0px 0px 30px;
}

.pe-bar-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

    .pe-bar-label span {
        display: block;
        font-size: 14px;
        color: var(--text-primary);
        font-weight: 700;
    }

.pe-bess-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0px;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%);
    overflow: hidden;
    position: 1px solid var(--glass-border);
}

.pe-bess-image {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

    .pe-bess-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

.pe-bess-section:hover .pe-bess-image img {
    transform: scale(1.03);
}

.pe-bess-image::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, var(--bg-deep), transparent);
}

.pe-bess-text {
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pe-bess-heading {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.pe-bess-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pe-bess-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pe-bess-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    margin-top: 8px;
}

.pe-hydrogen-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0px;
    background: linear-gradient(rgb(240, 253, 244) 0%, rgb(220, 252, 231) 30%, rgb(240, 253, 244) 100%);
    overflow: hidden;
    position: relative;
}

    .pe-hydrogen-section::before {
        content: "";
        position: absolute;
        top: -60px;
        left: -60px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

.pe-hydrogen-text {
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pe-hydrogen-heading {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.pe-hydrogen-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.pe-hydrogen-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pe-hydrogen-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    margin-top: 8px;
}

.pe-hydrogen-link {
    color: var(--primary-green);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.3s;
}

    .pe-hydrogen-link:hover {
        color: var(--accent-gold);
    }

.pe-hydrogen-image {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

    .pe-hydrogen-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

.pe-hydrogen-section:hover .pe-hydrogen-image img {
    transform: scale(1.03);
}

.pe-hydrogen-image::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, rgb(240, 253, 244), transparent);
}

.pe-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.pe-glow-1 {
    width: 300px;
    height: 300px;
    background: rgba(5, 150, 105, 0.06);
    top: -100px;
    right: -80px;
}

.pe-glow-2 {
    width: 250px;
    height: 250px;
    background: rgba(217, 119, 6, 0.04);
    bottom: -60px;
    left: -60px;
}

@media (max-width: 900px) {
    .pe-hero-bharat-content {
        flex-direction: column;
        padding: 40px 32px;
        text-align: center;
    }

    .pe-bharat-right {
        text-align: center;
        max-width: 100%;
    }

    .pe-why-india {
        grid-template-columns: 1fr;
    }

    .pe-why-india-image {
        min-height: 240px;
        order: -1;
    }

        .pe-why-india-image::after {
            display: none;
        }

    .pe-why-india-text {
        padding: 40px 32px;
    }

    .pe-stats-section {
        grid-template-columns: 1fr;
    }

        .pe-stats-section::before {
            display: none;
        }

    .pe-stats-left,
    .pe-stats-right {
        padding: 32px;
    }

    .pe-bess-section {
        grid-template-columns: 1fr;
    }

    .pe-bess-image {
        min-height: 240px;
        order: -1;
    }

        .pe-bess-image::after {
            display: none;
        }

    .pe-bess-text {
        padding: 40px 32px;
    }

    .pe-hydrogen-section {
        grid-template-columns: 1fr;
    }

    .pe-hydrogen-image {
        min-height: 240px;
        order: -1;
    }

        .pe-hydrogen-image::after {
            display: none;
        }

    .pe-hydrogen-text {
        padding: 40px 32px;
    }
}

@media (max-width: 480px) {
    .pe-hero-bharat-content {
        padding: 32px 24px;
    }

    .pe-bharat-logo-main {
        font-size: 32px;
    }

    .pe-bharat-logo-sub {
        font-size: 14px;
    }

    .pe-why-india-heading {
        font-size: 26px;
    }

    .pe-stats-heading {
        font-size: 18px;
    }

    .pe-bess-heading {
        font-size: 22px;
    }

    .pe-hydrogen-heading {
        font-size: 20px;
    }
}



.section-header {
    text-align: center;
    margin-bottom: 64px;
}

    .section-header .accent-line {
        margin: 0px auto 20px;
    }

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sector-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

    .sector-card::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.15), transparent);
    }

    .sector-card:hover {
        border-color: var(--glass-border-hover);
        transform: translateY(-8px);
        box-shadow: rgba(15, 23, 42, 0.1) 0px 20px 50px;
    }

        .sector-card:hover .sector-icon svg {
            transform: scale(1.1);
        }

        .sector-card:hover .sector-glow {
            opacity: 1;
        }

.sector-icon {
    width: 100px;
    height: 75px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

    .sector-icon svg {
        width: 100%;
        height: 100%;
        transition: transform 0.4s;
    }

.sector-name {
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
    margin-block: 8px;
}

.sector-card:hover .sector-name {
    color: var(--accent-gold);
}

.sector-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
}

.sector-card[data-sector="solar"] .sector-glow {
    background: rgba(217, 119, 6, 0.12);
}

.sector-card .sector-glow {
    background: rgba(5, 150, 105, 0.1);
}



.sector-card,
.stat-card,
.feature-card,
.venue-feature {
    transform: translateY(10px);
    transition: opacity 0.6s, transform 0.6s;
}

    .sector-card.animate-in,
    .stat-card.animate-in,
    .feature-card.animate-in,
    .venue-feature.animate-in {
        opacity: 1;
        transform: translateY(0px);
    }

    .sector-card:nth-child(1) {
        transition-delay: 0s;
    }

    .sector-card:nth-child(2) {
        transition-delay: 0.05s;
    }

    .sector-card:nth-child(3) {
        transition-delay: 0.1s;
    }

    .sector-card:nth-child(4) {
        transition-delay: 0.15s;
    }

    .sector-card:nth-child(5) {
        transition-delay: 0.2s;
    }

    .sector-card:nth-child(6) {
        transition-delay: 0.25s;
    }

    .sector-card:nth-child(7) {
        transition-delay: 0.3s;
    }

    .sector-card:nth-child(8) {
        transition-delay: 0.35s;
    }

    .sector-card:nth-child(9) {
        transition-delay: 0.4s;
    }

    .sector-card:nth-child(10) {
        transition-delay: 0.45s;
    }

@media (max-width: 1199px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        border-right-width: medium;
        border-right-style: none;
        border-right-color: currentcolor;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 16px;
    }

    .stat-contact {
        border-left-width: medium;
        border-left-style: none;
        border-left-color: currentcolor;
        border-top: 1px solid var(--glass-border);
        padding-top: 16px;
        padding-left: 0px;
        grid-column: 1 / -1;
    }

    .about-content,
    .venue-content {
        padding-right: 0px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {


    .glass-card {
        padding: 24px;
        border-radius: 20px;
    }

    .hero-title {
        font-size: 32px;
        width: 100%;
    }

    .hero-main .video-overlay {
        background: linear-gradient(360deg, #fffffff5 41%, transparent 64%);
    }

    .countdown-timer {
        gap: 4px;
    }

    .timer-value {
        font-size: 28px;
    }

    .timer-separator {
        font-size: 18px;
        padding-top: 4px;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
    }

    .hero-cta {
        gap: 5px;
    }

        .hero-cta .btn-large {
            width: 144px;
            font-size: 13px;
            padding: 10px 15px;
        }

    .btn-large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-subtitle {
        padding: 24px;
    }

        .hero-subtitle p {
            font-size: 16px;
            width: 100%;
        }

    .pe-partner-text {
        padding: 20px 24px;
    }

    .pe-partner-heading {
        font-size: 26px;
    }

    .right-column-stack {
        height: auto;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sector-card {
        padding: 24px 16px;
        min-height: 160px;
        border-radius: 20px;
    }

    .sector-icon {
        width: 52px;
        height: 52px;
    }

    .sector-name {
        font-size: 15px;
    }

    .cta-card {
        padding: 32px 24px;
    }

    .cta-buttons {
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .timer-value {
        font-size: 24px;
    }

    .enquiry-actions {
        flex-direction: column;
    }

        .enquiry-actions .btn-orange,
        .enquiry-actions .btn-outline-hero {
            width: 100%;
            text-align: center;
            justify-content: center;
        }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 16px;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sector-card {
        padding: 20px 12px;
        min-height: 140px;
        border-radius: 16px;
    }

    .sector-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .sector-name {
        font-size: 15px;
    }

    .about-features {
        flex-direction: column;
        gap: 16px;
    }

    .venue-stats-row {
        flex-direction: column;
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sector-card,
    .stat-card,
    .feature-card,
    .venue-feature {
        transition: none;
    }
}

/* ===== BANNER SWIPER ===== */
.banner-swiper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    aspect-ratio: 16/5;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

    .banner-wrapper::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
        z-index: 2;
    }

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .banner-slide.active {
        opacity: 1;
        z-index: 2;
    }



    .banner-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }




/* ===== SWIPER NAVIGATION ===== */
.swiper-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.swiper-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

    .swiper-btn:hover {
        background: rgba(15, 23, 42, 0.12);
        border-color: var(--glass-border-hover);
        color: var(--text-primary);
    }

.swiper-dots {
    display: flex;
    gap: 8px;
}

.swiper-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .swiper-dot.active {
        background: var(--accent-gold);
        box-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
        transform: scale(1.3);
    }

    .swiper-dot:hover {
        background: var(--glass-border-hover);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .banner-swiper {
        /* height: 280px; */
    }

    .banner-slide {
        padding: 24px;
    }

    .banner-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .banner-swiper {
        /* height: 260px; */
        border-radius: 14px;
    }

    .banner-slide {
        padding: 20px 16px;
    }

    .banner-tag {
        font-size: 15px;
        padding: 4px 12px;
    }

    .banner-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .banner-cta {
        padding: 10px 22px;
        font-size: 15px;
    }
}

/* ----------------------Glimpses css ----------------------------------------- */





.glimpses-section .section-header {
    text-align: center;
    margin-bottom: 64px;
}

    .glimpses-section .section-header .accent-line {
        margin: 0 auto 20px;
    }

/* Masonry Gallery Grid - Auto-adjusts based on item count */
.glimpses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    margin-bottom: 48px;
}

/* Gallery Item */
.glimpse-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: none;
    display: block;
    text-decoration: none;
}

    .glimpse-item:hover {
        border-color: var(--glass-border-hover);
        transform: translateY(-6px);
        box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(52, 211, 153, 0.1);
        backdrop-filter: blur(2px);
    }

/* Image */
.glimpse-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.glimpse-item:hover .glimpse-image {
    transform: scale(1.1);
}

/* Glass Overlay - Always visible with subtle info, intensifies on hover */
.glimpse-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
}

.glimpse-item:hover .glimpse-overlay {
    height: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.6) 70%, transparent 100%);
}

.glimpse-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.glimpse-category {
    font-size: 15px;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Zoom icon appears on hover */
.glimpse-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    background: rgba(52, 211, 153, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.glimpse-item:hover .glimpse-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.glimpse-zoom svg {
    width: 22px;
    height: 22px;
    color: var(--primary-green);
}

/* Grid Span Variations for Masonry Effect */
.glimpse-item.span-2 {
    grid-column: span 2;
}

.glimpse-item.span-2-row {
    grid-row: span 2;
}

.glimpse-item.span-2-both {
    grid-column: span 2;
    grid-row: span 2;
}

/* Glow effect behind item on hover */
.glimpse-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--primary-green);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.glimpse-item:hover .glimpse-glow {
    opacity: 0.1;
}

/* ===== VIEW MORE BUTTON ===== */
.glimpses-footer {
    text-align: center;
    margin-top: 16px;
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .glimpses-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 160px;
        gap: 16px;
        justify-content: center;
        place-content: center;
    }

    .glimpse-item.span-2-both {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {


    .glimpses-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 12px;
        margin-bottom: 36px;
    }

    .glimpse-item {
        border-radius: 16px;
    }

        .glimpse-item.span-2,
        .glimpse-item.span-2-both {
            grid-column: span 2;
        }

        .glimpse-item.span-2-row,
        .glimpse-item.span-2-both {
            grid-row: span 2;
        }

    .glimpse-overlay {
        padding: 16px;
    }

    .glimpse-title {
        font-size: 15px;
    }

    .glimpse-category {
        font-size: 15px;
    }

    .glimpse-zoom {
        width: 44px;
        height: 44px;
    }

        .glimpse-zoom svg {
            width: 18px;
            height: 18px;
        }

    .btn-view-more {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .glimpses-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }

    .glimpse-item {
        border-radius: 14px;
    }

        .glimpse-item.span-2,
        .glimpse-item.span-2-both {
            grid-column: span 2;
        }

        .glimpse-item.span-2-row,
        .glimpse-item.span-2-both {
            grid-row: span 2;
        }
}

/* ===== ANIMATIONS ===== */
.glimpse-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

    .glimpse-item.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .glimpse-item:nth-child(1) {
        transition-delay: 0s;
    }

    .glimpse-item:nth-child(2) {
        transition-delay: 0.06s;
    }

    .glimpse-item:nth-child(3) {
        transition-delay: 0.12s;
    }

    .glimpse-item:nth-child(4) {
        transition-delay: 0.18s;
    }

    .glimpse-item:nth-child(5) {
        transition-delay: 0.24s;
    }

    .glimpse-item:nth-child(6) {
        transition-delay: 0.30s;
    }

    .glimpse-item:nth-child(7) {
        transition-delay: 0.36s;
    }

    .glimpse-item:nth-child(8) {
        transition-delay: 0.42s;
    }

    .glimpse-item:nth-child(9) {
        transition-delay: 0.48s;
    }

    .glimpse-item:nth-child(10) {
        transition-delay: 0.54s;
    }

    .glimpse-item:nth-child(11) {
        transition-delay: 0.60s;
    }

    .glimpse-item:nth-child(12) {
        transition-delay: 0.66s;
    }

@media (prefers-reduced-motion: reduce) {
    .glimpse-item {
        transition: none;
    }
}

/* ===== UIKIT LIGHTBOX CUSTOMIZATION ===== */
.uk-lightbox {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
}

.uk-lightbox-toolbar {
    background: transparent !important;
    padding: 20px 30px !important;
}

.uk-lightbox-toolbar-icon {
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
}

    .uk-lightbox-toolbar-icon:hover {
        color: var(--accent-gold) !important;
    }

.uk-lightbox-caption {
    color: var(--text-secondary) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 16px 0 !important;
}

.uk-lightbox-slidenav {
    color: var(--text-primary) !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .uk-lightbox-slidenav:hover {
        color: var(--primary-green) !important;
        transform: scale(1.1);
    }

.uk-lightbox-counter {
    color: var(--text-muted) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.uk-lightbox-items > * {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.uk-lightbox-loader {
    color: var(--primary-green) !important;
}

/* -----------------------highlights------------------------------ */



.event-highlights .section-header {
    text-align: center;
    margin-bottom: 64px;
}

    .event-highlights .section-header .accent-line {
        margin: 0 auto 20px;
    }

/* Video Showcase Box */
.video-showcase {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-surface);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 1100px;
    margin: 0 auto;
}

    .video-showcase:hover {
        border-color: var(--glass-border-hover);
        box-shadow: 0 32px 64px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(52, 211, 153, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        transform: translateY(-4px);
        text-decoration: none;
    }

    /* Top highlight line */
    .video-showcase::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.3), var(--accent-gold), rgba(52, 211, 153, 0.3), transparent);
        z-index: 3;
    }

/* Video Thumbnail Wrapper */
.video-thumbnail-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.video-showcase:hover .video-thumbnail {
    transform: scale(1.05);
}

/* Dark overlay on thumbnail */
.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1) 0%, rgba(255, 255, 255, 0.5) 60%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.video-showcase:hover .video-thumbnail-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.15) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.9) 100%);
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(52, 211, 153, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: none;
    text-decoration: none;
}

    .play-button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 140px;
        height: 140px;
        border: 1px solid rgba(52, 211, 153, 0.15);
        border-radius: 50%;
        animation: playPulse 2s ease-in-out infinite;
    }

    .play-button::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 180px;
        height: 180px;
        border: 1px solid rgba(52, 211, 153, 0.08);
        border-radius: 50%;
        animation: playPulse 2s ease-in-out infinite 0.5s;
    }

@keyframes playPulse {

    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.4;
    }
}

.play-button:hover {
    background: rgba(52, 211, 153, 0.25);
    border-color: rgba(52, 211, 153, 0.5);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(52, 211, 153, 0.2);
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    margin-left: 4px;
    transition: color 0.3s ease;
}

.play-button:hover svg {
    color: var(--accent-gold);
}

/* Video Info Bar */
.video-info {
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.video-info-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.video-info-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.video-info-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

    .video-info-meta span {
        font-size: 15px;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .video-info-meta .dot {
        width: 4px;
        height: 4px;
        background: var(--text-dim);
        border-radius: 50%;
    }

.video-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold);
}

.video-info-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .video-stat:hover {
        border-color: var(--glass-border-hover);
        background: rgba(15, 23, 42, 0.06);
    }

.video-stat-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
}

.video-stat-text {
    display: flex;
    flex-direction: column;
}

.video-stat-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.video-stat-label {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Glow behind video box */
.video-showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--primary-green);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06;
    pointer-events: none;
    z-index: -1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {


    .video-showcase {
        border-radius: 20px;
    }

    .video-thumbnail-wrap {
        border-radius: 20px 20px 0 0;
    }

    .play-button {
        width: 72px;
        height: 72px;
    }

        .play-button::before {
            width: 100px;
            height: 100px;
        }

        .play-button::after {
            width: 130px;
            height: 130px;
        }

        .play-button svg {
            width: 24px;
            height: 24px;
        }

    .video-info {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .video-info-title {
        font-size: 17px;
    }

    .video-info-right {
        width: 100%;
        justify-content: space-between;
    }

    .video-stat {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-showcase {
        border-radius: 16px;
    }

    .video-thumbnail-wrap {
        border-radius: 16px 16px 0 0;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

        .play-button::before {
            width: 84px;
            height: 84px;
        }

        .play-button::after {
            width: 110px;
            height: 110px;
        }

        .play-button svg {
            width: 20px;
            height: 20px;
        }

    .video-info {
        padding: 20px;
    }

    .video-info-right {
        flex-direction: column;
        gap: 10px;
    }

    .video-stat {
        width: 100%;
    }
}

/* ===== ANIMATIONS ===== */
.video-showcase {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

    .video-showcase.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

@media (prefers-reduced-motion: reduce) {
    .video-showcase {
        transition: none;
    }
}

/* ===== UIKIT LIGHTBOX CUSTOMIZATION FOR VIDEO ===== */
.uk-lightbox {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(30px) !important;
}

.uk-lightbox-toolbar {
    background: transparent !important;
    padding: 20px 30px !important;
}

.uk-lightbox-toolbar-icon {
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
}

    .uk-lightbox-toolbar-icon:hover {
        color: var(--accent-gold) !important;
    }

.uk-lightbox-items iframe {
    border-radius: 16px;
    box-shadow: 0 0 60px rgba(52, 211, 153, 0.1);
}

.uk-lightbox-caption {
    color: var(--text-secondary) !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 16px 0 !important;
}

.uk-lightbox-loader {
    color: var(--primary-green) !important;
}

/* ===== INDUSTRY SECTORS SECTION ===== */




.section-header {
    text-align: center;
    margin-bottom: 64px;
}

    .section-header .accent-line {
        margin: 0 auto 20px;
    }

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(45, 143, 90, 0.1);
    border: 1px solid rgba(45, 143, 90, 0.2);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* Sectors Grid */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Sector Card */
.sector-card {
    background: rgba(15, 23, 42, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

    .sector-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), transparent);
    }

    .sector-card:hover {
        border-color: rgba(15, 23, 42, 0.1);
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    }

        .sector-card:hover .sector-icon svg {
            transform: scale(1.1);
        }

        .sector-card:hover .sector-glow {
            opacity: 1;
        }

/* Sector Icon */
.sector-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

    .sector-icon svg {
        width: 100%;
        height: 100%;
        transition: transform 0.4s ease;
    }

/* Sector Name */
.sector-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.sector-card:hover .sector-name {
    color: var(--text-primary);
}

/* Glow Effect */
.sector-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

/* Individual sector glow colors */
.sector-card[data-sector="solar"] .sector-glow {
    background: rgba(230, 126, 34, 0.15);
}

.sector-card[data-sector="storage"] .sector-glow,
.sector-card[data-sector="ev"] .sector-glow,
.sector-card[data-sector="charging"] .sector-glow,
.sector-card[data-sector="smartgrid"] .sector-glow,
.sector-card[data-sector="transmission"] .sector-glow,
.sector-card[data-sector="electrical"] .sector-glow,
.sector-card[data-sector="hydrogen"] .sector-glow,
.sector-card[data-sector="batteries"] .sector-glow,
.sector-card[data-sector="automation"] .sector-glow {
    background: rgba(45, 143, 90, 0.12);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {


    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sector-card {
        padding: 24px 16px;
        min-height: 160px;
        border-radius: 20px;
    }

    .sector-icon {
        width: 52px;
        height: 52px;
    }

    .sector-name {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sector-card {
        padding: 20px 12px;
        min-height: 140px;
        border-radius: 16px;
    }

    .sector-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .sector-name {
        font-size: 15px;
    }
}

/* ============================================================
   SLIDER SECTION
   ============================================================ */
.slider-section {
    overflow: hidden;
}



/* ===== HEADER ===== */
.slider-header {
    text-align: center;
    margin-bottom: 64px;
}

.accent-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    border-radius: 2px;
    margin: 0 auto 20px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 16px;
}



.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: auto;
}

/* ============================================================
   SLIDER VIEWPORT WITH MASK FADE
   ============================================================ */
.slider-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    padding: 20px 0;
    /* Fade edges using mask-image - content fades to transparent */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

    .slider-viewport:active,
    .slider-viewport.dragging {
        cursor: grabbing;
    }

/* ============================================================
   MARQUEE TRACK
   ============================================================ */
.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
    animation: marqueeScroll 30s linear infinite;
}

/* Pause animation on hover/drag */
.slider-viewport:hover .marquee-track,
.slider-viewport.dragging .marquee-track {
    animation-play-state: paused;
}

/* ===== KEYFRAMES: CONTINUOUS INFINITE SCROLL ===== */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   SLIDE CARD - SINGLE IMAGE ONLY
   ============================================================ */
.slide-card {
    flex: 0 0 320px;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

    /* Top highlight line */
    .slide-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.15), transparent);
        z-index: 2;
    }

    /* Hover lift effect */
    .slide-card:hover {
        border-color: rgba(15, 23, 42, 0.1);
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    }

    /* Image */
    .slide-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    /* Image zoom on hover */
    .slide-card:hover img {
        transform: scale(1.1);
    }

    /* Dark gradient overlay on hover */
    .slide-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .slide-card:hover::after {
        opacity: 1;
    }

/* ============================================================
   NAVIGATION BUTTONS
   ============================================================ */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    /* Top highlight line on button */
    .slider-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.15), transparent);
    }

    /* Button hover */
    .slider-btn:hover {
        border-color: var(--primary-green);
        background: rgba(52, 211, 153, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(5, 150, 105, 0.12);
    }

        .slider-btn:hover svg {
            stroke: var(--primary-green);
        }

    /* Button active/press */
    .slider-btn:active {
        transform: translateY(0) scale(0.95);
    }

    /* Button icon */
    .slider-btn svg {
        width: 20px;
        height: 20px;
        stroke: var(--text-secondary);
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.3s ease;
    }

/* ============================================================
   NAVIGATION DOTS
   ============================================================ */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .dot.active {
        background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
        border-color: var(--primary-green);
        width: 24px;
        border-radius: 4px;
    }

    .dot:hover {
        background: rgba(52, 211, 153, 0.3);
    }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .slider-section {
        padding: 80px 20px;
    }

    .slider-viewport {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }

    .slide-card {
        flex: 0 0 260px;
        height: 180px;
        border-radius: 20px;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
    }

        .slider-btn svg {
            width: 18px;
            height: 18px;
        }

    .marquee-track {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .slider-viewport {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    }

    .slide-card {
        flex: 0 0 220px;
        height: 150px;
        border-radius: 16px;
    }

    .slider-nav {
        gap: 12px;
    }

    .marquee-track {
        animation-duration: 20s;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}


/* ============================================================
       speakers-section
       ============================================================ */




.speakers-section .section-header {
    text-align: center;
    margin-bottom: 64px;
}

    .speakers-section .section-header .accent-line {
        margin: 0 auto 20px;
    }

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Speaker Card */
.speaker-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: none;
    aspect-ratio: 3 / 4;
}

    .speaker-card:hover {
        border-color: var(--glass-border-hover);
        transform: translateY(-8px);
        box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(52, 211, 153, 0.1);
    }

/* Speaker Image */
.speaker-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.speaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.speaker-card:hover .speaker-image {
    transform: scale(1.08);
}

/* Glass Overlay - Hidden by default, shows on hover */
.speaker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.speaker-card:hover .speaker-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Speaker Details in Overlay */
.speaker-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.2;
}

.speaker-post {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.speaker-position {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.speaker-company {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

    .speaker-company::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--primary-green);
        border-radius: 50%;
        flex-shrink: 0;
    }

/* Decorative line in overlay */
.speaker-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.4), transparent);
}

/* Speaker glow effect on hover */
.speaker-glow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.speaker-card:hover .speaker-glow {
    opacity: 0.12;
}

/* Speaker badge (visible when not hovered) */
.speaker-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.speaker-card:hover .speaker-badge {
    opacity: 0;
    transform: translateY(10px);
}

.speaker-badge-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.speaker-badge-company {
    font-size: 15px;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {


    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .speaker-card {
        border-radius: 20px;
    }

    .speaker-overlay {
        padding: 20px;
    }

    .speaker-name {
        font-size: 17px;
    }

    .speaker-post {
        font-size: 15px;
    }

    .speaker-position {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .speakers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .speaker-card {
        border-radius: 16px;
    }

    .speaker-overlay {
        padding: 16px;
    }

    .speaker-name {
        font-size: 15px;
    }

    .speaker-post {
        font-size: 15px;
    }

    .speaker-position {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .speaker-company {
        font-size: 15px;
        padding: 4px 10px;
    }
}

/* ===== ANIMATIONS ===== */
.speaker-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

    .speaker-card.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .speaker-card:nth-child(1) {
        transition-delay: 0s;
    }

    .speaker-card:nth-child(2) {
        transition-delay: 0.08s;
    }

    .speaker-card:nth-child(3) {
        transition-delay: 0.16s;
    }

    .speaker-card:nth-child(4) {
        transition-delay: 0.24s;
    }

    .speaker-card:nth-child(5) {
        transition-delay: 0.32s;
    }

    .speaker-card:nth-child(6) {
        transition-delay: 0.40s;
    }

    .speaker-card:nth-child(7) {
        transition-delay: 0.48s;
    }

    .speaker-card:nth-child(8) {
        transition-delay: 0.56s;
    }

@media (prefers-reduced-motion: reduce) {
    .speaker-card {
        transition: none;
    }
}

/* ===== SPONSORS ===== */
/* ===== TIER HEADING ===== */
.tier-heading {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 48px 0 20px 0;
    text-align: center;
    position: relative;
}

    .tier-heading:first-of-type {
        margin-top: 0;
    }

    .tier-heading::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
        border-radius: 1px;
        margin: 12px auto 0;
    }

/* ===== SPONSORS ROW ===== */
.sponsors-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

/* ===== SPONSOR CARD ===== */
.sponsor-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    flex: 0 0 auto;
}

    .sponsor-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), transparent);
    }

    .sponsor-card:hover {
        border-color: var(--glass-border-hover);
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    }

    .sponsor-card img {
        max-width: 100%;
        object-fit: cover;
        filter: grayscale(0.2) brightness(1.1);
        transition: filter 0.4s ease, transform 0.4s ease;
    }

    .sponsor-card:hover img {
        filter: grayscale(0) brightness(1.2);
        transform: scale(1.05);
    }

/* ===== TIER VARIANTS ===== */
.tier-principal .sponsor-card {
    width: 280px;
    height: 150px;
}

    .tier-principal .sponsor-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 1.5px;
        background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0.4;
        transition: opacity 0.4s ease;
    }

    .tier-principal .sponsor-card:hover::after {
        opacity: 0.8;
    }

    .tier-principal .sponsor-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.tier-diamond .sponsor-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tier-diamond .sponsor-card:hover::after {
    opacity: 1;
}

.tier-gold .sponsor-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-amber), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tier-gold .sponsor-card:hover::after {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .sponsors-row {
        gap: 12px;
    }

    .sponsor-card {
        min-width: 140px;
        max-width: 180px;
        height: 90px;
        padding: 20px 24px;
    }

    .tier-principal .sponsor-card {
        min-width: 180px;
        max-width: 240px;
        height: 110px;
    }
}

@media (max-width: 480px) {


    .sponsor-card {
        min-width: 120px;
        max-width: 160px;
        height: 80px;
        padding: 16px 20px;
    }

    .tier-principal .sponsor-card {
        min-width: 160px;
        max-width: 200px;
        height: 100px;
    }
}

/* Add these to home.css */

.pe-why-india-section {
    position: relative;
    width: 100%;
    min-height: 937px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 0;
}

.pe-why-india-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .pe-why-india-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

.pe-why-india-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(10 35 75 / 0%) 0%, rgb(10 35 75 / 0%) 40%, rgba(10, 35, 75, 0.92) 70%, rgba(8, 25, 60, 0.98) 100%);
    z-index: 1;
}

/* ===== KOCHI VIDEO BACKGROUND ===== */
.pe-why-india-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    /* Prevents any interaction */
}

/* Ensure the bg container handles overflow */
.pe-why-india-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #0a234b;
    /* Fallback color while video loads */
}

.pe-why-india-map {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.6;
    pointer-events: none;
}

    .pe-why-india-map svg {
        width: 100%;
        height: 100%;
    }

.pe-why-india-logo {
    position: absolute;
    top: 24px;
    right: 32px;
    z-index: 4;
    width: 160px;
    height: 45px;
}

    .pe-why-india-logo svg {
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    }

.pe-why-india-content {
    position: relative;
    z-index: 3;
    padding: 48px 64px 56px;
    width: 100%;
}

.pe-why-india-title {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

    .pe-why-india-title em {
        font-style: italic;
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 400;
        font-size: 1.5em;
        position: relative;
        text-transform: capitalize;
    }

        .pe-why-india-title em::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #FF9933, #FFFFFF, #138808);
            border-radius: 2px;
            opacity: 0.8;
        }

.pe-why-india-lead {
    font-size: clamp(1rem, 0.8rem + 0.8vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 500;
}

    .pe-why-india-lead strong {
        color: #ffffff;
        font-weight: 700;
        font-style: normal;
    }

.pe-why-india-body {
    font-size: clamp(1rem, 0.8rem + 0.8vw, 1.5rem);
    color: rgba(200, 220, 255, 0.85);
    line-height: 1.75;
}

.pe-welcome-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4em;
    letter-spacing: 0.5px;
}

.pe-why-india-body strong {
    color: #ffffff;
    font-weight: 700;
}


/* Responsive */
@media (max-width: 768px) {
    .pe-why-india-section {
        min-height: 600px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pe-why-india-content {
        position: static;
        padding: 32px 24px 80px;
        max-width: 100%;
    }

    .pe-why-india-logo {
        position: static;
        /* top: 16px; */
        /* right: 16px; */
        width: 100%;
        max-width: 150px;
        height: auto;
        margin-top: 20px;
    }

    .pe-india-flag {
        width: 100px;
        height: 40px;
        bottom: 16px;
        right: 16px;
    }
}

/* ===== SHARED SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.accent-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    border-radius: 2px;
    margin: 0 auto 20px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 16px;
}


/* ===== GLASS CARD BASE ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .glass-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.15), transparent);
    }

    .glass-card:hover {
        border-color: var(--glass-border-hover);
        transform: translateY(-6px);
        box-shadow: rgba(15, 23, 42, 0.08) 0px 24px 48px, rgba(5, 150, 105, 0.08) 0px 0px 0px 1px;
    }

/* ===== MARKET INTELLIGENCE ===== */


.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.market-card {
    padding: 0;
    flex-direction: row;
}

.market-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
}

    .market-card-content.reverse {
        direction: rtl;
    }

        .market-card-content.reverse > * {
            direction: ltr;
        }

.market-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .market-text h3 {
        font-size: 24px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

.market-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .market-list li {
        font-size: 18px;
        color: var(--text-secondary);
        line-height: 1.7;
        position: relative;
        padding-left: 20px;
    }

        .market-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
            border-radius: 50%;
        }

        .market-list li strong {
            color: var(--text-primary);
            font-weight: 700;
        }

.market-visual {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

    .market-visual img {
        width: 100%;
        height: 100%;
        /* object-fit: contain; */
        object-position: center;
    }


/* EV Image */
.ev-image {
    background: var(--bg-surface);
}

    .ev-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

.market-card:hover .ev-image img {
    transform: scale(1.05);
}

/* ===== KOCHI DESTINATION ===== */


.kochi-card {
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    border-radius: 28px;
}

.kochi-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .kochi-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.kochi-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 35, 75, 0.2) 0%, rgba(8, 25, 60, 0.85) 50%, rgba(6, 18, 40, 0.95) 100%);
}

.kochi-content {
    position: relative;
    z-index: 2;
    padding: 64px;
    width: 100%;
}

.kochi-header {
    margin-bottom: 24px;
}

.kochi-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -3px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.kochi-subtitle {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: clamp(20px, 3vw, 32px);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.kochi-lead {
    font-size: clamp(16px, 1.2vw, 26px);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 24px;
    max-width: 700px;
    line-height: 1.5;
}

    .kochi-lead strong {
        color: var(--accent-gold);
    }

.kochi-body {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
    max-width: 900px;
}

    .kochi-body > p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 24px;
    }

.kochi-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kochi-highlight {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.highlight-label {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ===== CIAL VENUE ===== */


.cial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.cial-main {
    padding: 0;
}

.cial-main-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 420px;
    position: relative;
}

.cial-text {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cial-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cial-subheading {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.cial-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.cial-image {
    position: absolute;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    right: 0;
    width: 50%;
}

    .cial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        object-position: center bottom;
        transition: transform 0.6s ease;
    }

.cial-main:hover .cial-image img,
.cial-main:hover .convention-image img {
    transform: scale(1.03);
}

.cial-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, var(--bg-deep), transparent);
}

/* Convention Center */
.cial-convention {
    padding: 0;
}

.convention-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
}

.convention-text {
    padding: 48px;
    display: flex;
    align-items: center;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
}

    .convention-text strong {
        color: var(--text-primary);
    }

.convention-image {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

    .convention-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

.cial-convention:hover .convention-image img {
    transform: scale(1.03);
}

.convention-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, var(--bg-deep), transparent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .market-grid {
        grid-template-columns: 1fr;
    }

    .market-card-content {
        min-height: auto;
    }

    .market-visual {
        min-height: 300px;
    }
}

@media (max-width: 900px) {

    .market-card-content,
    .market-card-content.reverse,
    .cial-main-content,
    .convention-content {
        grid-template-columns: 1fr;
    }

        .market-card-content.reverse {
            direction: ltr;
        }

    .market-visual {
        min-height: 260px;
        order: -1;
    }

    .cial-image {
        position: relative;
        min-height: 280px;
        width: 100%;
        order: -1;
    }

        .cial-image::after {
            display: none;
        }

    .convention-image {
        min-height: 240px;
        order: -1;
    }

        .convention-image::after {
            display: none;
        }

    .kochi-content {
        padding: 40px 32px;
    }

    .kochi-body {
        padding: 24px;
    }
}

@media (max-width: 768px) {





    .market-text,
    .cial-text,
    .convention-text {
        padding: 32px 24px;
    }

    .pe-stat-text {
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.4;
    }

    .pe-bess-item,
    .market-list li,
    .cial-desc {
        font-size: 16px;
    }

    .kochi-content {
        padding: 0;
    }

    .wind-chart {
        padding: 32px 24px 50px;
        gap: 12px;
    }

    .market-list {
        padding: 0;
    }

    .chart-bar {
        width: 52px;
        font-size: 12px;
    }

        .chart-bar b {
            font-size: 14px;
        }
}

/* ===== ANIMATIONS ===== */
.market-card,
.kochi-card,
.cial-main,
.cial-convention {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.kochi-card {
    animation-delay: 0.1s;
}

.cial-main {
    animation-delay: 0.2s;
}

.cial-convention {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .market-card,
    .kochi-card,
    .cial-main,
    .cial-convention {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {

    .hero-main,
    .hero-subtitle,
    .pe-partner-text {
        padding: 25px 15px;
    }

    .hero-title {
        font-size: 22px;
    }
}
