﻿/* ==========================================
   GLOBAL SETTINGS
========================================== */

:root
{
    --primary-color:#0B2A5A;
    --secondary-color:#0F6FBF;
    --accent-color:#FF7A00;
    --gold-color:#F7C948;
    --light-color:#F8FAFC;
    --dark-color:#0F172A;
    --white:#FFFFFF;
}

html
{
    scroll-behavior:smooth;
}

body
{
    margin:0;
    padding:0;
    overflow-x:hidden;
    font-family:'Outfit',sans-serif;
    background:#fff;
    color:#333;
}

a
{
    text-decoration:none;
    transition:all .3s ease;
}

img
{
    max-width:100%;
}

ul
{
    margin:0;
    padding:0;
    list-style:none;
}
.top-info-strip {
    background: linear-gradient(90deg,
            #0b1f3a,
            #0f4c81,
            #0b2a5a);

    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-info-strip a {
    color: #fff;
    margin-left: 15px;
}

.top-info-strip i {
    margin-right: 5px;
}
/* ==========================================
   SCHOOL BRANDING
========================================== */

.branding-section
{
    position:relative;

    background:linear-gradient(
    160deg,
    #ECFDF5,
    #D1FAE5,
    #E0F2FE,
    #EDE9FE);

    padding:25px 0;
}

.school-logo
{
    max-height:110px;
}

.school-title
{
    font-size:48px;
    font-weight:800;
    letter-spacing:2px;
    color:#0B2A5A;
    text-transform:uppercase;
    margin-bottom:10px;
}

.school-subtitle
{
    font-size:16px;
    font-weight:600;
    color:#065F46;
}

.btn-admission
{
    display:inline-block;

    background:#FF7A00;

    color:#fff;

    padding:12px 25px;

    border-radius:50px;

    font-weight:600;
}

.btn-admission:hover
{
    background:#E56C00;
    color:#fff;
}
/* ==========================================
   MAIN NAVBAR
========================================== */

.main-navbar
{
    background:linear-gradient(
    135deg,
    #7DD3FC,
    #BAE6FD,
    #E0F2FE);

    padding:12px 0;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    z-index:9999;
}

.main-navbar .nav-link
{
    color:#0C4A6E !important;

    font-weight:700;

    padding:12px 18px !important;

    font-size:15px;

    border-radius:30px;

    transition:.3s;
}

.main-navbar .nav-link:hover
{
    background:#ffffff;

    color:#0B2A5A !important;

    transform:translateY(-2px);
}

.main-navbar .nav-link.active
{
    background:#ffffff;

    color:#0B2A5A !important;
}

.main-navbar .dropdown-menu
{
    border:none;

    border-radius:15px;

    padding:10px;

    min-width:240px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.main-navbar .dropdown-item
{
    padding:10px 15px;

    font-size:14px;

    font-weight:600;

    border-radius:10px;
}

.main-navbar .dropdown-item:hover
{
    background:#F3F4F6;

    color:#FF7A00;
}

.btn-apply
{
    background:#FF7A00;

    color:#fff;

    padding:10px 24px;

    border-radius:40px;

    font-weight:700;
}

.btn-apply:hover
{
    background:#E56C00;

    color:#fff;
}
/* ==========================================
   HERO SLIDER
========================================== */

.hero-section {
    position: relative;
    overflow: hidden;
}

#heroSlider {
    width: 100%;
}

#heroSlider .carousel-item {
    height: 550px;
}

#heroSlider .carousel-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
}

#heroSlider .carousel-caption {
    z-index: 2;
    bottom: 80px;
}

#heroSlider .carousel-caption h1 {
    font-size: 55px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#heroSlider .carousel-caption p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-theme {
    background: #ff7a00;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
}

.btn-theme:hover {
    background: #e56c00;
    color: #fff;
}

.btn-outline-theme {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
}

