/* ═══════════════════════════════
   ROOT VARIABLES
═══════════════════════════════ */
:root {
    --light: #d9e3ef;
    --navy: #0c4ea4;
    --cyan: #00ccfe;
    --mid: #0b99d9;
    --blue: #0a79c1;
    --pale: #c3d1e6;
    --white: #fff;
    --dark: #061e3e;
}

/* ═══════════════════════════════
   RESET & BASE
═══════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* ═══════════════════════════════
   IMAGE PLACEHOLDER
═══════════════════════════════ */

.nav-logo-img {
    background: linear-gradient(135deg, #d9e3ef, #02c1f5);
}

.img-ph {
    background: linear-gradient(135deg, #d9e3ef, #02c1f5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #0a79c1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* border: 2px dashed rgba(10, 121, 193, .4); */
    border-radius: inherit;
    width: 100%;
    height: 100%;
    min-height: 60px;
}

.img-ph i {
    font-size: 1.6rem;
    opacity: .45;
}

.img-ph span {
    font-size: .6rem;
    opacity: .6;
    text-align: center;
    padding: 0 4px;
}

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 64px;
    background: rgba(6, 30, 62, .97);
    border-bottom: 1px solid rgba(0, 204, 254, .15);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 128px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border-left: 4px solid rgb(187 27 74);
    border-bottom: 4px solid #d67ab3;
}

.nav-logo-text strong {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1.2;
}

.nav-logo-text span {
    display: block;
    font-size: .55rem;
    color: var(--pale);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 1.4rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--pale);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    transition: color .25s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width .25s;
}

.nav-links a:hover {
    color: var(--cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white) !important;
    padding: 7px 14px !important;
    border-radius: 5px;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    width: 32px;
    height: 32px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(6, 30, 62, .99);
    border-top: 1px solid rgba(0, 204, 254, .15);
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column;
    gap: .5rem;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
}

.mobile-drawer.open {
    display: flex;
}

.mobile-drawer a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pale);
    font-size: .88rem;
    font-weight: 600;
    padding: 11px 14px;
    border-radius: 8px;
    letter-spacing: .3px;
    border: 1px solid rgba(0, 204, 254, .08);
    transition: all .2s;
}

.mobile-drawer a:hover,
.mobile-drawer a:active {
    background: rgba(0, 204, 254, .1);
    color: var(--cyan);
    border-color: rgba(0, 204, 254, .25);
}

.mobile-drawer a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: var(--cyan);
}

.mobile-drawer .mob-cta {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    border: none;
    margin-top: .5rem;
}

/* ═══════════════════════════════
   HERO CAROUSEL — desktop only
═══════════════════════════════ */
.hero-carousel-wrap {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 38%;
    max-width: 520px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    /* hidden on mobile — see media query below */
}

.Web-btn0 {
    background: transparent;
    border: none;
    border-radius: 10%;
    color: white;
}

/* Decorative animated rings */
.hc-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 204, 254, .18);
    pointer-events: none;
    animation: ringPulse 4s ease-in-out infinite;
}

.hc-ring1 {
    width: 110%;
    height: 110%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.hc-ring2 {
    width: 125%;
    height: 125%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(0, 204, 254, .08);
    animation-delay: 1.4s;
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: .5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.03);
    }
}

/* Floating badge */
.hc-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    font-size: .62rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(0, 204, 254, .35);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Track: the sliding window */
.hc-track {
    width: 100%;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 204, 254, .2),
        0 24px 60px rgba(0, 0, 0, .5),
        0 0 40px rgba(0, 204, 254, .12);
    aspect-ratio: 4/3;
    background: rgba(6, 30, 62, .6);
}

/* Individual slides */
.hc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04) rotate(1.5deg);
    transition:
        opacity .9s cubic-bezier(.4, 0, .2, 1),
        transform .9s cubic-bezier(.4, 0, .2, 1);
    will-change: opacity, transform;
}

.hc-slide.hc-slide--active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Outgoing slide goes clockwise */
.hc-slide.hc-slide--out {
    opacity: 0;
    transform: scale(.96) rotate(-1.5deg);
}

/* Placeholder styling inside carousel */
.hc-ph {
    border-radius: 0 !important;
    border: none !important;
    min-height: unset !important;
    height: 100% !important;
    font-size: .7rem;
    background: linear-gradient(135deg, rgba(12, 78, 164, .4), rgba(6, 30, 62, .8)) !important;
    color: rgba(195, 209, 230, .7) !important;
}

