/* Mission & Vision nav link active styling */
.menu .nav-link.active {
    color: var(--forth-color);
    font-weight: 800;
    background: linear-gradient(90deg, #fbbf24 0%, var(--prim-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2.5px solid var(--forth-color);
    transition: all 0.2s;
}
/* Fancy styling for Mission & Vision heading */
.mv-section-title {
    font-size: 2.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    background: linear-gradient(90deg, var(--prim-color) 0%, #847d6c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 12px rgba(30,64,175,0.08);
}
.mv-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    margin: 16px auto 0 auto;
    background: linear-gradient(90deg, var(--forth-color) 0%, #fbbf24 100%);
    border-radius: 3px;
    opacity: 0.85;
    box-shadow: 0 2px 8px rgba(30,64,175,0.10);
}
@media (max-width: 600px) {
    .mv-section-title {
        font-size: 1.3rem;
    }
    .mv-section-title::after {
        width: 40px;
        height: 3px;
        margin: 8px auto 0 auto;
    }
}
/* Fancy Mission & Vision Section Enhancements */
.mission-vision-section {
    width: 100%;
    background: linear-gradient(120deg, #e0f2fe 0%, #f1f5ff 60%, #e0f2fe 100%);
    padding: 80px 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.mv-bg-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
}
.mv-bg-shape1 {
    top: -60px;
    left: -80px;
    width: 320px;
    transform: rotate(-12deg);
}
.mv-bg-shape2 {
    bottom: -40px;
    right: -60px;
    width: 260px;
    transform: rotate(8deg);
}
.mv-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    z-index: 2;
}
.mv-block {
    background: linear-gradient(120deg, #fff 80%, #e0f2fe 100%);
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(30,64,175,0.10);
    padding: 44px 36px 36px 36px;
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.mv-block:hover {
    box-shadow: 0 12px 40px rgba(30,64,175,0.18);
    transform: translateY(-6px) scale(1.025);
}
.mv-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forth-color) 0%, var(--prim-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(30,64,175,0.10);
    z-index: 2;
}
.mv-vision-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e42 100%);
    color: #fff;
}
.mv-title {
    font-size: 1.6rem;
    font-family: 'Nunito', sans-serif;
    color: var(--third-color);
    font-weight: 700;
    margin-bottom: 6px;
    z-index: 2;
}
.mv-text {
    font-size: 1.12rem;
    color: #333;
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    margin: 0;
    z-index: 2;
}
.mv-side-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: auto;
    opacity: 0.13;
    z-index: 1;
    pointer-events: none;
}
.mv-mission-img {
    left: 0;
    right: auto;
    width: 110px;
    opacity: 0.12;
    bottom: 0;
    top: auto;
}
.mv-vision-img {
    right: 0;
    left: auto;
    width: 120px;
    opacity: 0.13;
    bottom: 0;
    top: auto;
}
@media (max-width: 900px) {
    .mv-content-wrapper {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .mv-block {
        max-width: 98vw;
        min-width: 0;
        width: 100%;
        padding: 28px 10px 24px 10px;
    }
    .mv-side-img {
        width: 70px;
    }
}
@media (max-width: 600px) {
    .mission-vision-section {
        padding: 32px 0 18px 0;
    }
    .mv-section-title {
        font-size: 1.3rem;
    }
    .mv-block {
        padding: 16px 4px 12px 4px;
    }
    .mv-title {
        font-size: 1.1rem;
    }
    .mv-text {
        font-size: 0.98rem;
    }
    .mv-icon-circle {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    .mv-side-img {
        width: 40px;
    }
    .mv-bg-shape1 {
        width: 120px;
        top: -20px;
        left: -30px;
    }
    .mv-bg-shape2 {
        width: 90px;
        bottom: -10px;
        right: -20px;
    }
}
/* Mission & Vision Section */
.mission-vision-section {
    width: 100%;
    background: linear-gradient(90deg, #e0f2fe 0%, #f1f5ff 100%);
    padding: 60px 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.mv-title-block {
    text-align: center;
    margin-bottom: 32px;
}
.mv-section-title {
    font-size: 2.2rem;
    font-family: 'Kaushan Script', cursive;
    color: var(--prim-color);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0;
}
.mv-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
}
.mv-block {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(30,64,175,0.08);
    padding: 36px 32px 32px 32px;
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.mv-block:hover {
    box-shadow: 0 8px 32px rgba(30,64,175,0.16);
    transform: translateY(-4px) scale(1.02);
}
.mv-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forth-color) 0%, var(--prim-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(30,64,175,0.10);
}
.mv-vision-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e42 100%);
    color: #fff;
}
.mv-title {
    font-size: 1.5rem;
    font-family: 'Nunito', sans-serif;
    color: var(--third-color);
    font-weight: 700;
    margin-bottom: 6px;
}
.mv-text {
    font-size: 1.08rem;
    color: #333;
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 900px) {
    .mv-content-wrapper {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .mv-block {
        max-width: 98vw;
        min-width: 0;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .mission-vision-section {
        padding: 32px 0 18px 0;
    }
    .mv-section-title {
        font-size: 1.3rem;
    }
    .mv-block {
        padding: 18px 10px 16px 10px;
    }
    .mv-title {
        font-size: 1.1rem;
    }
    .mv-text {
        font-size: 0.98rem;
    }
    .mv-icon-circle {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
}
/* Footer Full Width & Height, Seamless Background */
/* Remove border lines for transparent footer */
.footer-theme-full {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    left: 0;
    transform: none;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    border-top: none !important;
    border-bottom: none !important;
}

.footer-theme-main-full {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 48px 4vw 24px 4vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
}
.footer-theme-bottom-full {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 0 18px 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
}
@media (max-width: 900px) {
    .footer-theme-main-full {
        padding: 32px 2vw 16px 2vw !important;
    }
}
@media (max-width: 600px) {
    .footer-theme-main-full {
        padding: 18px 1vw 8px 1vw !important;
    }
}
/* --- Universal Responsive Enhancements --- */
html {
    box-sizing: border-box;
    font-size: 16px;
}
*, *:before, *:after {
    box-sizing: inherit;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Section padding and gap for all screens */
section, .section {
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1200px) {
    section, .section {
        padding: 4% 2vw;
        gap: 24px;
    }
}
@media (max-width: 900px) {
    section, .section {
        padding: 6% 2vw;
        gap: 16px;
    }
}
@media (max-width: 600px) {
    section, .section {
        padding: 8% 1vw;
        gap: 10px;
    }
}

/* Responsive grid/flex for .portfolio-img-wrapper */
.portfolio-img-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .portfolio-img-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }
}
@media (max-width: 600px) {
    .portfolio-img-wrapper {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Responsive for .Ep-cards */
.Ep-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px 32px;
}
@media (max-width: 900px) {
    .Ep-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Responsive for .counter-wrapper */
.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}
@media (max-width: 900px) {
    .counter-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}
@media (max-width: 600px) {
    .counter-wrapper {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Responsive for .faq-wrapper */
.faq-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
@media (max-width: 900px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Responsive for .blog-container */
.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
@media (max-width: 900px) {
    .blog-container {
        flex-direction: column;
        gap: 12px;
    }
}

/* Responsive for .footer-theme-main */
.footer-theme-main {
    flex-wrap: wrap;
    gap: 32px;
}
@media (max-width: 900px) {
    .footer-theme-main {
        flex-direction: column;
        gap: 18px;
        padding: 32px 2vw 16px 2vw;
    }
}
@media (max-width: 600px) {
    .footer-theme-main {
        padding: 18px 1vw 8px 1vw;
        gap: 10px;
    }
}

/* Responsive for scroll-to-top button */
@media (max-width: 600px) {
    #scrollToTopBtn {
        right: 12px;
        bottom: 12px;
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
}
/* Stylish Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 9999;
    background: linear-gradient(135deg, var(--forth-color) 0%, var(--prim-color) 100%);
    color: #fff;
    border: none;
    outline: none;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(30,64,175,0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s, transform 0.2s;
}
#scrollToTopBtn:hover {
    background: linear-gradient(135deg, var(--prim-color) 0%, var(--forth-color) 100%);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 32px rgba(30,64,175,0.22);
}
#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
}
/* Full-width, theme-matching footer redesign */
.footer-theme {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--third-color) 0%, var(--forth-color) 100%);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 -2px 16px rgba(30,64,175,0.08);
    position: relative;
    left: 50%;
    right: 0;
    padding: 0;
    border-top: 4px solid #2563EB;
}
.footer-theme-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 48px 7vw 24px 7vw;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    background: none;
    box-shadow: none;
    border-radius: 0;
}
.footer-theme-col {
    flex: 1 1 260px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}
.footer-theme-logo-block {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    min-width: 280px;
}
.footer-theme-logo {
    height: 70px;
    width: 70px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 2px 12px rgba(30,64,175,0.08);
}
.footer-theme-school-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-theme-school-name {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: 0.5px;
}
.footer-theme-affiliation {
    font-size: 1rem;
    color: #c7d6f7;
    font-weight: 500;
}
.footer-theme-contact-block h3,
.footer-theme-social-block h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}
.footer-theme-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #e0e7ff;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-theme-contact-list i {
    margin-right: 8px;
    color: #60a5fa;
    font-size: 1.1em;
}
.footer-theme-social-icons {
    display: flex;
    gap: 16px;
}
.footer-theme-social-icons a {
    color: #fff;
    font-size: 1.6rem;
    background: #2563EB;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30,64,175,0.10);
}
.footer-theme-social-icons a:hover {
    background: #fff;
    color: #2563EB;
    box-shadow: 0 4px 16px rgba(30,64,175,0.15);
}
.footer-theme-bottom {
    width: 100%;
    text-align: center;
    padding: 18px 0 8px 0;
    background: transparent;
    color: #e0e7ff;
    font-size: 1rem;
    letter-spacing: 0.2px;
    border-top: none;
    margin-top: 0;
}
@media (max-width: 900px) {
    .footer-theme-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 40px 4vw 20px 4vw;
    }
    .footer-theme-logo-block {
        justify-content: flex-start;
    }
}
@media (max-width: 600px) {
    .footer-theme-main {
        padding: 28px 2vw 12px 2vw;
        gap: 20px;
    }
    .footer-theme-logo {
        height: 50px;
        width: 50px;
    }
    .footer-theme-school-name {
        font-size: 1.1rem;
    }
    .footer-theme-contact-block h3,
    .footer-theme-social-block h3 {
        font-size: 1rem;
    }
    .footer-theme-bottom {
        font-size: 0.95rem;
        padding: 12px 0 4px 0;
    }
}
/* Modern Footer Redesign */
.footer-modern {
    width: 100%;
    background: linear-gradient(90deg, #1E40AF 0%, #2563EB 100%);
    color: #fff;
    padding: 0;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}
.footer-modern-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 48px 8vw 24px 8vw;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-modern-logo-block {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 260px;
}
.footer-modern-logo {
    height: 70px;
    width: 70px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 2px 12px rgba(30,64,175,0.08);
}
.footer-modern-school-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-modern-school-name {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: 0.5px;
}
.footer-modern-affiliation {
    font-size: 1rem;
    color: #c7d6f7;
    font-weight: 500;
}
.footer-modern-contact-block {
    min-width: 220px;
    flex: 1 1 220px;
}
.footer-modern-contact-block h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}
.footer-modern-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #e0e7ff;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-modern-contact-list i {
    margin-right: 8px;
    color: #60a5fa;
    font-size: 1.1em;
}
.footer-modern-social-block {
    min-width: 180px;
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.footer-modern-social-block h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}
.footer-modern-social-icons {
    display: flex;
    gap: 16px;
}
.footer-modern-social-icons a {
    color: #fff;
    font-size: 1.6rem;
    background: #2563EB;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30,64,175,0.10);
}
.footer-modern-social-icons a:hover {
    background: #fff;
    color: #2563EB;
    box-shadow: 0 4px 16px rgba(30,64,175,0.15);
}
.footer-modern-bottom {
    width: 100%;
    text-align: center;
    padding: 18px 0 8px 0;
    background: rgba(0,0,0,0.08);
    color: #e0e7ff;
    font-size: 1rem;
    letter-spacing: 0.2px;
    border-top: 1px solid #33415533;
    margin-top: 0;
}
@media (max-width: 900px) {
    .footer-modern-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 40px 4vw 20px 4vw;
    }
    .footer-modern-logo-block {
        justify-content: flex-start;
    }
}
@media (max-width: 600px) {
    .footer-modern-main {
        padding: 28px 2vw 12px 2vw;
        gap: 20px;
    }
    .footer-modern-logo {
        height: 50px;
        width: 50px;
    }
    .footer-modern-school-name {
        font-size: 1.1rem;
    }
    .footer-modern-contact-block h3,
    .footer-modern-social-block h3 {
        font-size: 1rem;
    }
    .footer-modern-bottom {
        font-size: 0.95rem;
        padding: 12px 0 4px 0;
    }
}
/* Fancy Language Toggle for Director Message */
/* Fancy Language Toggle for Director Message - refined */
.lang-toggle {
    display: flex;
    gap: 0.25em;
    background: #e0f2fe;
    border-radius: 1.5em;
    padding: 2px 4px;
    box-shadow: 0 1px 4px rgba(30,64,175,0.06);
    align-items: center;
    height: 36px;
}
.toggle-btn {
    border: none;
    background: transparent;
    color: var(--third-color);
    font-size: 1rem;
    font-family: var(--Nunito-font);
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 1.5em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    height: 32px;
    display: flex;
    align-items: center;
}
.toggle-btn.active, .toggle-btn:hover {
    background: var(--forth-color);
    color: #fff;
}
.about-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5em;
    box-sizing: border-box;
}
.about-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0.5em;
}
.about-title h2 {
    font-size: 1.35rem;
    font-family: var(--Kaushan-font);
    color: var(--third-color);
    margin: 0;
}
.director-msg-block {
    margin-top: 0.7em;
    background: #fff;
    border-radius: 0.7em;
    box-shadow: 0 1px 8px rgba(30,64,175,0.05);
    padding: 1.2em 1.2em 1em 1.2em;
    font-size: 0.98rem;
    color: #222;
    font-family: var(--Nunito-font);
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.director-msg-block p {
    margin: 0 0 0.7em 0;
}
@media (max-width: 700px) {
    .about-content {
        max-width: 98vw;
        padding: 0 0.5em;
    }
    .director-msg-block {
        padding: 0.7em 0.5em 0.7em 0.5em;
        font-size: 0.93rem;
    }
    .about-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
/* PROFESSIONAL NAVBAR LAYOUT */
.main-navbar {
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 2px 12px rgba(30,64,175,0.04);
    padding: 0 3vw;
    position: relative;
    z-index: 1000;
}
.navbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 320px;
}
.logo-img-link {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
}
.logo-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.2;
}
.school-name {
    font-size: 1.5rem;
    font-family: var(--Kaushan-font);
    color: var(--third-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    white-space: nowrap;
}
.affiliation {
    font-size: 0.95rem;
    color: var(--forth-color);
    font-family: var(--Nunito-font);
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-left: 2px;
}
.navbar-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 0 2vw;
}
.navbar-center li a {
    font-size: 1.15rem;
    font-family: var(--Nunito-font);
    color: var(--third-color);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.navbar-center li a:hover, .navbar-center li.active a {
    background: var(--forth-color);
    color: #fff;
}
.navbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}
@media (max-width: 900px) {
    .main-navbar {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1vw;
        min-height: unset;
    }
    .navbar-left {
        justify-content: flex-start;
        min-width: 0;
        margin-bottom: 8px;
    }
    .navbar-center {
        flex-wrap: wrap;
        gap: 10px;
        margin: 0 0 8px 0;
    }
    .navbar-right {
        justify-content: flex-end;
        margin-bottom: 8px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Jost:ital,wght@0,100..900;1,100..900&family=Kaushan+Script&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'poppins';
    scroll-behavior: smooth;
}

:root{
    --prim-color:#2563EB;
    --secondary-color:#0EA5E9;
    --third-color:#1E40AF;
    --forth-color:#3B82F6;
    --section-dark:#0C4A6E;
    --section-light:#E0F2FE;
    --gray-color:#5c707e;
    --white-color:#fff;
    --black-color:#000;

    --Kaushan-font:"Kaushan Script", serif;
    --Jost-font:"Jost", serif;
    --Nunito-font:"Nunito", serif;
    --Bubblegum-font:"Bubblegum Sans", serif;

    --transition-reguler:.3s;
    --transition-slow:.6s;
}

body{
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    background-color: #fafafa;  
}

section, .section {                 /* adjust selectors as needed */
    margin: 0;                      /* remove browser default bottom margin */
    padding: 40px 0;                /* vertical padding for breathing room */
    background-color: #f9f9f9;      /* very light grey – change to taste */
}


img{
    width: 100%;
    height: 100%;
    display: block;
}

section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 5% 12%;
}