.btn-outline-theme:hover {
    background: #fff;
    color: #0b2a5a;
}
@media screen and (max-width:991px) {

    #heroSlider .carousel-item {
        height: 450px;
    }

    #heroSlider .carousel-item img {
        height: 450px;
    }

    #heroSlider .carousel-caption h1 {
        font-size: 38px;
    }

    #heroSlider .carousel-caption {
        bottom: 50px;
    }
}
@media screen and (max-width:576px) {

    #heroSlider .carousel-item {
        height: 320px;
    }

    #heroSlider .carousel-item img {
        height: 320px;
    }

    #heroSlider .carousel-caption {
        bottom: 25px;
    }

    #heroSlider .carousel-caption h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    #heroSlider .carousel-caption p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-theme,
    .btn-outline-theme {
        padding: 8px 18px;
        font-size: 13px;
    }
}
/* ==========================================
   WELCOME SECTION
========================================== */

.welcome-section {
    padding: 90px 0;
    background: #ffffff;
}

.section-tag {
    display: inline-block;
    color: #ff7a00;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0b2a5a;
    margin-bottom: 25px;
}

.welcome-text {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.school-stats {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-box {
    background: #f8fafc;
    min-width: 130px;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    transition: .4s;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    margin: 0;
    color: #ff7a00;
    font-size: 30px;
    font-weight: 800;
}

.stat-box p {
    margin: 8px 0 0;
    font-weight: 600;
    color: #444;
}
@media(max-width:991px)
{
    .welcome-section {
        padding: 70px 0;
    }

    .welcome-image {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media(max-width:576px)
{
    .welcome-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .school-stats {
        justify-content: center;
    }

    .stat-box {
        width: 45%;
    }
}
    /* ==========================================
   CHAIRMAN MESSAGE
========================================== */

.chairman-section {
    padding: 90px 0;
    background: #f8fafc;
    position: relative;
}

.chairman-image {
    position: relative;
}

.chairman-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 50px;
    color: #ff7a00;
    opacity: .3;
}

.chairman-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.chairman-info {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid #ff7a00;
}

.chairman-info h4 {
    margin-bottom: 5px;
    color: #0b2a5a;
    font-weight: 700;
}

.chairman-info span {
    color: #777;
    font-size: 14px;
}
.chairman-section::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 0;
    width: 250px;
    height: 250px;
    background: rgba(255,122,0,.05);
    border-radius: 50%;
}

.chairman-section::after {
    content: "";
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 180px;
    height: 180px;
    background: rgba(11,42,90,.05);
    border-radius: 50%;
}
@media(max-width:991px)
{
    .chairman-section {
        padding: 70px 0;
    }

    .chairman-image {
        margin-bottom: 35px;
    }
}

@media(max-width:576px)
{
    .chairman-section {
        padding: 50px 0;
    }

    .quote-icon i {
        font-size: 35px;
    }

    .chairman-text {
        font-size: 15px;
    }
}
    /* ==========================================
   PRINCIPAL MESSAGE
========================================== */

.principal-section {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
}

.principal-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.principal-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

.principal-info {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid #ff7a00;
}

.principal-info h4 {
    margin-bottom: 5px;
    color: #0b2a5a;
    font-weight: 700;
}

.principal-info span {
    color: #777;
    font-size: 14px;
}
.principal-section::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,122,0,.05);
}

.principal-section::after {
    content: "";
    position: absolute;
    right: 50px;
    bottom: 80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(11,42,90,.04);
}
@media(max-width:991px)
{
    .principal-section {
        padding: 70px 0;
    }

    .principal-image {
        margin-top: 35px;
    }
}

@media(max-width:576px)
{
    .principal-section {
        padding: 50px 0;
    }

    .principal-text {
        font-size: 15px;
    }
}
    /* ==========================================
   WHY CHOOSE US
========================================== */

.why-choose-section {
    padding: 90px 0;
    background: #f8fafc;
}

.section-subtitle {
    max-width: 700px;
    margin: 15px auto 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.why-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    height: 100%;
    transition: .4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    border: 1px solid #eef2f7;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.10);
}

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(
        135deg,
        #ff7a00,
        #ff9d3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    color: #fff;
    font-size: 36px;
}

