/* =========================================================
   DIRECT ADMISSION - COMPLETE RESPONSIVE CSS
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: #031333;
    color: #fff;
    height: 42px;
    font-size: 14px;
}

.top-bar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-contact span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-contact i {
    font-size: 11px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 7px;
}

.social-icons a {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    color: #0b2c69;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    transition: .3s;
}

.social-icons a:hover {
    background: #1769e0;
    color: #fff;
}


/* =========================================================
   HEADER / NAVIGATION
========================================================= */

.main-header {
    height: 78px;
    background: #031333;
    color: #fff;
    position: relative;
    z-index: 1000;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo,
.footer-logo {
    width: 125px;
    height: 85px;
    border-radius: 25px;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
    flex: 1;
}

.main-nav a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: .3s;
}

.main-nav a:hover {
    color: #2878ff;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    min-height: 520px;
    position: relative;
    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .38),
            rgba(0, 0, 0, .18)
        );
}

.hero-container {
    min-height: 490px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.hero-content {
    width: 62%;
    padding: 30px 0;
}

.hero-small-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-content h1 {
    max-width: 700px;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 13px;
}

.hero-courses {
    font-size: 14px;
    color: #f1f1f1;
    margin-bottom: 15px;
}

.hero-courses span {
    margin: 0 6px;
    opacity: .8;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff4d32;
    color: #fff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}

.call-button:hover {
    background: #e83d24;
    transform: translateY(-2px);
}


/* =========================================================
   PROVENTUS STYLE HEADER
   Modern responsive header
========================================================= */

:root {
    --header-dark: #111111;
    --header-blue: #294889;
    --header-blue-dark: #1e3974;
    --header-green: #20a844;
    --header-white: #ffffff;
    --header-text: #f5f5f5;
}


/* =========================================================
   RESET
========================================================= */

.pro-topbar *,
.pro-main-header *,
.pro-floating-contact * {
    box-sizing: border-box;
}


/* =========================================================
   TOP BAR
========================================================= */

.pro-topbar {
    width: 100%;
    height: 88px;
    background: #111111;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    position: relative;
    z-index: 1000;
    overflow: hidden;
}


/*
   BLUE EMAIL AREA
   Angled on right side similar to reference
*/

.pro-email-box {
    position: relative;
    height: 88px;
    min-width: 58%;
    display: flex;
    align-items: center;
    padding-left: 28px;
    padding-right: 90px;
    background: var(--header-blue);
    clip-path: polygon(
        0 0,
        98% 0,
        100% 100%,
        0 100%
    );
}


.pro-email-box a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 22px;
    font-weight: 500;

    white-space: nowrap;

    transition: 0.3s ease;
}


.pro-email-box a:hover {
    color: #ffffff;
    opacity: 0.88;
}


.pro-email-box i {
    font-size: 27px;
}


/* =========================================================
   TOP BAR INNER
========================================================= */

.pro-topbar-inner {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 0 auto;

    position: relative;
}


/* =========================================================
   RIGHT TOP CONTACT
========================================================= */

.pro-top-right {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    padding-right: 25px;

    margin-left: auto;

    background: #111111;
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.pro-whatsapp {
    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 20px;

    background: #20a844;

    color: #ffffff;

    text-decoration: none;

    border-radius: 6px;

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 500;

    transition: all 0.3s ease;
}


.pro-whatsapp i {
    font-size: 28px;
}


.pro-whatsapp:hover {
    background: #168b36;

    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================================
   PHONE
========================================================= */

.pro-phone {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 0 5px 0 2px;

    color: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 19px;

    font-weight: 500;

    white-space: nowrap;
}


.pro-phone i {
    font-size: 25px;

    transform: rotate(-15deg);
}


.pro-phone:hover {
    color: #ffffff;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.pro-main-header {
    width: 100%;

    background: #111111;

    position: relative;

    z-index: 999;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.pro-header-container {
    width: 100%;

    min-height: 180px;

    padding: 0 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;
}


/* =========================================================
   LOGO
========================================================= */

.pro-logo {
    display: flex;

    align-items: center;

    flex-shrink: 0;

    text-decoration: none;

    min-width: 270px;
}


.pro-logo img {
    display: block;

    width: auto;

    max-width: 290px;

    max-height: 145px;

    height: auto;

    object-fit: contain;
}


.pro-logo-text {
    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 34px;

    font-weight: 700;

    line-height: 1.1;
}


/* =========================================================
   NAVIGATION
========================================================= */

.pro-main-nav {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 37px;

    padding-top: 8px;
}


.pro-main-nav a {
    position: relative;

    color: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1.3;

    white-space: nowrap;

    padding: 10px 0;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}


.pro-main-nav a:hover {
    color: #4fa7ff;
}


/* Active menu */

.pro-main-nav a.active {
    color: #ffffff;
}


.pro-main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 3px;

    background: #2878d4;

    border-radius: 5px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

#pro-menu-toggle {
    display: none;
}


.pro-menu-button {
    display: none;

    width: 48px;

    height: 48px;

    align-items: center;

    justify-content: center;

    background: #294889;

    color: #ffffff;

    border-radius: 5px;

    cursor: pointer;

    font-size: 22px;
}


/* =========================================================
   FLOATING CONTACT
========================================================= */

.pro-floating-contact {
    position: fixed;

    right: 0;

    bottom: 22px;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 5px;
}


/* Arrow */

.pro-floating-arrow {
    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #294889;

    color: #ffffff;

    text-decoration: none;

    border-radius: 24px 0 0 24px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);

    transition: 0.3s ease;
}


.pro-floating-arrow:hover {
    background: #1e3974;

    color: #ffffff;
}


/* Phone */

.pro-floating-phone {
    min-height: 46px;

    padding: 0 18px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #294889;

    color: #ffffff;

    text-decoration: none;

    border-radius: 4px;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 500;
}


.pro-floating-phone i {
    font-size: 17px;
}


/* WhatsApp */

.pro-floating-whatsapp {
    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #20a844;

    color: #ffffff;

    text-decoration: none;

    border-radius: 50%;

    font-size: 25px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);

    transition: 0.3s ease;
}


.pro-floating-whatsapp:hover {
    background: #168b36;

    color: #ffffff;

    transform: scale(1.05);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .pro-header-container {
        padding-left: 75px;
        padding-right: 75px;
    }

    .pro-main-nav {
        gap: 43px;
    }

    .pro-main-nav a {
        font-size: 21px;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1350px) {

    .pro-header-container {
        padding-left: 35px;
        padding-right: 35px;

        gap: 25px;
    }

    .pro-logo {
        min-width: 235px;
    }

    .pro-logo img {
        max-width: 250px;
        max-height: 130px;
    }

    .pro-main-nav {
        gap: 24px;
    }

    .pro-main-nav a {
        font-size: 17px;
    }

    .pro-email-box {
        min-width: 55%;
    }

    .pro-email-box a {
        font-size: 18px;
    }

    .pro-whatsapp {
        font-size: 17px;
        padding: 0 16px;
    }

    .pro-phone {
        font-size: 16px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .pro-topbar {
        height: auto;
        min-height: 70px;
    }

    .pro-email-box {
        height: 70px;
        min-width: 50%;
    }

    .pro-email-box a {
        font-size: 16px;
    }

    .pro-email-box i {
        font-size: 21px;
    }

    .pro-whatsapp {
        min-height: 46px;
        font-size: 15px;
    }

    .pro-whatsapp i {
        font-size: 22px;
    }

    .pro-phone {
        font-size: 14px;
    }

    .pro-phone i {
        font-size: 20px;
    }

    .pro-header-container {
        min-height: 130px;
    }

    .pro-logo img {
        max-width: 220px;
        max-height: 110px;
    }

    .pro-main-nav {
        gap: 15px;
    }

    .pro-main-nav a {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    /* Top bar */

    .pro-topbar {
        min-height: auto;

        background: #111111;
    }

    .pro-topbar-inner {
        display: block;
    }

    .pro-email-box {
        width: 100%;

        height: 52px;

        min-width: 0;

        padding: 0 18px;

        clip-path: none;

        justify-content: center;
    }

    .pro-email-box a {
        font-size: 14px;
    }

    .pro-email-box i {
        font-size: 18px;
    }


    .pro-top-right {
        width: 100%;

        height: 58px;

        padding: 6px 12px;

        justify-content: center;

        gap: 8px;
    }

    .pro-whatsapp {
        min-height: 42px;

        padding: 0 13px;

        font-size: 13px;
    }

    .pro-whatsapp i {
        font-size: 20px;
    }

    .pro-phone {
        font-size: 12px;
    }

    .pro-phone i {
        font-size: 17px;
    }


    /* Main header */

    .pro-header-container {
        min-height: 95px;

        padding: 10px 18px;

        gap: 15px;
    }


    .pro-logo {
        min-width: 0;

        flex: 1;
    }


    .pro-logo img {
        max-width: 190px;

        max-height: 78px;
    }


    .pro-logo-text {
        font-size: 25px;
    }


    /* Mobile button */

    .pro-menu-button {
        display: flex;

        flex-shrink: 0;
    }


    /* Mobile nav */

    .pro-main-nav {
        position: absolute;

        left: 0;

        right: 0;

        top: 100%;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        padding: 10px 18px 18px;

        background: #111111;

        box-shadow: 0 10px 25px rgba(0,0,0,0.3);

        border-top: 1px solid rgba(255,255,255,0.1);
    }


    .pro-main-nav a {
        width: 100%;

        padding: 14px 8px;

        font-size: 15px;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }


    .pro-main-nav a.active::after {
        display: none;
    }


    #pro-menu-toggle:checked ~ .pro-main-nav {
        display: flex;
    }


    /* Floating contact */

    .pro-floating-contact {
        bottom: 12px;

        right: 10px;

        gap: 5px;
    }


    .pro-floating-arrow {
        width: 40px;

        height: 40px;
    }


    .pro-floating-phone {
        min-height: 40px;

        padding: 0 13px;

        font-size: 12px;
    }


    .pro-floating-whatsapp {
        width: 42px;

        height: 42px;

        font-size: 21px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .pro-email-box a {
        font-size: 12px;
    }

    .pro-top-right {
        justify-content: space-between;
    }

    .pro-whatsapp {
        padding: 0 10px;

        font-size: 11px;
    }

    .pro-whatsapp i {
        font-size: 18px;
    }

    .pro-phone {
        font-size: 10px;
    }

    .pro-phone i {
        font-size: 15px;
    }

    .pro-logo img {
        max-width: 160px;
        max-height: 70px;
    }

    .pro-menu-button {
        width: 44px;
        height: 44px;
    }

    .pro-floating-phone span {
        display: none;
    }

    .pro-floating-phone {
        width: 42px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }

}


/* =========================================================
   COUNSELLING FORM
========================================================= */

.counselling-card {
    width: 365px;
    background: #fff;
    color: #111;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .2);
    margin-top: 5px;
}

.counselling-card h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 3px;
    text-align: center;
}

.counselling-card > p {
    color: #777;
    font-size: 11px;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 9px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    outline: none;
    padding: 9px 11px;
    font-size: 11px;
    color: #555;
    background: #fff;
    transition: .3s;
}

.form-group input,
.form-group select {
    height: 36px;
}

.form-group textarea {
    height: 72px;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1769e0;
}

.counselling-card button {
    width: 100%;
    border: none;
    background: #0867d9;
    color: #fff;
    height: 36px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.counselling-card button:hover {
    background: #034ca8;
}


/* =========================================================
   FLOATING CONTACT
========================================================= */

.floating-contact {
    position: fixed;
    right: 0;
    top: 125px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.floating-arrow {
    width: 32px;
    height: 26px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.floating-phone {
    width: 32px;
    height: 95px;
    background: #1265c7;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.floating-phone span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 9px;
}

.floating-phone i {
    font-size: 11px;
}

.floating-whatsapp {
    width: 32px;
    height: 32px;
    background: #20c56b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-whatsapp i {
    font-size: 16px;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.section-padding {
    padding: 55px 0;
}

.section-label {
    color: #0867d9;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-heading h2 {
    font-size: 35px;
    line-height: 1.2;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    align-items: center;
    gap: 50px;
}

.about-content h2 {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.75;
    max-width: 700px;
    margin-bottom: 10px;
}

.about-features {
    margin-top: 17px;
    max-width: 620px;
}

.feature-item {
    min-height: 35px;
    border-left: 3px solid #1769e0;
    background: #fff;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .12);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    color: #777;
    font-size: 14px;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
}

.about-image-circle {
    width: 350px;
    height: 350px;
   /* border-radius: 50%;*/
    overflow: hidden;
    border: 2px solid #0b7abf;
    padding: 3px;
    background: #fff;
}

.about-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* =========================================================
   COURSES
========================================================= */

.courses-section {
    background: #f5f5f5;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.course-card {
    height: 230px;
    border-radius: 9px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: .3s;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.course-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .75),
            rgba(0, 65, 150, .25)
        );
}

.course-content {
    position: relative;
    z-index: 2;
    padding: 17px 14px;
    color: #fff;
}

.course-content h3 {
    font-size: 20px;
    margin-bottom: 3px;
}

.course-content p {
    font-size: 14px;
    line-height: 1.45;
    color: #f4f4f4;
}


/* =========================================================
   BLOG
========================================================= */

.blog-section {
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 370px);
    justify-content: center;
    gap: 22px;
}

.blog-card {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.blog-image {
    height: 155px;
    overflow: hidden;
    border-top: 4px solid #86c442;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}

.blog-content {
    padding: 16px;
    min-height: 205px;
}

.blog-content h3 {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 11px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 14px;
}

.blog-content a {
    font-size: 10px;
    font-weight: 600;
    color: #0867d9;
}

.blog-date {
    border-top: 1px solid #eee;
    padding: 9px 16px;
    color: #aaa;
    font-size: 10px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #031333;
    color: #fff;
}

.footer-grid {
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-about p {
    max-width: 290px;
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 6px;
}

.footer-column li,
.footer-column a {
    font-size: 14px;
    color: #eee;
}

.footer-column a:hover {
    color: #2878ff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.footer-contact i {
    font-size: 11px;
    margin-top: 6px;
}

.copyright {
    background: #0867d9;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 11px 0;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .container {
        width: 1200px;
    }

    .hero-section,
    .hero-container {
        min-height: 430px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .counselling-card {
        width: 390px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 8px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .hero-content {
        width: 58%;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .counselling-card {
        width: 320px;
    }

    .about-grid {
        gap: 25px;
    }

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

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .container {
        width: 90%;
    }

    /* Top Bar */
    .top-bar {
        height: auto;
        min-height: 38px;
        padding: 7px 0;
        font-size: 10px;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
    }

    .top-contact {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .top-contact span {
        font-size: 9px;
    }

    .social-icons {
        display: none;
    }


    /* Header */
    .main-header {
        height: 65px;
    }

    .logo {
        width: 105px;
        height: 38px;
    }

    .menu-icon {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 65px;
        width: 100%;
        background: #031333;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    }

    .main-nav a {
        width: 100%;
        padding: 10px 6%;
        font-size: 11px;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    #menu-toggle:checked ~ .main-nav {
        display: flex;
    }


    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 38px 0;
    }

    .hero-container {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }

    .hero-content {
        width: 100%;
        padding: 0;
    }

    .hero-small-title {
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .hero-courses {
        font-size: 11px;
        line-height: 1.8;
    }

    .counselling-card {
        width: 100%;
        max-width: 420px;
        margin: auto;
    }


    /* Floating contact */
    .floating-contact {
        top: auto;
        bottom: 20px;
    }

    .floating-arrow {
        display: none;
    }


    /* Common */
    .section-padding {
        padding: 45px 0;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-label {
        font-size: 12px;
    }


    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 13px;
    }

    .feature-item {
        font-size: 13px;
    }

    .about-image-wrapper {
        order: -1;
    }

    .about-image-circle {
        width: 205px;
        height: 205px;
    }


    /* Courses */
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .course-card {
        height: 180px;
    }

    .course-content h3 {
        font-size: 19px;
    }

    .course-content p {
        font-size: 13px;
    }


    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 20px;
    }

    .blog-card {
        width: 100%;
    }

    .blog-image {
        height: 190px;
    }


    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .top-contact {
        flex-direction: column;
        gap: 2px;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .hero-small-title {
        font-size: 10px;
    }

    .hero-courses {
        font-size: 10px;
    }

    .call-button {
        font-size: 11px;
        padding: 8px 17px;
    }

    .counselling-card {
        padding: 15px;
    }

    .counselling-card h2 {
        font-size: 18px;
    }

    .about-content h2 {
        font-size: 27px;
    }

    .about-content p {
        font-size: 12px;
    }

    .feature-item {
        font-size: 12px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .about-image-circle {
        width: 180px;
        height: 180px;
    }

    .course-card {
        height: 160px;
    }

    .course-content h3 {
        font-size: 18px;
    }

    .course-content p {
        font-size: 12px;
    }

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

    .footer-about {
        grid-column: auto;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h3 {
        font-size: 15px;
    }

    .footer-column li,
    .footer-column a {
        font-size: 12px;
    }

    .footer-about p {
        font-size: 12px;
    }

    .copyright {
        font-size: 11px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .hero-content h1 {
        font-size: 23px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .course-card {
        height: 145px;
    }

}