/* NAVBAR  */

.nav-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999 !important;
}
.top-nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-color: var(--third-color);
    padding: 10px 12%;
}
.top-nav-col {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-nav-col h2{
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--Jost-font);
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-nav-col i{
    font-size: 1.2rem;
}
.top-nav-social-icons{
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-nav-social-icons i{
    font-size: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-reguler);
}
.top-nav-social-icons i:hover{
    background-color: var(--forth-color);
    cursor: pointer;
}

nav{
    width: 100%;
    height: 100px;
    padding: 0 12%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a{
    font-size: 3rem;
    font-family: var(--Kaushan-font);
    color: var(--black-color);
    display: flex;
    align-items: center;
}
.logo-img{
    height: 80px;
    width: auto;
    object-fit: contain;
}
.logo a span{
    font-family: var(--Kaushan-font);
    color: var(--third-color);
}
.menu {
    display: flex;
    align-items: center;
    gap: 15px;
}
.menu li a{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black-color);
    font-family: var(--Nunito-font);
    transition: var(--transition-reguler);
}
.menu li:hover a{
    color: var(--forth-color);
}
.nav-btn{
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-btn .search-icon{
    font-size: 1.5rem;
    transition: var(--transition-reguler);
}
.nav-btn .search-icon:hover{
    color: var(--forth-color);
    cursor: pointer;
}
.bars{
    display: none;
}
button{
    width: 170px;
    height: 55px;
    border-radius: 5px;
    border: 1px solid rgba(131, 131, 131, 0.5);
    background-color:transparent;
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--Jost-font);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: var(--transition-reguler);
}
button:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background-color: var(--prim-color);
    z-index: -1;
    transition: var(--transition-slow);
}
button:hover:after{
    width: 100%;
    height: 100%;
    cursor: pointer;
}
button:hover {
    color: var(--white-color);
}
button i{
    font-size: 1.2rem;
    transition: var(--transition-reguler);
}
button:hover i{
    transform: rotate(-180deg);
}
nav button{
    color: var(--white-color);
    background-color: var(--secondary-color);
}
nav button:hover:after{
    background-color: var(--section-dark);
}

