:root {
    --primary: #0757C9;
    --primary-dark: #063B88;
    --accent: #12A66A;
    --cyan: #12A8D8;
    --dark: #0B172A;
    --text: #526174;
    --white: #FFFFFF;
    --bg: #F6F9FC;
    --border: #E5EBF3;

    --light-blue: #EAF3FF;
    --light-green: #E9F8F1;

    --container: 1240px;

    --shadow-sm: 0 10px 35px rgba(11, 23, 42, 0.06);
    --shadow-md: 0 20px 60px rgba(11, 23, 42, 0.10);

    --transition: all 0.3s ease;
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}


/* UTILITIES */

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.section-space {
    padding: 50px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 26px;
    height: 2px;
    background: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 1px solid transparent;
    border-radius: 10px;

    padding: 13px 20px;

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}

.btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(7, 87, 201, 0.16);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 16px 23px;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    height: 70px;

    display: flex;
    align-items: center;

    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);

    transition: var(--transition);
}

.site-header.scrolled {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(11, 23, 42, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
/* LOGO */

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand img {
    display: block;
    width: auto;
    height: 52px;
    max-width: 220px;
    object-fit: contain;
}

/* FOOTER LOGO */

.footer-logo img {
    height: 44px;
    max-width: 240px;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 8px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;

    background: var(--dark);
    transition: var(--transition);
}


/* MOBILE MENU */

.mobile-menu {
    display: none;
}

/* =========================================
   FULL IMAGE HERO
========================================= */

.hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 40px 0;
}


/* HERO BACKGROUND IMAGE */

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.03);

    animation: heroImageZoom 1.4s ease forwards;
}


/* PREMIUM OVERLAY 

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(5, 20, 40, 0.92) 0%,
            rgba(5, 20, 40, 0.78) 35%,
            rgba(5, 20, 40, 0.35) 65%,
            rgba(5, 20, 40, 0.12) 100%),
        linear-gradient(0deg,
            rgba(5, 20, 40, 0.65) 0%,
            rgba(5, 20, 40, 0) 45%);
}   */


/* HERO CONTENT */

.hero-container {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;

    justify-content: center;

    min-height: 470px;
}


.hero-content {
    max-width: 800px;
}


/* EYEBROW */

.hero .eyebrow {
    color: #ffffff;
}

.hero .eyebrow span {
    background: var(--cyan);
}


/* HERO TITLE */

.hero-title {
    margin-top: 20px;

    max-width: 800px;

    color: #ffffff;

    font-size: clamp(58px, 6vw, 82px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -0.06em;
}

.hero-title span {
    color: #64b1e4;
}


/* HERO DESCRIPTION */

.hero-description {
    max-width: 650px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;

    line-height: 1.8;
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* SECONDARY BUTTON */

.hero-secondary-btn {
    background: rgba(255, 255, 255, 0.10);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.30);

    backdrop-filter: blur(10px);
}

.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.18);

    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.6);
}



/* =========================================
   HERO ANIMATION
========================================= */

.hero-animate {
    opacity: 0;

    transform: translateY(20px);

    animation:
        heroReveal 0.8s ease forwards;
}


.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.35s;
}

.animate-delay-4 {
    animation-delay: 0.5s;
}

.animate-delay-5 {
    animation-delay: 0.65s;
}


@keyframes heroReveal {

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


@keyframes heroImageZoom {

    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }

}
/* =========================================
   PREMIUM WHY SECTION
========================================= */

.why-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(circle at 80% 20%,
            rgba(7, 87, 201, 0.07),
            transparent 28%),
        linear-gradient(180deg,
            #F7FAFD 0%,
            #FFFFFF 100%);
}


/* Decorative background */

.why-bg-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    top: -250px;
    right: -250px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(18, 168, 216, 0.10),
            transparent 65%);

    pointer-events: none;
}


/* =========================================
   HEADER
========================================= */

.why-header {
    position: relative;

    max-width: 900px;
}


