:root {
    --bg-header: #F8FAFC;
    --green-dark: #1E40AF;
    --green: #1A7A35;
    --green-mid: #2E9E50;
    --green-light: #4DC472;
    --green-pale: #E8F5EC;
    --blue-dark: #0C2C7A;
    --blue: #1A3FA0;
    --blue-mid: #2856CC;
    --blue-light: #5B82E8;
    --blue-pale: #EBF0FC;
    --white: #FFFFFF;
    --off-white: #F6F9F7;
    --text: #0D2010;
    --text-muted: #4A6455;
    --border: rgba(10, 74, 31, 0.12);
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --r: 12px;
    --rs: 8px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--bg-header);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    border-bottom: 3px solid var(--green-mid)
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.nav-logo-text {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.1;
    letter-spacing: 0.02em
}

.nav-logo-text span {
    color: var(--green-light);
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center
}

.mobile-menu-panel {
    display: none;
}

.nav-links a {
    color: var(--blue-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color .2s
}

.nav-links a:hover {
    color: #000
}

.nav-cta {
    background: var(--green-mid) !important;
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: background .2s !important
}

.nav-cta:hover {
    background: var(--green-light) !important;
    color: var(--green-dark) !important
}

.nav-links a.nav-cta {
    background: var(--green-mid) !important;
    color: #fff !important;
    box-shadow: none;
}

.nav-links a.nav-cta:hover {
    background: var(--green-light) !important;
    color: var(--green-dark) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px
}

.nav-logo img {
    width: 100px;
    height: 95px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-dark)
}

.nav-phone a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-dark);
    text-decoration: none
}

.nav-phone .phone-icon {
    font-size: 16px;
    line-height: 1;
    transition: all 0.3s ease;
}
.phone-icon:hover{
text-shadow:
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 40px #00ffff;
}
/* Touch/Click effect for mobile */
.phone-icon:active{
    text-shadow:
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 40px #00ffff;
}
.nav-years-badge {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-left: 12px;
    animation:logo 3s infinite;
}
@keyframes logo
{
    
    0%{
        transform:rotatey(0deg);
    }
    50%{
        transform:rotatey(360deg);
    }
    100%{
        transform:rotatey(360deg);
    }
}

/* ── LOGO SVG BADGE ── */
.logo-badge {
    width: 46px;
    height: 46px;
    flex-shrink: 0
}

/* ── HERO ── */
.hero {
    background: var(--green-dark);
    padding: 60px 5% 52px;
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 52px;
    align-items: start;
    min-height: 86vh;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(26, 122, 53, 0.12);
    pointer-events: none
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(40, 86, 204, 0.08);
    pointer-events: none
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(77, 196, 114, 0.15);
    border: 1px solid rgba(77, 196, 114, 0.35);
    color: #7AE0A0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 22px;
    animation: fadeUp .6s ease both
}

.hero-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--green-light);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    flex-shrink: 0
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .55;
        transform: scale(.8)
    }
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(50px, 7vw, 80px);
    font-weight: 900;
    line-height: .94;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -.01em;
    margin-bottom: 10px;
    animation: fadeUp .6s ease .1s both
}

.hero h1 em {
    color: var(--green-light);
    font-style: normal;
    display: block
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .68);
    max-width: 500px;
    margin-bottom: 12px;
    line-height: 1.72;
    animation: fadeUp .6s ease .18s both
}

.hero-sub strong {
    color: #fff
}

.hero-vision {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 28px;
    animation: fadeUp .6s ease .24s both
}

.hero-vision::before {
    content: '"';
    font-size: 20px;
    color: var(--green-light);
    font-style: normal;
    line-height: 1
}

.hero-vision::after {
    content: '"';
    font-size: 20px;
    color: var(--green-light);
    font-style: normal;
    line-height: 1
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fadeUp .6s ease .3s both
}

.btn-primary {
    background: var(--green-mid);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--rs);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
    border: none;
    cursor: pointer;
    font-family: var(--font-body)
}

.btn-primary:hover {
    background: var(--green-light);
    color: var(--green-dark);
    transform: translateY(-1px)
}

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--rs);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, .28);
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .2s
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .08)
}

