:root {
    --primary: #003A70;
    /*navy blue*/
    --gold: #C5A24A;
    /*navy blue*/
    --green: #718044;
    /*navy blue*/

    --background: #F8F5EC;
    /*navy blue*/
    --white: #FFFFFF;
    /*white*/
    --text: #242424;
    /*navy blue*/
    --muted: #555555;
    /*navy blue*/

    --footer: #002B52;
    /*navy blue*/

    --border: #E5E0D3;
    /*navy blue*/

    --marquee-height: 48px;
}

@media (max-width: 768px) {
    :root {
        --marquee-height: 44px;
    }
}

@media (max-width: 480px) {
    :root {
        --marquee-height: 42px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.countdown-header {
    background: var(--primary);
    padding: 8px 15px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.countdown-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.countdown-title {
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1;
}

.countdown-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.time-box {
    text-align: center;
    min-width: 45px;
}

.time-box .number {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.time-box .label {
    margin-top: 3px;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.dot {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-top: -4px;
}

/* Tablet */
@media (max-width: 768px) {

    .countdown-header {
        padding: 8px 10px;
    }

    .countdown-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .countdown-title {
        font-size: 16px;
    }

    .countdown-box {
        gap: 8px;
    }

    .time-box {
        min-width: 36px;
    }

    .time-box .number {
        font-size: 22px;
    }

    .time-box .label {
        font-size: 8px;
    }

    .dot {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .countdown-header {
        padding: 8px 5px;
    }

    .countdown-title {
        font-size: 16px;
    }

    .countdown-box {
        gap: 5px;
    }

    .time-box {
        min-width: 30px;
    }

    .time-box .number {
        font-size: 18px;
    }

    .time-box .label {
        font-size: 7px;
    }

    .dot {
        font-size: 16px;
    }
}

/* =========================
   VAY HEADER
========================= */

.vay-header {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 9999;
}

.vay-header-inner {
    width: 100%;
    max-width: 1250px;
    min-height: 100px;
    margin: 0 auto;
    padding: 8px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-sizing: border-box;
}

/* LOGO */

.vay-logo {
    flex-shrink: 0;
}

.vay-logo img {
    width: 140px;
    height: auto;
    display: block;
}

/* LION */

.vay-lion {
    flex-shrink: 0;
}

.vay-lion img {
    width: 80px;
    height: auto;
    display: block;
}

/* SPECTACLE */

.vay-spectacle {
    flex-shrink: 0;
}

.vay-spectacle img {
    width: 80px;
    height: auto;
    display: block;
}

/* NAVIGATION */

/* .vay-nav {
    margin-left: auto;
} */

.vay-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vay-nav li {
    margin: 0;
    padding: 0;
}

.vay-nav a {
    color: #222;
    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.vay-nav a:hover {
    color: #003A70;
}

/* APPLY BUTTON */

.vay-apply {
    flex-shrink: 0;
}

.vay-apply a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    background: var(--primary);
    color: #fff;

    border-radius: 4px;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.vay-apply a:hover {
    transform: translateY(-2px);
}

/* MOBILE BUTTON */

.vay-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    padding: 6px;
    border: 0;
    background: transparent;

    cursor: pointer;

    position: relative;
    z-index: 10002;
}

.vay-menu-btn span {
    display: block;

    width: 27px;
    height: 2px;

    margin: 6px auto;

    background: #222;

    transition: 0.3s ease;
}

/* HAMBURGER → X */

.vay-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.vay-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.vay-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* OVERLAY */

.vay-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    z-index: 10000;
}

.vay-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .vay-header-inner {
        gap: 12px;
    }

    .vay-logo img {
        width: 150px;
    }

    .vay-lion img {
        width: 110px;
    }

    .vay-spectacle img {
        width: 130px;
    }

    .vay-nav ul {
        gap: 18px;
    }

    .vay-nav a {
        font-size: 14px;
    }

    .vay-apply a {
        padding: 11px 17px;
        font-size: 14px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .vay-header-inner {
        min-height: 75px;
        padding: 8px 15px;
    }

    .vay-logo img {
        width: 130px;
    }
     .vay-lion img {
        width: 55px;
    }

    .vay-spectacle img {
        width: 50px;
    }

    .vay-lion,
    .vay-spectacle,
     {
        display: block;
    }
    .vay-apply{
        display:none;
    }

    /* MOBILE NAV */

    .vay-nav {
        position: fixed;

        top: 0;
        right: -300px;

        width: 280px;
        height: 100vh;

        margin: 0;
        padding: 95px 30px 30px;

        background: #fff;

        box-sizing: border-box;

        z-index: 10001;

        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.12);

        transition: right 0.35s ease;
    }

    .vay-nav.active {
        right: 0;
    }

    .vay-nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 24px;
    }

    .vay-nav a {
        font-size: 17px;
    }

    .vay-menu-btn {
        display: block;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .vay-header-inner {
        padding: 7px 12px;
    }

    .vay-logo img {
        width: 135px;
    }

    .vay-nav {
        width: 260px;
    }

    .vay-nav a {
        font-size: 16px;
    }
}

/* =========================
   HERO SECTION
========================= */

.vay-hero {
    position: relative;

    width: 100%;
    min-height: 500px;

    background-image: url("./img/gk-banner.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* =========================
   OVERLAY
========================= */

.vay-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.40) 45%,
            rgba(0, 0, 0, 0.10) 100%);

    z-index: 1;
}


/* =========================
   CONTENT
========================= */

.vay-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 20px 40px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
}


/* =========================
   MAIN HEADING
========================= */

.vay-hero-content h1 {
    margin: 0 0 12px;

    font-family: "Noto Sans Devanagari",
        Arial,
        sans-serif;

    font-size: 38px;
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: 0;
}


/* =========================
   SUB HEADING
========================= */

.vay-hero-content h2 {
    margin: 0 0 20px;

    font-family: Arial, sans-serif;

    font-size: 25px;
    font-weight: 600;

    line-height: 1.3;
}


/* =========================
   HINDI TEXT
========================= */

.vay-hero-hindi {
    font-family: "Noto Sans Devanagari",
        Arial,
        sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}


/* =========================
   DESCRIPTION
========================= */

.vay-hero-description {
    margin: 0 0 22px;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================
   HIGHLIGHT
========================= */

.vay-hero-highlight {
    display: inline-block;

    margin-bottom: 18px;

    font-family: "Noto Sans Devanagari",
        Arial,
        sans-serif;

    font-size: 21px;
    font-weight: 700;

    color: #ffd36a;
}


/* =========================
   APPLICATION FEE
========================= */

.vay-hero-fee {
    margin-bottom: 28px;

    font-family: Arial, sans-serif;

    font-size: 19px;
    font-weight: 700;
}

.vay-hero-fee span {
    font-size: 13px;
    font-weight: 400;
}


/* =========================
   REGISTER BUTTON
========================= */

.vay-register-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    padding: 14px 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.vay-register-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25);
}


/* =========================
   BUTTON SHINE
========================= */

.vay-register-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background: rgba(255, 255, 255, 0.25);

    transform: skewX(-25deg);

    transition: left 0.6s ease;
}

