* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #082d63;
}

a {
    text-decoration: none;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    width: 100%;
    height: 120px;

    background: #ffffff;

    position: relative;
    z-index: 1000;


    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.nav-container {
    width: 100%;
    max-width: 1370px;

    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    width: 100px;

    display: flex;
    align-items: center;
}

.logo img {
    width: 125px;
    height: 95px;
    margin-top: 8px;

    object-fit: contain;
}


/* NAVIGATION */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 55px;
}

.nav-menu a {
    position: relative;

    color: #071f49;

    font-size: 16px;
    font-weight: 700;

    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: #087fe8;
}


/* ACTIVE */

.nav-menu a.active {
    color: #087fe8;
}

.nav-menu a.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -14px;

    width: 45px;
    height: 3px;

    transform: translateX(-50%);

    background: #087fe8;

    border-radius: 10px;
}


/* LOGIN */

.login-btn {
    padding: 14px 30px;

    color: #ffffff;

    background: linear-gradient(
        100deg,
        #063c8e,
        #08a9e8
    );

    border-radius: 6px;

    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(0, 100, 200, 0.25);

    transition: 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0, 100, 200, 0.35);
}


/* Hero Section Abouts */

.about-section{
    padding: 60px 0 30px;
    background:  #092e63;
    height: 180px;
}

.about-section h2{
    color: white;
    text-align: center;
    font-family: Georgia, serif;
    font-size: 33px;
}
    



/* =========================================
   WHO WE ARE SECTION
========================================= */

.who-section {
    padding: 70px 0 55px;
    background: #ffffff;

    /* REMOVE FIXED HEIGHT */
    height: auto;
    min-height: 0;
}

.who-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 20px 0;

    display: grid;

    grid-template-columns: 1.15fr 0.8fr 1fr;

    gap: 80px;

    align-items: center;
}


/* =========================================
   LABEL
========================================= */

.section-label {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #087fe8;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.section-label span {
    width: 30px;
    height: 2px;

    background: #087fe8;

    display: block;
}


/* =========================================
   TITLE
========================================= */

.who-content h2 {
    color: #092e63;

    font-family: Georgia, serif;

    font-size: 32px;

    line-height: 1.2;

    margin: 0 0 16px;
}

.who-content h2 span {
    color: #087fe8;
}


/* =========================================
   DESCRIPTION
========================================= */

.who-content p {
    color: #355b86;

    font-size: 15px;

    line-height: 1.8;

    max-width: 470px;

    margin: 0 0 30px;
}


/* =========================================
   BUTTON
========================================= */

.course-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 25px;

    padding: 13px 20px;

    color: #ffffff;

    background: linear-gradient(
        90deg,
        #1466eb,
        #08aee8
    );

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(0, 130, 230, 0.20);

    transition: all 0.3s ease;
}

.course-btn span {
    font-size: 20px;
    line-height: 1;
}

.course-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0, 130, 230, 0.28);
}


/* =========================================
   FEATURES
========================================= */

.features {
    display: flex;

    flex-direction: column;

    gap: 35px;
}

.feature {
    display: flex;

    align-items: center;

    gap: 14px;
}

.feature-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #e6f4ff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 20px;

    color: #087fe8;
}

.feature h3 {
    color: #0a326a;

    font-size: 14px;

    margin: 0 0 4px;
    font-family: Georgia, serif;
}

.feature p {
    color: #48698f;

    font-size: 12px;

    line-height: 1.4;

    max-width: 180px;

    margin: 0;
}


/* =========================================
   CLASSROOM IMAGE
========================================= */

.classroom {
    position: relative;

    width: 100%;
}

.classroom img {
    width: 100%;

    height: 245px;

    object-fit: cover;

    border-radius: 12px;

    display: block;

    box-shadow:
        0 10px 30px rgba(0, 50, 100, 0.10);
}


/* =========================================
   TRUST BADGE
========================================= */

.trust-badge {
    position: absolute;

    right: 10px;
    bottom: 10px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 14px;

    background: #06366d;

    color: #ffffff;

    border-radius: 30px;

    font-size: 11px;

    box-shadow:
        0 6px 18px rgba(0, 30, 70, 0.25);
}

.trust-badge span {
    font-size: 18px;
}

.trust-badge strong {
    font-size: 12px;
}

.trust-badge b {
    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffc400;

    color: #06366d;
}


/* =========================================
   STATISTICS
========================================= */

.stats-section {
    background: #eff9ff;

    padding: 20px 0;
}