.hero-proof {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    animation: fadeUp .6s ease .38s both
}

.proof-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .6)
}

/* ── HERO FORM ── */
.form-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    position: sticky;
    top: 78px;
    animation: fadeLeft .7s ease .15s both;
    border-top: 4px solid var(--green-mid);
    box-shadow: 0 4px 32px rgba(10, 74, 31, .18)
}

.form-head {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
    text-transform: uppercase;
    margin-bottom: 3px
}

.form-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px
}

.fg {
    margin-bottom: 13px
}

.fg label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 5px
}

.fg input,
.fg select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--rs);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--off-white);
    transition: border-color .2s;
    appearance: none;
    -webkit-appearance: none
}

.fg input:focus,
.fg select:focus {
    outline: none;
    border-color: var(--green-mid);
    background: #fff
}

.mode-row {
    display: flex;
    gap: 7px
}

.mode-opt {
    flex: 1;
    padding: 10px 6px;
    border: 1.5px solid var(--border);
    border-radius: var(--rs);
    background: var(--off-white);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all .2s;
    color: var(--text-muted);
    font-family: var(--font-body)
}

.mode-opt.on,
.mode-opt:hover {
    border-color: var(--green-mid);
    background: var(--green-pale);
    color: var(--green-dark)
}

.form-btn {
    width: 100%;
    background: var(--green-dark);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: var(--rs);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-top: 6px
}

.form-btn:hover {
    background: var(--green-mid);
    transform: translateY(-1px)
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 9px
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--green-mid);
    padding: 26px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.ti {
    text-align: center;
    padding: 8px 12px;
    position: relative
}

.ti+.ti::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, .28)
}

.tnum {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em
}

.tlbl {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    margin-top: 3px
}

/* ── COMMON SECTION ── */
section {
    padding: 78px 5%
}

.lbl {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green-mid);
    margin-bottom: 10px
}

.sh {
    font-family: var(--font-head);
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 12px
}

.sh em {
    color: var(--green-mid);
    font-style: normal
}
.sha {
    font-family: var(--font-head);
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 12px
}

.sha em {
    color: var(--green-mid);
    font-style: normal
}

.ss {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.72
}

/* ── COURSES ── */
.courses-bg {
    background: var(--off-white)
}

.courses-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 38px;
    flex-wrap: wrap;
    gap: 18px
}

.cgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(278px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.cc {
    background: #fff;
    border-radius: var(--r);
    padding: 22px;
    border: 1.5px solid var(--border);
    transition: border-color .2s, transform .2s;
    position: relative;
    overflow: hidden
}

.cc:hover {
    border-color: var(--green-mid);
    transform: translateY(-3px)
}

.cc.hot {
    border-color: var(--green-mid);
    border-width: 2px
}

.cc.active {
    border-color: var(--green-mid);
    border-width: 2px;
    background: rgba(46, 158, 80, 0.05);
    transform: translateY(-3px)
}

.hot-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--green-mid);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 4px 10px;
    border-radius: 0 var(--r) 0 var(--rs)
}

.ci {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 22px
}

.cn {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--green-dark);
    line-height: 1.1;
    margin-bottom: 11px
}

.cmeta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px
}

.pill {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--off-white);
    color: var(--text-muted);
    border: 1px solid var(--border)
}

.pill.mode {
    background: #E8F5EC;
    color: #0A4A1F;
    border-color: #A8D8B4
}

.ca {
    display: flex;
    gap: 9px
}

.benroll {
    flex: 1;
    background: var(--green-dark);
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--rs);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background .2s;
    border: none;
    cursor: pointer;
    font-family: var(--font-body)
}

.benroll:hover {
    background: var(--green-mid)
}

.bsyl {
    padding: 10px 13px;
    border-radius: var(--rs);
    border: 1.5px solid var(--border);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: border-color .2s, color .2s;
    cursor: pointer;
    font-family: var(--font-body);
    white-space: nowrap
}

.bsyl:hover {
    border-color: var(--green-mid);
    color: var(--green-dark)
}

/* ── USP ── */
.usp-bg {
    background: var(--green-dark)
}