.why-header h2 {

    margin-top: 20px;

    font-size: clamp(44px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -0.055em;

    font-weight: 800;

    color: var(--dark);

    max-width: 850px;
}


.why-header h2 span {

    display: block;

    color: var(--primary);
}


/* =========================================
   INTRO
========================================= */

.why-intro {

    display: grid;

    grid-template-columns:
        1fr 90px 1fr;

    align-items: stretch;

    gap: 45px;

    margin-top: 42px;

    max-width: 1100px;
}


.why-intro-text {

    position: relative;

    color: var(--text);

    font-size: 16px;

    line-height: 1.85;
}


.why-intro-text strong {

    color: var(--primary);

    font-weight: 800;
}


/* =========================================
   CONNECTOR
========================================= */

.why-connector {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


.connector-line {

    width: 1px;

    flex: 1;

    min-height: 35px;

    background:
        linear-gradient(180deg,
            transparent,
            var(--border),
            transparent);
}


.connector-icon {

    width: 64px;
    height: 64px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    margin: 10px 0;

    border-radius: 50%;

    background: var(--white);

    border: 1px solid var(--border);

    color: var(--primary);

    font-size: 20px;

    box-shadow:
        0 12px 35px rgba(7, 87, 201, 0.10);
}


/* =========================================
   PREMIUM CARDS GRID
========================================= */

.value-grid-premium {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;

    margin-top: 75px;
}


/* CARD */

.premium-value-card {

    position: relative;

    min-height: 400px;

    padding: 30px;

    overflow: hidden;

    background:

        linear-gradient(180deg,
            #FFFFFF 0%,
            #F9FBFE 100%);

    border:

        1px solid rgba(0, 77, 186, 0.25);

        border-bottom: 6px solid var(--primary);

    border-radius: 18px;

    transition:

        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


.premium-value-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(0, 77, 186, 0.25);

        border-bottom: 6px solid var(--primary-dark);

    box-shadow:
        0 25px 60px rgba(11, 23, 42, 0.10);
}


/* CARD TOP */

.premium-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.premium-card-number {

    color:
        rgba(7, 87, 201, 0.28);

    font-size: 42px;

    font-weight: 800;

    letter-spacing: -0.05em;

    line-height: 1;
}


.green-number {

    color:
        rgba(18, 166, 106, 0.28);
}


/* ICON */

.premium-card-icon {

    display: grid;

    place-items: center;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    font-size: 24px;

    border:
        1px solid rgba(7, 87, 201, 0.10);

    box-shadow:
        0 12px 30px rgba(11, 23, 42, 0.08);
}


.icon-blue {

    background:
        var(--light-blue);

    color:
        var(--primary);
}


.icon-green {

    background:
        var(--light-green);

    color:
        var(--accent);
}


/* SMALL LINE */

.premium-card-line {

    width: 30px;
    height: 3px;

    margin-top: 25px;

    border-radius: 10px;
}


.line-blue {

    background:
        var(--primary);
}


.line-green {

    background:
        var(--accent);
}


/* TITLE */

.premium-value-card h3 {

    margin-top: 24px;

    color:
        var(--dark);

    font-size: 24px;

    line-height: 1.2;

    letter-spacing:
        -0.035em;
}


/* DESCRIPTION */

.premium-value-card p {

    margin-top: 15px;

    color:
        var(--text);

    font-size: 14px;

    line-height: 1.8;

    max-width: 260px;
}


/* =========================================
   CARD VISUAL WITH IMAGE
========================================= */

.card-visual {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 170px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;

    pointer-events: none;

    border-radius: 0 0 18px 18px;
}


/* IMAGE */

.card-visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center bottom;

    transition: transform 0.5s ease;
}


/* HOVER EFFECT */

.premium-value-card:hover .card-visual img {
    transform: scale(1.05);
}




/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .value-grid-premium {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .why-header h2 {

        font-size: 42px;
    }


    .why-intro {

        grid-template-columns:
            1fr;

        gap: 25px;
    }


    .why-connector {

        flex-direction: row;

        height: 60px;
    }


    .connector-line {

        width: 100%;

        height: 1px;

        min-height: 0;

        background:
            linear-gradient(90deg,
                transparent,
                var(--border),
                transparent);
    }


    .connector-icon {

        margin: 0 12px;

        width: 55px;
        height: 55px;
    }

}


@media (max-width: 600px) {

    .value-grid-premium {

        grid-template-columns:
            1fr;
    }


    .premium-value-card {

        min-height: 430px;
    }


    .why-header h2 {

        font-size: 36px;
    }

}

/* =========================================
   STRATEGIC CORRIDORS SECTION
========================================= */

.strategic-corridors {
    position: relative;
    overflow: hidden;

    padding: 110px 0;

    background:
        radial-gradient(circle at 15% 10%,
            rgba(0, 125, 255, 0.12),
            transparent 28%),
        radial-gradient(circle at 85% 60%,
            rgba(0, 214, 153, 0.08),
            transparent 25%),
        #06111F;

    color: #ffffff;
}


/* BACKGROUND GLOWS */

.corridor-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

    opacity: 0.2;
}

.corridor-glow-one {
    top: -300px;
    left: -250px;

    background: #007DFF;
}

.corridor-glow-two {
    right: -300px;
    bottom: -300px;

    background: #00D699;
}


/* =========================================
   HEADER
========================================= */

.corridor-header {
    position: relative;
    z-index: 2;
}


.corridor-eyebrow {
    color: #69AEFF;
}

.corridor-eyebrow span {
    background: #4A9DFF;
}


/* HEADING ROW */

.corridor-heading-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px;
}