.hc-ph i {
    font-size: 2.2rem;
    color: rgba(0, 204, 254, .4);
}

/* Caption bar */
.hc-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .6rem 1rem;
    background: linear-gradient(to top, rgba(6, 30, 62, .9) 0%, transparent 100%);
    color: var(--white);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-align: center;
    opacity: 0;
    transition: opacity .6s ease;
}

.hc-slide.hc-slide--active .hc-caption {
    opacity: 1;
    transition-delay: .4s;
}

/* Progress bar — thin cyan line sweeping across bottom of track */
.hc-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    border-radius: 0 2px 0 0;
    width: 0%;
    z-index: 4;
    transition: width .1s linear;
}

/* Dot indicators */
.hc-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
}

.hc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 204, 254, .3);
    border: 1px solid rgba(0, 204, 254, .5);
    cursor: pointer;
    transition: all .3s;
}

.hc-dot.hc-dot--active {
    background: var(--cyan);
    width: 22px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 204, 254, .6);
}

/* ── HIDE ON MOBILE ── */
@media(max-width:1024px) {
    .hero-carousel-wrap {
        display: none;
    }
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
#hero {
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 2rem 50px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(11, 153, 217, .18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 10% 20%, rgba(12, 78, 164, .3) 0%, transparent 60%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(0, 204, 254, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 204, 254, .04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-banner-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    z-index: 1;
}

.hero-banner-img .img-ph {
    border: none;
    border-radius: 0;
    opacity: .18;
}

.hero-banner-fade {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    z-index: 2;
    background: linear-gradient(to right, var(--dark) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 204, 254, .12);
    border: 1px solid rgba(0, 204, 254, .3);
    color: var(--cyan);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    animation: fadeUp .7s ease forwards;
    opacity: 0;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: blink 2s infinite;
    flex-shrink: 0;
}

.hero-edition {
    font-size: clamp(2.4rem, 10vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    margin-bottom: .4rem;
    animation: fadeUp .7s .12s ease forwards;
    opacity: 0;
}

.hero-edition em {
    color: var(--cyan);
    font-style: italic;
}

.hero-title {
    font-size: clamp(.95rem, 3.5vw, 1.6rem);
    font-weight: 700;
    color: var(--pale);
    margin: .3rem 0 .8rem;
    line-height: 1.35;
    animation: fadeUp .7s .24s ease forwards;
    opacity: 0;
}

.hero-tagline {
    font-size: clamp(.82rem, 2.5vw, 1.15rem);
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: .7rem;
    animation: fadeUp .7s .34s ease forwards;
    opacity: 0;
}

.hero-theme {
    font-size: .82rem;
    color: var(--pale);
    font-style: italic;
    margin-bottom: 1rem;
    animation: fadeUp .7s .44s ease forwards;
    opacity: 0;
}

.hero-quote {
    border-left: 3px solid var(--cyan);
    padding: .6rem 1rem;
    margin-bottom: 1.4rem;
    color: rgba(195, 209, 230, .8);
    font-size: .999rem;
    font-style: italic;
    line-height: 1.6;
    animation: fadeUp .7s .54s ease forwards;
    opacity: 0;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1.2rem;
    margin-bottom: 1.4rem;
    animation: fadeUp .7s .6s ease forwards;
    opacity: 0;
}



.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: .8rem;
    font-weight: 500;
}

.hero-meta-item i {
    color: var(--cyan);
    font-size: .9rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.5rem;
    animation: fadeUp .7s .68s ease forwards;
    opacity: 0;
}

.stat-pill {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(0, 204, 254, .2);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    min-width: 60px;
}

.stat-pill strong {
    display: block;
    font-size: 1.1rem;
    color: var(--cyan);
    font-weight: 800;
    line-height: 1.1;
}

.stat-pill span {
    font-size: .58rem;
    color: var(--pale);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Countdown */
.countdown-wrap {
    margin-bottom: 1.5rem;
    animation: fadeUp .7s .76s ease forwards;
    opacity: 0;
}

.countdown-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pale);
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.countdown {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

.cd-box {
    background: rgba(0, 204, 254, .1);
    border: 1px solid rgba(0, 204, 254, .35);
    border-radius: 10px;
    padding: 10px 12px;
    min-width: 62px;
    text-align: center;
}

.cd-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
}

.cd-unit {
    display: block;
    font-size: .55rem;
    color: var(--pale);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    animation: fadeUp .7s .84s ease forwards;
    opacity: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    padding: 11px 22px;
    border-radius: 6px;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .4px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(0, 204, 254, .3);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 204, 254, .4);
}

.btn-outline {
    border: 1.5px solid var(--cyan);
    color: var(--cyan);
    padding: 11px 22px;
    border-radius: 6px;
    font-size: .84rem;
    font-weight: 700;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-outline:hover {
    background: rgba(0, 204, 254, .1);
}

/* ═══════════════════════════════
   COMMON SECTION STYLES
═══════════════════════════════ */
section {
    padding: 60px 2rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--light);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: .9rem;
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: .7rem;
}

.section-title span {
    color: var(--blue);
}

.section-sub {
    font-size: .85rem;
    color: #456;
    line-height: 1.9;
    max-width: 100%;
}

.divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    border-radius: 2px;
    margin: .9rem 0 1.3rem;
}

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2.5rem;
}