.usp-bg .sh {
    color: #fff !important;
}
.usp-bg .sh em {
    color: #fff !important;
}
.usp-bg .sha {
    color: #fff !important;
}
.usp-bg .sha em {
    color: #fff !important;
}
.usp-bg .ss {
    color: rgba(255, 255, 255, .58) !important;
}

.ugrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
    gap: 14px;
    margin-top: 46px
}

.uc {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r);
    padding: 22px 18px;
    transition: background .25s ease, border-color .25s ease, transform .2s ease, box-shadow .2s ease;
    transform: translateZ(0);
    will-change: transform, box-shadow;
    touch-action: manipulation;
}

.uc:hover,
.uc:focus-within,
.uc:active {
    background: rgba(77, 196, 114, .12);
    border-color: rgba(77, 196, 114, .35);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

@media (hover: none) {
    .uc:hover {
      transform: none;
      box-shadow: none;
    }
    .uc:active {
      transform: translateY(-2px) scale(1.005);
    }
}

.ui {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
    color: #4DC472
}

.ut {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px
}

.uc-img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--r) - 4px);
    margin-bottom: 16px;
    object-fit: cover;
    display: block;
}

.ud {
    font-size: 13px;
    color: rgba(255, 255, 255, .52);
    line-height: 1.6
}

.gallery-section {
    background: #F7F9FF;
    padding: 54px 5% 52px;
}

.gallery-section .sh {
    color: var(--blue-dark);
}

.gallery-section .ss {
    color: var(--text-muted);
    max-width: 620px;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.gallery-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar {
    height: 10px;
}

.gallery-track::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .18);
    border-radius: 10px;
}

.gallery-card {
    width: 260px;
    min-width: 260px;
    /*height: 240px;*/
    flex: 0 0 auto;
    border-radius: var(--r);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    outline: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, .11);
}

.gallery-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.gallery-card figcaption {
    padding: 14px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-dark);
    background: #fff;
}

.gallery-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #fff;
    color: var(--blue-dark);
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.gallery-arrow:hover {
    transform: scale(1.05);
    border-color: rgba(15, 23, 42, .25);
}

.gallery-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 400;
}

.gallery-modal.open {
    display: flex;
}

.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 16, 43, .65);
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 760px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .25);
    z-index: 1;
    padding: 14px;
}

.gallery-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, .08);
    color: var(--blue-dark);
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

.gallery-modal img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    background: #f7f9ff;
}

.gallery-modal-caption {
    padding: 16px 16px 10px;
    font-size: 15px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-arrow {
        justify-self: stretch;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .gallery-card {
        min-width: 170px;
    }

    .gallery-modal-content {
        width: calc(100vw - 32px);
    }
}

/* ── REVIEWS ── */
#reviews {
    width: 100%;
    padding: 60px 5%;
}

#reviews .rev {
    max-width: 760px;
    margin: 0 auto;
}

#reviews .rgrid {
    display: grid;
    width: min(100%, 1220px);
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
    margin-top: 46px;
}

#reviews .rgrid {
    display: grid;
    width: 100%;
    max-width: 1220px;
    min-width: 0;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
    margin-top: 46px;
}

#reviews .rgrid > * {
    width: 100%;
    min-width: 0;
}

#reviews .reviews-widget,
#reviews .reviews-widget > div,
#reviews .elfsight-app-a5a5d015-06fb-40ca-a74c-de7fbbfe9895,
#reviews .elfsight-app-a5a5d015-06fb-40ca-a74c-de7fbbfe9895 *,
#reviews iframe {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

#reviews .rev[style] {
    max-width: 100%;
}

@media (max-width: 900px) {
    #reviews {
        padding: 42px 4%;
    }

    #reviews .rev {
        padding: 0;
    }
}

@media (max-width: 640px) {
    #reviews .rev {
        text-align: center;
    }

    #reviews .rev h2,
    #reviews .rev p {
        margin: 0 auto;
    }
}

.rc {
    background: var(--off-white);
    border-radius: var(--r);
    padding: 22px;
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden
}