.why-card h4 {
    color: #0b2a5a;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}
@media(max-width:576px)
{
    .why-choose-section {
        padding: 50px 0;
    }

    .why-card {
        padding: 30px 20px;
    }

    .why-icon {
        width: 75px;
        height: 75px;
    }

    .why-icon i {
        font-size: 28px;
    }
}
    /* ==========================================
   FACILITIES SECTION
========================================== */

.facilities-section {
    padding: 90px 0;
    background: #ffffff;
}

.facility-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 320px;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.facility-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 25px;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,.90));

    color: #fff;

    transition: .4s ease;
}

.facility-card:hover img {
    transform: scale(1.1);
}

.facility-overlay h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.facility-overlay p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}
.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255,255,255,.15);

    transition: .6s;

    z-index: 1;
}

.facility-card:hover::before {
    left: 100%;
}
/* ==========================================
   ACHIEVEMENTS SECTION
========================================== */

.achievement-section {
    padding: 90px 0;
    background: linear-gradient(
        135deg,
        #0b2a5a,
        #0f4c81,
        #0b2a5a);
    position: relative;
}

.counter-box {
    text-align: center;
    color: #fff;
    padding: 30px 20px;
}

.counter-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.counter-icon i {
    font-size: 38px;
    color: #f7c948;
}

.counter-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.counter-box p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,.9);
}
@media(max-width:991px)
{
    .counter-box {
        margin-bottom: 30px;
    }
}

@media(max-width:576px)
{
    .achievement-section {
        padding: 60px 0;
    }

    .counter-box h2 {
        font-size: 36px;
    }

    .counter-box p {
        font-size: 15px;
    }

    .counter-icon {
        width: 75px;
        height: 75px;
    }

    .counter-icon i {
        font-size: 30px;
    }
}
    /* ==========================================
   GALLERY SECTION
========================================== */

.gallery-section {
    padding: 90px 0;
    background: #ffffff;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;

    background: rgba(11,42,90,.75);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;

    transition: .4s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 40px;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.gallery-card::before {
    content: '';

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent);

    z-index: 2;

    transition: .7s;
}

.gallery-card:hover::before {
    left: 100%;
}
/* ==========================================
   ADMISSION OPEN BANNER
========================================== */

.admission-banner {
    position: relative;

    padding: 120px 0;

    background: url('../Images/admission-banner.jpg')
        center center/cover no-repeat;

    overflow: hidden;
}

.admission-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            rgba(11,42,90,.88),
            rgba(15,76,129,.88));

    z-index: 1;
}

.admission-banner .container {
    position: relative;
    z-index: 2;
}

.admission-tag {
    display: inline-block;

    padding: 10px 25px;

    background: rgba(255,255,255,.15);

    color: #fff;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.admission-banner h2 {
    color: #fff;

    font-size: 52px;

    font-weight: 800;

    margin-bottom: 20px;
}

.admission-banner p {
    color: rgba(255,255,255,.92);

    font-size: 18px;

    max-width: 800px;

    margin: auto auto 35px;

    line-height: 1.8;
}

.admission-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.btn-admission-primary {
    background: #ff7a00;

    color: #fff;

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 700;

    transition: .4s;
}

.btn-admission-primary:hover {
    background: #e66900;
    color: #fff;
}

.btn-admission-outline {
    border: 2px solid #fff;

    color: #fff;

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 700;

    transition: .4s;
}

.btn-admission-outline:hover {
    background: #fff;
    color: #0b2a5a;
}
.admission-banner::before {
    content: '';

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    top: -80px;
    left: -80px;

    z-index: 1;
}

.admission-banner::after {
    content: '';

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);

    bottom: -120px;
    right: -120px;

    z-index: 1;
}
/* ==========================================
   NEWS & EVENTS SECTION
========================================== */

.news-section {
    padding: 90px 0;
    background: #f8fafc;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.10);
}

.news-image {
    position: relative;
}

.news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;

    width: 65px;
    height: 65px;

    background: #ff7a00;

    color: #fff;

    border-radius: 12px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-size: 22px;
    font-weight: 800;
}

.news-date span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-content h4 {
    font-size: 22px;
    color: #0b2a5a;
    font-weight: 700;
    margin-bottom: 15px;
}