.about-text p {
    font-size: .85rem;
    color: #456;
    line-height: 1.9;
    margin-bottom: .9rem;
}

.about-card-group {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.about-card {
    background: linear-gradient(135deg, #f0f5ff, #e8f0fe);
    border-left: 4px solid var(--blue);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.2rem;
}

.about-card h4 {
    color: var(--navy);
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: .35rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-card p {
    color: #456;
    font-size: .78rem;
    line-height: 1.7;
}

/* ═══════════════════════════════
   IMPACT
═══════════════════════════════ */
#impact {
    background: linear-gradient(135deg, var(--dark), #0a2a5e);
}

#impact .section-title {
    color: var(--white);
}

#impact .section-tag {
    background: rgba(0, 204, 254, .15);
    color: var(--cyan);
}

#impact .section-sub {
    color: var(--pale);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.impact-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(0, 204, 254, .2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform .3s, background .3s;
    position: relative;
    overflow: hidden;
}

.impact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    transform: scaleX(0);
    transition: transform .3s;
}

.impact-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 204, 254, .07);
}

.impact-card:hover::after {
    transform: scaleX(1);
}

.impact-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
}

.impact-num sup {
    font-size: .85rem;
}

.impact-label {
    color: var(--pale);
    font-size: .73rem;
    margin-top: .4rem;
    line-height: 1.5;
}

/* ═══════════════════════════════
   RATIONALE
═══════════════════════════════ */
#rationale {
    background: var(--light);
}

.rationale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.rationale-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(12, 78, 164, .1);
    transition: box-shadow .3s, transform .3s;
}

.rationale-card:hover {
    box-shadow: 0 10px 35px rgba(12, 78, 164, .14);
    transform: translateY(-4px);
}

.rat-img {
    height: 160px;
    width: 100%;
}

.rat-img .img-ph {
    border: none;
    border-radius: 0;
}

.rat-body {
    padding: 1.1rem;
}

.rat-icon-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: .6rem;
}

.rat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .95rem;
}

.rationale-card h3 {
    font-size: .82rem;
    color: var(--navy);
    font-weight: 700;
}

.rationale-card p {
    font-size: .76rem;
    color: #456;
    line-height: 1.8;
    margin-top: .35rem;
}

/* ═══════════════════════════════
   PREMISE
═══════════════════════════════ */
#premise {
    background: var(--white);
}

.premise-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
    align-items: start;
}

.premise-text-block h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .8rem;
    margin-top: 1.4rem;
}

.premise-text-block h3:first-child {
    margin-top: 0;
}

.premise-text-block p {
    font-size: .84rem;
    color: #456;
    line-height: 1.9;
    margin-bottom: .8rem;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: .3rem;
}

.why-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: .82rem;
    color: #345;
    line-height: 1.7;
}

.why-list li i {
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 3px;
}

.premise-img-block {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.premise-img-main {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.premise-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}

.premise-img-sm {
    height: 125px;
    border-radius: 10px;
    overflow: hidden;
}

/* ═══════════════════════════════
   AWARDS
═══════════════════════════════ */
#awards {
    background: var(--light);
}

.awards-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin: 1.3rem 0 1.8rem;
}

.tab-btn {
    padding: 7px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--blue);
    background: transparent;
    color: var(--navy);
    font-size: .73rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tab-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.tab-btn:hover:not(.active) {
    background: var(--pale);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .9rem;
}

.award-card {
    background: var(--white);
    border-radius: 10px;
    padding: .9rem 1.1rem;
    border: 1px solid rgba(12, 78, 164, .1);
    transition: all .3s;
}

