body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: white;
    padding: 5px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.navbar-brand img {
    height: 80px;
    margin: 0px;
    padding: 0px;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 700;
    margin: 6px 15px;
    font-size: 17px;
}

.navbar-nav .nav-link:hover {
    color: #3b3ba8;
}

.user-icon {
    font-size: 20px;
    color: #000;
    cursor: pointer;
}

.nav-link.active {
    color: black !important;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.dropdown-item.actives {
    background-color: #211D70;
    color: #fff !important;
}

/* Dropdown Styling */
.navbar-nav .dropdown-menu {
    background-color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item {
    color: #000;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: #211D70;
    color: #fff;
}

/* Dropdown on hover for large screens */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* =========================
   MOBILE DRAWER NAVBAR (Light Theme)
========================= */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #ffffff; /* White background */
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
        transition: right 0.4s ease-in-out;
        z-index: 9999;
        padding-top: 80px;
    }

    /* Show the drawer */
    .navbar-collapse.show {
        right: 0;
    }

    /* Navigation links */
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .navbar-nav .nav-link {
        display: block;
        color: #000; /* Black text */
        font-size: 17px;
        font-weight: 600;
        padding: 12px 10px;
        width: 100%;
        border-bottom: 1px solid #f2f2f2;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        color: #3b3ba8; /* same hover color as desktop */
        background-color: rgba(59, 59, 168, 0.05);
    }

    /* Active link with underline */
    .navbar-nav .nav-link.active {
        color: #000 !important;
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-thickness: 2px;
        background: none;
    }

    /* Dropdowns inside mobile menu */
    .navbar-nav .dropdown-menu {
        position: static;
        background: #fff;
        border: none;
        box-shadow: none;
        padding: 0;
        width: 100%;
    }

    .navbar-nav .dropdown-item {
        color: #000;
        padding: 10px 25px;
        font-size: 15px;
        font-weight: 500;
        border-bottom: 1px solid #f2f2f2;
        transition: all 0.3s ease;
    }

    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item.actives {
        background: #211D70;
        color: #fff;
    }

    /* User icon */
    .user-icon, .navbar-nav .fa-user {
        font-size: 22px;
        margin: 15px 10px;
        color: #000;
    }

    /* Hamburger toggle */
    .navbar-toggler {
        border: none;
        z-index: 10000;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Overlay for dark background behind drawer */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Dropdown caret color */
    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
        color: #000;
    }
}



/* Hero Section */
.carousel-item {
    position: relative;
    height: 1000px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 180px;
    color: #fff;
}

.hero-content h3 {
    font-size: 3rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.2;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin: 5px 0;
}

.underline-blue {
    display: inline-block;
    padding-bottom: 2px;
}

.highlight {
    font-weight: 900;
}

.btn-explore {
    background-color: #1a237e;
    color: white;
    padding: 15px 35px;
    border: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    margin-top: 25px;
    /*border-radius: 4px;*/
}

.btn-explore:hover {
    background-color: #283593;
    transform: translateX(5px);
}

.btn-explore i {
    font-size: 14px;
}

.apply-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #EC1651;
    color: white;
    padding: 25px 10px;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    z-index: 1000;
    /*border-radius: 8px 0 0 8px;*/
    letter-spacing: 3px;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.apply-btn:hover {
    background: darkred;
    /*padding-left: 22px;*/
    opacity: 0.7;
}