.news-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    color: #ff7a00;
    font-weight: 700;
}

.read-more i {
    margin-left: 6px;
}
@media(max-width:576px)
{
    .news-section {
        padding: 60px 0;
    }

    .news-content h4 {
        font-size: 18px;
    }

    .news-image img {
        height: 220px;
    }
}
    /* ==========================================
   CONTACT SECTION
========================================== */

.contact-section {
    padding: 90px 0;
    background: #ffffff;
}

.contact-info-box {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;

    background: #ff7a00;

    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 15px;
}

.contact-icon i {
    font-size: 22px;
}

.contact-item h5 {
    color: #0b2a5a;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.8;
}

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.form-control {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

textarea.form-control {
    height: auto;
}

.btn-contact {
    background: #ff7a00;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
}

.btn-contact:hover {
    background: #e66900;
}

.map-section iframe {
    display: block;
}
/* ==========================================
   FOOTER SECTION
========================================== */

.footer-section {
    background: #0b1f3a;
    color: #ffffff;
    padding: 80px 0 50px;
}

.footer-logo {
    max-height: 90px;
    margin-bottom: 20px;
}

.footer-widget p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
}

.footer-widget h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: #ff7a00;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,.75);
    transition: .3s;
}

.footer-widget ul li a:hover {
    color: #ff7a00;
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255,255,255,.75);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: #ff7a00;
    margin-top: 4px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    margin-right: 8px;
    transition: .3s;
}

.footer-social a:hover {
    background: #ff7a00;
    transform: translateY(-3px);
}
/* ==========================================
   COPYRIGHT
========================================== */

.copyright-section {
    background: #081729;
    color: rgba(255,255,255,.75);
    padding: 18px 0;
    font-size: 14px;
}

.copyright-section a {
    color: #ff7a00;
    font-weight: 600;
}

.copyright-section a:hover {
    color: #ffffff;
}
/* ==========================================
   TOP HEADER
========================================== */

/* ==========================================
   TOP HEADER
========================================== */

.top-header {
    background: #ff7a00;
    padding: 10px 0;
    font-size: 14px;
    color: #fff;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
}

.top-left a,
.top-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.top-left a {
    margin-right: 25px;
}

.top-left i {
    margin-right: 8px;
}

.top-right {
    justify-content: flex-end;
}

.top-right span {
    color: rgba(255,255,255,.7);
    margin: 0 15px;
}

.top-left a:hover,
.top-right a:hover {
    color: #0b2a5a;
}
/*=================================
ABOUT + NOTICE BOARD
=================================*/

.about-notice-section {
    background: #eef7fc;
    padding: 80px 0;
}

.about-school-box {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    height: 100%;
}

.about-school-box h2 {
    font-size: 65px;
    font-weight: 800;
    color: #07183d;
    line-height: 1;
}

.about-school-box h2 span {
    display: block;
    color: #1e73ea;
    font-size: 72px;
}

.about-school-box h4 {
    color: #5f6f85;
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
}

.title-line {
    width: 120px;
    height: 4px;
    background: #1e73ea;
    margin: 25px 0;
}

.about-school-box p {
    color: #5b6470;
    font-size: 18px;
    line-height: 2;
}

.about-buttons {
    margin-top: 35px;
}

.btn-admission {
    background: #0046c7;
    color: #fff;
    padding: 16px 30px;
    border-radius: 15px;
    display: inline-block;
    margin-right: 15px;
    font-weight: 600;
}

.btn-explore {
    border: 2px solid #0046c7;
    color: #0046c7;
    padding: 16px 30px;
    border-radius: 15px;
    display: inline-block;
    font-weight: 600;
}
.notice-box {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    height: 100%;
}