.award-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 5px 20px rgba(0, 204, 254, .14);
    transform: translateY(-2px);
}

.award-card h4 {
    font-size: .78rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: .3rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.award-card p {
    font-size: .72rem;
    color: #567;
    line-height: 1.6;
}

.awards-panel {
    display: none;
}

.awards-panel.active {
    display: block;
}

/* ═══════════════════════════════
   SCHEDULE
═══════════════════════════════ */
#schedule {
    background: var(--dark);
}

#schedule .section-title {
    color: var(--white);
}

#schedule .section-tag {
    background: rgba(0, 204, 254, .15);
    color: var(--cyan);
}

#schedule .section-sub {
    color: var(--pale);
}

.schedule-timeline {
    margin-top: 2.5rem;
    position: relative;
    padding-left: 36px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--cyan), var(--blue), transparent);
}

.schedule-item {
    position: relative;
    margin-bottom: .9rem;
    padding: .9rem 1.2rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(0, 204, 254, .1);
    border-radius: 10px;
    transition: background .3s;
}

.schedule-item:hover {
    background: rgba(0, 204, 254, .07);
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 50%;
    transform: translateY(-50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--cyan);
    border: 3px solid var(--dark);
}

.schedule-time {
    font-size: .65rem;
    color: var(--cyan);
    font-weight: 700;
    letter-spacing: .8px;
    margin-bottom: .25rem;
}

.schedule-event {
    font-size: .86rem;
    color: var(--white);
    font-weight: 600;
}

.schedule-desc {
    font-size: .74rem;
    color: var(--pale);
    margin-top: .25rem;
    line-height: 1.6;
}

.schedule-highlight {
    border-color: rgba(0, 204, 254, .35);
}

.schedule-highlight .schedule-event {
    color: var(--cyan);
}

/* ═══════════════════════════════
   JURY
═══════════════════════════════ */
#jury {
    background: var(--white);
}

.jury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;

}

.jury-card {
    display: flex;
    background: var(--light);
    border-radius: 12px;
    padding: 6px;
    text-align: center;
    border: 1px solid transparent;
    transition: all .3s;
}

.jury-card:hover {
    border-color: var(--cyan);
    background: var(--white);
    box-shadow: 0 7px 24px rgba(0, 204, 254, .12);
}

.jury-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto .8rem;
    background: transparent
        /* linear-gradient(135deg, var(--cyan), var(--blue))*/
    ;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 800;
    color: var(--white);
}

.jury-avatar img {
    border-radius: 50%;
}


.jury-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .25rem;
}

.jury-role {
    font-size: .68rem;
    font-weight: 500;
    color: #567;
    line-height: 1.5;
}

.jury-chair-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    font-size: .58rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 50px;
    margin-top: .4rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ═══════════════════════════════
   WHO SHOULD ATTEND
═══════════════════════════════ */
#attend {
    background: var(--light);
}

.attend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    margin-top: 2rem;
}

.attend-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    background: var(--white);
    border-radius: 10px;
    padding: .9rem 1rem;
    border: 1px solid rgba(12, 78, 164, .08);
    transition: all .3s;
}

.attend-item:hover {
    border-color: var(--cyan);
    transform: translateX(3px);
}

.attend-num {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: .78rem;
}

.attend-text {
    font-size: .8rem;
    color: #345;
    line-height: 1.6;
    padding-top: 3px;
    font-weight: 500;
}

/* ═══════════════════════════════
   GALLERY
═══════════════════════════════ */
#gallery {
    background: var(--dark);
}

#gallery .section-title {
    color: var(--white);
}

#gallery .section-tag {
    background: rgba(0, 204, 254, .15);
    color: var(--cyan);
}

.gallery-note {
    font-size: .76rem;
    color: var(--pale);
    margin-bottom: 1rem;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 1.5rem;
}

.gal-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gal-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

.gal-img {
    width: 100%;
    height: 130px;
}

.gal-item.big .gal-img {
    height: 268px;
}

.gal-img .img-ph {
    border: none;
    border-radius: 0;
    min-height: unset;
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 30, 62, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.gal-item:hover .gal-overlay {
    opacity: 1;
}

.gal-overlay i {
    color: var(--cyan);
    font-size: 1.5rem;
}

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
#pricing {
    background: linear-gradient(135deg, var(--dark), #0a2a5e);
}

#pricing .section-title {
    color: var(--white);
}