.corridor-heading {
    max-width: 850px;
}


.corridor-heading h2 {
    margin-top: 22px;

    font-size: clamp(46px, 5vw, 72px);

    line-height: 1.05;

    letter-spacing: -0.055em;

    color: #ffffff;

    font-weight: 800;
}


.corridor-heading h2 span {
    color: #4BC6FF;
}


.corridor-heading p {
    max-width: 760px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================
   MAP AREA
========================================= */

.india-connection {
    width: 280px;

    flex-shrink: 0;
}


.india-map-placeholder {
    position: relative;

    height: 240px;

    border-radius: 20px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    background:
        radial-gradient(circle at center,
            rgba(16, 63, 112, 0.35),
            transparent 65%);
}


/* CITY POINT */

.map-city {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 11px;

    letter-spacing: 0.15em;

    color: rgba(255, 255, 255, 0.85);
}


.map-city strong {
    font-weight: 800;
}


.map-dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #4A9DFF;

    box-shadow:
        0 0 0 6px rgba(74, 157, 255, 0.12),
        0 0 20px rgba(74, 157, 255, 0.8);
}


.map-mumbai {
    left: 45px;
    top: 75px;
}


.map-chennai {
    right: 20px;
    bottom: 55px;
}


.map-chennai .map-dot {
    background: #00D699;

    box-shadow:
        0 0 0 6px rgba(0, 214, 153, 0.12),
        0 0 20px rgba(0, 214, 153, 0.8);
}


/* CONNECTION LINE */

.map-route {
    position: absolute;

    width: 150px;

    height: 100px;

    left: 70px;
    top: 100px;

    border-bottom:
        2px solid rgba(74, 157, 255, 0.8);

    border-radius:
        0 0 100% 100%;

    transform:
        rotate(-18deg);
}


/* =========================================
   CITY GRID
========================================= */

.corridor-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 28px;

    margin-top: 65px;
}


/* =========================================
   CITY CARD
========================================= */

.corridor-card {
    position: relative;

    padding: 30px;

    border-radius: 22px;

    border:
        1px solid rgba(86, 157, 255, 0.25);

    background:
        linear-gradient(145deg,
            rgba(10, 31, 55, 0.95),
            rgba(4, 17, 32, 0.95));

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);

    overflow: hidden;
}


/* CHENNAI BORDER */

.chennai-card {
    border-color:
        rgba(0, 214, 153, 0.25);
}