.rc::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--font-head);
    font-size: 70px;
    font-weight: 900;
    color: var(--green-mid);
    opacity: .12;
    line-height: 1
}

.rstars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px
}

.star {
    color: #F59E0B;
    font-size: 15px
}

.rq {
    font-size: 14px;
    line-height: 1.72;
    color: var(--text);
    margin-bottom: 18px;
    position: relative;
    z-index: 1
}

.rauth {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-top: 14px;
    border-top: 1px solid var(--border)
}

.ravatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.rname {
    font-weight: 600;
    font-size: 14px;
    color: var(--green-dark)
}

.rcourse {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px
}

.routcome {
    display: inline-block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #0A4A1F;
    background: #C8EDD0;
    padding: 2px 8px;
    border-radius: 10px
}

.gsource {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px
}

/* ── VISION BAND ── */
.vision-band {
    background: var(--blue-dark);
    padding: 44px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    text-align: center
}

.vision-text {
    font-family: var(--font-head);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .02em
}

.vision-text em {
    color: var(--green-light);
    font-style: normal
}

.vision-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    margin-top: 6px
}

/* ── MID CTA ── */
.mid-cta {
    background: var(--green-pale);
    border-top: 3px solid var(--green-mid);
    border-bottom: 3px solid var(--green-mid);
    padding: 56px 5%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center
}

.mct {
    font-family: var(--font-head);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--green-dark);
    line-height: 1.05
}

.mcs {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 7px
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.astats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px
}

.astat {
    background: var(--off-white);
    border-radius: var(--rs);
    padding: 16px;
    border-left: 4px solid var(--green-mid)
}

.anum {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 900;
    color: var(--green-mid);
    line-height: 1
}

.albl {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 3px
}

.about-panel {
    background: var(--green-dark);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.ap-title {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px
}

.mode-box {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--rs);
    padding: 15px
}

.mode-box-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px
}

.online .mode-box-title {
    color: #6EC6FF
}

.offline .mode-box-title {
    color: #A5D6A7
}

.mf {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, .68);
    margin-bottom: 6px
}

.mf::before {
    content: '✓';
    color: var(--green-light);
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0
}

/* ── FOOTER ── */
.foot {
    background: var(--green-dark);
    padding: 60px 5% 0
}

.fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 44px
}

.fbrand {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px
}

.fbrand em {
    color: var(--green-light);
    font-style: normal
}

.fdesc {
    font-size: 14px;
    color: rgba(255, 255, 255, .52);
    line-height: 1.7;
    margin-bottom: 18px
}

.fcol-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--green-light);
    margin-bottom: 14px
}

.flinks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.flinks a {
    font-size: 14px;
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
    transition: color .2s
}

.flinks a:hover {
    color: #fff
}

.fci {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgba(255, 255, 255, .68)
}

.fbot {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .38)
}

/* ── WHATSAPP FLOAT ── */
.wa {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 13px 19px 13px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: transform .2s;
    animation: fadeUp 1s ease .8s both
}

.wa:hover {
    transform: translateY(-2px)
}

.wa svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0
}

/* ── FLOATING SOCIAL MEDIA ICONS ── */
.floating-social {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeUp 1s ease .8s both
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite
}

.social-icon svg {
    width: 24px;
    height: 24px
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    animation-delay: 0s
}

.social-icon.instagram:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
    animation: none
}

.social-icon.facebook {
    background: #1877F2;
    animation-delay: 0.1s
}

.social-icon.facebook:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
    animation: none
}

.social-icon.youtube {
    background: #FF0000;
    animation-delay: 0.2s
}

.social-icon.youtube:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    animation: none
}

.social-icon.whatsapp {
    background: #25D366;
    animation-delay: 0.3s
}

.social-icon.whatsapp:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    animation: none
}

.social-icon.call {
    background: #1E40AF;
    animation-delay: 0.4s
}

