body{
  font-family: 'Poppins', sans-serif;
  background:#f9f9f9;
}

/* ===== WATERMARK BACKGROUND ===== */
.premium-bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
}

.watermark-logo{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:600px;
    height:600px;
    background:url('logo.png') no-repeat center;
    background-size:contain;
    opacity:0.045;
}

/* Content above background */
header, nav, section, footer, .content{
    position:relative;
    z-index:5;
}

/* ================= HEADER ================= */

/* HEADER */
.top-header {
    background: #fff;
    padding: 18px 50px;
    border-bottom: 1px solid #eee;
    font-family: 'Segoe UI', sans-serif;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT */
.left-section {
    display: flex;
    align-items: center;
    gap: 18px;
}

.left-section img {
    height: 80px;
}

/* TEXT */
.school-text h1 {
    font-size: 30px;
    color: #801420;
    margin: 5px 0;
    line-height: 1.3;
    font-weight: 600;
}

/* BIG COLLEGE NAME */
.school-text h1 strong {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* SMALL TRUST TEXT */
.trust {
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
    margin: 0;
}

/* LOCATION */
.location {
    font-size: 14px;
    color: #801420;
    margin-top: 4px;
}

/* NOW TAG */
.highlight {
    font-size: 14px;
    color: #fff;
    background: #801420;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

/* BUTTON */
.admission-btn {
    background: linear-gradient(135deg, #e53935, #801420);
    color: #fff;
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.admission-btn:hover {
    background: linear-gradient(135deg, #801420, #a31522);
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 991px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .left-section {
        flex-direction: column;
    }

    .school-text h1 {
        font-size: 22px;
    }

    .school-text h1 strong {
        font-size: 24px;
    }

    .admission-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {

.top-header{
padding:18px 20px;
}

.left-section img {
height:65px;
}

.school-text h1{
font-size:20px;
line-height:1.4;
}

/* Move "is now" to new line */
.highlight{
display:inline-block;
margin:8px 0;
}

.school-text h1 strong{
display:block;
font-size:22px;
margin-top:5px;
}

.location{
font-size:13px;
}

.admission-btn{
width:auto;
padding:10px 20px;
}

}

@media (max-width:480px){

.school-text{
padding:0 10px;
}

.trust{
font-size:10px;
}

}
/* ================= NAVIGATION ================= */

.navbar{
    background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
    position:relative;
    z-index:9999;
}

.navbar > ul{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    justify-content:center;
}

/* Reset dropdown lists */
.dropdown,
.sub-dropdown{
    list-style:none;
    margin:0;
    padding:0;
}


.navbar li{
    position:relative;
}

.navbar a{
    display:block;
    padding:14px 10px;
    color:#fff;
    text-decoration:none;
    white-space:nowrap;
    font-weight:500;
    letter-spacing:0.5px;
}

.navbar a:hover{
  background:#d4af37;
  color:#000;
}

.navbar > ul > li:hover > a{
    background:#fff;
    color:#000;
}

.dropdown a:hover{
    background:#f4e7a3;
}

/* ================= DROPDOWN ================= */

.dropdown,
.sub-dropdown{
    position:absolute;
    background:#ffffff;
    min-width:260px;
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
    opacity:0;
    visibility:hidden;
    transition:all 0.3s ease;
    z-index:10000;
}

/* First Level */
.dropdown{
    top:100%;
    left:0;
}

/* Second Level */
.sub-dropdown{
    top:0;
    left:100%;
}

/* Show Dropdown */
.has-dropdown:hover > .dropdown{
    opacity:1;
    visibility:visible;
}

.has-dropdown:hover > .sub-dropdown{
    opacity:1;
    visibility:visible;
}

/* Dropdown Links */
.dropdown a,
.sub-dropdown a{
    color:#333;
    padding:10px 15px;
}

.dropdown a:hover,
.sub-dropdown a:hover{
    background:#f4e7a3;
    color:#000;
}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:991px){

    .navbar > ul{
        display:none;
        flex-direction:column;
        width:100%;
        background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
    }

    .navbar > ul.show{
        display:flex;
    }

    .navbar li{
        width:100%;
    }

    .navbar a{
        padding:14px 20px;
        border-bottom:1px solid rgba(255,255,255,0.1);
    }

    /* Disable hover dropdown on mobile */
    .dropdown,
    .sub-dropdown{
        position:static;
        opacity:1;
        visibility:visible;
        display:none;
        box-shadow:none;
        background:linear-gradient(to right, #75141b, #e92248, #6b1218);
    }

    .dropdown a,
    .sub-dropdown a{
        color:#fff;
        padding-left:6px;
        font-size: 14px;
    }

    .sub-dropdown a{
        padding-left:40px;
    }

    .dropdown.show,
    .sub-dropdown.show{
        display:block;
    }

    .hamburger{
        display:block;
        background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
    }

}

/* ================= HAMBURGER ================= */

.hamburger{
    display:none;
    font-size:26px;
    color:#fff;
    padding:12px 20px;
    cursor:pointer;
}

/* ================= NOTICE BAR ================= */
.notice-bar{
    background:#f4e7a3;
    color:#7a0000;
    padding:8px;
    font-weight:bold;
    overflow:hidden;
    white-space:nowrap;
}

.notice-bar span{
    display:inline-block;
    padding-left:100%;
    animation:scrollText 15s linear infinite;
}

@keyframes scrollText{
    from{ transform:translateX(0); }
    to{ transform:translateX(-100%); }
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width:991px){

    .header-container{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }

    .right-section{
        text-align:center;
    }

    .top-links{
        position:static;
        margin-top:10px;
        display:inline-block;
    }

    .navbar ul{
        display:none;
        flex-direction:column;
        text-align:center;
    }

    .navbar ul.show{
        display:flex;
    }

    .hamburger{
        display:block;
        background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
        text-align:right;
    }
}
/* ================= PRINCIPAL SECTION ================= */

.principal-section{
    padding:80px 40px;
    /*background:#f7f3fa;*/
}

.principal-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:60px;
    align-items:center;
}

.principal-text{
    flex:1;
}

.principal-text h2{
    font-size:36px;
    color:#7a0000;
    margin-bottom:20px;
}

.principal-text .dear{
    font-weight:bold;
    margin-bottom:10px;
}

.principal-text .quote{
    font-style:italic;
    color:#6b1218;
    margin-bottom:20px;
}

.principal-text p{
    line-height:1.7;
    color:#333;
    margin-bottom:15px;
}

.principal-image{
    flex:1;
    text-align:center;
}

.principal-image img{
    width:100%;
    max-width:400px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .principal-container{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .principal-text h2{
        font-size:28px;
    }
}


/* ================= ACCOMPLISHMENTS ================= */

.accomplishments-section{
    padding:80px 40px;
    /*background:#faf7fb;*/
    text-align:center;
}

.accomplishments-section h2{
    font-size:34px;
    color:#7a0000;
    margin-bottom:50px;
}

/* Grid */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.gallery-item{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:transform 0.4s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* ================= LIGHTBOX ================= */

.lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox-img{
    max-width:80%;
    max-height:80%;
    border-radius:10px;
    box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

.close{
    position:absolute;
    top:20px;
    right:40px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

/* Arrows */
.lb-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
    color:#fff;
    border:none;
    padding:12px 18px;
    cursor:pointer;
    font-size:22px;
    border-radius:6px;
}

.lb-arrow.left{
    left:40px;
}

.lb-arrow.right{
    right:40px;
}

.lb-arrow:hover{
    background:#d4af37;
    color:#000;
}

/* Responsive */
@media(max-width:768px){

    .gallery-item img{
        height:200px;
    }

    .lightbox-img{
        max-width:95%;
        max-height:70%;
    }

    .lb-arrow.left{
        left:10px;
    }

    .lb-arrow.right{
        right:10px;
    }
}

/* ================= VIDEO SECTION ================= */

.video-section{
    padding:80px 40px;
    /*background:#faf7fb;*/
    text-align:center;
}

.video-section h2{
    font-size:34px;
    color:#7a0000;
    margin-bottom:50px;
}

/* Grid */
.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.video-item{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    background:#000;
    aspect-ratio:16/9;
}

.video-item iframe{
    width:100%;
    height:100%;
    border:0;
}

/* Responsive */
@media(max-width:768px){
    .video-section{
        padding:60px 20px;
    }
}

/* ================= CLIENT SECTION ================= */
.clients-section{
    padding:60px 20px;
    text-align:center;
}

.clients-section h2{
    font-size:28px;
    color:#801420;
    margin-bottom:30px;
}

/* WRAPPER */
.clients-wrapper{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    position:relative;
}

/* TRACK WRAPPER */
.clients-track-wrapper{
    overflow:hidden;
    flex:1;
}

/* TRACK */
.clients-track{
    display:flex;
    gap:15px;
    transition:0.5s ease;
}

/* ================= DESKTOP ================= */
/* Show 5 logos */
.client-card{
    flex:0 0 20%;   /* 100/5 = 20% */
    display:flex;
    justify-content:center;
}

/* IMAGE */
.client-card img{
    width:100%;
    max-width:160px;
    height:100px;
    object-fit:contain;
    background:#fff;
    padding:10px;
    border-radius:12px;
    box-shadow:0 6px 15px rgba(0,0,0,0.08);
}

/* ARROWS */
.arrow{
    background:#801420;
    color:#fff;
    border:none;
    padding:10px 14px;
    font-size:18px;
    border-radius:8px;
    cursor:pointer;
    z-index:2;
}

.arrow:hover{
    background:#d4af37;
    color:#000;
}

/* ================= TABLET ================= */
@media(max-width:992px){
    .client-card{
        flex:0 0 25%;  /* 4 logos */
    }
}

/* ================= MOBILE ================= */
@media(max-width:600px){

    .client-card{
        flex:0 0 50%;  /* 2 logos */
    }

    .arrow{
        position:absolute;
        top:50%;
        transform:translateY(-50%);
    }

    .arrow.left{
        left:5px;
    }

    .arrow.right{
        right:5px;
    }
}

/* ================= TESTIMONIALS ================= */

.testimonials-section{
    padding:80px 20px;
    /*background:#faf7fb;*/
    text-align:center;
}

.testimonials-section h2{
    font-size:32px;
    color:#7a0000;
    margin-bottom:40px;
}

.testimonial-slider{
    position:relative;
    max-width:800px;
    margin:auto;
}

.testimonial-track{
    position:relative;
    min-height:200px;
}

.testimonial-item{
    position:absolute;
    width:100%;
    opacity:0;
    transition:opacity 0.5s ease;
}

.testimonial-item.active{
    opacity:1;
    position:relative;
}

.testimonial-item p{
    font-size:20px;
    font-style:italic;
    line-height:1.6;
    color:#333;
}

.testimonial-item span{
    display:block;
    margin-top:20px;
    font-weight:bold;
    color:#6b1218;
}

/* Arrows */
.t-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
    color:#fff;
    border:none;
    padding:10px 14px;
    cursor:pointer;
    font-size:20px;
    border-radius:6px;
}

.t-arrow.left{
    left:-60px;
}

.t-arrow.right{
    right:-60px;
}

.t-arrow:hover{
    background:#d4af37;
    color:#000;
}

/* Dots */
.testimonial-dots{
    margin-top:25px;
}

.testimonial-dots span{
    display:inline-block;
    width:10px;
    height:10px;
    margin:5px;
    background:#ccc;
    border-radius:50%;
    cursor:pointer;
}

.testimonial-dots span.active{
    background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
}

/* Responsive */
@media(max-width:768px){

    .t-arrow.left{
        left:10px;
    }

    .t-arrow.right{
        right:10px;
    }

    .testimonial-item p{
        font-size:17px;
    }
}

/* ================= FOOTER ================= */

/* ================= PREMIUM FOOTER ================= */

.footer{
    background:linear-gradient(135deg,#1f1f1f,#2f2f2f);
    color:#ccc;
    padding:70px 40px 0;
}

.footer-content{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:50px;
}

.footer-column h3{
    color:#fff;
    margin-bottom:20px;
    font-size:18px;
    position:relative;
}

.footer-column h3::after{
    content:"";
    display:block;
    width:40px;
    height:3px;
    background:#6b1218;
    margin-top:8px;
}

.footer-logo{
    width:150px;
    margin-bottom:20px;
}

.footer-column p{
    line-height:1.6;
    font-size:14px;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column ul li{
    margin-bottom:10px;
}

.footer-column ul li a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}

.footer-column ul li a:hover{
    color:#d4af37;
    padding-left:5px;
}

/* Social Icons */
.social-icons{
    margin-top:20px;
}

.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    margin-right:10px;
    background:#000;
    border-radius:50%;
    color:#fff;
    font-size:16px;
    transition:0.3s;
}

.social-icons a:hover{
    background:#6b1218;
    transform:translateY(-3px);
}

/* Contact Icons */
.footer-column.contact i{
    margin-right:8px;
    color:#d4af37;
}

/* Bottom Bar */
.footer-bottom{
    margin-top:50px;
    background:#e53935;
    text-align:center;
    padding:15px;
    color:#fff;
    font-size:14px;
}

/* Responsive */
@media(max-width:768px){
    .footer{
        padding:60px 20px 0;
        text-align:center;
    }
}


/* ================= PAGE BANNER ================= */

.page-banner{
    position:relative;
    height:160px;
    background:url('banner.jpg') center/cover no-repeat;
    display:flex;
    /*align-items:center;*/
    justify-content:center;
    text-align:center;
    color:#fff;
}

/* Dark Overlay */
.banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

/* Content */
.banner-content{
    position:relative;
    z-index:2;
}

.banner-content h1{
    font-size:48px;
    margin-bottom:15px;
    font-weight:700;
}

/* Breadcrumb */
.breadcrumb{
    font-size:16px;
}

.breadcrumb a{
    color:#d4af37;
    text-decoration:none;
}

.breadcrumb span{
    color:#fff;
}

/* Responsive */
@media(max-width:768px){

    .page-banner{
        height:250px;
    }

    .banner-content h1{
        font-size:30px;
    }
}


/* ================= LOGO DESCRIPTION ================= */

.logo-description{
    padding:80px 20px;
    text-align:center;
    /*background:#faf7fb;*/
}

.logo-box img{
    width:180px;
    margin-bottom:30px;
}

.logo-content h2{
    font-size:32px;
    color:#7a0000;
    margin-bottom:20px;
}

.logo-content p{
    max-width:800px;
    margin:0 auto 15px;
    line-height:1.7;
    color:#000;
}

/* ================= MISSION & VISION ================= */

.mission-vision{
    padding:80px 20px;
    background:#ffffff;
}

.mv-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    gap:50px;
    justify-content:center;
}

.mv-box{
    flex:1;
    /*background:#faf7fb;*/
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:center;
    transition:0.3s;
}

.mv-box:hover{
    transform:translateY(-8px);
}

.mv-icon{
    font-size:40px;
    margin-bottom:15px;
}

.mv-box h3{
    font-size:26px;
    color:#7a0000;
    margin-bottom:15px;
}

.mv-box p{
    line-height:1.7;
    color:#000;
}

/* Responsive */
@media(max-width:768px){

    .mv-container{
        flex-direction:column;
        gap:30px;
    }
}


/* ================= MANAGEMENT ROW STYLE ================= */

.management-section{
    padding:90px 20px;
    /*background:#faf7fb;*/
}

.management-section h2{
    text-align:center;
    font-size:36px;
    color:#7a0000;
    margin-bottom:60px;
}

/* Row Layout */
.management-row{
    display:flex;
    align-items:center;
    gap:50px;
    margin-bottom:60px;
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
}

/* Image */
.management-image img{
    width:250px;
    height:300px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* Content */
.management-content{
    flex:1;
}

.management-content h3{
    font-size:24px;
    margin-bottom:8px;
}

.designation{
    display:inline-block;
    color:#6b1218;
    font-weight:bold;
    margin-bottom:15px;
}

.management-content p{
    line-height:1.7;
    color:#000;
}

/* Alternate Row Style (Optional Zig-Zag) */
.management-row:nth-child(even){
    flex-direction:row-reverse;
}

/* Responsive */
@media(max-width:768px){

    .management-row{
        flex-direction:column;
        text-align:center;
    }

    .management-row:nth-child(even){
        flex-direction:column;
    }

    .management-image img{
        width:200px;
        height:250px;
    }
}


/* ================= OUR TEAM ================= */

.team-section{
    padding:90px 20px;
    /*background:#faf7fb;*/
}

.team-section h2{
    text-align:center;
    font-size:36px;
    color:#7a0000;
    margin-bottom:60px;
}

.team-category{
    margin-bottom:70px;
}

.team-category h3{
    font-size:26px;
    color:#6b1218;
    margin-bottom:30px;
    border-left:5px solid #d4af37;
    padding-left:15px;
}

/* 2 Column Grid */
.team-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:40px;
    max-width:900px;
    margin:auto;
}

/* Card */
.team-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.team-card:hover{
    transform:translateY(-6px);
}

.team-card img{
    width:150px;
    height:150px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:15px;
}

.team-card h4{
    font-size:18px;
    margin-bottom:5px;
}

.team-card span{
    font-size:14px;
    color:#6b1218;
    font-weight:bold;
}

/* Responsive */
@media(max-width:768px){

    .team-grid{
        grid-template-columns:1fr;
    }
}


/* ================= ADMISSION PROCESS ================= */

.admission-process{
    padding:100px 20px;
    /*background:#faf7fb;*/
    text-align:center;
}

.admission-process h2{
    font-size:38px;
    color:#7a0000;
    margin-bottom:60px;
    font-weight:700;
}

/* Grid Layout */
.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
    gap:40px;
    max-width:1200px;
    margin:auto;
}

/* Card */
.process-step{
    background:#fff;
    padding:35px 30px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.4s;
    position:relative;
}

.process-step:hover{
    transform:translateY(-8px);
}

/* Step Number Circle */
.step-number{
    width:60px;
    height:60px;
    background:#6b1218;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:bold;
    margin:0 auto 20px;
}

/* Title */
.process-step h3{
    font-size:20px;
    color:#333;
    margin-bottom:15px;
}

/* Paragraph */
.process-step p{
    font-size:15px;
    color:#000;
    line-height:1.7;
}

/* Responsive */
@media(max-width:768px){
    .admission-process{
        padding:70px 15px;
    }
}


/* ================= GRADE WISE ADMISSION ================= */

.grade-admission{
    padding:90px 20px;
    /*background:#faf7fb;*/
}

.grade-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.grade-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    text-align:left;
    transition:0.3s;
}

.grade-card:hover{
    transform:translateY(-6px);
}

.grade-card h3{
    color:#c62828;
    margin-bottom:20px;
}

.grade-card p{
    font-size:14px;
    color:#000;
    margin-bottom:12px;
    line-height:1.6;
}

.grade-card h4{
    margin-top:25px;
    color:#333;
    font-size:18px;
}

.grade-card ul{
    margin-top:15px;
    padding-left:18px;
}

.grade-card li{
    margin-bottom:8px;
    font-size:14px;
}

/* Responsive */
@media(max-width:992px){
    .grade-grid{
        grid-template-columns:1fr;
    }
}


/* ================= ENQUIRY FORM ================= */

.enquiry-section{
padding:100px 20px;
background:#f8f9fc;
}

.enquiry-container{
max-width:900px;
margin:auto;
background:#fff;
padding:50px;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.enquiry-section h2{
color:#6b1218;
margin-bottom:10px;
text-align:center;
font-size:30px;
font-weight:600;
}

.enquiry-section p{
text-align:center;
margin-bottom:35px;
color:#555;
}

.form-row{
display:flex;
gap:20px;
margin-bottom:20px;
}

.form-group{
flex:1;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
width:100%;
padding:14px 15px;
border:1px solid #ddd;
border-radius:8px;
font-size:14px;
transition:0.3s;
background:#fafafa;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus{
outline:none;
border-color:#6b1218;
background:#fff;
box-shadow:0 0 8px rgba(107,18,24,0.1);
}

textarea{
resize:none;
}

.submit-btn{
background:#6b1218;
color:#fff;
padding:14px 35px;
border:none;
border-radius:8px;
cursor:pointer;
font-size:16px;
display:block;
margin:auto;
margin-top:20px;
transition:0.3s;
}

.submit-btn:hover{
background:linear-gradient(to right, #75141b, #e92248, #6b1218);
transform:translateY(-2px);
}

/* Mobile Responsive */

@media(max-width:768px){

.form-row{
flex-direction:column;
}

.enquiry-container{
padding:30px 20px;
}

}

/* ================= POPUP FORM ================= */

.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-box{
    background:#fff;
    width:90%;
    max-width:500px;
    padding:35px;
    border-radius:12px;
    position:relative;
    text-align:center;
    animation:fadeIn 0.3s ease;
}

.popup-box h2{
    color:#7a0000;
    margin-bottom:20px;
}

.popup-box input,
.popup-box select,
.popup-box textarea{
    width:100%;
    margin-bottom:15px;
    padding:10px;
    border:1px solid #fff;
    border-radius:6px;
}

.close-btn{
    position:absolute;
    top:10px;
    right:15px;
    font-size:22px;
    cursor:pointer;
    color:#333;
}

@keyframes fadeIn{
    from{ transform:scale(0.9); opacity:0; }
    to{ transform:scale(1); opacity:1; }
}



/* ================= FAQ SECTION ================= */

.faq-section{
    padding:90px 20px;
    /*background:#faf7fb;*/
    text-align:center;
}

.faq-section h2{
    font-size:36px;
    color:#7a0000;
    margin-bottom:40px;
    font-weight:bold;
}

.faq-container{
    max-width:900px;
    margin:auto;
    text-align:left;
}

/* Single FAQ */
.faq-item{
    border-bottom:1px solid #fff;
    margin-bottom:15px;
}

.faq-question{
    font-size:18px;
    padding:15px 20px;
    cursor:pointer;
    position:relative;
    color:#333;
    font-weight:600;
}

.faq-question:hover{
    color:#6b1218;
}

.faq-icon{
    position:absolute;
    right:20px;
    font-size:22px;
    color:#6b1218;
}

/* Hidden Answer */
.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 20px;
    font-size:15px;
    color:#000;
    line-height:1.7;
    transition:max-height 0.4s ease;
}

/* When active */
.faq-active .faq-answer{
    max-height:200px;
    padding-top:12px;
    padding-bottom:15px;
}


/* ================= CAMPUS FACILITIES ================= */

.facilities-section{
    padding:90px 20px;
    /*background:#faf7fb;*/
    text-align:center;
}

.facilities-section h2{
    font-size:36px;
    color:#7a0000;
    margin-bottom:10px;
}

.facilities-subtext{
    font-size:16px;
    color:#000;
    margin-bottom:40px;
}

.facilities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:35px;
    max-width:1200px;
    margin:auto;
}

/* Facility Card */
.facility-card{
    background:#fff;
    padding:25px 20px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    text-align:center;
}

.facility-card:hover{
    transform:translateY(-8px);
}

.facility-icon{
    font-size:40px;
    margin-bottom:15px;
    color:#6b1218;
}

.facility-card h3{
    font-size:20px;
    color:#333;
    margin-bottom:12px;
}

.facility-card p{
    font-size:15px;
    color:#000;
    line-height:1.7;
}

/* Responsive */
@media(max-width:768px){
    .facilities-section{
        padding:70px 15px;
    }
}


/* ================= CAREER COUNSELLING ================= */

.career-section{
    padding:50px 20px;
    /*background:#faf7fb;*/
}

.career-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

.career-content{
    flex:1;
}

.career-content h2{
    font-size:36px;
    color: #801420 !important;
    margin-bottom:20px;
}

.career-content p{
    font-size:16px;
    color:#000;
    line-height:1.8;
    margin-bottom:20px;
}

.career-points{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.career-points li{
    margin-bottom:12px;
    font-size:15px;
    color:#000;
}

.career-btn{
    display:inline-block;
    background:#6b1218;
    color:#fff;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    transition:0.3s;
}

.career-btn:hover{
    background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
}

/* Right Image */
.career-image{
    flex:1;
}

.career-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* Responsive */
@media(max-width:992px){

    .career-container{
        flex-direction:column;
        text-align:center;
    }

    .career-points{
        text-align:left;
        display:inline-block;
    }
}



/* ================= TRANSPORT SECTION ================= */

.transport-section{
    padding:100px 20px;
    /*background:#ffffff;*/
}

.transport-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

/* Image */
.transport-image{
    flex:1;
}

.transport-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* Content */
.transport-content{
    flex:1;
}

.transport-content h2{
    font-size:36px;
    color:#7a0000;
    margin-bottom:20px;
}

.transport-content p{
    font-size:16px;
    color:#000;
    line-height:1.8;
    margin-bottom:20px;
}

.transport-points{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.transport-points li{
    margin-bottom:12px;
    font-size:15px;
    color:#000;
}

.transport-btn{
    display:inline-block;
    background:#6b1218;
    color:#fff;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    transition:0.3s;
}

.transport-btn:hover{
    background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
}

/* Responsive */
@media(max-width:992px){

    .transport-container{
        flex-direction:column;
        text-align:center;
    }

    .transport-points{
        text-align:left;
        display:inline-block;
    }
}



/* ================= SAFETY SECTION ================= */

.safety-section{
    padding:100px 20px;
    /*background:#faf7fb;*/
    text-align:center;
}

.safety-section h2{
    font-size:38px;
    color:#7a0000;
    margin-bottom:20px;
}

.section-intro{
    max-width:800px;
    margin:0 auto 60px;
    color:#000;
    font-size:16px;
    line-height:1.8;
}

.safety-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
    gap:35px;
    max-width:1200px;
    margin:auto;
}

/* Card */
.safety-card{
    background:#fff;
    padding:30px 25px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.4s;
}

.safety-card:hover{
    transform:translateY(-8px);
}

.safety-icon{
    font-size:40px;
    margin-bottom:15px;
    color:#6b1218;
}

.safety-card h3{
    font-size:20px;
    margin-bottom:12px;
    color:#333;
}

.safety-card p{
    font-size:15px;
    color:#000;
    line-height:1.7;
}

/* Responsive */
@media(max-width:768px){
    .safety-section{
        padding:70px 15px;
    }
}


/* ================= CAFETERIA SECTION ================= */

.cafeteria-section{
    padding:100px 20px;
    /*background:#faf7fb;*/
}

.cafeteria-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

/* Image */
.cafeteria-image{
    flex:1;
}

.cafeteria-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* Content */
.cafeteria-content{
    flex:1;
}

.cafeteria-content h2{
    font-size:36px;
    color:#7a0000;
    margin-bottom:20px;
}

.cafeteria-content p{
    font-size:16px;
    color:#000;
    line-height:1.8;
    margin-bottom:15px;
}

.cafeteria-points{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.cafeteria-points li{
    margin-bottom:12px;
    font-size:15px;
    color:#000;
}

.cafeteria-btn{
    display:inline-block;
    background:#6b1218;
    color:#fff;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    transition:0.3s;
}

.cafeteria-btn:hover{
    background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
}

/* Responsive */
@media(max-width:992px){

    .cafeteria-container{
        flex-direction:column;
        text-align:center;
    }

    .cafeteria-points{
        text-align:left;
        display:inline-block;
    }
}



/* ================= ACADEMIC CALENDAR ================= */

.academic-calendar-section{
    padding:100px 20px;
    /*background:#f7f7f7;*/
    text-align:center;
}

.academic-calendar-section h2{
    font-size:34px;
    color:#222;
    margin-bottom:40px;
}

/* Calendar Image */
.calendar-image{
    max-width:900px;
    margin:0 auto 40px;
}

.calendar-image img{
    width:100%;
    border-radius:8px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.calendar-image img:hover{
    transform:scale(1.02);
}

/* Download Button */
.calendar-download-btn{
    display:inline-block;
    background:#e53935;
    color:#fff;
    padding:12px 30px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.calendar-download-btn:hover{
    background:#c62828;
}

/* Responsive */
@media(max-width:768px){

    .academic-calendar-section{
        padding:70px 15px;
    }

    .academic-calendar-section h2{
        font-size:24px;
    }

}



/* ================= EVENTS SECTION ================= */

.events-section{
    padding:100px 20px;
    /*background:#faf7fb;*/
    text-align:center;
}

.events-section h2{
    font-size:38px;
    color:#7a0000;
    margin-bottom:60px;
}

/* Grid */
.events-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
    gap:40px;
    max-width:1200px;
    margin:auto;
}

/* Card */
.event-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.4s;
}

.event-card:hover{
    transform:translateY(-8px);
}

/* Image */
.event-image{
    position:relative;
}

.event-image img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* Date Badge */
.event-date{
    position:absolute;
    top:15px;
    left:15px;
    background:#6b1218;
    color:#fff;
    padding:8px 10px;
    border-radius:8px;
    text-align:center;
}

.event-date span{
    font-size:18px;
    font-weight:bold;
    display:block;
}

.event-date small{
    font-size:12px;
}

/* Category Tag */
.event-category{
    position:absolute;
    bottom:15px;
    right:15px;
    background:#d4af37;
    color:#000;
    padding:6px 10px;
    font-size:12px;
    border-radius:20px;
    font-weight:600;
}

/* Content */
.event-content{
    padding:25px;
    text-align:left;
}

.event-content h3{
    font-size:20px;
    color:#333;
    margin-bottom:12px;
}

.event-content p{
    font-size:15px;
    color:#000;
    line-height:1.7;
}

/* Responsive */
@media(max-width:768px){
    .events-section{
        padding:70px 15px;
    }
}



/* ================= PYP SECTION ================= */

.pyp-section{
    padding:100px 20px;
    /*background:#faf7fb;*/
    text-align:center;
}

/* HEADER */
.pyp-header h2{
    font-size:36px;
    color:#7a0000;
    margin-bottom:10px;
}

.pyp-header p{
    font-size:16px;
    color:#000;
    margin-bottom:50px;
}

/* WHAT IS PYP */
.pyp-what{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:70px;
    max-width:1100px;
    margin:auto;
}

.pyp-image img{
    width:100%;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.pyp-content{
    flex:1;
    text-align:left;
}

.pyp-content h3{
    font-size:26px;
    margin-bottom:15px;
    color:#333;
}

.pyp-content p{
    color:#000;
    line-height:1.8;
}

/* FEATURES GRID */
.pyp-features h3{
    font-size:28px;
    color:#7a0000;
    margin-bottom:30px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.feature-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
}

.feature-card .icon{
    font-size:40px;
    color:#6b1218;
    margin-bottom:12px;
}

.feature-card h4{
    font-size:18px;
    margin-bottom:8px;
    color:#333;
}

.feature-card p{
    font-size:14px;
    color:#000;
    line-height:1.6;
}

/* BENEFITS */
.pyp-benefits{
    margin:60px auto;
    max-width:900px;
    text-align:left;
}

.pyp-benefits h3{
    font-size:28px;
    color:#7a0000;
    margin-bottom:20px;
}

.pyp-benefits ul{
    list-style:disc inside;
    font-size:15px;
    color:#000;
    line-height:1.8;
}

/* LEARNER PROFILE */
.pyp-profile{
    margin:60px auto;
    text-align:center;
}

.pyp-profile h3{
    font-size:28px;
    color:#7a0000;
    margin-bottom:30px;
}

.profile-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(140px,1fr));
    gap:20px;
    max-width:900px;
    margin:auto;
}

.profile-card{
    background:#fff;
    padding:18px;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,0.07);
    font-size:15px;
    font-weight:600;
    color:#333;
}

/* CTA BUTTON */
.pyp-cta{
    margin-top:50px;
    text-align:center;
}

.pyp-button{
    background:#6b1218;
    color:#fff;
    padding:12px 28px;
    border-radius:8px;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.pyp-button:hover{
    background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
}

/* Responsive */
@media(max-width:992px){
    .pyp-what{
        flex-direction:column;
        text-align:center;
    }
    .pyp-content{
        text-align:center;
    }
}

/* ================= ADP LEAGUE SECTION ================= */

.adp-league-section{
    padding:100px 20px;
    /*background:#faf7fb;*/
    text-align:center;
}

/* INTRO */
.adp-intro h2{
    font-size:40px;
    color:#7a0000;
    margin-bottom:10px;
}

.subtitle{
    font-size:18px;
    color:#6b1218;
    margin-bottom:15px;
    font-weight:600;
}

.description{
    max-width:750px;
    margin:0 auto 70px;
    color:#000;
    line-height:1.8;
}

/* ABOUT */
/* ================= ADP ABOUT SECTION ================= */

.adp-about-section{
    padding:100px 20px;
    /*background:#faf7fb;*/
}

.adp-about-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

/* IMAGE */
.adp-about-image{
    flex:1;
}

.adp-about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* CONTENT */
.adp-about-content{
    flex:1;
}

.adp-about-content h2{
    font-size:34px;
    color:#7a0000;
    margin-bottom:20px;
}

.adp-about-content p{
    font-size:16px;
    color:#000;
    line-height:1.8;
    margin-bottom:15px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .adp-about-container{
        flex-direction:column;
        text-align:center;
    }
}

/* FOCUS */
.adp-focus h3{
    font-size:30px;
    color:#7a0000;
    margin-bottom:40px;
}

.focus-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.focus-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.focus-card:hover{
    transform:translateY(-8px);
}

.focus-card .icon{
    font-size:40px;
    color:#6b1218;
    margin-bottom:15px;
}

/* BENEFITS */
.adp-benefits{
    margin:80px auto;
    max-width:400px;
    text-align:left;
}

.adp-benefits h3{
    color:#7a0000;
    margin-bottom:20px;
}

.adp-benefits ul{
    list-style:none;
    padding:0;
}

.adp-benefits li{
    margin-bottom:12px;
    font-size:16px;
}

/* HIGHLIGHT */
.adp-highlight{
    background:#f4e7a3;
    padding:60px 30px;
    border-radius:15px;
    max-width:900px;
    margin:0 auto 60px;
}

.adp-highlight h3{
    margin-bottom:15px;
}

/* CTA */
.adp-btn{
    background:#6b1218;
    color:#fff;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    transition:0.3s;
}

.adp-btn:hover{
    background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
}

/* Responsive */
@media(max-width:992px){
    .adp-about{
        flex-direction:column;
        text-align:center;
    }

    .adp-content{
        text-align:center;
    }

    .adp-benefits{
        text-align:center;
    }
}



/* ================= ULTRA PREMIUM KG SECTION ================= */

.kg-section-premium{
    position:relative;
    padding:120px 20px;
    /*background:linear-gradient(to bottom,#faf7fb,#f3e9f7);*/
    overflow:hidden;
}

.kg-container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* Decorative Shapes */
.kg-shape{
    position:absolute;
    border-radius:50%;
    opacity:0.08;
}

.shape1{
    width:300px;
    height:300px;
    background:#6b1218;
    top:-80px;
    left:-80px;
}

.shape2{
    width:250px;
    height:250px;
    background:#d4af37;
    bottom:-80px;
    right:-80px;
}

/* Heading */
.kg-heading{
    text-align:center;
    margin-bottom:70px;
}

.kg-heading h2{
    font-size:42px;
    color:#7a0000;
    margin-bottom:15px;
}

.kg-heading p{
    max-width:700px;
    margin:auto;
    color:#000;
}

/* Hero Layout */
.kg-hero{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:80px;
}

.kg-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.kg-content h3{
    color:#6b1218;
    margin-bottom:15px;
}

.kg-content p{
    color:#000;
    line-height:1.7;
    margin-bottom:15px;
}

/* Age Highlight */
.kg-age-highlight{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.kg-age-highlight span{
    background:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    box-shadow:0 6px 15px rgba(0,0,0,0.1);
}

/* Learning Cards */
.kg-learning-premium{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:70px;
}

.kg-card-premium{
    background:linear-gradient(135deg,#ffffff,#f9f0fb);
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
    transition:0.3s;
}

.kg-card-premium:hover{
    transform:translateY(-8px);
}

.kg-card-premium h4{
    color:#7a0000;
    margin-bottom:10px;
}

/* CTA */
.kg-cta{
    text-align:center;
}

.kg-btn-premium{
    background:#6b1218;
    color:#fff;
    padding:16px 40px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.kg-btn-premium:hover{
    background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
}

/* Bottom Wave */
.kg-wave{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:80px;
    background:linear-gradient(90deg,#6b1218,#b03aa8);
    border-top-left-radius:100% 60px;
    border-top-right-radius:100% 60px;
}

/* Responsive */
@media(max-width:900px){
    .kg-hero{
        flex-direction:column;
    }
}



/* ================= PRIMARY YEARS UPGRADED ================= */

.primary-section{
    padding:120px 20px;
    background:linear-gradient(to bottom,#ffffff,#f3e9f7);
}

.primary-container{
    max-width:1200px;
    margin:auto;
}

/* Heading */
.primary-heading{
    text-align:center;
    margin-bottom:80px;
}

.primary-heading h2{
    font-size:42px;
    color:#7a0000;
    margin-bottom:15px;
}

.primary-heading p{
    max-width:750px;
    margin:auto;
    color:#000;
    font-size:16px;
}

/* Intro Layout */
.primary-intro{
    display:flex;
    gap:60px;
    align-items:center;
    margin-bottom:100px;
}

/* Image */
.primary-image{
    flex:1;
}

.primary-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* Right Content Wrapper */
.primary-content{
    flex:1.2;
    display:flex;
    flex-direction:column;
    gap:30px;
}

/* Text */
.primary-text h3{
    color:#6b1218;
    font-size:26px;
    margin-bottom:15px;
}

.primary-text p{
    line-height:1.8;
    color:#000;
    margin-bottom:10px;
}

/* Highlights Box */
.primary-highlights{
    background:linear-gradient(135deg,#ffffff,#faf2fc);
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    border-left:6px solid #6b1218;
}

.primary-highlights h4{
    margin-bottom:15px;
    color:#7a0000;
    font-size:20px;
}

.primary-highlights ul{
    list-style:none;
    padding:0;
}

.primary-highlights li{
    margin-bottom:12px;
    font-size:15px;
}

/* Subjects */
.primary-subjects h3{
    text-align:center;
    margin-bottom:50px;
    color:#7a0000;
    font-size:28px;
}

.subjects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-bottom:90px;
}

.subject-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    border-top:4px solid transparent;
}

.subject-card:hover{
    transform:translateY(-8px);
    border-top:4px solid #6b1218;
}

.subject-card h4{
    color:#6b1218;
    margin-bottom:10px;
}

/* Co-curricular */
.primary-cocurricular{
    margin-bottom:80px;
}

.primary-cocurricular h3{
    text-align:center;
    margin-bottom:40px;
    color:#7a0000;
}

.cocurricular-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

/* Assessment */
.primary-assessment{
    margin-bottom:70px;
    padding:40px;
    background:#faf7fb;
    border-radius:20px;
}

/* Facilities */
.primary-facilities{
    margin-bottom:70px;
}

.primary-facilities ul{
    list-style:none;
    padding:0;
}

.primary-facilities li{
    margin-bottom:12px;
}

/* CTA */
.primary-cta{
    text-align:center;
    margin-top:50px;
}

.primary-btn{
    background:#6b1218;
    color:#fff;
    padding:18px 45px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.primary-btn:hover{
    background:linear-gradient(to right, #75141b, #e92248, #6b1218) !important;
    transform:scale(1.05);
}

/* Responsive */
@media(max-width:900px){

    .primary-intro{
        flex-direction:column;
    }

    .primary-content{
        text-align:center;
    }

    .primary-highlights{
        text-align:left;
    }
}


/* ================= CONTACT SECTION ================= */
.contact-section{
padding:120px 20px;
background:#f5f7fb;
}

.contact-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}


/* LEFT */

.contact-title h2{
font-size:38px;
color:#7a0000;
margin-bottom:5px;
}

.contact-title p{
color:#666;
margin-bottom:30px;
}

.contact-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
margin-bottom:30px;
}

.contact-card h3{
color:#6b1218;
margin-bottom:25px;
}

.contact-item{
display:flex;
gap:20px;
margin-bottom:25px;
align-items:flex-start;
}

.contact-item .icon{
min-width:50px;
height:50px;
background: #6b1218;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:18px;
}

.contact-item h4{
margin:0;
font-size:15px;
color:#222;
}

.contact-item p{
margin-top:3px;
color:#666;
font-size:14px;
}


/* MAP */

.contact-map iframe{
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}


/* FORM */

.contact-form{
background:#fff;
padding:45px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.07);
}

.form-header h3{
color:#7a0000;
font-size:24px;
margin-bottom:5px;
}

.form-header p{
color:#777;
font-size:14px;
margin-bottom:25px;
}

.form-group{
position:relative;
margin-bottom:18px;
width:100%;
}

.form-group i{
position:absolute;
left:18px;
top:50%;
transform:translateY(-50%);
color:#6b1218;
font-size:15px;
}


.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:15px 18px 15px 45px;
border-radius:10px;
border:1px solid #e6e6e6;
background:#fff;
font-size:14px;
transition:.3s;
box-sizing:border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
border-color:#6b1218;
box-shadow:0 0 0 3px rgba(142,42,140,0.08);
outline:none;
}


/* Button */

.submit-btn{
width:100%;
background:#6b1218;
color:#fff;
border:none;
padding:16px;
border-radius:50px;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:.3s;
margin-top:10px;
}

.submit-btn i{
margin-right:8px;
}

.submit-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* RESPONSIVE */

@media(max-width:900px){

.contact-container{
grid-template-columns:1fr;
}

}


/* COMMON STYLE */
.float-btn{
position:fixed;
right:20px;
width:58px;
height:58px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:#fff;
text-decoration:none;
z-index:9999;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
transition:0.3s;
}

/* WHATSAPP */
.whatsapp{
bottom:20px;
background:#25D366;
}

/* CALL */
.call{
bottom:90px;
background:#6b1218;
}

/* HOVER EFFECT */
.float-btn:hover{
transform:scale(1.1);
box-shadow:0 10px 25px rgba(0,0,0,0.35);
}

/* PULSE ANIMATION */
.whatsapp::before,
.call::before{
content:"";
position:absolute;
width:100%;
height:100%;
border-radius:50%;
background:inherit;
opacity:0.6;
animation:pulse 1.8s infinite;
z-index:-1;
}

@keyframes pulse{
0%{
transform:scale(1);
opacity:0.6;
}
70%{
transform:scale(1.6);
opacity:0;
}
100%{
opacity:0;
}
}








.courses-section{
padding:80px 0;
/*background:#f7f8fc;*/
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.courses-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.course-card{
position:relative;
display:block;
border-radius:12px;
overflow:hidden;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

.course-card img{
width:100%;
/*height:240px;*/
object-fit:cover;
transition:0.5s;
}

.course-overlay{
position:absolute;
bottom:0;
width:100%;
padding:15px;

/* LIGHT OVERLAY (not heavy) */
background:linear-gradient(to top, rgba(160,0,0,0.85), rgba(160,0,0,0.2));

text-align:left;
color:#fff;
}

/* TITLE */
.course-overlay h3{
font-size:16px;
font-weight:600;
margin:0;
}

/* SUBTEXT */
.course-overlay p{
font-size:13px;
margin-top:4px;
opacity:0.9;
}

.view-btn{
display:inline-block;
margin-top:10px;
padding:6px 14px;
font-size:14px;
background:white;
color:#a00000;
border-radius:20px;
opacity:0;
transform:translateY(10px);
transition:0.4s;
}

/* Hover Effects */

.course-card:hover img{
transform:scale(1.1);
}

.course-card:hover .view-btn{
opacity:1;
transform:translateY(0);
}

.course-card:hover{
transform:translateY(-5px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* Responsive */

@media(max-width:1024px){
.courses-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.courses-grid{
grid-template-columns:1fr;
}
}











.admission-banner{
height:420px;
background:url('Admission-2025-26.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:flex-end;
padding-right:120px;
padding-bottom: 20px;
position:relative;
}

.banner-content{
max-width:500px;
}

.banner-content h1{
font-size:42px;
color:#8a1d1d;
font-weight:700;
margin-bottom:25px;
}

.banner-content h1 span{
color:#d88b00;
}

.banner-links{
display:flex;
flex-direction:column;
gap:15px;
}

.banner-btn{
display:inline-block;
background:#b3821a;
color:white;
padding:12px 18px;
text-decoration:none;
font-size:15px;
border-radius:4px;
transition:0.3s;
width:fit-content;
}

.banner-btn:hover{
background:#8f6513;
}

.btn-row{
display:flex;
gap:10px;
}

.view-more{
background:#8b6b14;
}

/* Responsive */

@media(max-width:768px){

.admission-banner{
padding:40px;
justify-content:center;
text-align:center;
}

.banner-content h1{
font-size:30px;
}

.btn-row{
flex-direction:column;
}

}









.recruiters{
padding:70px 0;
/*background:#d7d2c5;*/
text-align:center;
}

.section-title{
font-size:28px;
color:#b10000;
margin-bottom:40px;
position:relative;
}

.section-title::after{
content:"";
width:60px;
height:3px;
background:#801420;
display:block;
margin:10px auto 0;
}

.recruiter-slider{
position:relative;
display:flex;
align-items:center;
}

.slider-track{
display:flex;
gap:30px;
overflow:hidden;
scroll-behavior:smooth;
}

.recruiter-card{
background:white;
padding:30px;
border-radius:6px;
min-width:220px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.recruiter-card img{
width:100%;
height:70px;
object-fit:contain;
}

.slider-btn{
position:absolute;
background:#9b9b9b;
border:none;
width:40px;
height:40px;
border-radius:50%;
color:white;
font-size:18px;
cursor:pointer;
}

.prev{
left:-20px;
}

.next{
right:-20px;
}

.slider-btn:hover{
background:#000;
}










.college-profile{
padding:70px 0;
/*background:#f7f7f7;*/
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.profile-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.section-title{
font-size:28px;
color:#a30000;
margin-bottom:20px;
position:relative;
}

.section-title::after{
content:"";
width:50px;
height:3px;
background:#801420;
display:block;
margin-top:8px;
}

.profile-text p{
color:#000;
line-height:1.7;
margin-bottom:15px;
}

.read-more{
display:inline-block;
padding:10px 18px;
border:1px solid #7a4c87;
color:#7a4c87;
text-decoration:none;
border-radius:4px;
}

.read-more:hover{
background:#7a4c87;
color:white;
}

.profile-video video{
width:100%;
height:320px;
object-fit:cover;
border-radius:6px;
box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive */

@media(max-width:768px){

.profile-grid{
grid-template-columns:1fr;
}

.profile-video video{
height:250px;
}

}







.stats-section {
  position: relative;
  padding: 120px 20px;
  background: url('bg.jpeg') center/cover no-repeat;
  background-attachment: fixed; /* ðŸ”¥ PARALLAX EFFECT */
}

/* GLASS CARD */
.stats-overlay {
  max-width: 1200px;
  margin: auto;
  padding: 50px 30px;
  border-radius: 12px;
  background: rgba(40, 40, 40, 0.75);
  backdrop-filter: blur(10px);
}

/* GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  text-align: center;
}

/* ICON */
.stat-box i {
  font-size: 28px;
  color: #b3202d;
  margin-bottom: 10px;
}

/* NUMBER */
.stat-box h2 {
  font-size: 40px;
  color: #fff;
  margin: 10px 0;
  font-weight: 700;
}

/* LINE */
.stat-box h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #b3202d;
  margin: 10px auto 0;
}

/* TEXT */
.stat-box p {
  color: #fff;
  font-size: 14px;
}

/* HOVER EFFECT */
.stat-box {
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-8px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box h2 {
    font-size: 28px;
  }
}




.virtual-tour{
padding:80px 20px;
background:#f5f5f5;
overflow:hidden;
}

.tour-wrapper{
position:relative;
width:100%;
max-width:900px;
aspect-ratio:1/1;
margin:auto;
}

/* Center Circle */

.tour-center{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:180px;
height:180px;
border:12px solid #f4b400;
border-radius:50%;
background:white;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
z-index:5;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.tour-center h2{
font-size:34px;
color:#8b0000;
margin:0;
}

.tour-center p{
font-weight:600;
}

/* Tour Item */

.tour-item{
position:absolute;
top:50%;
left:50%;
transform-origin:center;
animation:swing 6s ease-in-out infinite;
}

.tour-item img{
width:150px;
padding:8px;
background:white;
box-shadow:0 12px 25px rgba(0,0,0,0.25);
border-radius:5px;
transition:.3s;
}

/* String */

.string{
display:block;
width:2px;
height:60px;
background:#000;
margin:auto;
}

.clip{
width:16px;
height:16px;
background:#222;
display:block;
margin:auto;
margin-bottom:4px;
}

/* Swing */

@keyframes swing{
0%{rotate:-3deg}
50%{rotate:3deg}
100%{rotate:-3deg}
}

/* Desktop Radius */

.item1{
transform:translate(-50%,-50%) rotate(0deg) translate(280px) rotate(0deg);
}

.item2{
transform:translate(-50%,-50%) rotate(60deg) translate(280px) rotate(-60deg);
}

.item3{
transform:translate(-50%,-50%) rotate(120deg) translate(280px) rotate(-120deg);
}

.item4{
transform:translate(-50%,-50%) rotate(180deg) translate(280px) rotate(-180deg);
}

.item5{
transform:translate(-50%,-50%) rotate(240deg) translate(280px) rotate(-240deg);
}

.item6{
transform:translate(-50%,-50%) rotate(300deg) translate(280px) rotate(-300deg);
}


/* Tablet */

@media(max-width:991px){

.tour-item img{
width:130px;
}

.tour-center{
width:150px;
height:150px;
}

.item1{transform:translate(-50%,-50%) rotate(0deg) translate(230px);}
.item2{transform:translate(-50%,-50%) rotate(60deg) translate(230px);}
.item3{transform:translate(-50%,-50%) rotate(120deg) translate(230px);}
.item4{transform:translate(-50%,-50%) rotate(180deg) translate(230px);}
.item5{transform:translate(-50%,-50%) rotate(240deg) translate(230px);}
.item6{transform:translate(-50%,-50%) rotate(300deg) translate(230px);}

}


/* Mobile */
/* Mobile */

@media(max-width:600px){

.tour-item img{
width:85px;
padding:5px;
}

.string{
height:30px;
}

.clip{
width:12px;
height:12px;
}

.tour-center{
width:110px;
height:110px;
border:7px solid #f4b400;
}

.tour-center h2{
font-size:18px;
}

.tour-center p{
font-size:10px;
}

/* Bring images closer */

.item1{transform:translate(-50%,-50%) rotate(0deg) translate(145px);}
.item2{transform:translate(-50%,-50%) rotate(60deg) translate(145px);}
.item3{transform:translate(-50%,-50%) rotate(120deg) translate(145px);}
.item4{transform:translate(-50%,-50%) rotate(180deg) translate(145px);}
.item5{transform:translate(-50%,-50%) rotate(240deg) translate(145px);}
.item6{transform:translate(-50%,-50%) rotate(300deg) translate(145px);}

}

.programs{
padding:90px 0;
background:#f7f9fc;
font-family:'Poppins',sans-serif;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */
.section-header{
text-align:center;
margin-bottom:50px;
}

.section-header h2{
font-size:34px;
color:#801420;
margin-bottom:10px;
font-weight:700;
}

.section-header p{
color:#555;
}

/* CARD */
.program-card{
display:flex;
align-items:center;
justify-content:space-between;
background:#fff;
border-radius:14px;
padding:25px 30px;
margin-bottom:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
gap:20px;
}

.program-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* LEFT */
.program-left{
flex:1.5;
}

.program-left h3{
color:#801420;
font-size:20px;
font-weight:600;
line-height:1.4;
}

/* DETAILS */
.program-details{
flex:3;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
text-align:center;
align-items:center;
}

/* BOX */
.detail-box{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:5px;
}

/* ICON */
.detail-box i{
font-size:20px;
color:#801420;
}

/* TEXT */
.detail-box p{
font-size:13px;
color:#777;
margin:0;
}

.detail-box h4{
font-size:15px;
color:#222;
margin:0;
font-weight:600;
}

/* LOGO FIX */
.uni-logo{
height:35px;
width:auto;
object-fit:contain;
margin-top:5px;
}

/* BUTTON */
.program-btn{
flex:1;
display:flex;
justify-content:flex-end;
}

.program-btn a{
background:#801420;
color:#fff;
padding:10px 22px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
white-space:nowrap;
}

.program-btn a:hover{
background:#a85f1f;
}

/* RESPONSIVE */
@media(max-width:900px){

.program-card{
flex-direction:column;
align-items:flex-start;
}

.program-details{
grid-template-columns:repeat(2,1fr);
width:100%;
}

.program-btn{
width:100%;
justify-content:flex-start;
}
}








.syllabus-section{
padding:80px 0;
background:#f5f6fa;
}

.containers{
/*width:90%;*/
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.section-title{
text-align:center;
font-size:36px;
color:#801420;
margin-bottom:50px;
position:relative;
}

.section-title:after{
content:"";
width:60px;
height:3px;
background:#801420;
display:block;
margin:10px auto 0;
}

/* Card */

.syllabus-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
transition:.3s;
}

.syllabus-card:hover{
transform:translateY(-5px);
}

.syllabus-card h3{
color:#801420;
margin-bottom:20px;
font-size:18px;
}

/* Button */

.syllabus-btn{
display:inline-block;
background:#801420;
color:white;
padding:10px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.syllabus-btn:hover{
background:#a01828;
color:white;
}








.pg-programs{
padding:90px 0;
background:#f6f8fc;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* Heading */

.section-header{
text-align:center;
margin-bottom:50px;
}

.section-header h2{
font-size:34px;
color:#801420;
margin-bottom:10px;
}

.section-header p{
color:#000;
}

/* Grid */

.pg-grid{
display:grid;
grid-template-columns:repeat(1,1fr);
gap:30px;
}

/* Card */

.pg-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
display:flex;
}

.pg-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* Image */

.pg-image{
width:40%;
}

.pg-image img{
width:100%;
height:100%;
object-fit:cover;
}

/* Content */

.pg-content{
padding:25px;
flex:1;
}

.pg-content h3{
color:#801420;
margin-bottom:10px;
}

.pg-content p{
font-size:14px;
color:#000;
margin-bottom:15px;
}

/* Info */

.pg-info{
display:flex;
gap:20px;
margin-bottom:15px;
font-size:14px;
}

/* Button */

.pg-btn{
display:inline-block;
background:#801420;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
}

.pg-btn:hover{
background:#a45f1c;
}

/* Mobile */

@media(max-width:900px){

.pg-grid{
grid-template-columns:1fr;
}

.pg-card{
flex-direction:column;
}

.pg-image{
width:100%;
height:200px;
}

}





/* SECTION */
.college-profile{
padding:100px 0;
/*background:#f4f7fb;*/
}

/* CONTAINER */
.container{width:90%;max-width:1200px;margin:auto;}

/* HEADER */
.section-header{
text-align:center;
margin-bottom:40px;
}

.section-header h2{
font-size:36px;
color:#801420;
margin-bottom:15px;
}

.section-header p{
max-width:800px;
margin:auto;
font-size:16px;
color:#000;
line-height:1.6;
}

/* MAIN BOX */
.profile-box{
max-width:1200px;
margin:40px auto 0;
background:#ffffff;
padding:40px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
line-height:1.8;
}

/* TEXT */


/* SUB HEADINGS */
.profile-box h3{
margin-top:30px;
color:#801420;
font-size:32px;
border-left:4px solid #801420;
padding-left:10px;
}

/* LIST */
.profile-list{
margin-top:10px;
padding-left:20px;
}

.profile-list li{
margin-bottom:8px;
font-size:15px;
}

/* FEATURES GRID */
.features-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
margin-top:15px;
}

.features-grid div{
background:#f6f8fc;
padding:12px 15px;
border-radius:6px;
font-size:14px;
transition:0.3s;
}

.features-grid div:hover{
background:#eaf1fb;
transform:translateY(-3px);
}

/* MISSION BOX */
.mission{
background:#801420;
color:white;
padding:20px;
border-radius:8px;
margin-top:10px;
font-size:15px;
}

/* MOBILE */
@media(max-width:768px){

.section-header h2{
font-size:26px;
}

.profile-box{
padding:25px;
}

}
/* ================= CONTAINER ================= */
.ug-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    padding:0 15px;
}

/* ================= CARD ================= */
.ug-card{
    display:grid;
    grid-template-columns:420px 1fr;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.ug-card:hover{
    transform:translateY(-5px);
}

/* ================= IMAGE ================= */
.ug-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ================= CONTENT ================= */
.ug-content{
    padding:30px;
}

.ug-content h3{
    color:#7a0000;
    margin-bottom:10px;
    font-size:22px;
}

.ug-content p{
    color:#555;
    margin-bottom:20px;
    font-size:15px;
    line-height:1.6;
}

/* ================= INFO GRID ================= */
.ug-info{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:20px;
}

.ug-info-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.ug-info-item i{
    width:40px;
    height:40px;
    background:#8b0000;
    color:#fff;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    flex-shrink:0;
}

.ug-info-item span{
    display:block;
    font-size:12px;
    color:#777;
}

.ug-info-item strong{
    font-size:14px;
    color:#111;
}

/* ================= LOGOS ================= */
.university-logos{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:6px;
    margin-top:5px;
}

.university-logos img{
    height:22px;
    width:auto;
    object-fit:contain;
}

/* ================= BUTTON ================= */
.ug-btn{
    background:#8b0000;
    color:#fff;
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    display:inline-block;
    transition:0.3s;
    font-size:14px;
}

.ug-btn:hover{
    background:#6b0000;
}

/* ================= TABLET ================= */
@media(max-width:900px){

    .ug-card{
        grid-template-columns:1fr;
    }

    .ug-image img{
        height:180px;
    }

    .ug-info{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .ug-content{
        padding:20px;
    }
}

/* ================= MOBILE ================= */
@media(max-width:600px){

    .ug-content h3{
        font-size:18px;
    }

    .ug-content p{
        font-size:14px;
    }

    .ug-info{
        grid-template-columns:1fr;
        gap:12px;
    }

    .ug-info-item{
        align-items:center;
    }

    .ug-info-item i{
        width:35px;
        height:35px;
        font-size:14px;
    }

    /* ✅ FIXED BUTTON */
    .ug-btn{
        display:block;              /* IMPORTANT */
        width:100%;
        text-align:center;
        padding:12px 15px;          /* balanced padding */
        font-size:15px;             /* slightly bigger */
        border-radius:8px;
        box-sizing:border-box;      /* prevents overflow */
    }
}






  .custom-header{
text-align:center;
margin:0 auto 60px;
padding:0 15px;
}

.custom-header h2{
font-size:48px;
color:#801420;
margin-bottom:25px;
font-weight:700;
}

/* MAIN TEXT FIX */
.intro-text{
font-size:18px;
color:#000;
line-height:1.9;      /* improves readability */
margin-bottom:22px;   /* spacing between paragraphs */
text-align:justify;   /* clean alignment */
}

/* MOBILE */
@media(max-width:768px){
.intro-text{
text-align:left;
font-size:14.5px;
}
}











.course-herso{
background: url(bgg.png);
color:white;
padding:60px 20px;
text-align:center;
}

.course-herso h1{
font-size:40px;
margin-bottom:10px;
}


.section-titlse{font-size: 40px;color:#801420;margin-bottom:20px;border-left:6px solid #801420;padding-left:12px;}





    .headser{
background:#801420;
color:white;
padding:12px 15px;
font-size:20px;
font-weight:bold;
}

    .info-box{background:#fff;padding:25px;border-radius:12px;box-shadow:0 10px 25px rgba(0,0,0,0.05);line-height:1.7;}

.info-box h3{margin-top:25px;color:#801420;font-size: 26px;border-bottom:2px solid #eee;padding-bottom:5px;}

.info-box ul{
padding-left:20px;
margin-top:10px;
}

.info-box li{margin-bottom:6px;}

.info-box a{
color:#801420;
text-decoration:none;
font-weight:500;
}

.info-box a:hover{
text-decoration:underline;
}





.campus-life {
  padding: 30px 5%;
  /*background: #f2f2f2;*/
  font-family: 'Poppins', sans-serif;
}

/* Main Layout */
.campus-wrapper {
  display: flex;
  align-items: center;
  gap: 30px; /* reduce from 40+ */
  background: #fff;
  padding: 20px; /* keep balanced */
}

/* Left Image */
.campus-image {
  flex: 1.5;
}

.campus-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Right Content */
.campus-content {
  flex: 1;
  padding: 10px 0; /* reduce space */
}

/* Remove extra spacing */
.campus-content h4 {
  color: #a11c2f;
  font-size: 16px;
  margin: 0 0 5px;   /* small gap */
  font-weight: 500;
}

.campus-content h2 {
  color: #a11c2f;
  font-size: 32px;
  margin: 0 0 10px;  /* reduced */
  font-weight: 600;
  line-height: 1.2;
}

.campus-content p {
  color: #777;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 15px;  /* reduced */
  max-width: 500px;
}

/* Button spacing fix */
.campus-content button {
  padding: 10px 20px;
  margin-top: 5px;   /* reduce gap */
  border: 1px solid #333;
  background: transparent;
  cursor: pointer;
}

.campus-content button:hover {
  background: #a11c2f;
  color: #fff;
  border-color: #a11c2f;
}

/* Tabs Bottom */
.campus-tabs {
  display: flex;
  margin-top: 20px;
  gap: 20px;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 18px;
  background: #666;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

/* Active Tab */
.tab.active {
  background: #b3202d;
}

/* Hover */
.tab:hover {
  background: #a11c2f;
}

/* Responsive */
@media(max-width: 768px) {
  .campus-wrapper {
    flex-direction: column;
  }

  .campus-content {
    text-align: center;
  }

  .campus-tabs {
    flex-direction: column;
    gap: 10px;
  }
}

/* COMMON */
.side-buttons a,
.mobile-buttons a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

/* DESKTOP SIDE BUTTONS */
.side-buttons {
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.side-buttons a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 8px 8px;
  margin-bottom: 5px;
  text-align: center;
  font-size: 14px;
  transition: 0.3s;
}

.side-buttons a:hover {
  opacity: 0.8;
}

/* COLORS */
.apply { background: #c1272d; }
.enquire { background: #a65a1e; }
.chat { background: #0b4da2; }

/* MOBILE BOTTOM BAR */
.mobile-buttons {
  display: none;
}

/* MOBILE VIEW */
@media(max-width: 768px) {

  .side-buttons {
    display: none;
  }

  .mobile-buttons {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  .mobile-buttons a {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    font-size: 13px;
  }
}



.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: Arial;
}

/* Heading LEFT aligned */
.faq-section h2 {
  text-align: left;
  margin-bottom: 40px;
  color: #801420;
  font-size: 32px;
}

/* FAQ Box */
.faq-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: left;
}

/* Questions */
.faq-item h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
  text-align: left;
}

/* Answers */
.faq-item p,
.faq-item li {
  color: #555;
  font-size: 15px;
  text-align: left;
  line-height: 1.6;
}

/* Table LEFT aligned */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  text-align: left;
}

table th, table td {
  border: 1px solid #fff;
  padding: 10px;
  text-align: left; /* important */
}

/* Table header */
table th {
  background: #801420;
  color: #fff;
}

/* SECTION */
.info-section {
    padding: 40px 20px;

    /* ðŸ”¥ CLEAN SPLIT BACKGROUND */
    background: linear-gradient(
        to right,
        #f6f6f6 50%,
        #d3d3d3 50%
    );
}

/* CONTAINER */
.container {
    max-width: 1200px;
}

/* GRID */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT SIDE */
.info-left h2 {
    color: #c42026;
    font-size: 24px;
    margin-bottom: 15px;
}

.info-left p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 18px;
}

/* BUTTON */
.btn-red {
    display: inline-block;
    background: #c42026;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-red:hover {
    background: #a81b20;
}

/* RIGHT SIDE */
.info-right {
    padding: 10px 0;
}

.info-right h2 {
    color: #c42026;
    margin-bottom: 10px;
}

.info-right p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
}

/* PROGRAM LIST */
.program-list {
    width: 100%;
}

/* PROGRAM BOX */
.program {
    width: 100%;
    background: #666;
    color: #fff;
    padding: 14px;
    margin-bottom: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.program a{
    color: #fff;
}

/* HOVER */
.program:hover {
    background: #c42026;
}

/* LAST ROW */
.program-row {
    display: flex;
    gap: 12px;
}

.program.half {
    width: 50%;
}

/* ACTIVE */
.program.active {
    background: #c42026;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .info-section {
        background: #f6f6f6; /* remove split */
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .program-row {
        flex-direction: column;
    }

    .program.half {
        width: 100%;
    }
}