/* =========================================
   CARD TOP
========================================= */

.city-card-top {
    display: flex;

    align-items: center;

    gap: 16px;
}


.city-icon {
    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: #62A7FF;

    background:
        rgba(74, 157, 255, 0.10);

    border:
        1px solid rgba(74, 157, 255, 0.25);

    font-size: 20px;
}


.city-icon-green {
    color: #00D699;

    background:
        rgba(0, 214, 153, 0.10);

    border-color:
        rgba(0, 214, 153, 0.25);
}


.city-title h3 {
    font-size: 36px;

    line-height: 1;

    letter-spacing: -0.04em;

    color: #ffffff;
}


.city-title span {
    display: block;

    margin-top: 8px;

    color: #62A7FF;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.chennai-card .city-title span {
    color: #46D9AE;
}


/* =========================================
   IMAGE
========================================= */

.city-image {
    position: relative;

    height: 210px;

    margin-top: 28px;

    overflow: hidden;

    border-radius: 14px;

    border:
        1px solid rgba(255, 255, 255, 0.06);
}


.city-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    opacity: 0.75;

    transition:
        transform 0.6s ease,
        opacity 0.4s ease;
}


.corridor-card:hover .city-image img {
    transform: scale(1.05);

    opacity: 0.95;
}


.city-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(4, 17, 32, 0.45),
            transparent),
        linear-gradient(0deg,
            rgba(4, 17, 32, 0.65),
            transparent 55%);
}


/* =========================================
   DESCRIPTION
========================================= */

.city-description {
    margin-top: 25px;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 15px;

    line-height: 1.8;

    min-height: 105px;
}


/* =========================================
   STATS
========================================= */

.city-stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 25px;

    padding: 25px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.city-stat {
    padding: 0 15px;

    border-right:
        1px solid rgba(255, 255, 255, 0.08);
}


.city-stat:first-child {
    padding-left: 0;
}


.city-stat:last-child {
    border-right: none;
}


.city-stat i {
    display: block;

    margin-bottom: 15px;

    color: #62A7FF;

    font-size: 20px;
}


.city-stat strong {
    display: block;

    color: #62A7FF;

    font-size: 25px;

    line-height: 1.1;
}


.city-stat span {
    display: block;

    margin-top: 7px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 12px;

    line-height: 1.55;
}


/* GREEN STATS */

.green-stat i,
.green-stat strong {
    color: #46D9AE;
}


/* =========================================
   EVENT
========================================= */

.city-event {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 22px;

    padding: 18px;

    border-radius: 12px;

    background:
        rgba(31, 91, 155, 0.15);

    border:
        1px solid rgba(74, 157, 255, 0.16);
}


.city-event-green {
    background:
        rgba(0, 214, 153, 0.08);

    border-color:
        rgba(0, 214, 153, 0.16);
}


.event-icon {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    color: #62A7FF;

    font-size: 18px;
}


.city-event-green .event-icon {
    color: #46D9AE;
}


.event-info {
    display: flex;

    flex-direction: column;

    flex: 1;
}


.event-info>span {
    margin-bottom: 5px;

    color:
        rgba(255, 255, 255, 0.50);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.15em;
}


.event-info strong {
    color: #ffffff;

    font-size: 14px;
}


.event-info p {
    margin-top: 4px;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 13px;
}


/* EVENT STATUS */

.event-status {
    padding: 8px 12px;

    border-radius: 7px;

    border:
        1px solid rgba(74, 157, 255, 0.35);

    color: #62A7FF;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.15em;
}


.city-event-green .event-status {
    color: #46D9AE;

    border-color:
        rgba(0, 214, 153, 0.35);
}


/* =========================================
   BOTTOM ECOSYSTEM STRIP
========================================= */

.ecosystem-strip {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.5fr repeat(4, 1fr);

    align-items: center;

    margin-top: 35px;

    padding: 25px 32px;

    border-radius: 18px;

    background:
        linear-gradient(90deg,
            rgba(16, 44, 76, 0.95),
            rgba(7, 25, 45, 0.95));

    border:
        1px solid rgba(74, 157, 255, 0.22);
}