.social-icon.call:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
    animation: none
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px)
    }
    50% {
        transform: translateY(-12px)
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(22px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

/* ── X-AXIS ROTATION ── */
@keyframes rotateX {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(360deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

.hero-eyebrow.rotating {
    animation: rotateX 0.8s ease-in-out;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ── GLOW EFFECT ── */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(77, 196, 114, 0.5),
                    0 0 10px rgba(77, 196, 114, 0.3),
                    inset 0 0 5px rgba(77, 196, 114, 0.1);
        border-color: var(--green-mid);
    }
    50% {
        box-shadow: 0 0 15px rgba(77, 196, 114, 0.8),
                    0 0 25px rgba(77, 196, 114, 0.5),
                    inset 0 0 8px rgba(77, 196, 114, 0.2);
        border-color: var(--green-light);
    }
}

.fg input.glowing {
    animation: glow 1.5s ease-in-out;
}

.rev {
    /*opacity: 0;*/
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease
}

.rev.vis {
    opacity: 1;
    transform: translateY(0)
}

/* ── RESPONSIVE ── */
@media(max-width:920px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 48px
    }

    .form-card {
        position: static
    }

    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 22px 5%
    }

    .ti+.ti::before {
        display: none
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .fgrid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .mid-cta {
        grid-template-columns: 1fr
    }

    /* Mobile header adjustments: keep nav bar color, but make logo area and headings distinct */
    nav {
        background: var(--bg-header);
        border-bottom-color: var(--green-mid);
    }

    /* Reduce logo size on mobile and ensure phone is visible between logo and toggle */
    .nav-logo img {
        width: 70px;
        height: 70px;
    }

    .nav-logo {
        gap: 8px
    }

    .nav-years-badge {
        height: 45px;
        width: auto;
        margin-left: 8px;
    }

    .nav-phone {
        display: flex;
        align-items: center;
        order: 1;
        margin-left: 8px;
        white-space: nowrap;
        font-size: 12px
    }

    .nav-phone a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap
    }

    .nav-phone .phone-icon {
        font-size: 14px;
        flex-shrink: 0
    }

    .nav-toggle {
        order: 2
    }

    /* Ensure text/icons are readable on light nav */
    .nav-logo-text,
    .nav-logo-text span,
    .nav-phone a {
        color: var(--blue-dark);
        font-size:14px;
        padding-top:5px;
    }

    .nav-toggle span {
        background: var(--blue-dark);
        transition: all 0.3s ease;
    }

    .nav-links.open ~ .nav-toggle span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }

    .nav-links.open ~ .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-links.open ~ .nav-toggle span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }

    .nav-links {
        display: none
    }

    .nav-toggle {
        display: flex
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 150px;
        right: 0;
        /*height: calc(100vh - 90px);*/
        background: rgba(15, 23, 42, 0.22);
        backdrop-filter: blur(16px);
        padding: 0;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.open .mobile-menu-panel {
        animation: slideUp 0.3s ease;
    }

    @keyframes slideUp {
        from {
            transform: scale(0.95) translateY(-10px);
            opacity: 0;
        }
        to {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
    }

    .nav-links.open a {
        animation: fadeInSlide 0.4s ease forwards;
    }

    .nav-links.open li:nth-child(1) a { animation-delay: 0.05s; }
    .nav-links.open li:nth-child(2) a { animation-delay: 0.1s; }
    .nav-links.open li:nth-child(3) a { animation-delay: 0.15s; }
    .nav-links.open li:nth-child(4) a { animation-delay: 0.2s; }

    @keyframes fadeInSlide {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mobile-menu-panel {
        display: none;
    }

    .nav-links.open .mobile-menu-panel {
        display: block !important;
        position: relative;
        z-index: 1000;
    }

    .mobile-menu-panel {
        background: #FFFFFF;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    .mobile-menu-top {
        display: none;
    }

    .mobile-menu-title {
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .mobile-menu-close {
        border: none;
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        padding: 10px 14px;
        border-radius: 14px;
    }

    .mobile-menu-brand,
    .mobile-menu-brand-title,
    .mobile-menu-brand-sub,
    .mobile-menu-stats,
    .mobile-menu-centers {
        display: none;
    }

    .mobile-menu-label {
        display: block;
        margin: 18px 20px 12px;
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #64748B;
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        background: #FFFFFF;
    }

    .btn-mobile-cta,
    .btn-mobile-whatsapp {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        border-radius: 0;
        text-decoration: none;
        font-weight: 700;
        padding: 16px 18px;
        width: 100%;
        border: none;
        border-bottom: 1px solid #E2E8F0;
        background: #FFFFFF;
        color: #0F172A;
        font-size: 15px;
    }

    .btn-mobile-cta {
        background: #FFFFFF;
        color: #0F172A;
        box-shadow: none;
    }

    .btn-mobile-whatsapp {
        background: #FFFFFF;
        color: #0F172A;
        box-shadow: none;
    }

    .btn-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 12px;
        background: rgba(34, 83, 249, 0.10);
        
        font-size: 14px;
    }

    .nav-links > li {
        width: 100%;
    }

    .nav-links > li:not(.mobile-menu-panel) {
        margin: 0;
    }

    .nav-links.open > li {
        display: block;
    }

    .nav-links a {
        color: #0F172A;
        background: #FFFFFF;
        padding: 16px 18px;
        border-radius: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        font-weight: 700;
        margin: 0;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
        transition: all 0.3s ease;
        border-bottom: 1px solid #E2E8F0;
    }

    .nav-links a:hover {
        background: #F8FAFC;
        color: #0F172A;
    }

    .nav-links a.nav-cta {
        background: linear-gradient(90deg, #2253F9 0%, #3A79FF 45%, #F97316 100%) !important;
        color: #fff !important;
        box-shadow: 0 14px 28px rgba(34, 83, 249, 0.18) !important;
    }

    .nav-links a.nav-cta:hover {
        background: linear-gradient(90deg, #1948d4 0%, #286EF9 45%, #ea6b13 100%) !important;
    }

    .nav-links .menu-icon {
        display: none;
    }

    .nav-links.open .menu-icon {
        display: inline-flex;
    }

    .nav-links a span.menu-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 12px;
        background: rgba(34, 83, 249, 0.10);
        color: #2253F9;
        font-size: 14px;
    }

    .nav-links a.nav-cta span.menu-icon {
        background: rgba(255, 255, 255, 0.22);
        color: #fff;
    }

    .nav-links > li:not(.mobile-menu-panel) + .nav-links > li:not(.mobile-menu-panel) {
        margin-top: 0;
    }

    #what {
        background: #FFFFFF;
        color: #0F172A;
        border: none;
    }

    .nav-links a:hover {
        background: #F8FAFC;
        color: #0F172A;
    }

    .nav-links a.nav-cta {
        background: #FFFFFF !important;
        color: #0F172A !important;
        box-shadow: none !important;
    }

    .nav-links a.nav-cta:hover {
        background: #F8FAFC !important;
    }

    .nav-links a span.menu-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 12px;
        background: rgba(34, 83, 249, 0.08);
        color: #2253F9;
        font-size: 14px;
    }

    .nav-links a.nav-cta span.menu-icon {
        background: rgba(255, 255, 255, 0.22);
        color: #fff;
    }

    .nav-links > li:not(.mobile-menu-panel) + .nav-links > li:not(.mobile-menu-panel) {
        margin-top: 0;
    }

    #what {
        background: linear-gradient(90deg, #2F63F5 0%, #7A6BAF 50%, #F57C1F 100%);;
        color: #FFFFFF;
        border: none;
    }


    .menu-center-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .center-pill {
        width: 100%;
        border: 1px solid #E2E8F0;
        border-radius: 16px;
        background: #F8FAFC;
        padding: 14px 12px;
        text-align: left;
        cursor: pointer;
        color: #0F172A;
        font-size: 14px;
    }

    .center-pill strong {
        display: block;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .center-pill small {
        display: block;
        color: #475569;
        font-size: 12px;
    }

    .center-pill.active {
        border-color: #FECACA;
        background: #FEF2F2;
        color: #B91C1C;
    }

    .nav-links > li {
        width: 100%;
    }

    .nav-links > li:not(.mobile-menu-panel) {
        margin: 0;
    }

    .nav-links a {
        color: #0F172A;
        background: #F8FAFC;
        padding: 10px 18px;
        border-radius: 0;
        display: block;
        font-size: 15px;
        font-weight: 700;
    }
    #enq {
        background: var(--green-mid) !important;
        color: white !important;
        text-align: center;
        display: flex !important;
        align-items: center;
        gap: 8px;
    }

    #enq span.menu-icon {
        background: rgba(255, 255, 255, 0.25) !important;
        color: #ffffff !important;
    }

    .nav-links a:hover {
        background: #EEF2FF;
        color: #0F172A;
    }

    .nav-links a.nav-cta {
        background: #FFFFFF !important;
        color: #0F172A !important;
    }

    .nav-links a.nav-cta:not(#enq) {
        background: #FFFFFF !important;
        color: #0F172A !important;
    }
    /* Make hero and section headings stand out on mobile (not the nav) */
    .hero h1,
    .sh {
        background: var(--off-white);
        padding: 8px 10px;
        border-radius: 10px;
        display: inline-block;
        color: var(--green-dark);
        line-height: 1.05;
    }
    .sha {
        /*background: var(--off-white);*/
        padding: 8px 10px;
        border-radius: 10px;
        display: inline-block;
        color: var(--green-dark);
        line-height: 1.05;
    }
    .nav-logo-text {
        font-size: 16px
    }

}