@media (max-width: 992px) {
    .carousel-item {
        height: 600px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-content h3 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 500px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-content h3 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .btn-explore {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 450px;
    }
    .hero-content {
        padding-top: 60px;
    }

    .hero-content h3 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .apply-btn {
        font-size: 14px;
        padding: 20px 15px;
        letter-spacing: 2px;
    }
}

/* Introduction Box */
.intro-box {
    background: white;
    padding: 20px 40px 6px;
    margin-top: -186px;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.intro-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.intro-icon i {
    font-size: 40px;
    color: white;
}

.intro-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.intro-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

/* Vision Mission Section */
.vision-mission {
    background: #e8e3f5;
    /*padding: 80px 0;*/
    margin-top: 37px;
}

.vm-box {
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.vm-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vision-box .vm-icon i {
    font-size: 35px;
    color: #4caf50;
}

.mission-box .vm-icon {
    background: #fce4ec;
}

.mission-box .vm-icon i {
    font-size: 35px;
    color: #e91e63;
}

.vm-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.vm-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .intro-box {
        margin-top: -125px;
        padding: 30px 20px;
    }

    .vision-mission {
        padding: 40px 0;
    }
}
/*message & Four Pillars*/

.message-card {
    border: none;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
}

.message-card img {
    width: 280px;
    height: auto;
    object-fit: cover;
}

.pillar-card {
    background: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-height: 280px;
}

.pillar-icon {
    width: 60px;
    height: 60px;
}

.four-pillars-section {
    background-color: #e8e5f5;
}

/*Gallery*/
.row1-img1{
    width: 173px;
    height: 171px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 8px;
}

.row1-img2{
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-right: 8px;
}
.row1-img3{
    width: 100%;
    height: 284px;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: absolute;
    bottom: 0;
    padding-right: 4px;
}
.row1-img4{
    width: 246px;
    /*width: 100%;*/
    height: 182px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 4px;
}
.row1-img5{
    object-fit: cover;
    width: 100%;
    padding-right: 8px;
}
.row1-img6{
    object-fit: cover;
    width: 100%;
    padding-right: 8px;
}
.row1-img7{
    object-fit: cover;
    width: 100%;
    height: 200px;
    padding-right: 8px;
    margin-bottom: 8px;
}
.row1-img9{
    object-fit: cover;
    position: absolute;
    bottom: 23px;
    left: -6px;
    width: 100px;
    height: 100px;
}
/* Responsive gallery (for laptop and mobile) */
.responsive-gallery .gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.responsive-gallery .gallery-img:hover {
    transform: scale(1.05);
}



/*Footer*/
.footer-main {
    background-color: #1e1557;
    background-image: url("/assets/images/footer_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    padding: 60px 0 40px;
}
.logo-section img {
    width: 270px;
    height: auto;
    margin-top: -57px;
    margin-left: -88px;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    margin-top: 30px;
}

.whatsapp-icon i {
    color: white;
    font-size: 28px;
}

.locations-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.location-item {
    margin-bottom: 25px;
}

.location-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    margin-right: 14px;
    line-height: 1;
}

.location-title {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.location-address {
    color: #ccc;
    font-size: 14px;
    margin-left: 38px;
}

.newsletter-section input::placeholder {
    color: #d0d0d0;
}
.newsletter-section input:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border-color: #fff;
}
.newsletter-section a:hover {
    color: #ffd700 !important;
}

.download-prospectus {
    display: inline-block;
    color: white;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

.download-prospectus:hover {
    color: #f0f0f0;
}

.foundation-section p {
    font-size: 14px;
    margin-bottom: 10px;
}

.foundation-logo {
    width: 80px;
    height: auto;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: #1e1557;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}


/*Programs*/

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title {
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Programs Section */
.programs-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.apply-btn-program {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #EC1651;
    color: white;
    padding: 25px 10px;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    z-index: 1000;
    /*border-radius: 8px 0 0 8px;*/
    letter-spacing: 3px;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.apply-btn:hover {
    background: darkred;
    /*padding-left: 22px;*/
    opacity: 0.7;
}

.hero-gradient-overlay-program {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 24, 123, 0.95) 0%, rgba(0, 24, 123, 0.7) 40%, rgba(0, 24, 123, 0.2) 80%, rgba(0, 24, 123, 0) 100%);
    z-index: 2;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 50px;
    /*color: #555;*/
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    /*font-weight: bold;*/
    line-height: 1.8;
}

.section-program-description{
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    /*font-size: 14px;*/
    line-height: 1.8;
}

.programs-section {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

/*.program-card {*/
/*    background-color: #f2f0ff;*/
/*    border-radius: 0 0 10px 10px;*/
/*    padding: 30px 0 10px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    transition: all 0.3s ease;*/
/*    box-shadow: inset 0 -9px #333;*/
/*}*/

/*.program-card .icon {*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    margin: 0 auto 15px;*/
/*    !*background: #fff;*!*/
/*    border-radius: 50% 50% 0 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 40px;*/
/*}*/

/*.program-card h3 {*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    margin-top: 10px;*/
/*    color: #333;*/
/*}*/

/*.program-card:hover {*/
/*    transform: translateY(-8px);*/
/*}*/

/*!* Color themes *!*/
/*.program-card.purple .icon {*/
/*    color: #9c27b0;*/
/*}*/
/*.program-card.green .icon {*/
/*    color: #009688;*/
/*}*/
/*.program-card.red .icon {*/
/*    color: #e91e63;*/
/*}*/
/*.program-card.blue .icon {*/
/*    color: #3f51b5;*/
/*}*/
/*.program-card.dark-green .icon {*/
/*    color: #4caf50;*/
/*}*/


/* Why Choose Section */
.why-choose-section {
    padding: 60px 0;
    background: white;
}

.feature-box {
    background: white;
    border: 2px solid #3949ab;
    border-radius: 15px;
    padding: 25px 20px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: #f5f5f5;
    transform: translateX(5px);
}

.feature-box.purple {
    background: #3949ab;
    color: white;
}

.feature-box.light-purple {
    background: #e8eaf6;
    border-color: #5c6bc0;
}

.feature-box.white {
    background: white;
    border-color: #3949ab;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #3949ab;
}

.feature-box.purple .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 12px;
    text-align: center;
    line-height: 1.6;
}

.feature-box.purple .feature-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Decorative Elements */
.decorator-circle {
    width: 60px;
    height: 60px;
    background: #e8eaf6;
    border-radius: 50%;
    position: absolute;
}

.decorator-circle.small {
    width: 40px;
    height: 40px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }

    .programs-section,
    .why-choose-section {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .feature-box {
        margin-bottom: 15px;
    }

    .program-card {
        margin-bottom: 20px;
    }
}

/* Hero Section */
.carousel-item-admission {
    position: relative;
    height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 1) 0%,      /* Solid black start */
            rgba(0, 0, 0, 1) 30%,     /* Keep full black until 30% */
            rgba(0, 0, 0, 0) 70%,     /* Smoothly fade to transparent between 30%–70% */
            rgba(0, 0, 0, 0) 100%     /* Fully transparent by the end */
    );
    z-index: 2;
}

.carousel-caption-admission {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-text-box {
    position: relative;
    z-index: 3;
}

.hero-title-text {
    color: white;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.hero-title-text .highlight {
    font-weight: 700;
}

.hero-apply-btn {
    position: fixed;              /* fixed to viewport */
    right: 0;                     /* attach to right edge */
    top: 50%;                     /* vertical center */
    transform: translateY(-50%);  /* perfect vertical alignment */
    background: #EC1651;
    color: white;
    padding: 25px 10px;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    z-index: 1000;
    letter-spacing: 3px;
    /*box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);*/
    transition: all 0.3s ease;
    /*border-radius: 8px 0 0 8px;   !* optional rounded left corners *!*/
}

.hero-apply-btn:hover {
    background:  #EC1651;
    opacity: 0.9;
    transform: translateY(-50%) scale(1.05); /* subtle zoom effect */
}

/* Mobile View (under 768px) */
@media (max-width: 768px) {
    .hero-apply-btn {
        top: auto;
        bottom: 20px;
        right: 20px;
        transform: none;
        writing-mode: horizontal-tb;
        text-orientation: initial;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-apply-btn:hover {
        transform: scale(1.05);
    }
}


/*.hero-apply-btn {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    background: #EC1651;*/
/*    color: white;*/
/*    padding: 25px 10px;*/
/*    writing-mode: sideways-lr;*/
/*    text-orientation: mixed;*/
/*    font-weight: 700;*/
/*    font-size: 18px;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    z-index: 1000;*/
/*    !*border-radius: 8px 0 0 8px;*!*/
/*    letter-spacing: 3px;*/
/*    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);*/
/*    transition: all 0.3s;*/
/*}*/

/*.hero-apply-btn:hover {*/
/*    background: darkred;*/
/*    opacity: 0.7;*/
/*    !*padding-left: 22px;*!*/
/*}*/

.discipline-cell {
    border: none !important;
}

/*Fee structure*/
.fee-table-container {
    /*max-width: 1100px;*/
    margin: 40px auto;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.fee-table-container h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-top: 95px;
    margin-bottom: 25px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
}

/* Header */
.table thead th {
    color: #fff;
    font-weight: 600;
    padding: 10px 4px;
    text-align: center;
}


/* Regular cells */
.table tbody td {
    border-bottom: 2px solid #000;
    text-align: center;
    vertical-align: middle;
    border-right: 2px dashed #dc3545;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 5px;
}

/* Remove right border from last column */
.table tbody td:last-child {
    border-right: none;
}

/* Discipline column */
.discipline-cell {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    border-right: 2px dashed #dc3545;
    text-align: center;
}

/* Year column */
.year-cell {
    background-color: #fff;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fee-table-container h1 {
        font-size: 22px;
    }
    .table tbody td {
        padding: 8px;
        font-size: 12px;
    }
    .table thead th {
        font-size: 12px;
        padding: 8px;
    }
}

.hero-gradient-overlay-contact-us {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.2) 80%, rgba(0, 0, 0, 0) 100%);
        z-index: 2;
}

.contact-form-wrapper {
    background-color: #f8f9fa; /* light background */
}

.custom-input,
.input-group-text {
    border: 1px solid #000 !important; /* black border for all input fields */
}

.custom-input:focus {
    box-shadow: none;
    border-color: #000;
}

/*.custom-submit {*/
/*    background-color: #1E1557; !* blue button *!*/
/*    border: none;*/
/*}*/

.custom-submit:hover {
    background-color: #003580 !important; /* darker blue on hover */
}

.input-group-text {
    background-color: #fff;
    color: #000;
}

.contact-info-card i {
    font-size: 1.7rem;
    vertical-align: middle;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 60px;
}
.faq-heading {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}
.accordion-button {
    font-weight: 500;
    background-color: #f2f2f2;
    border: 2px solid black;
    margin-bottom: 10px;
    color: black;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #1E1557;
    color: white;
    border-color: #1E1557;
}

.accordion-button:focus {
    box-shadow: none;
}

.contact-box {
    text-align: center;
    margin-top: 40px;
}
.contact-box h5 {
    font-weight: bold;
}
.contact-btn {
    margin-top: 10px;
    background-color: black;
    color: white;
    padding: 10px 30px;
    border: none;
    /*border-radius: 5px;*/
    text-decoration: none;
}
.contact-btn:hover {
    background-color: #1E1557;
}


.form-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
}
h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}
.form-label {
    font-weight: 600;
}
.form-control, .form-select {
    border: 2px solid black;
    border-radius: 0;
    font-size: 14px;
    padding: 10px 12px;
}
.form-control::placeholder {
    color: #999;
}
.btn-submit {
    background-color: black;
    color: white;
    width: 100%;
    padding: 10px;
    font-weight: 500;
    border: none;
    border-radius: 0;
}
.btn-submit:hover {
    background-color: #000066;
    color: white;
}