.ecosystem-title strong,
.ecosystem-title span {
    display: block;

    font-size: 24px;

    line-height: 1.2;
}


.ecosystem-title span {
    margin-top: 4px;

    color: #58B7FF;
}


/* ITEM */

.ecosystem-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 0 22px;

    border-left:
        1px solid rgba(255, 255, 255, 0.10);
}


.ecosystem-item i {
    color: #58B7FF;

    font-size: 25px;
}


.ecosystem-item:nth-child(3) i,
.ecosystem-item:nth-child(4) i {
    color: #46D9AE;
}


.ecosystem-item span {
    color:
        rgba(255, 255, 255, 0.75);

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .corridor-heading-row {
        flex-direction: column;

        align-items: flex-start;
    }


    .india-connection {
        display: none;
    }


    .city-stats {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px;
    }


    .city-stat:nth-child(2) {
        border-right: none;
    }


    .ecosystem-strip {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px;
    }


    .ecosystem-title {
        grid-column:
            span 2;
    }

}


@media (max-width: 768px) {

    .strategic-corridors {
        padding: 80px 0;
    }


    .corridor-heading h2 {
        font-size: 42px;
    }


    .corridor-grid {
        grid-template-columns:
            1fr;
    }


    .city-image {
        height: 250px;
    }

}


@media (max-width: 550px) {

    .corridor-card {
        padding: 22px;
    }


    .corridor-heading h2 {
        font-size: 35px;
    }


    .city-title h3 {
        font-size: 30px;
    }


    .city-stats {
        grid-template-columns:
            1fr 1fr;
    }


    .city-stat {
        padding: 0 10px;
    }


    .city-stat strong {
        font-size: 21px;
    }


    .city-event {
        align-items: flex-start;

        flex-wrap: wrap;
    }


    .event-status {
        margin-left: 55px;
    }


    .ecosystem-strip {
        grid-template-columns:
            1fr;

        padding: 25px;
    }


    .ecosystem-title {
        grid-column:
            auto;
    }


    .ecosystem-item {
        padding: 18px 0;

        border-left: none;

        border-top:
            1px solid rgba(255, 255, 255, 0.08);
    }

}


/* FINAL CTA */

.final-cta {
    position: relative;
    overflow: hidden;

    padding: 125px 0;

    background:
        radial-gradient(circle at 15% 40%, rgba(18, 168, 216, 0.10), transparent 30%),
        radial-gradient(circle at 85% 50%, rgba(7, 87, 201, 0.09), transparent 32%),
        var(--light-blue);
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 820px;
    margin: 0 auto;

    text-align: center;
}

.cta-content .eyebrow {
    justify-content: center;
}