.vay-register-btn:hover::before {
    left: 140%;
}

.vay-register-btn span {
    position: relative;
    z-index: 2;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .vay-hero {
        min-height: 650px;

        background-position: center center;
    }

    .vay-hero-content {
        padding: 70px 35px;
    }

    .vay-hero-content h1 {
        font-size: 38px;
    }

    .vay-hero-content h2 {
        font-size: 22px;
    }

    .vay-hero-hindi {
        font-size: 17px;
    }

    .vay-hero-description {
        font-size: 16px;
        width: 650px;
    }

    .vay-hero-highlight {
        font-size: 19px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .vay-hero {
        min-height: 680px;

        align-items: center;

        background-position: center center;
    }

    .vay-hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.72));
    }

    .vay-hero-content {
        padding: 50px 22px;

        text-align: center;
    }

    .vay-hero-content h1 {
        font-size: 34px;

        line-height: 1.25;

        margin-bottom: 12px;
    }

    .vay-hero-content h2 {
        font-size: 19px;

        line-height: 1.4;

        margin-bottom: 18px;
    }

    .vay-hero-hindi {
        max-width: 100%;

        font-size: 16px;

        line-height: 1.7;
    }

    .vay-hero-description {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.6;
    }

    .vay-hero-highlight {
        font-size: 18px;

        line-height: 1.5;
    }

    .vay-hero-fee {
        font-size: 17px;

        margin-bottom: 24px;
    }

    .vay-register-btn {
        padding: 13px 25px;

        font-size: 15px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .vay-hero {
        min-height: 650px;
    }

    .vay-hero-content {
        padding: 40px 18px;
    }

    .vay-hero-content h1 {
        font-size: 29px;
    }

    .vay-hero-content h2 {
        font-size: 17px;
    }

    .vay-hero-hindi {
        font-size: 14px;
    }

    .vay-hero-description {
        font-size: 13px;
    }

    .vay-hero-highlight {
        font-size: 16px;
    }

    .vay-hero-fee {
        font-size: 15px;
    }
}

/* =========================
   WHY SECTION
========================= */

.vay-why-section {
    width: 100%;
    background: #fff;
    padding: 40px 20px;
    box-sizing: border-box;
}

.vay-why-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


/* =========================
   TITLE
========================= */

.vay-why-title {
    margin: 0;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 38px;
    font-weight: 700;

    line-height: 1.2;
}

.vay-title-line {
    width: 70px;
    height: 3px;

    margin: 18px auto 20px;

    background: #003A70;

    border-radius: 10px;
}


/* =========================
   SUBTITLE
========================= */

.vay-why-subtitle {
    margin: 0 0 15px;

    color: #333;

    font-family: Arial, sans-serif;

    font-size: 20px;
    line-height: 1.5;
}


/* =========================
   DESCRIPTION
========================= */

.vay-why-description {
    margin: 0 auto;
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   FEATURE GRID
========================= */

.vay-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    text-align: left;
}


/* =========================
   FEATURE CARD
========================= */

.vay-feature-card {
    position: relative;
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.07);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.vay-feature-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #003A70;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.vay-feature-card:hover {
    transform: translateY(-8px);

    border-color: #003A70;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);
}

.vay-feature-card:hover::before {
    transform: scaleX(1);
}


/* =========================
   CARD HEADER & STAR
========================= */

.vay-feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.vay-star {
    width: 42px;
    height: 42px;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #003A70;
    color: #fff;
    font-size: 22px;

    clip-path: polygon(50% 0%,
            61% 35%,
            98% 35%,
            68% 57%,
            79% 95%,
            50% 72%,
            21% 95%,
            32% 57%,
            2% 35%,
            39% 35%);

    transition: transform 0.35s ease;
}

.vay-feature-card:hover .vay-star {
    transform: rotate(10deg) scale(1.1);
}

.vay-feature-titles {
    display: flex;
    flex-direction: column;
    flex: 1;
}


/* =========================
   CARD HEADING
========================= */

.vay-feature-card h3 {
    margin: 0 0 6px;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.3;
}

.vay-feature-card h4 {
    margin: 0;

    color: #003A70;

    font-family:
        "Noto Sans Devanagari",
        Arial,
        sans-serif;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.5;
}


/* =========================
   CARD TEXT
========================= */