.program-card {
    background-color: #f3f3ff;
    position: relative;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 20px;
    margin: 15px;
    box-shadow: 0px 8px 0px #333;
    transition: all 0.3s ease-in-out;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-icon-wrapper {
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    background-color: #fff;
    border-radius: 0 0 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon-wrapper img{
    height: 65px;
    width: auto;
}

.program-icon {
    font-size: 40px;
}

/* Different icon colors */
.purple { color: #a020f0; }
.green { color: #1ca557; }
.red { color: #e63946; }
.blue { color: #1e40af; }
.darkgreen { color: #0a9c5d; }

.program-title {
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-wrapper img {
    width: 1100px;
    height: auto;
    display: block;
    max-width: 100%;
}

/*.image-wrapper {*/
/*    position: relative;*/
/*    display: inline-block;*/
/*    width: 100%;*/
/*}*/

/*.image-wrapper img {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*}*/

.clickable-btn {
    position: absolute;
    width: 199px;
    height: 121px;
    /*background-color: rgba(255, 0, 0, 0.8);*/
    /*border: 3px solid #ff0000;*/
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.clickable-btn:hover {
    background-color: rgba(255, 0, 0, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Position buttons on image - adjust these percentages for your image */
.btn-interactive { top: 2%; left: 32%; }
.btn-inside { top: 28%; left: 17%; }
.btn-cocurricular { top: 53%; left: 8%; }
.btn-library { top: 28%; left: 47%; }
.btn-attendance { top: 54%; left: 38%; }
.btn-examination { top: 80%; left: 23%; }
.btn-digital { top: 2%; left: 62%; }
.btn-laboratory { top: 28%; left: 77%; }
.btn-uniform { top: 54%; left: 67%; }
.btn-growth { top: 79%; left: 52%; }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 3px solid #1a237e;
    padding-bottom: 15px;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
    color: #1a237e;
}

.modal-close {
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.modal-close:hover {
    color: #000;
}

.modal-body {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

.modal-body p {
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .clickable-btn {
        position: absolute;
        width: 170px;
        height: 100px;
    }
    .btn-interactive { top: 2%; left: 29%; }
    .btn-inside { top: 29%; left: 12%; }
    .btn-cocurricular { top: 54%; left: 1%; }
    .btn-library { top: 28%; left: 46%; }
    .btn-attendance { top: 54%; left: 35%; }
    .btn-examination { top: 80%; left: 18%; }
    .btn-digital { top: 2%; left: 63%; }
    .btn-laboratory { top: 28%; left: 81%; }
    .btn-uniform { top: 54%; left: 70%; }
    .btn-growth { top: 80%; left: 52%; }
}


@media (max-width: 768px) {
    .clickable-btn {
        width: 125px;
        height: 75px;
        font-size: 18px;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-title {
        font-size: 20px;
    }
}

@media (max-width: 425px) {
    .clickable-btn {
        width: 69px;
        height: 41px;
        font-size: 18px;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-title {
        font-size: 20px;
    }
}
.map-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.map-image {
    width: 100%;
    /*height: 770px;*/
    height: auto;
    display: block;
}

/* Each marker container */
.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    text-align: center;
}

/* The icon image */
.pin-icon {
    width: 42px;
    height: 45px;
    animation: bounce 1.5s infinite;
}

/* Marker label */
.map-pin span {
    display: block;
    margin-top: 5px;
    color: white;
    font-weight: 700;
    font-size: 20px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* Bounce animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .pin-icon {
        width: 25px;
        height: 25px;
    }
    .map-pin span {
        font-size: 12px;
    }
}
/*Blog Section*/

:root {
    --primary-purple: #2d1b69;
    --secondary-purple: #6b5ca5;
    --text-dark: #333;
    --text-light: #666;
}

/* Blog Cards */
.blog-section {
    padding: 3rem 0;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    /*color: var(--text-dark);*/
    color: black;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    min-height: 4.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    /*color: var(--text-light);*/
    color: black;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    /*-webkit-line-clamp: 3;*/
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    /*color: var(--text-light);*/
    color: black;
    margin-top: auto;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.read-more {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    margin-top: 0.5rem;
}

.read-more:hover {
    color: var(--secondary-purple);
    text-decoration: underline;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pagination {
    display: flex;
    gap: 0.5rem;
}

.page-link {
    background: white;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.page-link:hover, .page-link.active {
    background: var(--primary-purple);
    color: white;
}

.hover-bg-light:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(45, 27, 105, 0.15);
}

/* Tag Badge Hover */
.tag-badge:hover {
    background-color: #2d1b69 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 27, 105, 0.3);
}

/* Share Button Hover */
.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Blog Content Styling */
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.blog-content p {
    margin-bottom: 1.2rem;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: #2d1b69;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

.blog-content blockquote {
    border-left: 4px solid #2d1b69;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b5ca5;
}

/* Breadcrumb Styling */
.breadcrumb-item a:hover {
    text-decoration: underline !important;
}

@media (max-width: 991px) {
    .sticky-sidebar {
        position: relative !important;
        top: 0 !important;
    }
}
