* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif
}

body {
    margin: 0;
    padding: 0;
    background: #f8fafc;
}

.hero-text h1 {
    animation: fadeSlide 1s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card,
.service-card {
    transition: .3s;
}

.stat-card:hover,
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
}

body {
    background: #f8f9fc;
    color: #222
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px
}

.top-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-box {
    background: #2563eb;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500
}

.admin-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px
}

.hero {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #fff;
    padding: 80px 0
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.hero-text h1 {
    font-size: 42px
}

.hero-text p {
    margin: 20px 0;
    font-size: 18px
}

.hero-buttons button {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    margin-right: 10px
}

.btn-green {
    background: #22c55e;
    color: #fff;
    font-size: large;
    padding: 20px;
    margin: 20px;
    border-radius: 35px;
}

.btn-white {
    background: #fff;
    color: #2563eb
}

.hero-image img {
    max-width: 420px;
    border-radius: 16px
}

.stats {
    background: #f4f0f0;
    padding: 50px 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px
}

.stat-card {
    text-align: center;
    padding: 53px;
    border-radius: 14px;
    background: #004af4;
}

.services {
    padding: 70px 0;
    text-align: center;
    background: beige;
}

.subtitle {
    margin: 10px 0 40px;
    background: skyblue;
    padding: 10px;
    font-size: large;
    height: 169px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .08)
}

.cta {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin: 0;
    /* <<< ADD THIS */
}


footer {
    background: #020617;
    color: #fff;
    padding: 40px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px
}

copyright {
    text-align: center;
    margin-top: 30px;
    color: #aaa
}

@media(max-width:768px) {
    .hero-flex {
        flex-direction: column;
        text-align: center
    }

    .hero-image img {
        max-width: 100%
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Segoe UI, sans-serif
}

body {
    background: #f7f9fc;
    color: #222
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 10
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1e40af
}

.logo span {
    color: #2563eb
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500
}

.admin-btn {
    background: #2563eb;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer
}

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #fff;
    text-align: center;
    padding: 80px 20px
}

.about-hero h1 {
    font-size: 40px
}

.about-hero p {
    opacity: .9;
    margin-top: 10px
}

/* Mission Vision */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px
}

.mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.mission-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05)
}

.mission-box h3 {
    color: #2563eb;
    margin-bottom: 10px
}

/* Why Choose */
.why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center
}

.why-img img {
    width: 100%;
    border-radius: 20px
}

.why-list ul {
    list-style: none;
    margin-top: 10px
}

.why-list li {
    margin: 10px 0;
    font-size: 17px
}

/* Contact */
.contact {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.contact-form,
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05)
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px
}

.btn.green {
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px
}

/* Footer */
footer {
    background: #0f172a;
    color: #fff;
    padding: 40px 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px
}

footer a {
    color: #9ca3af;
    display: block;
    text-decoration: none;
    margin: 6px 0
}

.copy {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #9ca3af
}

/* Responsive */
@media(max-width:768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 10px;
        padding: 15px;
        border-radius: 12px
    }

    nav.show {
        display: flex
    }

    .hamburger {
        display: block
    }

    .mission,
    .why,
    .contact,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .about-hero h1 {
        font-size: 28px
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Segoe UI, sans-serif
}

body {
    background: #f4f7fc;
    color: #222
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    padding: 12px 20px;
    position: sticky;
    top: 0
}

.nav-wrap {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1e40af
}

.logo span {
    color: #2563eb
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500
}

.admin-btn {
    background: #2563eb;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px
}

.hamburger {
    display: none;
    font-size: 24px
}

/* Hero */
.about-hero {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #fff;
    text-align: center;
    padding: 70px 20px
}

.about-hero h1 {
    font-size: 38px
}

/* Sections */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px
}

.mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    text-align: center
}

.card i {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 10px
}

.why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center
}

.why img {
    width: 100%;
    border-radius: 18px
}