.vay-feature-card p {
    margin: 0;

    color: #666;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================
   APPLICATION FEE
========================= */

.vay-application-fee {
    margin: 45px 0 20px;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 19px;
    text-align: center;
}


/* =========================
   REGISTER BUTTON
========================= */

.vay-register-btn {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.vay-register-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .vay-why-section {
        padding: 65px 20px;
    }

    .vay-why-title {
        font-size: 36px;
    }

    .vay-why-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .vay-feature-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .vay-feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 100%;
        margin: 0 auto;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .vay-why-section {
        padding: 50px 16px;
    }

    .vay-why-title {
        font-size: 29px;
    }

    .vay-title-line {
        margin: 14px auto 18px;
    }

    .vay-why-subtitle {
        font-size: 17px;
    }

    .vay-why-description {
        font-size: 14px;
        line-height: 1.7;

        margin-bottom: 35px;
    }

    .vay-feature-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .vay-feature-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .vay-feature-card {
        padding: 28px 22px;
    }

    .vay-feature-card h3 {
        font-size: 16px;
    }

    .vay-feature-card h4 {
        font-size: 15px;
    }

    .vay-feature-card p {
        font-size: 14px;
    }

    .vay-application-fee {
        font-size: 16px;
        line-height: 1.5;

        margin-top: 35px;
    }

    .vay-register-btn {
        padding: 13px 25px;

        font-size: 15px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

    .vay-why-title {
        font-size: 26px;
    }

    .vay-why-description {
        font-size: 13px;
    }

    .vay-feature-card {
        padding: 24px 18px;
    }
}

/* project hightlights section */
.vay-highlights {
    width: 100%;
    padding: 40px 20px;
    background: #fff;
    box-sizing: border-box;
}

.vay-highlights-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.vay-highlights-title {
    margin: 0;
    text-align: center;

    color: #222;
    font-family: Arial, sans-serif;

    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.vay-highlights-line {
    width: 70px;
    height: 3px;
    margin: 10px auto 0 auto;
    background: #003A70;
    border-radius: 10px;
}


/* GRID */

.vay-highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* CARD */

.vay-highlight-card {
    min-height: 170px;
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
    box-sizing: border-box;
    cursor: pointer;
    opacity: 0;
}

.vay-highlight-card.vay-visible {
    opacity: 1;
}

.vay-highlight-card:hover {
    border-color: #003A70;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
    background: #fffaf5;
}


/* ICON */

.vay-highlight-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #003A70;
}

.vay-highlight-icon svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
    transition:
        transform .35s ease,
        color .35s ease;
}

.vay-highlight-card:hover .vay-highlight-icon svg {
    transform: scale(1.12);
    color: #d97716;
}


/* TITLE */

.vay-highlight-card h3 {
    margin: 0;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.4;
}


/* =========================
   LARGE TABLET
========================= */

@media (max-width: 1100px) {

    .vay-highlights {
        padding: 65px 20px;
    }

    .vay-highlights-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .vay-highlights-title {
        font-size: 36px;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

    .vay-highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .vay-highlight-card {
        min-height: 155px;
        padding: 24px 14px;
    }

    .vay-highlight-icon {
        width: 48px;
        height: 48px;
    }

    .vay-highlight-icon svg {
        width: 42px;
        height: 42px;
    }

    .vay-highlight-card h3 {
        font-size: 15px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .vay-highlights {
        padding: 50px 16px;
    }

    .vay-highlights-title {
        font-size: 29px;
    }

    .vay-highlights-line {
        margin-bottom: 20px;
    }

    .vay-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .vay-highlight-card {
        min-height: 145px;
        padding: 20px 12px;
    }

    .vay-highlight-icon {
        margin-bottom: 13px;
    }

    .vay-highlight-icon svg {
        width: 38px;
        height: 38px;
    }

    .vay-highlight-card h3 {
        font-size: 14px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .vay-highlights-grid {
        grid-template-columns: 1fr;
    }

    .vay-highlight-card {
        min-height: 125px;
    }

    .vay-highlight-card h3 {
        font-size: 16px;
    }
}

/* site plan section css */
.site-plan-section {
    width: 100%;
    padding: 40px 20px;
    background: #ffffff;
    box-sizing: border-box;
}

.site-plan-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


/* HEADING */

.site-plan-title {
    margin: 0;
    text-align: center;

    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;

    color: #222;
}

.site-plan-divider {
    width: 70px;
    height: 3px;

    margin: 18px auto 50px;

    background: #155115;
    border-radius: 10px;
}


/* MAIN CONTENT */

.site-plan-content {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 60px;

    align-items: center;
}


/* LEFT */

.site-plan-info h3 {
    margin: 0 0 15px;

    font-family: Arial, sans-serif;
    font-size: 32px;
    line-height: 1.25;

    color: #222;
}

.site-plan-info>p {
    margin: 0 0 30px;

    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;

    color: #555;
}


/* STATS */

.site-plan-stats {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.site-stat {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px;

    background: #f7faf7;

    border: 1px solid #e2ebe2;

    border-radius: 10px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.site-stat:hover {
    transform: translateY(-5px);

    border-color: #155115;

    box-shadow: 0 10px 25px rgba(21, 81, 21, .12);
}


/* ICON */

.site-stat-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.site-stat-icon svg {
    width: 42px;
    height: 42px;

    fill: none;

    stroke: #155115;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-stat-icon svg path {
    fill: none;
}


/* TEXT */

.site-stat h4 {
    margin: 0 0 4px;

    font-family: Arial, sans-serif;

    font-size: 18px;
    font-weight: 700;

    color: #155115;
}

.site-stat span {
    display: block;

    font-family: Arial, sans-serif;

    font-size: 13px;

    color: #666;
}


/* IMAGE */

.site-plan-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
}

.site-plan-image {
    display: block;
    width: 100%;
    /* height: 550px; */
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform .5s ease;
}

.site-plan-image-wrapper:hover .site-plan-image {
    transform: scale(1.04);
}


/* VIEW LABEL */

.site-plan-view {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    padding: 10px 20px;

    background: rgba(21, 81, 21, .9);

    color: #fff;

    font-family: Arial, sans-serif;

    font-size: 14px;

    border-radius: 30px;

    opacity: 0;

    transition: opacity .3s ease;

    pointer-events: none;
}

.site-plan-image-wrapper:hover .site-plan-view {
    opacity: 1;
}


/* FEE */

.site-plan-fee {
    margin: 45px 0 0;

    text-align: center;

    font-family: Arial, sans-serif;

    font-size: 16px;

    color: #333;
}


/* POPUP */

.site-plan-popup {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, .88);

    box-sizing: border-box;
}

.site-plan-popup.active {
    display: flex;
}

.site-plan-popup img {
    max-width: 95vw;
    max-height: 90vh;

    object-fit: contain;

    border-radius: 8px;

    box-shadow: 0 10px 50px rgba(0, 0, 0, .4);
}


/* CLOSE */

.site-plan-close {
    position: absolute;

    top: 20px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: none;

    background: transparent;

    color: #fff;

    font-size: 42px;
    line-height: 1;

    cursor: pointer;
}


/* TABLET */

@media (max-width: 900px) {

    .site-plan-section {
        padding: 65px 20px;
    }

    .site-plan-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .site-plan-info h3 {
        font-size: 28px;
    }

    .site-plan-image-wrapper {
        max-width: 700px;

        margin: auto;
    }

    .site-plan-image {
        height: 460px;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .site-plan-section {
        padding: 50px 16px;
    }

    .site-plan-title {
        font-size: 30px;
    }

    .site-plan-divider {
        margin-bottom: 35px;
    }

    .site-plan-info h3 {
        font-size: 25px;
    }

    .site-plan-info>p {
        font-size: 15px;
    }

    .site-plan-stats {
        grid-template-columns: 1fr;
    }

    .site-stat {
        padding: 16px;
    }

    .site-plan-image {
        height: 320px;
    }

    .site-plan-view {
        opacity: 1;
        bottom: 12px;

        font-size: 12px;

        padding: 8px 15px;
    }

    .site-plan-fee {
        font-size: 14px;

        margin-top: 30px;
    }

    .site-plan-popup {
        padding: 15px;
    }

    .site-plan-close {
        top: 10px;
        right: 15px;
    }
}

@media (max-width: 400px) {
    .site-plan-image {
        height: 250px;
    }
}

/* payment plan section start */
/* =========================
   PAYMENT SECTION
========================= */

.vay-payment {
    width: 100%;
    padding: 40px 20px;

    background: #fff;

    box-sizing: border-box;
}

.vay-payment-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.vay-payment-title {
    margin: 0;

    text-align: center;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
}

.vay-payment-divider {
    width: 70px;
    height: 3px;

    margin: 18px auto 45px;

    background: #003A70;

    border-radius: 10px;
}


/* =========================
   TABLE WRAPPER
========================= */

.vay-table-wrap {
    width: 100%;

    overflow-x: auto;

    border-radius: 12px;

    -webkit-overflow-scrolling: touch;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);
}


/* =========================
   TABLE
========================= */

.vay-pricing-table {
    width: 100%;

    min-width: 1300px;

    border-collapse: collapse;

    font-family: Arial, sans-serif;

    font-size: 14px;
}


/* HEADER */

.vay-pricing-table th {
    padding: 15px 12px;

    background:
        linear-gradient(180deg,
            #003A70,
            #002B52);

    color: #fff;

    border: 1px solid #002B52;

    text-align: center;

    white-space: nowrap;

    font-weight: 700;

    line-height: 1.4;
}


/* BODY */

.vay-pricing-table td {
    padding: 13px 12px;

    border: 1px solid #ececec;

    text-align: center;

    white-space: nowrap;

    background: #fff;

    color: #333;

    font-weight: 400;

    transition:
        background .3s ease,
        transform .3s ease;
}


/* ALTERNATE */

.vay-pricing-table tbody tr:nth-child(even) td {
    background: #fff9f2;
}


/* HOVER */

.vay-pricing-table tbody tr:hover td {
    background: #fff0df;
}


/* TOTAL */

.vay-pricing-table td:nth-child(9) {
    font-weight: 700;
    color: #155115;
}


/* =========================
   REGISTER BUTTON
========================= */

.vay-register {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    background: var(--primary);

    color: #fff !important;

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.vay-register:hover {

    color: #fff !important;

    transform: translateY(-2px);

    box-shadow:
        0 6px 16px rgba(0, 58, 112, .35);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .vay-payment {
        padding: 65px 20px;
    }

    .vay-payment-title {
        font-size: 36px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .vay-payment {
        padding: 50px 15px;
    }

    .vay-payment-title {
        font-size: 30px;
    }

    .vay-payment-divider {
        margin-bottom: 30px;
    }


    /* Remove horizontal table */

    .vay-table-wrap {
        overflow: visible;

        box-shadow: none;
    }

    .vay-pricing-table {
        min-width: 100%;

        display: block;
    }

    .vay-pricing-table thead {
        display: none;
    }

    .vay-pricing-table tbody {
        display: block;
    }


    /* CARD */

    .vay-pricing-table tr {
        display: block;

        margin-bottom: 22px;

        background: #fff;

        border: 1px solid #ddd;

        border-radius: 12px;

        overflow: hidden;

        box-shadow:
            0 5px 18px rgba(0, 0, 0, .08);
    }


    /* ROW */

    .vay-pricing-table td {
        width: 100%;

        display: flex;

        align-items: center;
        justify-content: space-between;

        box-sizing: border-box;

        padding: 13px 15px;

        border: 0;

        border-bottom: 1px solid #eee;

        white-space: normal;

        text-align: right;

        font-size: 14px;

        background: #fff !important;
    }


    /* LABEL */

    .vay-pricing-table td::before {
        content: attr(data-label);

        color: #333;

        font-weight: 700;

        text-align: left;

        margin-right: 15px;
    }


    /* ACTION */

    .vay-pricing-table td:last-child {
        display: block;

        padding: 15px;

        text-align: center;

        border-bottom: 0;
    }

    .vay-pricing-table td:last-child::before {
        display: none;
    }


    /* BUTTON */

    .vay-register {
        width: 100%;

        box-sizing: border-box;

        padding: 12px;

        font-size: 14px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {

    .vay-payment {
        padding: 45px 12px;
    }

    .vay-payment-title {
        font-size: 27px;
    }

    .vay-pricing-table td {
        padding: 12px;

        font-size: 13px;
    }
}

/* =========================
   ADDITIONAL CHARGES
========================= */

.vay-charges-section {
    width: 100%;
    padding: 30px 20px;

    background: #fff;

    box-sizing: border-box;
}

.vay-charges-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.vay-charges-heading {
    margin: 0;

    text-align: center;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
}

.vay-charges-divider {
    width: 70px;
    height: 3px;

    margin: 18px auto 45px;

    background: #003A70;

    border-radius: 10px;
}


/* =========================
   GRID
========================= */

.vay-charges-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}


/* =========================
   CARD
========================= */

.vay-charge-card {
    padding: 30px;

    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 10px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .06);

    box-sizing: border-box;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.vay-charge-card:hover {
    transform: translateY(-6px);

    border-color: #003A70;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .11);
}


/* =========================
   CARD TITLE
========================= */

.vay-charge-title {
    margin: 0 0 5px;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 28px;
    font-weight: 700;

    line-height: 1.3;
}


/* SUBTITLE */

.vay-charge-subtitle {
    margin: 0 0 18px;

    color: #666;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.5;
}


/* =========================
   DIVIDER
========================= */

.vay-charge-line {
    width: 100%;
    height: 2px;

    margin-bottom: 20px;

    background: #003A70;
}


/* =========================
   CHARGE ROW
========================= */

.vay-charge-row {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;
}

.vay-charge-row:last-child {
    margin-bottom: 0;
}


/* NAME */

.vay-charge-name {
    color: #333;

    font-family: Arial, sans-serif;

    font-size: 18px;

    white-space: nowrap;
}


/* DOTS */

.vay-charge-dots {
    flex: 1;

    min-width: 20px;

    border-bottom:
        2px dotted #bbb;

    transform: translateY(3px);
}


/* VALUE */

.vay-charge-value {
    color: #003A70;

    font-family: Arial, sans-serif;

    font-size: 22px;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================
   MAINTENANCE
========================= */

.vay-maintenance-price {
    margin: 20px 0 12px;

    color: #003A70;

    font-family: Arial, sans-serif;

    font-size: 34px;

    font-weight: 700;

    line-height: 1.3;
}

.vay-maintenance-price span {
    color: #333;

    font-size: 20px;

    font-weight: 600;
}

.vay-maintenance-note {
    margin: 0;

    color: #444;

    font-family: Arial, sans-serif;

    font-size: 20px;

    line-height: 1.5;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .vay-charges-section {
        padding: 65px 20px;
    }

    .vay-charges-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .vay-charge-card {
        padding: 25px;
    }

    .vay-charge-title {
        font-size: 24px;
    }

    .vay-charge-name {
        font-size: 16px;
    }

    .vay-charge-value {
        font-size: 20px;
    }

    .vay-maintenance-price {
        font-size: 30px;
    }

    .vay-maintenance-note {
        font-size: 18px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .vay-charges-section {
        padding: 50px 15px;
    }

    .vay-charges-heading {
        font-size: 30px;
    }

    .vay-charges-divider {
        margin-bottom: 30px;
    }

    .vay-charge-card {
        padding: 20px 18px;

        border-radius: 8px;
    }

    .vay-charge-title {
        font-size: 22px;
    }

    .vay-charge-subtitle {
        font-size: 14px;
    }

    .vay-charge-row {
        margin-bottom: 14px;

        gap: 7px;
    }

    .vay-charge-name {
        font-size: 14px;
    }

    .vay-charge-value {
        font-size: 18px;
    }

    .vay-charge-dots {
        border-width: 1px;
    }

    .vay-maintenance-price {
        font-size: 26px;
    }

    .vay-maintenance-price span {
        display: block;

        margin-top: 5px;

        font-size: 17px;
    }

    .vay-maintenance-note {
        font-size: 16px;
    }
}


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .vay-charges-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .vay-charge-card {
        padding: 18px 15px;
    }

    .vay-charge-name {
        font-size: 13px;
    }

    .vay-charge-value {
        font-size: 17px;
    }
}

/* =========================
   WHY CHOOSE US
========================= */

.why-choose-section {
    width: 100%;
    padding: 80px 20px;

    background: #fff;

    box-sizing: border-box;
}

.why-choose-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.why-choose-heading {
    text-align: center;

    margin-bottom: 50px;
}

.why-choose-heading h2 {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;

    color: #222;
}

.why-choose-heading span {
    display: block;

    width: 70px;
    height: 3px;

    margin: 18px auto 0;

    background: #003A70;

    border-radius: 10px;
}


/* =========================
   MAIN CONTENT
========================= */

.why-choose-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(0, 1fr);

    gap: 60px;

    align-items: center;
}


/* =========================
   MAP
========================= */

.why-choose-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 10px;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);
}

.why-map-image {
    display: block;

    width: 100%;
    height: auto;

    transition:
        transform .5s ease;
}

.why-choose-image:hover .why-map-image {
    transform: scale(1.04);
}


/* MAP LABEL */

.map-view-label {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform:
        translateX(-50%) translateY(10px);

    padding: 10px 20px;

    background: rgba(21, 81, 21, .9);

    color: #fff;

    border-radius: 30px;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 600;

    opacity: 0;

    transition:
        opacity .3s ease,
        transform .3s ease;

    pointer-events: none;
}

.why-choose-image:hover .map-view-label {
    opacity: 1;

    transform:
        translateX(-50%) translateY(0);
}


/* =========================
   FEATURES
========================= */

.why-choose-features {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 12px 35px;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* FEATURE */

.feature-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 10px 0;

    color: #333;

    font-family: Arial, sans-serif;

    font-size: 17px;
    font-weight: 500;

    line-height: 1.4;

    transition:
        color .3s ease,
        transform .3s ease;
}

.feature-item:hover {
    color: #003A70;
}


/* ICON */

.feature-icon {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #003A70;

    color: #fff;

    border-radius: 50%;

    font-size: 15px;
    font-weight: 700;

    line-height: 1;
}


/* =========================
   LIGHTBOX
========================= */

.why-map-lightbox {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(0, 0, 0, .88);

    box-sizing: border-box;
}

.why-map-lightbox.active {
    display: flex;
}

.why-map-lightbox img {
    display: block;

    max-width: 95vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 10px 50px rgba(0, 0, 0, .5);
}


/* CLOSE */

.why-map-close {
    position: absolute;

    top: 20px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 42px;

    line-height: 1;

    cursor: pointer;

    z-index: 2;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .why-choose-section {
        padding: 65px 20px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .why-choose-image {
        max-width: 700px;

        margin: 0 auto;
    }

    .why-choose-features {
        max-width: 750px;

        width: 100%;

        margin: 0 auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .why-choose-section {
        padding: 50px 16px;
    }

    .why-choose-heading {
        margin-bottom: 35px;
    }

    .why-choose-heading h2 {
        font-size: 30px;
    }

    .why-choose-heading span {
        margin-top: 15px;
    }


    /* FEATURES */

    .why-choose-features {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .feature-column {
        gap: 0;
    }

    .feature-item {
        padding: 11px 0;

        font-size: 15px;
    }

    .feature-icon {
        width: 25px;
        height: 25px;

        flex-basis: 25px;

        font-size: 13px;
    }


    /* MOBILE LABEL */

    .map-view-label {
        opacity: 1;

        bottom: 12px;

        padding: 8px 15px;

        font-size: 12px;

        transform:
            translateX(-50%) translateY(0);
    }


    /* LIGHTBOX */

    .why-map-lightbox {
        padding: 15px;
    }

    .why-map-close {
        top: 10px;
        right: 15px;

        font-size: 38px;
    }

}


/* SMALL MOBILE */

@media (max-width: 380px) {

    .why-choose-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .why-choose-heading h2 {
        font-size: 27px;
    }

    .feature-item {
        font-size: 14px;
    }

}

.video-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
}

.video-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.video-section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.video-line {
    width: 70px;
    height: 3px;
    background: #003A70;
    margin: 10px auto;
    border-radius: 50px;
}

.video-section-title p {
    margin-top: 15px;
    color: #666;
    font-size: 18px;
    line-height: 1.7;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

.video-head {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.video-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: #FFF4E8;
    color: #003A70;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.video-text h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.video-text p {
    margin-top: 6px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================
   VIDEO BOX
========================= */

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #1a1a1a;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.video-box video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    pointer-events: none;
}


/* =========================
   PLAY OVERLAY
========================= */

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.35);
    border-radius: 16px;

    transition: background 0.3s ease;
    z-index: 2;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.52);
}

.play-btn {
    width: 70px;
    height: 70px;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.play-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    fill: #003A70;
    margin-left: 4px;
}


/* =========================
   VIDEO MODAL
========================= */

.vmodal-backdrop {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.88);

    z-index: 99999;

    justify-content: center;
    align-items: center;

    padding: 20px;

    animation: vfadeIn 0.25s ease;
}

.vmodal-backdrop.active {
    display: flex;
}

@keyframes vfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.vmodal-box {
    position: relative;

    width: 100%;
    max-width: 900px;

    border-radius: 18px;
    overflow: hidden;

    background: #000;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

    animation: vslideUp 0.3s ease;
}

@keyframes vslideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.vmodal-box video {
    width: 100%;
    display: block;
    max-height: 80vh;
    background: #000;
}


/* =========================
   CLOSE BUTTON
========================= */

.vmodal-close {
    position: absolute;

    top: 12px;
    right: 14px;

    width: 38px;
    height: 38px;

    background: rgba(255, 255, 255, 0.15);

    border: none;
    border-radius: 50%;

    color: #fff;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 10;

    transition: background 0.2s ease;
}

.vmodal-close:hover {
    background: rgba(0, 58, 112, 0.85);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-section-title h2 {
        font-size: 34px;
    }

    .video-text h3 {
        font-size: 22px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .video-section {
        padding: 0 15px;
        margin: 40px auto;
    }

    .video-card {
        padding: 18px;
        border-radius: 16px;
    }

    .video-section-title h2 {
        font-size: 28px;
    }

    .video-line {
        width: 90px;
    }

    .video-section-title p {
        font-size: 15px;
        line-height: 1.6;
    }

    .video-head {
        gap: 12px;
    }

    .video-text h3 {
        font-size: 20px;
    }

    .video-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .video-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 22px;
    }

    .video-box {
        aspect-ratio: 16 / 9;
    }

    .play-btn {
        width: 55px;
        height: 55px;
    }

    .play-btn svg {
        width: 22px;
        height: 22px;
    }

    .vmodal-box {
        border-radius: 12px;
    }
}

/* =========================
   LOCATION SECTION
========================= */

.location-section {
    width: 100%;
    padding: 30px 20px;
    background: #fff;
    box-sizing: border-box;
}

.location-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.location-heading {
    text-align: center;
    margin-bottom: 45px;
}

.location-heading h2 {
    margin: 0;
    color: #222;
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.location-heading-line {
    width: 70px;
    height: 3px;
    margin: 15px auto;
    background: #003A70;
    border-radius: 10px;
}

.location-heading p {
    margin: 0;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 18px;
}


/* =========================
   MAIN CONTENT
========================= */

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


/* =========================
   MAP
========================= */

.location-map {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* =========================
   HIGHLIGHTS
========================= */

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 20px;

    background: #fff;

    border: 1px solid #e5e5e5;
    border-radius: 12px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.location-card:hover {
    transform: translateX(6px);

    border-color: #003A70;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .10);
}


/* =========================
   ICON
========================= */

.location-icon {
    width: 64px;
    height: 64px;

    min-width: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef4ef;

    border-radius: 50%;
}

.location-icon svg {
    width: 42px;
    height: 42px;

    fill: #1f432d;
}


/* =========================
   TEXT
========================= */

.location-card-text h3 {
    margin: 3px 0 8px;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 21px;
    font-weight: 700;
}

.location-card-text p {
    margin: 0;

    color: #666;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================
   FEE
========================= */

.location-fee {
    margin-top: 45px;

    text-align: center;

    color: #333;

    font-family: Arial, sans-serif;

    font-size: 17px;
}


/* =========================
   BUTTON
========================= */

.location-cta {
    display: flex;
    justify-content: center;

    margin-top: 20px;
}

.location-cta a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 28px;

    background: var(--primary);

    color: #fff;

    border-radius: 6px;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 15px;
    font-weight: 600;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.location-cta a:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 58, 112, .3);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .location-section {
        padding: 65px 20px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .location-map {
        height: 450px;
    }

    .location-highlights {
        max-width: 750px;
        width: 100%;
        margin: 0 auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .location-section {
        padding: 50px 15px;
    }

    .location-heading {
        margin-bottom: 30px;
    }

    .location-heading h2 {
        font-size: 30px;
    }

    .location-heading p {
        font-size: 16px;
    }

    .location-map {
        height: 330px;
        border-radius: 10px;
    }

    .location-card {
        gap: 13px;
        padding: 16px;
        border-radius: 10px;
    }

    .location-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .location-icon svg {
        width: 32px;
        height: 32px;
    }

    .location-card-text h3 {
        font-size: 18px;
        margin-top: 1px;
    }

    .location-card-text p {
        font-size: 14px;
        line-height: 1.55;
    }

    .location-fee {
        margin-top: 30px;
        font-size: 14px;
    }

    .location-cta a {
        width: 100%;
        max-width: 260px;
        padding: 12px 20px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .location-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .location-card {
        padding: 14px;
    }

    .location-card-text h3 {
        font-size: 17px;
    }

    .location-card-text p {
        font-size: 13px;
    }
}

/* =========================
   FOOTER
========================= */

.site-footer {
    width: 100%;
    background: var(--primary);
    color: #fff;
    font-family: Arial, sans-serif;
}


/* MAIN CONTAINER */

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 65px 25px;

    display: grid;
    grid-template-columns:
        1.4fr .8fr 1fr;

    gap: 70px;
}


/* =========================
   ABOUT
========================= */

.footer-logo {
    width: 210px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 22px;
}

.footer-about p {
    max-width: 400px;

    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   HEADINGS
========================= */

.footer-column h3 {
    margin: 0;

    font-size: 23px;
    font-weight: 700;

    color: #fff;
}

.footer-line {
    width: 48px;
    height: 3px;

    margin: 12px 0 22px;

    background: #003A70;
    border-radius: 10px;
}


/* =========================
   LINKS
========================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, .78);

    text-decoration: none;

    font-size: 15px;

    transition:
        color .3s ease,
        padding-left .3s ease;
}

.footer-links a:hover {
    padding-left: 6px;
}


/* =========================
   CONTACT
========================= */

.footer-contact {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 20px;

    color: rgba(255, 255, 255, .8);

    text-decoration: none;

    font-size: 15px;

    line-height: 1.6;

    transition: color .3s ease;
}


/* ICON */

.footer-icon {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .1);

    border-radius: 50%;

    transition:
        background .3s ease,
        transform .3s ease;
}

.footer-icon svg {
    width: 19px;
    height: 19px;

    fill: var(--white);
}

.footer-icon svg:hover {
    fill: var(--primary);
}

.footer-icon:hover  {
    background: var(--white);
    transform: translateY(-2px);
}


/* =========================
   BOTTOM
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);

    padding: 20px 20px calc(20px + var(--marquee-height, 48px));

    text-align: center;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .7);

    text-decoration: none;

    font-size: 14px;

    transition: color .3s ease;
}

.footer-bottom span {
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #fff;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-about p {
        max-width: 650px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr;

        padding: 45px 20px;

        gap: 35px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-logo {
        width: 180px;
        margin-bottom: 18px;
    }

    .footer-about p {
        font-size: 14px;
        line-height: 1.7;
    }

    .footer-column h3 {
        font-size: 21px;
    }

    .footer-contact {
        font-size: 14px;
        margin-bottom: 17px;
    }

    .footer-bottom {
        padding: 18px 12px calc(18px + var(--marquee-height, 44px));
    }

    .footer-bottom a {
        font-size: 12px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-contact {
        gap: 10px;
    }

    .footer-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .footer-icon svg {
        width: 17px;
        height: 17px;
    }
}

/* Fallback for pages without footer */
body:has(.site-marquee):not(:has(.site-footer)) {
    padding-bottom: var(--marquee-height, 48px);
}

/* =========================
   STICKY FOOTER MARQUEE
========================= */

.site-marquee {
    position: fixed;

    left: 0;
    bottom: 0;

    width: 100%;

    height: var(--marquee-height, 48px);

    background: var(--primary);

    color: #fff;

    overflow: hidden;

    z-index: 99999;

    display: flex;
    align-items: center;

    box-sizing: border-box;

    box-shadow:
        0 -4px 15px rgba(0, 0, 0, .15);
}


/* MOVING TRACK */

.site-marquee-track {
    display: flex;

    align-items: center;

    width: max-content;

    white-space: nowrap;

    animation:
        siteMarqueeMove 25s linear infinite;
}


/* TEXT */

.site-marquee-track span {
    display: inline-flex;

    align-items: center;

    font-family: Arial, sans-serif;

    font-size: 15px;

    font-weight: 600;

    padding: 0 35px;

    position: relative;
}


/* SEPARATOR */

.site-marquee-track span:not(:last-child)::after {
    content: "•";

    position: absolute;

    right: -2px;

    color: #fff;

    font-size: 20px;
}


/* ANIMATION */

@keyframes siteMarqueeMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================
   HOVER PAUSE
========================= */

.site-marquee:hover .site-marquee-track {
    animation-play-state: paused;
}


/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .site-marquee {
        height: var(--marquee-height, 44px);
    }

    .site-marquee-track {
        animation-duration: 20s;
    }

    .site-marquee-track span {
        font-size: 14px;

        padding: 0 25px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .site-marquee {
        height: var(--marquee-height, 42px);
    }

    .site-marquee-track {
        animation-duration: 16s;
    }

    .site-marquee-track span {
        font-size: 12px;

        padding: 0 20px;
    }

    .site-marquee-track span:not(:last-child)::after {
        font-size: 16px;
    }

}

/* =========================
   TERMS SECTION
========================= */

.terms-section {
    width: 100%;
    background: #ffffff;
    padding: 70px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.terms-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* TITLE */

.terms-title {
    margin: 0;
    text-align: center;

    color: #222;
    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
}


/* DIVIDER */

.terms-divider {
    width: 70px;
    height: 3px;

    margin: 15px auto 45px;

    background: #003A70;
    border-radius: 20px;
}


/* CONTENT */

.terms-content {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
}

.terms-content p {
    margin: 0 0 18px;
}

.terms-content strong {
    color: #222;
    font-weight: 700;
}


/* HEADINGS */

.terms-content h2 {
    margin: 35px 0 12px;

    color: #222;

    font-size: 23px;
    font-weight: 700;

    line-height: 1.4;
}


/* LIST */

.terms-content ul {
    margin: 10px 0 22px;
    padding-left: 25px;
}

.terms-content li {
    margin-bottom: 8px;
    padding-left: 5px;
}


/* LIST BULLET */

.terms-content li::marker {
    color: #003A70;
}


/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .terms-section {
        padding: 50px 20px;
    }

    .terms-title {
        font-size: 34px;
    }

    .terms-divider {
        margin-bottom: 35px;
    }

    .terms-content {
        font-size: 15px;
        line-height: 1.75;
    }

    .terms-content h2 {
        font-size: 21px;
        margin-top: 30px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .terms-section {
        padding: 40px 15px;
    }

    .terms-title {
        font-size: 28px;
    }

    .terms-divider {
        width: 55px;
        height: 3px;
        margin: 12px auto 28px;
    }

    .terms-content {
        font-size: 14px;
        line-height: 1.7;
    }

    .terms-content p {
        margin-bottom: 15px;
    }

    .terms-content h2 {
        font-size: 19px;
        margin: 27px 0 10px;
    }

    .terms-content ul {
        padding-left: 20px;
        margin-bottom: 18px;
    }

    .terms-content li {
        margin-bottom: 6px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 360px) {

    .terms-section {
        padding: 35px 12px;
    }

    .terms-title {
        font-size: 25px;
    }

    .terms-content {
        font-size: 13.5px;
    }

    .terms-content h2 {
        font-size: 18px;
    }

}

/* =========================
   APPLY SECTION
========================= */

.apply-section {
    width: 100%;
    padding: 70px 20px;
    background: #fff8f0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.apply-container {
    max-width: 1200px;
    margin: auto;
}


/* =========================
   HEADING
========================= */

.apply-heading {
    text-align: center;
    margin-bottom: 45px;
}

.apply-heading h1 {
    margin: 0;
    color: #222;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.apply-heading p {
    margin: 12px 0 0;
    color: #666;
    font-size: 17px;
}


/* =========================
   LAYOUT
========================= */

.apply-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 45px;
    align-items: start;
}


/* =========================
   PAYMENT / QR SECTION
========================= */

.apply-image {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    padding: 26px 22px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ede8dc;
    height: auto;
}

.payment-qr-container {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 20px auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    text-align: center;
}

.payment-qr-container img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 8px;
}

.bank-details-box {
    width: 100%;
    background: #fdfbf7;
    border: 1px solid #e8e2d4;
    border-radius: 12px;
    padding: 16px 18px;
    box-sizing: border-box;
}

.bank-detail-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ded8c9;
}

.bank-detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 15px;
    font-weight: 700;
    color: #003A70;
    word-break: break-all;
}


/* =========================
   FORM BOX
========================= */

.apply-form-box {
    padding: 35px;
    background: #fff;
    border-radius: 16px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .08);

    box-sizing: border-box;
}


/* =========================
   SECTION TITLE
========================= */

.form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0 0 25px;
    padding-bottom: 12px;

    border-bottom: 1px solid #eee;
}

.form-section-title span {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #003A70;
    color: #fff;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 700;
}

.form-section-title h2 {
    margin: 0;
    color: #222;
    font-size: 21px;
    font-weight: 700;
}


/* =========================
   FORM GRID
========================= */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

    margin-bottom: 35px;
}

.form-group {
    min-width: 0;
}

.form-group.full {
    grid-column: 1 / -1;
}


/* =========================
   LABEL
========================= */

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #333;

    font-size: 14px;
    font-weight: 600;
}

.form-group label span {
    color: #003A70;
}


/* =========================
   INPUTS
========================= */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 13px 14px;

    border: 1px solid #ddd;

    border-radius: 7px;

    outline: none;

    background: #fff;

    color: #333;

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.form-group input,
.form-group select {
    height: 48px;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #003A70;

    box-shadow:
        0 0 0 3px rgba(0, 58, 112, .12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}


/* =========================
   CONSENT
========================= */

.consent-box {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin: 5px 0 25px;

    color: #555;

    font-size: 13px;
    line-height: 1.6;

    cursor: pointer;
}

.consent-box input {
    position: absolute;
    opacity: 0;
}

.custom-check {
    width: 19px;
    height: 19px;

    min-width: 19px;

    margin-top: 1px;

    border: 1px solid #ccc;
    border-radius: 4px;

    background: #fff;

    box-sizing: border-box;

    transition: .2s ease;
}

.consent-box input:checked+.custom-check {
    background: #003A70;
    border-color: #003A70;
}

.consent-box input:checked+.custom-check::after {
    content: "✓";

    display: flex;

    justify-content: center;
    align-items: center;

    height: 100%;

    color: #fff;

    font-size: 13px;
    font-weight: 700;
}


/* =========================
   SUBMIT
========================= */

.apply-submit {
    width: 100%;

    min-height: 50px;

    border: 0;

    border-radius: 7px;

    background: #003A70;

    color: #fff;

    font-family: inherit;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.apply-submit:hover {
    background: #002B52;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 58, 112, .25);
}

.apply-submit:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}


/* =========================
   MESSAGE
========================= */

.form-message {
    display: none;

    margin-top: 15px;

    padding: 12px 15px;

    border-radius: 6px;

    font-size: 14px;
}

.form-message.success {
    display: block;

    background: #eaf7ed;
    color: #28733a;
}

.form-message.error {
    display: block;

    background: #fff0f0;
    color: #b42323;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .apply-section {
        padding: 60px 20px;
    }

    .apply-layout {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }

    .apply-form-box {
        padding: 28px;
    }

    .apply-heading h1 {
        font-size: 34px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .apply-section {
        padding: 45px 15px;
    }

    .apply-heading {
        margin-bottom: 30px;
    }

    .apply-heading h1 {
        font-size: 29px;
    }

    .apply-heading p {
        font-size: 15px;
        line-height: 1.6;
    }


    .apply-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    /* PAYMENT / QR ON MOBILE */

    .apply-image {
        height: auto;
        order: 2;
        padding: 20px 16px;
    }

    .apply-form-box {
        order: 2;
        padding: 22px 18px;
        border-radius: 12px;
    }


    .form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
        margin-bottom: 30px;
    }

    .form-group.full {
        grid-column: auto;
    }


    .form-section-title {
        margin-bottom: 20px;
    }

    .form-section-title h2 {
        font-size: 19px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

    .apply-section {
        padding: 35px 12px;
    }

    .apply-heading h1 {
        font-size: 25px;
    }

    .apply-form-box {
        padding: 20px 15px;
    }

    .apply-image {
        height: auto;
        padding: 16px 12px;
    }

    .form-group input,
    .form-group select {
        height: 46px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .consent-box {
        font-size: 12px;
    }

}