.stats-container {
    width: 90%;
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.stat {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-height: 55px;

    border-right: 1px solid #d7eaf5;
}

.stat:last-child {
    border-right: none;
}

.stat-icon {
    color: #0089df;

    font-size: 28px;
}

.stat strong {
    display: block;

    color: #092e63;

    font-size: 20px;

    line-height: 1.1;
}

.stat span {
    display: block;

    color: #4a6b8c;

    font-size: 11px;

    margin-top: 3px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .who-container {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .classroom {
        grid-column: 1 / -1;

        max-width: 600px;

        margin: 0 auto;
    }

    .classroom img {
        height: 280px;
    }
}




/* =========================================
   FOOTER
========================================= */

.footer {
    background: #0945a0;

    color: #ffffff;

    padding-top: 60px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 45px;

    padding-bottom: 45px;
}


/* ABOUT */
/* 
.footer-logo {
    width: 90px;
    height: 65px;

    object-fit: contain;

    background: #ffffff00;

    border-radius: 5px;

    margin-bottom: 15px;
} */

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    display: block;

    filter: grayscale(100%)
            invert(100%)
            brightness(300%)
            contrast(1000%);

    mix-blend-mode: screen;
}



.footer-about p {
    max-width: 310px;

    color: #ffffff;

    font-size: 13px;

    line-height: 1.7;
}

.footer-about h2{
    font-size: 15px;
    color: rgb(77, 128, 238);
    margin-bottom: 10px;
}


/* SOCIAL */

.social-links {
    display: flex;

    gap: 9px;

    margin-top: 20px;
}

.social-links a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: rgba(255,255,255,0.08);

    border-radius: 50%;

    transition: 0.3s ease;
}

.social-links a:hover {
    background: #087fe8;

    transform: translateY(-4px);
}


/* FOOTER HEADINGS */

.footer-column h3 {
    position: relative;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: 16px;
    
    font-style: normal;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 8px;

}


/* FOOTER LINKS */

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 11px;
}

.footer-column ul li a {
    color: #ffffff;

    font-size: 13px;

    transition: 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;

    padding-left: 5px;
}


/* FOOTER CONTACT */

.footer-contact p {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #e9e9e9;

    font-size: 13px;

    line-height: 1.5;

    margin-bottom: 13px;
}

.footer-contact p i {
    width: 17px;

    color: #fafeff;

    margin-top: 2px;

}

.footer-contact-btn {
    display: inline-block;

    margin-top: 8px;

    padding: 10px 18px;

    background: #087fe8;

    color: #ffffff;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;

    transition: 0.3s ease;
}

.footer-contact-btn:hover {
    background: #08a9e8;

    transform: translateY(-2px);
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    width: 90%;
    max-width: 1200px;

    margin: auto;

    padding: 20px 0;

    border-top: 1px solid rgba(210, 200, 200, 0.1);

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-bottom p {
    color: #ffffff;

    font-size: 17px;
    margin-left: 179px;
    
}
.footer-bottom p span{
    font-size: 13px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: #91a9c5;

    font-size: 11px;

    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}






/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .nav-menu {
        gap: 30px;
    }

    .hero-container {
        width: 94%;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .who-container {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .classroom {
        grid-column: span 2;

        max-width: 550px;

        margin: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .navbar {
        height: auto;

        padding: 12px 0;
    }

    .nav-container {
        flex-direction: column;

        gap: 15px;
    }

    .nav-menu {
        gap: 15px;

        flex-wrap: wrap;

        justify-content: center;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .login-btn {
        display: none;
    }


    /* HERO */

    .about-hero {
        height: auto;

        min-height: 550px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 45px;
    }

    .hero-content {
        padding-left: 0;
    }

    .small-heading {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        margin: auto;
    }

    .hero-image {
        height: 260px;
    }

    .hero-image img {
        height: 270px;
    }

    .learn-text,
    .cap-icon {
        display: none;
    }


    /* ABOUT */

    .who-section {
        padding: 50px 0;
    }

    .who-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .who-content {
        text-align: center;
    }

    .section-label {
        justify-content: center;
    }

    .who-content h2 {
        font-size: 28px;
    }

    .who-content p {
        margin-left: auto;
        margin-right: auto;
    }


    /* FEATURES */

    .features {
        max-width: 400px;

        margin: auto;
    }


    /* CLASSROOM */

    .classroom {
        grid-column: auto;

        width: 100%;
    }


    /* STATS */

    .stats-container {
        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }

    .stat {
        border-right: none;

        justify-content: flex-start;
    }

}



/* === NEW RESPONSIVE & FONT ALIGNMENT FIXES === */
body {
    font-family: 'Inter', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .nav-menu a {
    font-family: 'Merriweather', serif !important;
}

/* Global Responsive Tweaks */
@media (max-width: 992px) {
    .nav-menu {
        display: none !important; /* Simplified nav for mobile unless they add hamburger */
    }
    .nav-container {
        justify-content: center;
        flex-direction: column;
        padding: 10px 0;
    }
    .login-btn {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .who-container, .contact-container, .blog-container, .courses-container, .gallery-grid, .footer-container {
        flex-direction: column !important;
        align-items: center !important;
    }
    .who-content, .who-image, .contact-form, .contact-info {
        width: 100% !important;
        padding: 15px !important;
    }
    .course-card, .blog-card, .gallery-item {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    .footer-col {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
}

/* Mobile Navbar Responsive */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #071f49;
}

@media (max-width: 991px) {
    .nav-container {
        padding: 0 20px;
        position: relative;
    }
    .hamburger { display: block; position: absolute; right: 20px; top: 25px; z-index: 1001; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.4s ease-in-out;
        z-index: 1000;
    }
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .nav-container > .login-btn {
        display: none;
    }
}