@media(max-width:600px) {
    section {
        padding: 52px 5%
    }

    .hero {
        padding: 40px 5% 40px
    }

    .hero h1 {
        font-size: 44px
    }

    .cgrid {
        grid-template-columns: 1fr
    }

    .hero-actions {
        flex-direction: column
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center
    }

    .wa span {
        display: none
    }

    .wa {
        padding: 13px;
        border-radius: 50%
    }

    .rgrid {
        grid-template-columns: 1fr
    }

    .tnum {
        font-size: 30px
    }

    .vision-band {
        flex-direction: column;
        gap: 10px
    }

    .astats {
        grid-template-columns: 1fr 1fr
    }
}

.course_logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: filter .3s, transform .3s;
}

.cc:hover .course_logo {
    filter: brightness(1.2) drop-shadow(0 0 8px var(--green-mid));
    transform: scale(1.1);
}

/* Dropdown Menu */

.dropdown {
    position: relative;
}

.dropdown>a {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #1E40AF;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform .25s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li a:hover {
    background: #E8F5EC;
    color: #1A7A35;
    padding-left: 28px;
}

/* Active Menu */

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #1A7A35;
    transition: .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Active Page Highlight */
.nav-links a.active {
    color: #1A7A35;
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
    background: #1A7A35;
}