.cta-content h2 {
    margin-top: 20px;

    font-size: clamp(52px, 6vw, 82px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.cta-content p {
    max-width: 620px;

    margin: 25px auto 32px;

    color: var(--text);
    font-size: 18px;
    line-height: 1.75;
}

.cta-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 32px;
}

.cta-links a {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.cta-links a:hover {
    color: var(--primary);
}

.cta-shape {
    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(7, 87, 201, 0.10);
    border-radius: 50%;
}

.shape-one {
    top: -150px;
    left: -80px;
}

.shape-two {
    right: -100px;
    bottom: -150px;

    width: 420px;
    height: 420px;
}


/* =========================================
   PREMIUM FOOTER
========================================= */

.site-footer {
    position: relative;

    overflow: hidden;

    padding: 0;

    background:
        radial-gradient(circle at 10% 0%,
            rgba(23, 106, 190, 0.18),
            transparent 28%),
        radial-gradient(circle at 90% 80%,
            rgba(0, 214, 153, 0.08),
            transparent 25%),
        #071522;

    color: #ffffff;
}


/* TOP ACCENT LINE */

.footer-top-line {
    height: 2px;

    background:
        linear-gradient(90deg,
            #1976D2,
            #58B7FF 45%,
            #00D699);

    opacity: 0.9;
}


/* =========================================
   MAIN AREA
========================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        2fr 1fr 1.2fr 1.6fr;

    gap: 70px;

    padding: 75px 0 65px;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
    max-width: 390px;
}


.footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 25px;
}


.footer-logo img {
    display: block;

    width: auto;

    height: 48px;

    max-width: 260px;

    object-fit: contain;
}


.footer-brand p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 15px;

    line-height: 1.8;

    max-width: 360px;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 28px;
}


.footer-social a {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    color:
        rgba(255, 255, 255, 0.85);

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    text-decoration: none;

    transition:
        all 0.3s ease;
}


.footer-social a:hover {
    transform: translateY(-3px);

    background:
        rgba(74, 157, 255, 0.15);

    border-color:
        rgba(74, 157, 255, 0.4);

    color: #58B7FF;
}


/* =========================================
   FOOTER LABEL
========================================= */

.footer-label {
    display: block;

    margin-bottom: 24px;

    color: #58B7FF;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-column li {
    margin-bottom: 16px;
}


.footer-column a {
    position: relative;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 15px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}


.footer-column a::before {
    content: "";

    position: absolute;

    left: -14px;
    top: 50%;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #00D699;

    opacity: 0;

    transform:
        translateY(-50%);
}


.footer-column a:hover {
    color: #ffffff;

    padding-left: 12px;
}


.footer-column a:hover::before {
    opacity: 1;
}


/* =========================================
   ORGANISERS
========================================= */

.footer-organisers {
    max-width: 300px;
}


.organiser-card {
    padding: 16px 18px;

    margin-bottom: 12px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}


.organiser-card:hover {
    background:
        rgba(255, 255, 255, 0.07);

    border-color:
        rgba(74, 157, 255, 0.25);
}


.organiser-card strong {
    display: block;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;
}


.organiser-card span {
    display: block;

    margin-top: 6px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================
   DIVIDER
========================================= */

.footer-divider {
    height: 1px;

    background:
        rgba(255, 255, 255, 0.09);
}


/* =========================================
   BOTTOM AREA
========================================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 25px 0;
}


.footer-copyright {
    color:
        rgba(255, 255, 255, 0.42);

    font-size: 13px;
}


.footer-legal {
    display: flex;

    align-items: center;

    gap: 28px;
}


.footer-legal a {
    color:
        rgba(255, 255, 255, 0.50);

    font-size: 13px;

    text-decoration: none;

    transition:
        color 0.25s ease;
}


.footer-legal a:hover {
    color: #58B7FF;
    text-decoration: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .footer-main {
        grid-template-columns:
            1.7fr 1fr 1.4fr;

        gap: 50px;
    }


    .footer-organisers {
        grid-column:
            span 3;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

        max-width: none;
    }


    .footer-organisers .footer-label {
        grid-column:
            span 2;

        margin-bottom: 5px;
    }


    .organiser-card {
        margin-bottom: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .footer-main {
        grid-template-columns:
            1fr 1fr;

        gap: 45px;

        padding:
            60px 0 50px;
    }


    .footer-brand {
        grid-column:
            span 2;
    }


    .footer-organisers {
        grid-column:
            span 2;
    }

}


@media (max-width: 550px) {

    .footer-main {
        grid-template-columns:
            1fr;

        gap: 38px;
    }


    .footer-brand,
    .footer-organisers {
        grid-column:
            auto;
    }


    .footer-organisers {
        display: block;
    }


    .footer-organisers .footer-label {
        margin-bottom: 24px;
    }


    .organiser-card {
        margin-bottom: 12px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .footer-legal {
        gap: 20px;
    }


    .footer-logo img {
        height: 40px;
    }

}

/* MODAL */

/* =========================================
   MODAL OVERLAY
========================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 15px;

    background: rgba(5, 15, 30, 0.55);
    backdrop-filter: blur(7px);

    /* Overlay scrolls if screen height is small */
    overflow-y: auto;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   MODAL BOX
========================================= */

.modal {
    position: relative;

    width: 100%;
    max-width: 520px;

    /* Important: no internal scrolling */
    max-height: none;
    overflow: visible;

    padding: 28px 30px 30px;
    margin: auto;

    box-sizing: border-box;

    background: var(--white);
    border-radius: 20px;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.25);

    transform:
        translateY(15px) scale(0.97);

    transition:
        transform 0.3s ease;
}


/* Active Animation */

.modal-overlay.active .modal {
    transform:
        translateY(0) scale(1);
}


/* =========================================
   BOX SIZING
========================================= */

.modal *,
.modal *::before,
.modal *::after {
    box-sizing: border-box;
}


/* =========================================
   CLOSE BUTTON
========================================= */

.modal-close {
    position: absolute;

    top: 17px;
    right: 17px;

    z-index: 5;

    display: grid;
    place-items: center;

    width: 36px;
    height: 36px;

    padding: 0;

    background: var(--bg);
    color: var(--dark);

    border: 1px solid var(--border);
    border-radius: 8px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.modal-close:hover {
    background: var(--primary);
    color: var(--white);

    transform: rotate(90deg);
}


/* =========================================
   MODAL HEADING
========================================= */

.modal-heading {
    margin-bottom: 16px;

    /* Prevent heading from going under close button */
    padding-right: 45px;
}


.modal-kicker {
    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.modal-heading h2,
.modal-success-state h2 {
    margin-top: 6px;

    color: var(--dark);

    font-size: 35px;
    line-height: 1.1;

    letter-spacing: -0.04em;
}


.modal-heading p,
.modal-success-state p {
    margin-top: 10px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   FORM GRID
========================================= */

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================
   FORM GROUP
========================================= */

.form-group {
    min-width: 0;

    margin-bottom: 14px;
}


.form-group.full-width {
    grid-column: 1 / -1;
}


.form-group label {
    display: block;

    margin-bottom: 6px;

    color: var(--dark);

    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   INPUTS
========================================= */

.form-group input,
.form-group select,
.form-group textarea {
    display: block;

    width: 100%;

    padding: 11px 13px;

    background: var(--white);
    color: var(--dark);

    border: 1px solid var(--border);
    border-radius: 8px;

    outline: none;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}


/* Textarea */

.form-group textarea {
    min-height: 85px;

    resize: vertical;
}


/* Focus */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(7, 87, 201, 0.08);
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.form-submit {
    display: block;

    width: 100%;

    margin-top: 4px;

    padding: 13px 20px;

    box-sizing: border-box;
}


/* If submit button is inside a form group */

.form-group .form-submit {
    margin-bottom: 0;
}


/* =========================================
   SUCCESS STATE
========================================= */

.modal-success-state {
    padding: 35px 10px 15px;

    text-align: center;
}


.success-icon {
    display: grid;
    place-items: center;

    width: 65px;
    height: 65px;

    margin: 0 auto;

    background: var(--light-green);
    color: var(--accent);

    border-radius: 50%;

    font-size: 25px;
}


.modal-success-state p {
    max-width: 390px;

    margin:
        14px auto 25px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .modal-overlay {
        align-items: flex-start;

        padding:
            20px 15px;
    }


    .modal {
        max-width: 520px;

        padding:
            25px 24px 28px;

        margin: 0 auto;
    }


    .modal-heading h2,
    .modal-success-state h2 {
        font-size: 32px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .modal-overlay {
        padding:
            15px 12px;
    }


    .modal {
        width: 100%;

        padding:
            24px 18px 25px;

        border-radius: 16px;
    }


    .modal-close {
        top: 12px;
        right: 12px;

        width: 34px;
        height: 34px;
    }


    .modal-heading {
        padding-right: 40px;
    }


    .modal-heading h2,
    .modal-success-state h2 {
        font-size: 28px;
    }


    /* Single column form */

    .form-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .form-group.full-width {
        grid-column: auto;
    }


    .form-group {
        margin-bottom: 13px;
    }


    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 12px;
    }


    .form-group textarea {
        min-height: 80px;
    }


    .form-submit {
        padding: 12px 18px;
    }


    .modal-success-state {
        padding:
            30px 5px 10px;
    }

}


/* =========================================
   SMALL HEIGHT SCREENS
========================================= */

@media (max-height: 700px) and (min-width: 601px) {

    .modal-overlay {
        align-items: flex-start;

        padding-top: 20px;
        padding-bottom: 20px;
    }


    .modal {
        margin: 0 auto;

        padding-top: 22px;
        padding-bottom: 22px;
    }


    .modal-heading {
        margin-bottom: 12px;
    }


    .form-group {
        margin-bottom: 10px;
    }


    .form-group textarea {
        min-height: 70px;
    }

}
/* SCROLL REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: clamp(50px, 5vw, 65px);
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image-wrap,
    .hero-image-wrap img {
        height: 570px;
        min-height: 570px;
    }

}


@media (max-width: 850px) {

    .section-space {
        padding: 30px 0;
    }

    .desktop-nav,
    .header-actions .btn-primary {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;

        display: block;

        max-height: 0;
        overflow: hidden;

        background: var(--white);
        border-bottom: 1px solid transparent;

        transition: max-height 0.35s ease;
    }

    .mobile-menu.active {
        max-height: 400px;
        border-bottom-color: var(--border);
        box-shadow: 0 15px 30px rgba(11, 23, 42, 0.06);
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;

        width: min(calc(100% - 48px), var(--container));
        margin: 0 auto;

        padding: 22px 0;
    }

    .mobile-menu a,
    .mobile-interest {
        padding: 14px 0;

        background: none;
        border: none;

        color: var(--dark);
        text-align: left;

        font-size: 15px;
        font-weight: 700;

        border-bottom: 1px solid var(--border);
    }

    .mobile-menu nav> :last-child {
        border-bottom: none;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-image-wrap,
    .hero-image-wrap img {
        height: 500px;
        min-height: 500px;
    }

    .intro-copy {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .market-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 620px) {

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .site-header {
        height: 72px;
    }

    .mobile-menu {
        top: 72px;
    }

    .hero {
        padding: 35px 0 75px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image-wrap,
    .hero-image-wrap img {
        height: 390px;
        min-height: 390px;
    }

    .floating-info-card {
        left: 16px;
        bottom: 16px;

        width: calc(100% - 32px);
    }

    .floating-info-card strong {
        font-size: 11px;
    }

    .event-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-divider {
        width: 100%;
        height: 1px;
    }

    .section-space {
        padding: 30px 0;
    }

    .section-intro h2 {
        font-size: 37px;
    }

    .intro-copy {
        font-size: 15px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
    }

    .market-momentum {
        margin-top: 55px;
        padding: 25px 18px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
    }

    .stat-item {
        min-height: 145px;
        padding: 20px 14px;
    }

    .stat-item strong {
        font-size: 25px;
    }

    .stat-item span {
        font-size: 11px;
    }

    .location-content {
        padding: 25px;
    }

    .location-content>p {
        min-height: auto;
    }

    .location-image {
        height: 240px;
    }

    .corridor-visual {
        flex-direction: column;
        gap: 15px;
    }

    .corridor-line {
        width: 1px;
        height: 35px;
        flex: none;

        background: var(--border);
    }

    .corridor-center {
        flex-direction: row;
    }

    .corridor-center i {
        transform: rotate(-90deg);
    }

    .ecosystem-strip {
        margin-top: 55px;
        padding: 28px 18px;
    }

    .ecosystem-strip h3 {
        font-size: 20px;
    }

    .final-cta {
        padding: 85px 0;
    }

    .cta-content h2 {
        font-size: 55px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .modal-overlay {
        padding: 16px;
    }

    .modal {
        width: 100%;
        padding: 32px 22px;
        border-radius: 16px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-heading h2 {
        font-size: 30px;
    }

}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}