/* NAVBAR MQ SECTION  */

@media (max-width:1200px) {
    section{
        padding: 5% 8%;
        gap: 30px;
    }
    .menu li a{
        font-size: 1.2rem;
    }
}
@media (max-width:900px) {
    section{
        flex-direction: column;
        padding: 5% 5%;
        gap: 20px;
    }
    .top-nav-col h2{
        font-size: 13px;
    }
    .bars{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        border: 1px solid rgba(131, 131, 131, 0.5);
        transition: var(--transition-reguler);
    }
    .bars:hover{
        background-color: var(--section-dark);
        color: var(--white-color);
        cursor: pointer;
    }
    nav{
        position: relative;
    }
    .menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: var(--section-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 2% 12%;
        z-index: 999 !important;
        transition: var(--transition-slow) !important;
    }
    .menu li a{
        color: var(--white-color);
    }
    .show-menu{
        left: 0;
    }
}
@media (max-width:500px) {
    section{
        padding: 8% 5%;
        gap: 15px;
    }
    .top-nav{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .top-nav-col{
        justify-content: center;
    }
    .top-nav-col h2:nth-of-type(3),
    .nav-btn{
        display: none;
    }
}

/* HERO HEADER SECTION  */

header{
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 80vh;
    overflow: hidden;
    background-color: var(--section-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    position: relative;
}
.heroSwiper {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    height: 100%;
    position: relative;
}
.heroSwiper .swiper-wrapper {
    width: 100vw;
    height: 100%;
}
.heroSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    height: 80vh;
    background: var(--section-light);
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.heroSwiper .hero-content {
    z-index: 2;
}
.heroSwiper img.hero-element {
    z-index: 1;
}
.heroSwiper .swiper-pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}
.heroSwiper .swiper-pagination-bullet {
    background: var(--third-color);
    opacity: 0.7;
    width: 14px;
    height: 14px;
    margin: 0 6px !important;
    border-radius: 50%;
    transition: background 0.3s;
}
.heroSwiper .swiper-pagination-bullet-active {
    background: var(--forth-color);
    opacity: 1;
}
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: var(--third-color);
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s;
    z-index: 20;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: var(--forth-color);
    color: #fff;
}
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-rtl .swiper-button-prev {
    right: 30px;
    left: auto;
}
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-rtl .swiper-button-next {
    left: 30px;
    right: auto;
}
.hero-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-content h1{
    font-size: 4rem;
    line-height: 4.5rem;
    width: 70%;
    font-family: var(--Nunito-font);
    position: relative;
}
.hero-content h1:after{
    content: '';
    position: absolute;
    top: -10%;
    left: 13%;
    width: 40px;
    height: 40px;
    background-image: url(images/elem-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.hero-content span{
    font-weight: 400;
}
.hero-content .highlight-text{
    color: var(--third-color);
    font-weight: 600;
}
.hero-content p{
    font-size: 1rem;
    line-height: 1.5rem;
    width: 45%;
    margin: 20px 0;
    font-weight: 300;
    color: var(--gray-color);
}
.hero-content button{
    margin: 10px 0;
    color: var(--white-color);
    background-color: var(--prim-color);
}
.hero-content button:hover:after{
    background-color: var(--secondary-color);
}
.hero-element{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-element1{
    top: 40%;
    left: 20%;
    width: 380px;
    height: 380px;
    object-fit: contain;
    animation: anim-top-bottom 4s infinite linear;
}
.hero-element2{
    top: 60%;
    left: 80%;
    width: 380px;
    height: 380px;
    object-fit: contain;
    animation: anim-top-bottom 4s .7s infinite linear;
}
.hero-element3{
    top: 77.5%;
    left: 40%;
    width: 45%;
    height: 45%;
}
.hero-element4 {
    top: 22.5%;
    left: 72%;
    width: 100px;
    height: 100px;
    object-fit: contain;
    animation:  anim-skew 1.5s infinite linear;
}
.hero-element5{
    width: 70%;
    left: 98.2%;
    width: 100px;
    height: 300px;
    object-fit: contain;
    animation: anim-top-bottom 5s infinite linear;
}
.hero-element6{
    width: 30%;
    left: 0%;
    width: 100px;
    height: 300px;
    object-fit: contain;
    animation: anim-left-right 5s infinite linear;
}

/* HEADER ANIMATION  */

@keyframes anim-top-bottom {
    0%{
        transform: translate(-50% , -50%) translateY(0);
    }
    50%{
        transform: translate(-50% , -50%) translateY(20px);
    }
    100%{
        transform: translate(-50% , -50%) translateY(0);
    }
}
@keyframes anim-skew {
    50%{
        transform: translate(-50% , -50%) skewX(5deg);
    }
}
@keyframes anim-left-right {
    0%{
        transform: translate(-20% , -50%) rotate(180deg) translateX(10px);
    }
    50%{
        transform: translate(-20% , -50%) rotate(180deg) translateX(-8px);
    }
    100%{
        transform: translate(-20% , -50%) rotate(180deg) translateX(10px);
    }
}

/* HEADER MQ SECTION  */

@media (max-width:1400px) {
    .hero-element3{
        width: 55%;
    }
    .hero-element4{
        top: 24%;
        left: 80%;
    }
}
@media (max-width:1200px) {
    .hero-element1,
    .hero-element2{
        width: 320px;
        height: 320px;
    }
    .hero-element3{
        width: 60%;
    }
}
@media (max-width:900px) {
    .hero-element3{
        display: none;
    }
    .hero-element1{
        top: 65%;
        left: 30%;
    }
    .hero-element2{
        top: 70%;
        left: 70%;
    }
    .hero-element4{
        top: 40%;
    }
}
@media (max-width:500px) {
    .hero-content h1{
        font-size: 3rem;
        line-height: 3.5rem;
        width: 100%;
    }
    .hero-content h1:after{
        left: 7%;
    }
    .hero-content p{
        width: 90%;
    }
    header{
        height: 60vh;
    }
    .hero-element1,
    .hero-element2{
        width: 220px;
        height: 220px;
        top: 70%;
        left: 20%;
    }
    .hero-element2{
        left: 80%;
    }
    .hero-element4{
        top: 60%;
        left: 50%;
    }
    .hero-element5{
        width: 40px;
        top: 40%;
        left: 97%;
    }
    .hero-element6{
        width: 40px;
    }
}

/* COUNTERS SECTION  */

.counter-content{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.title{
    display: flex;
    flex-direction: column;
}
.title h2{
    font-size: 1.5rem;
    color: var(--forth-color);
    font-family: var(--Bubblegum-font);
    font-weight: 500;
}
.title h1{
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 600;
    width: 70%;
    font-family: var(--Jost-font);
    margin: 10px 0;
}
.counter-content p{
    font-size: 15px;
    color: var(--gray-color);
}
.counter-content button{
    margin-top: 20px;
}
.counter-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    place-content: start;
    place-items: start;
    gap: 20px;
}
.counter-col{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(131, 131, 131, 0.5);
    padding: 10% 7%;
    border-radius: 10px;
    transition: var(--transition-reguler);
}
.counter-col:hover{
    box-shadow: 0 0 10px rgba(131, 131, 131, 0.5);
}
.counter-img{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    padding: 15px;
    background-color: var(--forth-color);
}
.counter-img img{
    object-fit: contain;
}
.counter-info{
    display: flex;
    flex-direction: column;
}
.counter-info h2{
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-family: var(--Jost-font);
}
.counter-info p{
    font-size: 15px;
    color: var(--gray-color);
}

.counter-wrapper .counter-col:nth-child(2) .counter-img{
    background-color: var(--third-color);
}
.counter-wrapper .counter-col:nth-child(3) .counter-img{
    background-color: var(--prim-color);
}
.counter-wrapper .counter-col:nth-child(4) .counter-img{
    background-color: var(--secondary-color);
}

/* COUNTERS MQ SECTION  */

@media (max-width:1200px) {
    .title h1{
        width: 90%;
    }
    .counter-info h2{
        font-size: 2rem;
        line-height: 2rem;
    }
}
@media (max-width:900px) {
    section{
        flex-direction: column;
    }
    .counter-wrapper,
    .counter-content{
        width: 100%;
    }
}
@media (max-width:500px) {
    .counter-wrapper{
        grid-template-columns: repeat(1,1fr);
    }
}                           

/* ABOUT SECTION  */

.about{
    gap: 80px;
    position: relative;
}
.about .hero-element4{
    top: 30%;
    left: 42%;
}
.about-img-wrapper{
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 20px;
}
.about-img{
    width: 60%;
}
.about-boxses{
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-info-box {
    padding: 5%;
    border-radius: 10px;
    background-color: var(--section-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}
.about-info-box  img{
    width: 60px;
    height: 60px;
}
.about-info-box h2{
    font-family: var(--Jost-font);
    font-size: 2rem;
}
.about-info-box h5{
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
}
.about-box{
    display: flex;
    flex-direction: column;
    padding: 5% 10%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(131, 131, 131, 0.3);
}
.about-box h2{
    font-size: 2rem;
    font-family: var(--Jost-font);
    color: var(--secondary-color);
}
.about-box p{
    color: var(--gray-color);
    font-size: 1rem;
}
.about-content{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.about-title h2{
    color: var(--secondary-color);
}
.about-content p{
    font-size: 1rem;
    margin: 20px 0;
}
.about-content button{
    margin: 20px 0;
}

/* ABOUT MQ SECTION  */

@media (max-width:1400px) {
    .about .hero-element4{
        top: 10%;
    }
}
@media (max-width:900px) {
    .about-img-wrapper,
    .about-content{
        width: 100%;
    }
    .about .hero-element4{
        top: 15%;
        left: 72%;
    }
}
@media (max-width:500px) {
    .about-img-wrapper{
        flex-direction: column;
    }
    .about-boxses,
    .about-img{
        width: 100%;
    }
    .about .hero-element4{
        display: none;
    }
}


/* Educational Programs Section  */

.educational-programs{
    flex-direction: column;
}
.Ep-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.Ep-title h1{
    width: 100%;
}
.Ep-title h2{
    color: var(--prim-color);
}

.Ep-cards{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    place-content: center;
    place-items: center;
    gap:30px 80px;
}
.Ep-card{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    padding: 4%;
    padding-left: 8%;
    border-radius: 10px;
    border: 1px solid rgba(131, 131, 131, 0.3);
    position: relative;
    cursor: pointer;
    transition: var(--transition-reguler) !important;
}
.Ep-card:hover {
    box-shadow: 0 0 20px rgba(131, 131, 131, 0.5);
}
.Ep-card img{
    transition: var(--transition-reguler) !important;
}
.Ep-img{
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px solid rgba(131, 131, 131, 0.3);
    border-radius: 10px;
    padding: 10px;
    background-color: var(--white-color);
    transition: var(--transition-reguler) !important;
}
.Ep-card:hover .Ep-img{
    background-color: var(--prim-color);
}
.Ep-card:hover img{
    filter: brightness(25);
}
.Ep-card h2{
    font-size: 2rem;
    line-height: 2rem;
    font-family: var(--Jost-font);
    font-weight: 600;
    transition: var(--transition-reguler);
}
.Ep-card:hover h2{
    color: var(--prim-color);
}
.Ep-card p{
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 300;
}
.Ep-card a{
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--Jost-font);
    transition: var(--transition-reguler);
}
.Ep-card a:hover{
    color: var(--prim-color);
    letter-spacing: 1px;
}

/* Educational Programs MQ Section  */

@media (max-width:1400px) {
    .Ep-card{
        padding-left: 12%;
    }
}
@media (max-width:900px) {
    .Ep-cards{
        grid-template-columns: repeat(1,1fr);
    }
    .Ep-card{
        padding-left: 10%;
    }
}
@media (max-width:500px) {
    .Ep-img{
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0px , 0px);
    }
    .Ep-card{
        padding: 5%;
    }
    .Ep-title h1{
        font-size: 1.5rem;
        line-height: 2rem;
    }
}


/* Latest Portfolio Section */

.portfolio{
    flex-direction: column;
}
.portfolio-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.portfolio-title h1{
    width: 60%;
}
.portfolio-title h2{
    color: var(--secondary-color);
}

.portfolio-tab-btns{
    display: flex;
    align-items: center;
    gap: 20px;
}
.portfolio-tab-btns li{
    padding: 10px 20px;
    border: 1px solid rgba(131, 131, 131, 0.3);
    border-radius: 50px;
    transition: var(--transition-reguler);
    cursor: pointer;
}
.active-btn{
    background-color: var(--forth-color);
    color: var(--white-color);
    cursor: pointer;
}

.portfolio-img-wrapper{
    width: 100%;
    columns: 350px;
}
.portfolio-card{
    margin: 10px 3px;
    position: relative;
    overflow: hidden;
}
.portfolio-box{
    position: absolute;
    top: 50%;
    left: 150%;
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
    background-color: #f7951eb5;
    width: 90%;
    height: 80%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: var(--transition-slow);
}
.portfolio-card:hover .portfolio-box{
    opacity: 1;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
}
.portfolio-img-wrapper .portfolio-card:nth-child(3) .portfolio-box{
    transform: translate(-50%, -50%) rotate(-90deg);
    left: -50%;
    opacity: 0;
}
.portfolio-img-wrapper .portfolio-card:nth-child(3):hover .portfolio-box{
    transform: translate(-50%, -50%) rotate(0deg);
    left: 50%;
    opacity: 1;
}
.portfolio-img-wrapper .portfolio-card:nth-child(4) .portfolio-box{
    transform: translate(-50%, -50%) rotate(-90deg);
    left: -50%;
    opacity: 0;
}
.portfolio-img-wrapper .portfolio-card:nth-child(4):hover .portfolio-box{
    transform: translate(-50%, -50%) rotate(0deg);
    left: 50%;
    opacity: 1;
}
.portfolio-box h2{
    font-size: 1.5rem;
    width: 80%;
    font-weight: 600;
    color: var(--white-color);
    font-family: var(--Nunito-font);
}
.portfolio-box p{
    font-size: 1rem;
    color: var(--white-color);
    font-weight: 300;
}
.portfolio-box i{
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    color: var(--third-color);
    font-size: 1.5rem;
    border-radius: 100%;
}
.portfolio-card img{
    border-radius: 10px;
}

/* Latest Portfolio MQ Section  */

@media (max-width:900px) {
    .portfolio-title h1{
        width: 100%;
    }
}
@media (max-width:500px) {
    .portfolio-title h1{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .portfolio-tab-btns{
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

/* Latest Service Section  */

.latest-services{
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.latest-services:after{
    content: '';
    position: absolute;
    top: 45%;
    left: 67%;
    transform: translate(-50% , -50%);
    width: 45%;
    height: 350px;
    border-radius: 20px;
    background-color: #FFF0E5;
    z-index: -1;
}
.service-kid-img{
    position: absolute;
    top: 60%;
    left: 32%;
    transform: translate(-50% , -50%);
    width: 250px;
    height: 250px;
    animation: anim-LR 5s infinite linear;
}
@keyframes anim-LR {
    0%{
        transform: translate(-50% , -50%) translateX(0px);
    }
    50%{
        transform: translate(-50% , -50%) translateX(30px);
    }
    100%{
        transform: translate(-50% , -50%) translateX(0px);
    }
}
.service-top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    z-index: 1;
}
.service-title{
    width: 50%;
}
.service-top p{
    width: 50%;
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-color);
}
.service-wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.service-btn{
    width: 50%;
}
.service-swiper{
    width: 50%;
}
.serviceSwiper{
    width: 100%;
    padding: 1% !important;
}
.service-card{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    padding: 8%;
    border-radius: 10px;
    background-color: transparent;
    transition: var(--transition-reguler);
}
.service-card:hover{
    background-color: var(--white-color);
    box-shadow: 0 0 15px rgba(131, 131, 131, 0.3);
    cursor: pointer;
}
.service-card:hover h2{
    color: var(--prim-color);
}
.service-card img{
    width: 70px;
    height: 70px;
}
.service-card h2{
    font-size: 1.7rem;
    font-family: var(--Jost-font);
    transition: var(--transition-reguler);
}
.service-card p{
    font-size: 13px;
    opacity: 0;
    font-family: var(--Jost-font);
    transition: var(--transition-reguler);
}
.service-card:hover p,
.service-card:hover a{
    opacity: 1;
}
.service-card a{
    font-size: 1rem;
    font-family: var(--Jost-font);
    font-weight: 500;
    color: var(--black-color);
    transition: var(--transition-reguler);
    opacity: 0;

}
.service-card a i{
    color: var(--prim-color);
    font-size: 1.2rem;
}
.service-card a:hover{
    letter-spacing: 1px;
    color: var(--prim-color)  !important;
}

/* Latest Service MQ Section  */

@media (max-width:1400px) {
    .service-swiper{
        width: 60%;
    }
    .latest-services:after{
        width: 50%;
        left: 63%;
    }
    .service-title h1{
        width: 85%;
    }
    .service-card h2{
        font-size: 1.5rem;
    }
}
@media (max-width:1200px) {
    .service-swiper{
        width: 65%;
    }
    .latest-services:after{
        width: 55%;
        top: 42%;
        left: 63%;
    }
    .service-title h1{
        width: 100%;
    }
    .service-card h2{
        font-size: 1.3rem;
    }
    .service-kid-img{
        width: 200px;
        height: 200px;
        top: 76%;
        left: 9%;
    }
}
@media (max-width:900px) {
    .service-top,
    .service-wrapper{
        flex-direction: column;
        gap: 0;
    }
    .service-title,
    .service-top p,
    .service-btn,
    .service-swiper{
        width: 100%;
    }
    .service-kid-img{
        display: none;
    }
    .latest-services:after{
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
    }
    .service-wrapper{
        gap: 50px;
    }
    .service-card h2{
        font-size: 2rem;
    }
}
@media (max-width:500px) {
    .service-title h1{
        font-size: 1.7rem;
        line-height: 2rem;
    }
}


/* FAQ SECTION  */

.faq-img{
    width: 40%;
}
.faq-container{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.faq-title h1{
    width: 100%;
}
.faq-title h2{
    color: var(--third-color);
}
.faq-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-top: 30px ;
}
.faq-col{
    width: 100%;
    height: 65px;
    overflow: hidden;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(131, 131, 131, 0.5);
    cursor: pointer;
    transition: var(--transition-slow);
     
}
.faq-head{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-head h2{
    font-family: var(--Jost-font);
    font-size: 1.5rem;
    font-weight: 500;
}
.faq-head i{
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--forth-color);
    color: var(--white-color);
    font-size: 1.5rem;
    border-radius: 5px;
    transition: var(--transition-slow);
}
.ans{
    margin-top: 15px;
    opacity: 0;
    font-size: 1rem;
    color: var(--black-color);
    transition: var(--transition-reguler);
}

.show-ans{
    height: 160px;
}
.show-ans-text{
    opacity: 1;
}
.active-faq-icon{
    background-color: var(--secondary-color) !important;
    color: var(--white-color);
}

/* FAQ MQ SECTION  */

@media (max-width:1400px) {
    .faq-title h1{
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .show-ans{
        height: 175px;
    }
}
@media (max-width:1200px) {
    .faq-container{
        width: 65%;
    }
}
@media (max-width:900px) {
    .faq-container,
    .faq-img{
        width: 100%;
    }
    .show-ans{
        height: 160px;
    }
}
@media (max-width:500px) {
    .show-ans{
        height: 160px;
    }
    .faq-title h1{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .faq-head h2{
        font-size: 1rem;
    }
    .ans{
        font-size: 13px;
    }
}

/* TEAMS SECTION  */

.teams{
    flex-direction: column;
}
.teams-title{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.teams-title h2{
    color: var(--secondary-color);
}

.teams-wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,2fr);
    place-content: start;
    place-items: start;
    gap: 20px;
}
.team-col{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10%;
    border: 2px solid var(--prim-color);
    border-radius: 50px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-color: transparent;
    transition: var(--transition-reguler);
}
.team-col:hover{
    border-color: var(--prim-color);
    cursor: pointer;
}
.team-img{
    width: 100%;
}
.team-img img{
    width: 100%;
    border-radius: 50px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: var(--transition-reguler);
}
.team-col:hover .team-img img{
    transform: scale(1.06);
}
.team-info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 10px 0;
}
.team-info h2{
    font-size: 2rem;
    font-family: var(--Jost-font);
    transition: var(--transition-reguler);
}
.team-col:hover .team-info h2{
    color: var(--third-color);
    cursor: pointer;
}
.team-info p{
    font-size: 1rem;
    font-weight: 300;
    margin: 7px 0;
    color: var(--gray-color);
}
.teams-social-icon{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    margin-bottom: 0;
}
.teams-social-icon i{
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 1.3rem;
    background-color: #f7951e2a;
    transition: var(--transition-reguler);
}
.teams-social-icon i:hover{
    color: var(--white-color);
    background-color: var(--third-color);
    cursor: pointer;
}

/* Teams MQ Section  */

@media (max-width:900px) {
    .teams-wrapper{
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width:500px) {
    .teams-wrapper{
        grid-template-columns: repeat(1,1fr);
    }
    .teams-title h1{
        font-size: 1.8rem;
        line-height: 2.5rem;
    }
    .teams{
        gap: 10px;
    }
}

/* testimonial SECTION  */

.testimonials{
    flex-direction: column;
}
.test-top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.test-title{
    width: 50%;
}
.test-top p{
    width: 50%;
}
.test-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    margin-top: 50px;
}
.test-wrapper:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50% , -50%);
    width: 50%;
    height: 450px;
    border-radius: 10px;
    background-image: url(images/testimonial-section-img.jpg);
}
.test-swiper{
    width: 55%;
}
.testSwiper{
    width: 100%;
    border-radius: 10px !important;
    background-color: var(--white-color);
}
.test-card{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border: 1px solid rgba(131, 131, 131, 0.3);
    padding: 5%;
    background-color: var(--white-color);
    border-radius: 10px;
    transition: var(--transition-reguler);
}
.test-card:hover{
    box-shadow: 0 0 15px rgba(131, 131, 131, 0.3);
    cursor: pointer;
}
.client-wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.client-info{
    display: flex;
    align-items: center;
    gap: 20px;
}
.client-img img{
    width: 90px;
    height: 90px;
}
.client-det{
    display: flex;
    flex-direction: column;
}
.client-det h2{
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-family: var(--Jost-font);
}
.client-det p{
    color: var(--gray-color);
    font-size: 1rem;
}
.test-shape{
    width: 100px;
    height: 80px;
    object-fit: contain;
}
.test-pera{
    font-size: 1.2rem;
    margin: 20px 0;
}
.rating{
    display: flex;
    align-items: center;
    gap: 7px;
}
.rating i{
    font-size: 1.5rem;
    color: var(--forth-color);
}

/* TESTIMONIALS MQ SECTION  */

@media (max-width:1400px) {
    .test-title h1{
        width: 100%;
    }
}
@media (max-width:1200px) {
    .test-wrapper:after{
        width: 65%;
        left: 32%;
    }
    .test-swiper{
        width: 60%;
    }
}
@media (max-width:900px) {
    .test-top{
        flex-direction: column;
        gap: 0;
    }
    .test-title,
    .test-top p{
        width: 100%;
    }
    .test-swiper{
        width: 70%;
    }
}
@media (max-width:500px) {
    .test-title h1{
        font-size: 2rem;
        line-height: 2.8rem;
    }
    .test-wrapper:after{
        display: none;
    }
    .test-swiper{
        width: 100%;
    }
    .test-wrapper{
        gap: 0;
    }
    .test-shape{
        width: 60px;
        height: 60px;
    }
}

/* BLOGS SECTION  */

.blogs{
    flex-direction: column;
    background-color: var(--section-light);
}
.blog-title h2{
    color: var(--secondary-color);
}
.blog-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.blog-wrapper{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
.blog-box{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 10px;
    transition: var(--transition-reguler) !important;
}
.blog-box:hover{
    box-shadow: 0 0 15px rgba(131, 131, 131, 0.3);
    cursor: pointer;
}
.blog-img{
    width: 50%;
}
.blog-img img{
    border-radius: 10px;
}
.blog-info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.blog-date-time{
    display: flex;
    align-items: center;
    gap: 20px;
}
.blog-date-time p{
    color: var(--gray-color);
    font-size: 1rem;
    font-weight: 400;
}
.blog-date-time i{
    color: var(--secondary-color);
    font-size: 1.2rem;
}
.blog-info h1{
    font-size: 1.5rem;
    width: 90%;
    font-family: var(--Jost-font);
    margin: 20px 0;
    transition: var(--transition-reguler);
}
.blog-info a{
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-reguler);
}
.blog-info a:hover {
    letter-spacing: 1px;
    color: var(--secondary-color);
}
.blog-col{
    width: 55%;
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-reguler);
}
.blog-col:hover{
    box-shadow:  0 0 15px rgba(131, 131, 131, 0.3);
    cursor: pointer;
}
.blog-col .blog-info{
    padding: 15px;
}
.blog-col .blog-info h1{
    margin: 10px 0;
}
.blog-info h1:hover{
    color: var(--secondary-color);
    cursor: pointer;
}

/* BLOG MQ SECTION  */

@media (max-width:1400px) {
    .blog-info h1{
        font-size: 1.3rem;
    }
    .blog-wrapper{
        width: 50%;
    }
}
@media (max-width:1200px) {
    .blog-box{
        gap: 10px;
    }
    .blog-info h1{
        font-size: 1.1rem;
    }
    .blog-wrapper{
        width: 60%;
    }
    .blog-col .blog-info h1{
        font-size: 1.3rem;
    }
}
@media (max-width:900px) {
    .blog-container{
        flex-direction: column;
    }
    .blog-wrapper,
    .blog-col{
        width: 100%;
    }
}
@media (max-width:500px) {
    .blog-box{
        flex-direction: column;
    }
    .blog-img{
        width: 100%;
    }
    .blog-title h1{
        width: 100%;
        font-size: 2rem;
        line-height: 2.5rem;
    }
}

/* get-connected Section  */

.get-connected{
    background-image: url(images/connected-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0;
}
.gc-img{
    width: 50%;
    animation: anim-lr 5s infinite linear;
}
@keyframes anim-lr {
    0%{
        transform: translateY(7px) translateX(0px);
    }
    50%{
        transform: translateY(7px) translateX(-100px);
    }
    100%{
        transform: translateY(7px) translateX(0px);
    }
}
.gc-content{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.gc-title h1{
    width: 100%;
}
.gc-title h2{
    color: var(--black-color);
}
.gc-inputs{
    width: 100%;
    background-color: var(--white-color);
    border: 1px solid var(--black-color);
    padding: 5px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gc-inputs input{
    width: 80%;
    height: 60px;
    border: none;
    outline: none;
    padding-left: 2%;
    background-color: transparent;
    font-size: 1.2rem;
    color: var(--black-color);
    font-family: var(--Jost-font);
}
.gc-inputs button{
    background-color: var(--forth-color);
    color: var(--white-color);
}
.gc-inputs button:hover:after{
    background-color: var(--secondary-color);
}

/* Get Connected MQ Section  */

@media (max-width:1400px) {
    .gc-title h1{
        font-size: 2.2rem;
    }
}
@media (max-width:1200px) {
    .gc-title h1{
        font-size: 1.7rem;
        line-height: 2rem;
    }
}
@media (max-width:900px) {
    .gc-title h1{
        font-size: 2.5rem;
        line-height: 3rem;
    }
    .gc-img,
    .gc-content{
        width: 100%;
    }
    .get-connected{
        flex-direction: column-reverse;
    }
}
@media (max-width:500px) {
    .gc-title h1{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .gc-img{
        margin-left: 85px;
    }
}

/* FOOTER SECTION  */

.footer{
    background-color: #0a6375;
    flex-direction: column;
    padding-bottom: 3%;
}
.footer-wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    place-content: start;
    place-items: start;
    gap: 20px;
}
.footer-col{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-col .logo a{
    color: var(--white-color);
}
.footer-wrapper .footer-col:nth-child(1) p{
    margin: 15px 0;
}
.footer-col p{
    font-size: 1rem;
    color: #d8d8d8;
    font-weight: 400;
    margin: 10px 0;
}
.footer-social-icon{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.footer-social-icon i{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: #237383;
    color: var(--white-color);
    transition: var(--transition-reguler);
}
.footer-social-icon i:hover{
    background-color: var(--prim-color);
    cursor: pointer;
}
.footer-col h2{
    font-size: 2rem;
    font-family: var(--Jost-font);
    color: var(--white-color);
    font-weight: 500;
    margin-bottom: 15px;
}
.footer-col a{
    color: var(--white-color);
    margin: 2px 0;
    transition: var(--transition-reguler);
}
.footer-col a:hover{
    color: var(--forth-color);
}
.footer-col p i{
    font-size: 1.1rem;
    color: var(--white-color);
}
.footer-wrapper .footer-col:nth-child(3) p:hover{
    color: var(--white-color) !important;
    cursor: pointer;
}
.footer-inputs{
    width: 100%;
    height: 60px;
    background-color: #237383;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
}
.footer-inputs input{
    width: 80%;
    background-color: transparent;
    color: var(--white-color);
    font-family: var(--Jost-font);
    font-size: 1.1rem;
    padding-left: 5%;
    border: none;
    outline: none;
    &::placeholder{
        color: var(--white-color);
    }
}
.footer-inputs i{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    background-color: var(--forth-color);
    color: var(--white-color);
    cursor: pointer;
}

.footer-bottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(131, 131, 131, 0.5);
    padding-top:20px;
}
.footer-bottom p{
    color: #d8d8d8;
}
.footer-bottom p a{
    color: var(--white-color);
    font-weight: 500;
}
.footer-bottom-links{
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-bottom-links a{
    font-size: 1rem;
    color: #d8d8d8;
    transition: var(--transition-reguler);
}
.footer-bottom-links a:hover{
    color: var(--forth-color);
}

@media (max-width:1400px) {
    .footer-wrapper .footer-col:nth-child(3) p{
        width: 80%;
    }
}
@media (max-width:1200px) {
    .footer-col h2{
        font-size: 1.6rem;
    }
    .footer-wrapper .footer-col:nth-child(3) p{
        width: 90%;
    }
}
@media (max-width:900px) {
    .footer-wrapper{
        grid-template-columns: repeat(2,1fr);
    }
    .footer-bottom{
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width:500px) {
    .footer-wrapper{
        grid-template-columns: repeat(1,1fr);
    }
    .footer-bottom p{
        font-size: 14px;
    }
    .footer-bottom-links{
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

/* ===== ADMISSION POPUP STYLES ===== */

.admission-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeInOverlay 0.25s ease-out forwards;
    will-change: opacity;
    pointer-events: none;
}

.admission-popup-overlay.show {
    display: flex;
    pointer-events: auto;
    animation: fadeInOverlay 0.25s ease-out forwards;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.admission-popup-container {
    background: linear-gradient(135deg, var(--white-color) 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    overflow: hidden;
    animation: slideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    will-change: transform;
}

@keyframes slideIn {
    from {
        transform: scale(0.75);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--third-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: background-color 0.2s ease, color 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.popup-close-btn:hover {
    background: var(--third-color);
    color: var(--white-color);
    transform: rotate(90deg);
}

.popup-left-section {
    background: linear-gradient(135deg, var(--prim-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.popup-left-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.popup-left-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.popup-icon-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.popup-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.popup-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0;
    position: relative;
    z-index: 1;
    font-family: var(--Jost-font);
}

.popup-subtitle {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.popup-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.popup-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.benefit-item i {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.popup-right-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.popup-image-wrapper {
    width: 100%;
    height: 140px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-form-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--section-dark);
    margin-bottom: 5px;
    text-align: center;
}

.popup-form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--prim-color);
    margin-bottom: 10px;
}

.popup-form-section form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-form-section input,
.popup-form-section select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'poppins';
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.popup-form-section input:focus,
.popup-form-section select:focus {
    outline: none;
    border-color: var(--prim-color);
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.2);
}

.popup-form-section input::placeholder {
    color: #999;
}

.popup-submit-btn {
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--prim-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    will-change: transform;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.popup-submit-btn:active {
    transform: translateY(0);
}

.popup-offer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--forth-color);
    font-weight: 600;
    margin-top: 10px;
    padding: 10px;
    background: rgba(247, 148, 30, 0.1);
    border-radius: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .admission-popup-container {
        grid-template-columns: 1fr;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-left-section {
        padding: 40px 30px;
        border-radius: 20px 20px 0 0;
    }

    .popup-right-section {
        padding: 30px 25px;
        border-radius: 0 0 20px 20px;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .popup-image-wrapper {
        height: 120px;
    }

    .popup-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .popup-close-btn {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 500px) {
    .admission-popup-container {
        width: 98%;
        border-radius: 15px;
    }

    .popup-left-section {
        padding: 30px 20px;
    }

    .popup-right-section {
        padding: 20px 15px;
    }

    .popup-title {
        font-size: 1.2rem;
    }

    .popup-subtitle {
        font-size: 0.9rem;
    }

    .popup-description {
        font-size: 0.85rem;
    }

    .popup-form-section h3 {
        font-size: 1.1rem;
    }

    .popup-form-title {
        font-size: 0.95rem;
    }

    .popup-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .benefit-item {
        font-size: 0.85rem;
    }
}