#pricing .section-tag {
    background: rgba(0, 204, 254, .15);
    color: var(--cyan);
}

.pricing-card {
    max-width: 660px;
    margin: 2.5rem auto 0;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(0, 204, 254, .3);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.pricing-tag {
    display: inline-block;
    background: rgba(0, 204, 254, .15);
    color: var(--cyan);
    font-size: .68rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cyan);
}

.pricing-amount span {
    font-size: 1.3rem;
    vertical-align: super;
}

.pricing-per {
    color: var(--pale);
    font-size: .83rem;
    margin-top: .2rem;
}

.pricing-dates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin: 1.6rem 0;
}

.date-box {
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: .8rem .6rem;
    text-align: center;
    border: 1px solid rgba(0, 204, 254, .15);
}

.date-box .label {
    font-size: .62rem;
    color: var(--pale);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: .3rem;
}

.date-box .date {
    font-size: .78rem;
    color: var(--cyan);
    font-weight: 700;
}

.pricing-includes {
    margin: 1.3rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.pricing-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: var(--pale);
    font-size: .8rem;
}

.pricing-item i {
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note {
    color: rgba(195, 209, 230, .48);
    font-size: .72rem;
    margin-top: .9rem;
    line-height: 1.7;
}

/* ═══════════════════════════════
   REGISTER FORM
═══════════════════════════════ */
#register {
    background: var(--white);
}