.why ul {
    list-style: none;
    margin-top: 15px
}

.why li {
    margin: 10px 0;
    font-size: 18px
}

/* Contact */
.contact {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 25px
}

.contact-form,
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08)
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc
}

.contact-form button {
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px
}

/* Footer */
footer {
    background: #0f172a;
    color: #fff;
    padding: 50px 20px
}

.footer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px
}

footer a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin: 6px 0
}

.copy {
    text-align: center;
    margin-top: 20px;
    color: #9ca3af
}

/* Responsive */
@media(max-width:768px) {
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #fff;
        padding: 15px;
        border-radius: 12px
    }

    nav.show {
        display: flex
    }

    .hamburger {
        display: block
    }

    .mission,
    .why,
    .contact,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .about-hero h1 {
        font-size: 28px
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

body {
    background: #f5f8fc;
    color: #222;
}

/* NAVBAR */
.navbar {
    background: #fff;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-wrap {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #1d4ed8;
}

.logo span {
    color: #22c55e;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #444;
    font-weight: 500;
}

nav a.active,
nav a:hover {
    color: #1d4ed8;
}

.admin-btn {
    background: #1d4ed8;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
}

.hamburger {
    display: none;
}

/* HERO */
.about-hero {
    background: linear-gradient(120deg, #1d4ed8, #2563eb);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.about-hero h1 {
    font-size: 36px;
}

.about-hero p {
    margin-top: 10px;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

/* MISSION */
.mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.card i {
    font-size: 35px;
    color: #1d4ed8;
    margin-bottom: 15px;
}

/* WHY CHOOSE */
.why {
    display: flex;
    gap: 40px;
    align-items: center;
}

.why img {
    width: 50%;
    border-radius: 12px;
}

.why ul {
    margin-top: 15px;
}

.why li {
    margin-bottom: 8px;
}

/* CONTACT */
.contact {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.send-btn {
    background: #22c55e;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
}

.contact-info {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
}

/* FOOTER */
footer {
    background: #0f172a;
    color: #fff;
    padding: 40px 20px;
}

.footer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-grid a {
    color: #bbb;
    display: block;
    margin-top: 8px;
}

.copy {
    text-align: center;
    margin-top: 30px;
    color: #aaa;
}

.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-box h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #1e40af;
}

.contact-box p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #374151;
}

.contact-box i {
    background: #2563eb;
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    font-size: 13px;
}

.apply-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

body {
    margin: 0;
    font-family: sans-serif;
    background: #f5f7fb
}

.navbar {
    background: #fff;
    padding: 10px 20px
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo span {
    color: #2563eb
}

nav a {
    margin: 0 10px;
    text-decoration: none
}

.admin-btn {
    background: #2563eb;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px
}

.hero {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    width: 99.7%;
}

.btn {
    background: #22c55e;
    padding: 12px 20px;
    color: #fff;
    border-radius: 6px
}

.contact,
.apply-box {
    /* display: flex; */
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px
}

.contact form,
.contact-info {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1
}

.send-btn {
    background: #22c55e;
    border: none;
    padding: 10px 20px;
    color: #fff;
    border-radius: 6px
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    background: #0f172a;
    color: #fff;
    padding: 10px 10px 10px 10px;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-logo {
    width: 55px;
    height: auto;
}

.brand-title {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
}

.brand-tagline {
    font-size: 11px;
    color: #64748b;
}

.top-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    width: 70px;
    height: auto;
}

.brand-main {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
}

.brand-tagline {
    font-size: 12px;
    color: #64748b;
}

nav {
    display: flex;
    gap: 20px;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.top-header {
    background: black;
    padding: -2px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 0px 0px 0px -4px;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    width: 65px;
}

.brand-main {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
}

.brand-tagline {
    font-size: 12px;
    color: #64748b;
}

#mainNav {
    display: flex;
    gap: 20px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ---------- MOBILE FIX ---------- */
@media(max-width:768px) {
    #mainNav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: black;
        flex-direction: column;
        padding: 15px;
        display: none;
    }

    #mainNav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

.site-logo {
    height: 48px;
    margin-right: 10px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-title small {
    display: block;
    font-size: 12px;
    color: #555;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE MENU */
@media(max-width:768px) {
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px;
    }

    nav.show {
        display: block;
    }

    nav a {
        display: block;
        padding: 12px;
    }

    .menu-toggle {
        display: block;
    }
}

/* ---------- MOBILE ---------- */
@media(max-width:768px) {
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 15px;
        display: none;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .site-logo {
        width: 55px;
    }
}

@media(max-width:768px) {
    .site-logo {
        width: 42px;
    }

    .brand-main {
        font-size: 15px;
    }

    .brand-tagline {
        font-size: 10px;
    }
}

@media(max-width:768px) {
    nav {
        display: none
    }

    nav.show {
        display: block
    }
}

.site-logo {
    width: 42px;
    height: auto;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

@media(max-width:768px) {
    nav {
        display: none;
        position: absolute;
        background: #0f172a;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
    }

    nav a {
        padding: 15px;
        border-bottom: 1px solid #1e293b;
    }

    .menu-toggle {
        display: block;
    }

    nav.show-menu {
        display: flex;
    }

    .hero-flex {
        flex-direction: column;
    }
}

.footer-logo {
    width: 70px;
}


/* MOBILE */
@media(max-width:768px) {

    .mission,
    .contact {
        grid-template-columns: 1fr;
    }

    .why {
        flex-direction: column;
    }

    .why img {
        width: 100%;
    }
}

select {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.site-logo {
    height: 45px;
    margin-right: 10px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-title small {
    display: block;
    font-size: 12px;
    color: whitesmoke;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media(max-width:768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    }

    .nav-links a {
        display: block;
        padding: 12px;
    }

    .nav-links.show {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}

/* ===== HEADER RESPONSIVE FIX ===== */

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-logo {
    height: 48px;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile Navbar */
@media(max-width:768px) {

    .menu-toggle {
        display: block;
        color: #000;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
        z-index: 999;
    }

    .nav-links a {
        padding: 12px 20px;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .nav-links.show {
        display: block;
    }
}

.site-logo {
    height: 48px;
    margin-right: 10px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 20px;
}

@media(max-width:768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    }

    .nav-links.show {
        display: flex;
    }
}

.site-logo {
    height: 48px;
    margin-right: 10px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: -2px 0px 7px 0px;
    margin: -2px -29px 3px 315px;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 20px;
}

@media(max-width:768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    }

    .nav-links.show {
        display: flex;
    }
}

.site-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* HEADER MOBILE FIX */
@media(max-width:768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 14px;
        border-bottom: 1px solid #eee;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 90%;
        margin-top: 20px;
        border-radius: 16px;
    }
}

.site-logo {
    width: 57px;
    height: 69px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* HEADER MOBILE FIX */
@media(max-width:768px) {
    .menu-toggle {
        display: block;
        color: white;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 14px;
        border-bottom: 1px solid #eee;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 90%;
        margin-top: 20px;
        border-radius: 16px;
    }
}

.premium-footer {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #cbd5f5;
    padding: 60px 20px 25px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.footer-logo {
    width: 36px;
    height: 36px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    color: #cbd5f5;
    margin: 6px 0;
    text-decoration: none;
    transition: .3s;
}

.footer-col a:hover {
    color: #38bdf8;
}

.footer-social a {
    margin-right: 12px;
    font-size: 18px;
    color: #cbd5f5;
}

.footer-social a:hover {
    color: #38bdf8;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 15px;
    font-size: 13px;
    color: #94a3b8;
}

@media(max-width:768px) {
    .premium-footer {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }
}

section {
    margin: 0;
    padding: 0;
}

section.cta {
    margin-bottom: 0;
}

.premium-footer {
    margin-top: 0 !important;
}

/* Country Select Fix */
#countrySelect {
    color: #111;
    font-size: 15px;
    padding: 10px 12px;
    background: #fff;
}

#countrySelect option {
    color: #000;
    background: #fff;
    padding: 10px;
}

/* Windows Chrome grey issue fix */
#countrySelect:focus,
#countrySelect option:checked {
    color: #000;
    background-color: #eaf2ff;
}

.country-list {
    max-height: 180px;
    overflow-y: auto;
    border: 1px solid #ddd;
    display: none;
    background: #fff;
    position: absolute;
    width: 100%;
    z-index: 999;
}

.country-list div {
    padding: 10px;
    cursor: pointer;
    color: #000;
}

.country-list div:hover {
    background: #f0f4ff;
}

/* ========= ABOUT PAGE ANIMATION ========= */

.mission .card {
    opacity: 0;
    transform: translateX(-80px);
    animation: slideLeft 1s ease forwards;
}

.mission .card:nth-child(2) {
    transform: translateX(80px);
    animation: slideRight 1s ease forwards;
    animation-delay: .2s;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* WHY SECTION FADE */
.why {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SOCIAL ICON FIX ===== */

.footer-social {
    margin-top: 15px;
    position: static !important;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #1e293b;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: .3s;
}

.footer-social a i {
    color: #fff;
    font-size: 16px;
}

.footer-social a:hover {
    background: #22c55e;
    transform: translateY(-4px);
}

/* ===== MOBILE RESPONSIVE FIX ===== */

@media(max-width:768px) {
    .mission {
        grid-template-columns: 1fr;
    }

    .why {
        flex-direction: column;
        text-align: center;
    }

    .why img {
        width: 100%;
    }
}

/* ================= FINAL MOBILE & HEADER FIX ================= */

/* HEADER RESET */
.top-header {
    background: #0f172a !important;
    padding: 10px 15px !important;
}

.header-flex {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px !important;
}

.site-logo {
    width: 48px !important;
    height: auto !important;
}

.brand-title strong {
    font-size: 15px;
    color: #fff;
}

.brand-title small {
    font-size: 10px;
    color: #cbd5e1;
}

/* NAVBAR */
.nav-links {
    display: flex;
    gap: 18px;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE NAV */
@media(max-width:768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #020617;
        flex-direction: column;
        padding: 12px 0;
        z-index: 999;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        color: #fff;
        padding: 14px 20px;
        border-bottom: 1px solid #1e293b;
    }
}

/* ================= ABOUT PAGE PREMIUM ================= */

.mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mission .card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
    text-align: center;
    opacity: 0;
}

.mission .card:first-child {
    animation: slideLeft 1s ease forwards;
}

.mission .card:last-child {
    animation: slideRight 1s ease forwards;
}

.mission .card i {
    background: #22c55e;
    color: #fff;
    padding: 18px;
    border-radius: 50%;
    font-size: 22px;
    margin-bottom: 15px;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(60px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

/* WHY SECTION */
.why {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* MOBILE ABOUT */
@media(max-width:768px) {
    .mission {
        grid-template-columns: 1fr;
    }

    .why {
        flex-direction: column;
        text-align: center;
    }

    .why img {
        width: 100%;
    }
}

/* FOOTER SOCIAL FIX */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #1e293b;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: .3s;
}

.footer-social a i {
    color: #fff;
    font-size: 16px;
}

.footer-social a:hover {
    background: #22c55e;
    transform: translateY(-4px);
}

/* ================== GLOBAL MOBILE RESET ================== */
html,
body {
    width: 100%;
    overflow-x: hidden;
}

section,
footer,
header {
    width: 101%;
    max-width: 100%;
}

/* ================== HEADER FIX ================== */
.top-header {
    background: #020617 !important;
}

.header-flex {
    max-width: 1200px;
    margin: auto;
    padding: 12px 16px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
}

/* Mobile Menu */
@media (max-width:768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #020617;
        flex-direction: column;
        padding: 10px 0;
        z-index: 9999;
    }

    .nav-links a {
        color: #fff !important;
        padding: 12px 20px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .nav-links.show {
        display: flex;
    }
}

/* ================== ABOUT CARD ANIMATION ================== */
.mission .card {
    opacity: 0;
    transform: translateX(-80px);
    animation: slideLeft 1s ease forwards;
}

.mission .card:nth-child(2) {
    transform: translateX(80px);
    animation: slideRight 1s ease forwards;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================== WHY SECTION MOBILE FIX ================== */
@media (max-width:768px) {
    .why {
        flex-direction: column;
        text-align: center;
    }

    .why img {
        width: 100%;
    }
}

/* ================== FOOTER SOCIAL ICON FIX ================== */
.footer-social {
    position: static !important;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #1e293b;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: .3s;
}

.footer-social a i {
    color: #fff;
    font-size: 16px;
}

.footer-social a:hover {
    background: #22c55e;
    transform: translateY(-4px);
}

/* ================== APPLY FORM MOBILE CENTER FIX ================== */
@media (max-width:768px) {

    .apply-grid,
    .contact {
        grid-template-columns: 1fr !important;
    }

    .contact-info {
        margin-top: 25px;
    }
}

/* ================== FOOTER MOBILE GRID ================== */
@media (max-width:768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }
}

/* ============ APPLY PAGE LAYOUT ============ */

.apply-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.apply-form {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .07);
}

.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .07);
}

/* MOBILE FIX */
@media(max-width:768px) {
    .apply-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        margin-top: 20px;
    }
}

.apply-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.apply-form {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

/* ===== MOBILE PERFECT STACK ===== */
@media(max-width:768px) {
    .apply-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        margin-top: 20px;
    }
}

/* ===== PREMIUM MISSION / VISION ===== */

.premium-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 80px 10%;
}

.mission-card {
    background: linear-gradient(145deg, #ffffff, #f1f5ff);
    border-radius: 22px;
    padding: 45px 35px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
    transition: .5s;
    opacity: 0;
}

.mission-card h3 {
    margin-top: 20px;
    font-size: 24px;
    color: #1e3a8a;
}

.mission-card p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

/* ICON STYLE */
.icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .45);
}

.icon-wrap.vision {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 25px rgba(34, 197, 94, .45);
}

.icon-wrap i {
    color: #fff;
    font-size: 24px;
}

/* HOVER PREMIUM EFFECT */
.mission-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(37, 99, 235, .15), transparent);
    transform: translateX(-100%);
    transition: .6s;
}

.mission-card:hover::after {
    transform: translateX(100%);
}

.mission-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
}

/* ===== ANIMATION (SAME LEFT RIGHT) ===== */
.mission-card:nth-child(1) {
    transform: translateX(-80px);
    animation: slideLeft 1s ease forwards;
}

.mission-card:nth-child(2) {
    transform: translateX(80px);
    animation: slideRight 1s ease forwards;
    animation-delay: .2s;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== MOBILE FIX ===== */
@media(max-width:768px) {
    .premium-mission {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .mission-card {
        text-align: center;
    }

    .icon-wrap {
        margin: auto;
    }
}

.hero-buttons a {
    text-decoration: none;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #1e40af;
    transform: translateY(-4px);
}

@media (max-width: 768px) {

    /* HEADER */
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        color: white;
        cursor: pointer;
        margin-left: auto;
        position: absolute;
        left: 365px;
        top: 5px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #0f172a;
        margin-top: 10px;
        border-radius: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* HERO */
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
        margin-top: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 655px;
    }

    .hero-buttons button {
        width: 100;
    }

    /* STATS */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    /* SERVICES */
    .service-grid {
        grid-template-columns: 1fr;
    }

    /* WHY SECTION */
    .why {
        flex-direction: column;
        padding: 20px;
    }

    .why img {
        width: 100%;
        margin-bottom: 20px;
    }

    .why ul li {
        font-size: 18px !important;
    }

    /* APPLY + CONTACT */
    .apply-grid {
        flex-direction: column;
    }

    .apply-form,
    .contact-info {
        width: 100%;
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col {
        margin-bottom: 25px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 14px;
    }
}

/* ================= MOBILE FIXES ================= */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    /* HEADER */
    .header-flex {
        padding: 10px 14px;
    }

    .brand-title strong {
        font-size: 14px;
    }

    .brand-title small {
        font-size: 10px;
    }

    .menu-toggle {
        font-size: 22px;
        color: #fff;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #0a1a2f;
        flex-direction: column;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    /* HERO */
    .hero-flex {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }

    .hero-text h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 20px;
        line-height: 46.3px;
        padding: 11px 135px 0px 121px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-image img {
        width: 100%;
        margin-top: 20px;
    }

    /* HERO ANIMATION */
    .hero-text {
        opacity: 0;
        transform: translateX(-40px);
        animation: heroTextAnim 0.8s forwards;
    }

    .hero-image {
        opacity: 0;
        transform: translateX(40px);
        animation: heroImgAnim 0.8s forwards;
        animation-delay: 0.4s;
    }

    @keyframes heroTextAnim {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes heroImgAnim {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* STATS BOX */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        opacity: 0;
        transform: translateY(30px);
        animation: statAnim 0.6s forwards;
    }

    .stat-card:nth-child(1) {
        animation-delay: 0.2s
    }

    .stat-card:nth-child(2) {
        animation-delay: 0.4s
    }

    .stat-card:nth-child(3) {
        animation-delay: 0.6s
    }

    .stat-card:nth-child(4) {
        animation-delay: 0.8s
    }

    @keyframes statAnim {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* SERVICES */
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        opacity: 0;
        animation: serviceLeft 0.7s forwards;
    }

    .service-card:nth-child(even) {
        animation: serviceRight 0.7s forwards;
    }

    @keyframes serviceLeft {
        from {
            opacity: 0;
            transform: translateX(-40px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes serviceRight {
        from {
            opacity: 0;
            transform: translateX(40px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* FOOTER FIX */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        position: static !important;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .hero {
        color: rgb(255, 255, 255);
        text-align: center;
        width: 99.3%;
        background: linear-gradient(135deg, rgb(37, 99, 235), rgb(29, 78, 216));
        padding: 1px 20px;
    }

    .subtitle {
        margin: 10px 0px 40px;
        background: skyblue;
        padding: 10px;
        font-size: large;
        height: 169px;
        font-weight: 100;
    }
}

/* ================= MOBILE FIX FOR ABOUT PAGE ================= */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    /* Header */
    .header-flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .brand-title strong {
        font-size: 14px;
    }

    .brand-title small {
        font-size: 10px;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        color: white;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        background: #0b163f;
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
        z-index: 999;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 10px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Hero Section */
    .about-hero h1 {
        font-size: 24px;
    }

    .about-hero p {
        font-size: 14px;
    }

    /* Mission Section */
    .premium-mission {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .mission-card {
        width: 100%;
    }

    /* Why Choose Us */
    .why {
        flex-direction: column;
        padding: -1px;
    }

    .why img {
        width: 100%;
        border-radius: 12px;
    }

    .why h2 {
        font-size: 22px !important;
        padding-left: 0 !important;
        text-align: center;
    }

    .why li {
        font-size: 16px !important;
        padding-left: 10px !important;
    }

    /* Contact Form */
    .apply-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .apply-form,
    .contact-box {
        width: 100%;
    }

    /* Footer FULL WIDTH FIX */
    .premium-footer {
        width: 100%;
        margin: 0;
        padding: 30px 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-bottom {
        font-size: 12px;
        margin-top: 20px;
    }
}

/* ============================================================= */