/* Glass Effect Navigation */

nav {
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Mobile Dropdown */

@media(max-width:920px) {

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #FFFFFF;
        margin-top: 0;
        display: none;
        border-bottom: 1px solid #E2E8F0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-links.open .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 18px;
        color: #0F172A;
        font-weight: 700;
        font-size: 15px;
        background: #FFFFFF;
        border-bottom: 1px solid #E2E8F0;
    }

    .nav-links.open .dropdown-menu li a:hover {
        background: #F8FAFC;
        color: #0F172A;
        padding-left: 18px;
    }

    .nav-links.open .dropdown-menu li:last-child a {
        border-bottom: none;
    }
}

/* ── FREE DEMO MODAL ── */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn .3s ease;
}

.modal.open {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp .3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2)
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s;
}

.modal-close:hover {
    color: var(--green-dark)
}

.demo-form-head {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: var(--green-dark);
    text-transform: uppercase;
    margin-bottom: 8px
}

.demo-form-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px
}

.demo-form-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1.5px solid #FECACA;
    border-radius: var(--rs);
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    display: none;
    animation: slideDown .3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.demo-fg {
    margin-bottom: 16px
}

.demo-fg label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px
}

.demo-fg input,
.demo-fg select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--rs);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--off-white);
    transition: border-color .2s;
    appearance: none;
    -webkit-appearance: none;
}

.demo-fg input:focus,
.demo-fg select:focus {
    outline: none;
    border-color: var(--green-mid);
    background: #fff
}

.demo-fg input:invalid,
.demo-fg select:invalid {
    border-color: #EF4444;
}

