.jainee-academic-section {
    background: linear-gradient(to right, #fdfdfd, #f5f8ff);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.jainee-container {
    width: 85%;
    margin: auto;
}

.jainee-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 40px;
}

.jainee-row:first-child {
    margin-top: 0;
}

.jainee-row.reverse {
    flex-direction: row-reverse;
}

.jainee-content {
    flex: 1;
    animation: fadeInLeft 1s ease-in-out;
}

.jainee-content h2 {
    font-size: 32px;
    color: #1a237e;
    margin-bottom: 20px;
    position: relative;
}

.jainee-content h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #c9a227;
    display: block;
    margin-top: 8px;
}

.jainee-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.jainee-content ul {
    padding-left: 20px;
}

.jainee-content ul li {
    margin-bottom: 8px;
    color: #555;
}

.jainee-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.jainee-image img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.jainee-image img:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 992px) {

    .jainee-row,
    .jainee-row.reverse {
        flex-direction: column;
    }
}

.jainee-english-section {
    background: linear-gradient(to right, #ffffff, #f4f7ff);
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.jainee-maths-section {
    background: linear-gradient(to right, #ffffff, #f2f6ff);
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.jainee-physical-section {
    background: linear-gradient(to right, #ffffff, #eef5ff);
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.jainee-section {
    background: linear-gradient(to right, #ffffff, #eef5ff);
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

/* ==============================
   Section Background & Font
   ============================== */
.royal-committee-section {
    background: #f5f7fc;
    /* light outer section */
    padding: 60px 0;
}



/* Container */
.royal-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Row layout for content + image */
.royal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

/* Reverse row layout for alternate positioning */
.royal-row.reverse {
    flex-direction: row-reverse;
}

/* ==============================
   Inner Boxes (Alternating Colors)
   ============================== */
.royal-box {
    flex: 1;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

/* Hover lift effect */
.royal-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Inner Boxes: Unique Dark Royal Colors for 1–10 */
.royal-row:nth-child(1) .royal-box {
    background: #4B000F;
}

/* Dark Maroon */
.royal-row:nth-child(2) .royal-box {
    background: #301934;
}

/* Dark Violet */
.royal-row:nth-child(3) .royal-box {
    background: #0B3D91;
}

/* Dark Blue */
.royal-row:nth-child(4) .royal-box {
    background: #001F3F;
}

/* Dark Navy */
.royal-row:nth-child(5) .royal-box {
    background: #014421;
}

/* Dark Green */
.royal-row:nth-child(6) .royal-box {
    background: #550017;
}

/* Deep Maroon */
.royal-row:nth-child(7) .royal-box {
    background: #3D1F4D;
}

/* Deep Violet */
.royal-row:nth-child(8) .royal-box {
    background: #102E6B;
}

/* Deep Blue */
.royal-row:nth-child(9) .royal-box {
    background: #001632;
}

/* Deep Navy */
.royal-row:nth-child(10) .royal-box {
    background: #025930;
}

/* Deep Green */
/* Headings inside the box */
.royal-box h2,
.royal-box h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

/* Gold accent underline */
.royal-box h2::after,
.royal-box h3::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #c9a227;
    /* gold accent */
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

/* Paragraphs */
.royal-box p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 12px;
}

/* Lists inside the box */
.royal-box ul {
    margin: 10px 0 0 20px;
    padding: 0;
    color: #e0e0e0;
}

.royal-box ul li {
    margin-bottom: 8px;
    list-style: disc;
}

/* ==============================
   Image Styling
   ============================== */
.royal-image {
    flex: 1;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.royal-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Zoom on hover */
.royal-image:hover img {
    transform: scale(1.08);
}

/* ==============================
   Full width box for intro section
   ============================== */
.royal-box.full-width {
    flex: 1 1 100%;
}

.donation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.ncte-section {
    background: linear-gradient(135deg, #f9fbff, #eef5ff);
    padding: 60px 20px;
}

.ncte-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 6px solid #4a90e2;
}

.ncte-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a2a4f;
}

.ncte-text {
    font-size: 16px;
    line-height: 28px;
    color: #555;
    margin-bottom: 15px;
}

.ncte-list {
    margin: 20px 0;
    padding-left: 20px;
}

.ncte-list li {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    position: relative;
}

.ncte-list li::marker {
    color: #4a90e2;
}

.tnteu-section {
    background: linear-gradient(135deg, #f4f9ff, #eef3ff);
    padding: 60px 20px;
}

.tnteu-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tnteu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.tnteu-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a2a4f;
    position: relative;
}

.tnteu-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #4a90e2;
    position: absolute;
    bottom: -8px;
    left: 0;
    transition: width 0.4s ease;
}

.tnteu-card:hover .tnteu-title::after {
    width: 100px;
}

.tnteu-text {
    font-size: 16px;
    line-height: 28px;
    color: #555;
    margin-bottom: 15px;
}

.tnteu-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.tnteu-list li {
    background: #f7faff;
    padding: 12px 18px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid #4a90e2;
    font-size: 15px;
    color: #333;
}

.tnteu-list li:hover {
    background: #e6f0ff;
    transform: translateX(6px);
}

/* COMMON BUTTON STYLE */
.slider-common .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background-color: transparent !important;
    color: var(--listing-purple, #965995) !important;
    border: 1px solid var(--listing-purple, #965995);
    width: 60px;
    height: 60px;
    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: inherit;
    border-radius: 50%;
    transition: 0.3s;
}

/* HOVER EFFECT */
.slider-common .owl-nav button:hover {
    background-color: var(--listing-purple, #965995) !important;
    color: #fff !important;

}

/* LEFT BUTTON */
.slider-common .owl-prev {
    left: 20px;
}

/* RIGHT BUTTON */
.slider-common .owl-next {
    right: 20px;
}

/* IMAGE STYLE */
.slider-common .slide img {
    width: 100%;
}

/* NAV BUTTONS */
.slider-common .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid var(--listing-purple, #965995) !important;
    color: #fff !important;
    border: none;
    font-size: 18px;
    transition: 0.3s;
}

/* LEFT */
.slider-common .owl-prev {
    left: 55px;
}

/* RIGHT */
.slider-common .owl-next {
    right: 55px;
}

/* DOTS */
.slider-common .owl-dots {
    text-align: center;
    margin-top: 10px;
    display: none;
}

.slider-common .owl-dot {
    width: 10px;
    height: 10px;
    background: #ccc !important;
    margin: 5px;
    border-radius: 50%;
    display: none;

}

.slider-common .owl-dot.active {
    background: black !important;
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 992px) {
    .royal-row {
        flex-direction: column;
    }

    .royal-row.reverse {
        flex-direction: column;
    }

    .royal-box,
    .royal-image {
        width: 100%;
    }

    .royal-image {
        margin-top: 25px;
    }

    .slider-common .owl-nav button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .slider-common .owl-nav button {
        display: none;
    }
}

@media (max-width: 576px) {
    .royal-box {
        padding: 25px 20px;
    }

    .royal-box h2,
    .royal-box h3 {
        font-size: 20px;
    }

    .royal-box p,
    .royal-box ul li {
        font-size: 14px;
    }
}

.faculty-section {
    padding: 60px 0;
    background: #f7faff;
}

.faculty-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.faculty-heading {
    text-align: center;
    margin-bottom: 60px;
}

.edu_staff_card {
    .hero {
        background: var(--listing-base);
        color: #fff;
        padding: 40px;
        text-align: center
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        padding: 30px
    }

    .card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .1)
    }

    .img {
        height: 260px;
        background: #dfe8f5;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold
    }

    .content {
        padding: 20px
    }

    h3 {
        margin: 0 0 8px;
        color: #0d47a1
    }

    span {
        background: var(--listing-base);
        color: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px
    }

    details {
        margin-top: 12px
    }
    .faculty-image img {
    width: 100%;
}
}

.fees-section{
    padding:80px 0;
    background:#f8fafc;
}

.fees-wrapper{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:50px;
    padding:0 20px;
}

.fees-image-area{
    flex:1;
}

.fees-image-area img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    display:block;
}

.fees-content-area{
    flex:1;
}

.fees-tag{
    display:inline-block;
    background:#351c42;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.fees-title{
    font-size:38px;
    font-weight:700;
    color:#1b1b1b;
    margin-bottom:15px;
    line-height:1.3;
}

.fees-description{
    color:#666;
    margin-bottom:30px;
    line-height:1.8;
}

.fees-card-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.fees-card-item{
    background:#ffffff;
    border-left:5px solid #351c42;
    padding:25px 30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:all .3s ease;
}

.fees-card-item:hover{
    transform:translateY(-5px);
}

.fees-year{
    font-size:20px;
    font-weight:600;
    color:#222;
}

.fees-amount{
    font-size:28px;
    font-weight:700;
    color:#351c42;
}

@media(max-width:991px){

    .fees-wrapper{
        flex-direction:column;
    }

    .fees-title{
        font-size:30px;
    }

    .fees-card-item{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}