/* ===============================
   COLORS
=============================== */
:root {
    --primary-green: #82e682;
    --primary-blue: #2f66f5;
    --primary-black: #000000;

    --secondary-green: #97f59b;
    --secondary-blue: #a0bdf5;
}

/* ===============================
   TYPOGRAPHY
=============================== */
body {
    font-family: 'Poppins', sans-serif;
    color: #111;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kalista Serif', serif;
    font-weight: 600;
}

h2 {
    color: var(--primary-green);
}

h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
/* ===============================
   NAVBAR STYLING
=============================== */

.navbar {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    height: 90px !important;
}

.navbar-nav .nav-link {
    color: #000000;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #00A993; /* Resonance Green */
}

.btn-enquiry {
    background-color: #000000;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
}

.btn-enquiry:hover {
    background-color: #00A993; /* hover to green */
    color: #ffffff;
}

.btn-enquiry i {
    font-size: 1rem;
    margin-right: 6px;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 0.6rem 0;
    }

    .btn-enquiry {
        margin-top: 0.8rem;
        width: 100%;
        justify-content: center;
    }
}






/* ================================
   FOOTER SECTION
================================ */
.reso-footer {
    position: relative;
    background: linear-gradient(90deg, #5dbd51 0%, #008b9e 45%, #0065db 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    /*padding-top: 263px;*/
    /*padding-bottom: 40px;*/
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

/* Left Column */
.footer-left {
    flex: 1 1 30%;
    min-width: 280px;
}

.footer-logo {
    width: 234px;
    height: 105px;
    margin-bottom: 20px;
}

.footer-title {
    width: 100%;
    height: auto;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 46px;
    line-height: 56px;
    color: #F8F8F8;
    margin-bottom: 15px;
}

.footer-address {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #F8F8F8;
    margin-bottom: 10px;
}

.footer-email {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

.footer-email:hover {
    text-decoration: underline;
}

/* Middle Column */
.footer-middle {
    flex: 1 1 20%;
    min-width: 240px;
    padding-top: 130px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Social Icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a img {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social a:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Right Column */
.footer-right {
    flex: 1 1 42%;
    padding-top: 137px;
}

.footer-help {
    width: 338px;
    height: 39px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 39px;
    color: #F8F8F8;
    margin-bottom: 10px;
}

.footer-phone {
    width: 100%;
    height: auto;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size:45px; /* ✅ auto scales with screen width */
    line-height: 1.2;
    color: #F8F8F8;
}


/* Bottom Row */
.footer-bottom {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #F8F8F8;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}




/* ================================
   FOOTER BASE
================================ */
.reso-footer {
    position: relative;
    background: linear-gradient(90deg, #5dbd51 0%, #008b9e 45%, #0065db 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding-top: 40px;
    /*padding-bottom: 40px;*/
}


/* Right Text Section */
.reso-banner-right {
    flex: 0 0 55%;
    text-align: left;
}

.reso-banner-heading {
    font-family: 'Kalista Serif', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 51px;
    color: #7DC13B;
    margin-bottom: 15px;
}

.reso-banner-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #242424;
    text-align: left;
    margin-bottom: 35px;
}

/* Buttons */
.reso-banner-buttons {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-banner {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-visit {
    background: #000;
    color: #fff;
}

/*.btn-visit:hover {
    background: #333;
}*/
a:hover {
    color: white;
}
.btn-register {
    background: #000;
    color: #fff;
}

.btn-register:hover {
    background: #000;
    color: #fff;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
    .reso-admission-banner {
        width: 90%;
        padding: 50px 30px;
        border-radius: 180px;
    }

    .reso-banner-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .reso-banner-left,
    .reso-banner-right {
        flex: 1 1 100%;
    }

    .reso-banner-student {
        max-width: 280px;
        margin-bottom: 20px;
        top: 0;
    }

    .reso-banner-heading {
        font-size: 30px;
    }

    .reso-banner-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .reso-admission-banner {
        width: 95%;
        padding: 40px 20px;
        border-radius: 100px;
        top: -45%;
    }

    .reso-banner-heading {
        font-size: 24px;
    }

    .btn-banner {
        font-size: 14px;
        padding: 10px 22px;
    }
}



/* Default – Desktop view */
.desktop-only {
    display: block !important;
}
.mobile-only {
    display: none !important;
}

/* Mobile view (up to 768px) */
@media screen and (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

/* ================================
   FOOTER CONTAINER FULL-WIDTH FIX
================================ */
.footer-container {
    width: 100%;
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Ensure footer wrapper adapts to new spacing */
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}


@media (max-width: 576px) {
    .footer-container{
        padding-left: 10px;
        padding-right: 10px;
    }
    .footer-wrapper{
        text-align: left;
    }
    .reso-footer{
        padding-top: 70px;
    }
    .footer-middle{
        padding-top: 0;
    }

    .footer-social {
        justify-content: left;
    }

    .footer-right {
        padding-top: 0;
    }

    .footer-help{
        width: 100%;
        height: auto;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #F8F8F8;
        text-align: left;
    }
    .footer-bottom {
        text-align: left !important;
    }

}