.form-wrap {
    max-width: 720px;
    margin: 2.5rem auto 0;
    background: var(--light);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(12, 78, 164, .12);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group.full {
    grid-column: 1/-1;
}

.form-group label {
    font-size: .65rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    border-radius: 7px;
    border: 1.5px solid rgba(12, 78, 164, .2);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem;
    color: var(--dark);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(10, 121, 193, .1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    width: 100%;
    padding: 12px;
    margin-top: 1.2rem;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    letter-spacing: .4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.form-submit:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.form-note {
    font-size: .73rem;
    color: #567;
    text-align: center;
    margin-top: .8rem;
    line-height: 1.7;
}

/* ═══════════════════════════════
   SOCIAL MEDIA
═══════════════════════════════ */
#social {
    background: var(--light);
}

.social-mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.social-col h4 {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: .8rem;
    padding-bottom: .45rem;
    border-bottom: 2px solid var(--blue);
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 7px;
    border: 1px solid rgba(12, 78, 164, .12);
    background: var(--white);
    color: var(--dark);
    font-size: .76rem;
    font-weight: 600;
    transition: all .22s;
}

.social-link:hover {
    border-color: var(--cyan);
    background: linear-gradient(135deg, #e8f5ff, #d9f5ff);
    transform: translateX(3px);
    color: var(--blue);
}

.social-link i {
    font-size: .95rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.si-fb {
    color: #1877f2;
}

.si-yt {
    color: #ff0000;
}

.si-li {
    color: #0a66c2;
}

.si-ig {
    color: #c13584;
}

.si-tg {
    color: #229ed9;
}

.si-wa {
    color: #25d366;
}

.si-web {
    color: var(--blue);
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
    background: var(--dark);
    padding: 50px 2rem 24px;
    border-top: 1px solid rgba(0, 204, 254, .1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo-img {
    width: 154px;
    height: 87px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    border-left: 4px solid rgb(187 27 74);
    border-bottom: 4px solid #d67ab3;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: .5rem;
}

.footer-brand p {
    font-size: .76rem;
    color: var(--pale);
    line-height: 1.9;
    margin-bottom: .4rem;
}

.hashtags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: .8rem;
}

.hashtag {
    color: var(--cyan);
    font-weight: 700;
    font-size: .72rem;
}

.footer-col h5 {
    font-size: .65rem;
    font-weight: 800;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.footer-col ul li a {
    font-size: .76rem;
    color: var(--pale);
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-col ul li a:hover {
    color: var(--cyan);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.contact-line {
    display: flex;
    gap: 7px;
    font-size: .76rem;
    color: var(--pale);
    align-items: flex-start;
    line-height: 1.5;
}

.contact-line i {
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .8rem;
}

.footer-bottom p {
    font-size: .7rem;
    color: rgba(195, 209, 230, .38);
}

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .35;
        transform: scale(.7);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════
   RESPONSIVE — TABLET 1024px
═══════════════════════════════ */
@media(max-width:1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rationale-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jury-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .social-mega-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════
   RESPONSIVE — MOBILE 768px
═══════════════════════════════ */
@media(max-width:768px) {

    /* Nav */
    nav {
        padding: 0 1rem;
        height: 60px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-drawer {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    /* Hero */
    #hero {
        padding: 76px 1.2rem 48px;
        min-height: auto;
    }

    .hero-banner-img,
    .hero-banner-fade {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        font-size: .62rem;
        padding: 5px 12px;
        margin-bottom: 1rem;
    }

    .hero-stats {
        gap: .5rem;
    }

    .stat-pill {
        padding: 7px 10px;
    }

    .hero-btns {
        gap: .7rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 10px 18px;
        font-size: .8rem;
        width: 100%;
        justify-content: center;
    }

    .countdown {
        gap: .5rem;
    }

    .cd-box {
        min-width: 56px;
        padding: 8px 10px;
    }

    .cd-num {
        font-size: 1.3rem;
    }

    /* Sections */
    section {
        padding: 48px 1.2rem;
    }

    .section-title {
        font-size: clamp(1.3rem, 6vw, 2rem);
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        margin-top: 1.8rem;
    }

    /* Impact */
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .impact-num {
        font-size: 1.9rem;
    }

    /* Rationale */
    .rationale-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .rat-img {
        height: 180px;
    }

    /* Premise */
    .premise-layout {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .premise-img-main {
        height: 200px;
    }

    .premise-img-sm {
        height: 110px;
    }

    /* Awards */
    .awards-grid {
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .awards-tabs {
        gap: .4rem;
    }

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

    /* Schedule */
    .schedule-timeline {
        padding-left: 28px;
    }

    .schedule-item::before {
        left: -35px;
        width: 10px;
        height: 10px;
    }

    .schedule-event {
        font-size: .82rem;
    }

    /* Jury */
    .jury-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .8rem;
    }

    .jury-avatar {
        width: 48px;
        height: 48px;
        font-size: .85rem;
    }

    .jury-name {
        font-size: .74rem;
    }

    .jury-role {
        font-size: .64rem;
    }

    /* Attend */
    .attend-grid {
        grid-template-columns: 1fr;
        gap: .7rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .gal-item.big {
        grid-column: span 2;
    }

    .gal-img {
        height: 120px;
    }

    .gal-item.big .gal-img {
        height: 246px;
    }

    /* Pricing */
    .pricing-card {
        padding: 1.8rem 1.2rem;
        margin-top: 2rem;
    }

    .pricing-amount {
        font-size: 2.4rem;
    }

    .pricing-dates {
        grid-template-columns: 1fr;
        gap: .6rem;
    }

    /* Form */
    .form-wrap {
        padding: 1.5rem 1rem;
        margin-top: 1.8rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: 1;
    }

    /* Social */
    .social-mega-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* Footer */
    footer {
        padding: 36px 1.2rem 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        font-size: .68rem;
    }
}

/* ═══════════════════════════════
   RESPONSIVE — SMALL MOBILE 480px
═══════════════════════════════ */
@media(max-width:480px) {
    .hero-edition {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-stats {
        gap: .4rem;
    }

    .stat-pill {
        padding: 6px 8px;
    }

    .stat-pill strong {
        font-size: 1rem;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .jury-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-mega-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .pricing-dates {
        grid-template-columns: 1fr;
    }

    .cd-box {
        min-width: 50px;
        padding: 7px 8px;
    }

    .cd-num {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: clamp(1.25rem, 7vw, 1.7rem);
    }

    .premise-img-row {
        grid-template-columns: 1fr;
    }

    .premise-img-sm {
        height: 130px;
    }

}

#formMessage {
    margin-top: 10px;
    font-weight: 500;
}

.success {
    color: green;
}

.error {
    color: red;
}

.error-field {
    border: 1px solid red;
}

.error-text {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.error-field {
    border: 1px solid red;
}

.juryImage {
    border-radius: 12px 12px 0px 12px;
    background-color: #d9e3ef;
}

/* LEFT SIDE IMAGE */
.jury-left {
    width: 40%;
}

.jury-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT SIDE CONTENT */
.jury-right {
    width: 60%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .jury-card {
        flex-direction: column;
    }

    .jury-left,
    .jury-right {
        width: 100%;
    }

    .jury-left {
        height: 220px;
        /* fixed height for mobile image */
    }

    .jury-left img {
        height: 100%;
        object-fit: cover;
    }

    .jury-right {
        padding: 12px;
        text-align: center;
        /* optional for better mobile look */
    }
}