.notice-heading {
    display: inline-block;
    background: linear-gradient(
    90deg,
    #0077b6,
    #0096c7);

    color: #fff;
    padding: 12px 25px;
    border-radius: 0 10px 10px 0;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.notice-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.notice-item i {
    color: #ff4d4d;
    font-size: 32px;
    margin-top: 5px;
}

.notice-item h5 {
    color: #12317a;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.notice-item span {
    color: #777;
    font-size: 14px;
}

.view-all {
    display: inline-block;
    margin-top: 20px;
    color: #0046c7;
    font-weight: 700;
}
@media(max-width:991px)
{
    .notice-box{
        margin-top:30px;
    }

    .about-school-box{
        padding:30px;
    }

    .about-school-box h2{
        font-size:45px;
    }

    .about-school-box h2 span{
        font-size:50px;
    }
}

    /*=================================
 MANAGEMENT SECTION
=================================*/

.management-section {
    padding: 80px 0;
    background: #f8fafc;
}

.management-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
}

.management-card:hover {
    transform: translateY(-5px);
}

.management-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.10);
}

.management-text {
    color: #555;
    line-height: 1.8;
    margin: 15px 0;
    font-size: 15px;
}

.management-info {
    border-left: 4px solid #ff7a00;
    padding-left: 15px;
    margin-top: 15px;
}

.management-info h5 {
    color: #0b2a5a;
    font-weight: 700;
    margin-bottom: 5px;
}

.management-info span {
    color: #777;
    font-size: 14px;
}

.quote-icon i {
    color: #ff7a00;
    font-size: 30px;
    opacity: .4;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0,0,0,0.15);

    z-index: 1;
}

* {
    text-decoration: none;
}

a {
    text-decoration: none !important;
}
.top-header {
    background: #0D95C8;
    padding: 10px 0;
    color: #fff;
}
.top-header {
    background: linear-gradient(
        90deg,
        #0D95C8,
        #14A3D9,
        #0D95C8
    );
    padding: 10px 0;
    color: #fff;
}
/* NAVIGATION BAR */

.main-navbar {
    background: #0D95C8;
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}
.main-navbar .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 18px !important;
}
.main-navbar .nav-link.active {
    background: rgba(255,255,255,.20);
    color: #ffffff !important;
    border-radius: 30px;
}
.main-navbar .nav-link.active {
    background: rgba(255,255,255,.20);
    color: #ffffff !important;
    border-radius: 30px;
}
.main-navbar .nav-link:hover {
    background: rgba(255,255,255,.15);
    color: #ffffff !important;
    border-radius: 30px;
}
.main-navbar .dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.main-navbar .dropdown-item {
    color: #0B2A5A;
}

.main-navbar .dropdown-item:hover {
    background: #F3F4F6;
    color: #0D95C8;
}
/* ==========================================
   DROPDOWN ON HOVER
========================================== */

@media (min-width: 992px) {

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .3s ease;
    }

}
.main-navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .35s ease;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

@media (min-width:992px)
{
    .main-navbar .dropdown:hover > .dropdown-menu
    {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
/*=================================
 APPLY NOW BUTTON
=================================*/

.apply-btn {
    background: linear-gradient(
        135deg,
        #FF7A00,
        #FF9F1C
    );

    color: #fff !important;

    padding: 12px 28px;

    border-radius: 50px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    box-shadow:
        0 10px 25px rgba(255,122,0,.35);

    transition: .35s ease;

    text-decoration: none !important;
}

.apply-btn:hover {

    color: #fff !important;

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(255,122,0,.45);
}

.apply-btn i {
    font-size: 15px;
}
.notice-desc {
    margin-top: 5px;
    margin-bottom: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.notice-link {
    display: inline-block;
    margin-top: 8px;
    color: #0D4ED8;
    font-weight: 600;
    text-decoration: none;
}

.notice-link:hover {
    color: #FF7A00;
}

/*=================================
TOPPERS SECTION
=================================*/

.toppers-section {
    padding: 80px 0;
    background: #f8fafc;
}

.topper-box {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.topper-box h3 {
    color: #0B2A5A;
    font-weight: 700;
    margin-bottom: 25px;
}

.topper-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #0D95C8;
    margin-bottom: 20px;
}

.topper-card h4 {
    color: #0B2A5A;
    font-weight: 700;
}

.topper-card span {
    display: inline-block;
    margin-top: 10px;
    background: #ff7a00;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}