.demo-fg input.error,
.demo-fg select.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.demo-fg select {
    background-image: url('data:image/svg+xml;utf8,<svg fill="rgb(42,158,80)" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 24px;
    padding-right: 38px;
}

.demo-form-btn {
    width: 100%;
    background: var(--green-dark);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: var(--rs);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-top: 8px
}

.demo-form-btn:hover {
    background: var(--green-mid);
    transform: translateY(-1px)
}

@media(max-width:600px) {
    .modal-content {
        padding: 28px;
        border-radius: 12px
    }

    .demo-form-head {
        font-size: 20px
    }
}

/* tab view___________________________________________________*/

/* =====================================
   TABLET VIEW (768px - 1024px)
===================================== */
@media screen and (min-width:600px) and (max-width:1024px){

    nav{
        padding:0 15px;
        height:80px;
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    /* Logo Section */
    .nav-logo{
        display:flex;
        align-items:center;
        gap:5px;
        flex-shrink:0;
    }

    .nav-logo img{
        width:60px;
        height:60px;
    }

    .nav-years-badge{
        height:38px;
        width:auto;
        margin-left:3px;
    }

    .nav-logo-text{
        font-size:12px;
        line-height:1.1;
    }

    .nav-logo-text span{
        font-size:10px;
    }

    /* Hide Phone Number */
    .nav-phone{
        display:none !important;
    }

    /* Navigation Menu */
    .nav-links{
        display:flex !important;
        align-items:center;
        justify-content:center;
        gap:12px;
        flex:1;
        margin:0 10px;
    }

    .nav-links li{
        white-space:nowrap;
    }

    .nav-links a{
        font-size:13px;
        font-weight:600;
        padding:0;
    }

    /* Dropdown */
    .dropdown-menu{
        min-width:220px;
    }

    /* Enquire Button */
    .nav-cta{
        min-width:120px;
        height:40px;
        padding:0 12px !important;
        font-size:12px !important;
        white-space:nowrap;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    /* Social Icons */
    .floating-social{
        right:10px;
    }
}

/* =====================================
   LARGE TABLET FIX (1100px - 1100px)
===================================== */
@media screen and (min-width:900px) and (max-width:1300px){

    .nav-links{
        gap:10px;
    }

    .nav-links a{
        font-size:12px;
    }

    .nav-cta{
        min-width:110px;
        font-size:12px !important;
    }

    .nav-logo-text{
        font-size:11px;
    }
}

/* ── LEAD CAPTURE MODAL ── */
.lead-capture-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, .4);
    animation: fadeIn .3s ease;
}

.lead-capture-modal.open {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lead-capture-content {
    position: relative;
    max-width: 480px;
    width: 90%;
    background: #fff;
    border-radius: 16px;
    padding: 40px 28px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
    animation: slideUp .4s ease;
    border-top: 4px solid var(--green-mid);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lead-capture-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--off-white);
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
    font-weight: 600;
}

.lead-capture-close:hover {
    background: var(--green-pale);
    color: var(--green-dark);
}

.lead-capture-header {
    margin-bottom: 22px;
}

.lead-capture-header h2 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--green-dark);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 8px;
}

.lead-capture-header p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.lead-capture-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-capture-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--rs);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--off-white);
    transition: border-color .2s;
}

.lead-capture-form input:focus {
    outline: none;
    border-color: var(--green-mid);
    background: #fff;
}

.lead-capture-form input::placeholder {
    color: var(--text-muted);
}

.lead-capture-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.lead-capture-submit {
    flex: 1;
    background: var(--green-dark);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: var(--rs);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.lead-capture-submit:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

.lead-capture-skip {
    flex: 1;
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border);
    padding: 12px 20px;
    border-radius: var(--rs);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.lead-capture-skip:hover {
    border-color: var(--green-mid);
    color: var(--green-dark);
}

.lead-capture-error {
    display: none;
    background: #fee;
    color: #c33;
    padding: 10px 12px;
    border-radius: var(--rs);
    font-size: 13px;
    margin-bottom: 10px;
}

.lead-capture-error.show {
    display: block;
}



