* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* ================= HEADER ================= */
header {
    background: #013a55;
    color: white;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: left;
}

.logo-container img {
    width: 90px;
    margin-right: 20px;
}

.school-name h1 {
    font-size: 30px;
}

.school-name p {
    color: #ffcc00;
}

/* ================= NAVIGATION ================= */
nav {
    background: #5ca5e0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 18px 20px;
    transition: 0.1s;
}

nav ul li a:hover {
    background: #ffcc00;
    color: black;
}

/* ================= HERO ================= */
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.slides{
    position:absolute;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:contain;
    opacity:0;
    transition:opacity 1s ease-in-out;

    background-image: url("su3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide.active{
    opacity:1;
}

.hero-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    background:transparent;
    color:rgb(173, 170, 170);
    padding:30px;
    border-radius:10px;
    text-align:center;
    z-index:10;
}

.hero-text h2{
    font-size:38px;
    margin-bottom:15px;
}
/* LEADERSHIP SECTION */
.leadership{
    padding: 60px 40px;
    background: #f9f9f9;
}

.leadership h2{
    text-align: center;
    color: orange;
    margin-bottom: 50px;
    font-size: 2rem;
}

.dos-section{
    display:flex;
    align-items:flex-start;
    gap:40px;
    margin-bottom:60px;
    padding-left:40px;
    padding-right:10px;
}

.dos-text{
    flex: 2;
}

.dos-text h3{
    color: #003366;
    margin-bottom: 10px;
}

.dos-text h4{
    color: orange;
    margin-bottom: 15px;
}

.dos-text p{
    line-height: 1.8;
    margin-bottom: 15px;
}

.dos-image{
    flex: 1;
    text-align: center;
}

.dos-image img{
    width: 100%;
    max-width: 450px;   /* increased from 300px */
    height: 500px;      /* increased from 350px */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.dos-image h3{
    margin-top: 10px;
    color: #003366;
}

/* Responsive */
@media(max-width:768px){
    .dos-section{
        flex-direction: column;
    }

    .dos-image,
    .dos-text{
        width: 100%;
    }

    .dos-image{
        text-align: center;
    }
}

/* ================= ABOUT ================= */
.about {
    padding: 50px 10%;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    background: rgba(221, 222, 223, 0.616);
}

.about-image,
.about-text {
    flex: 1;
}
.about-image img {
    width: 100%;
    height: 750px;   /* Increase height */
    object-fit: cover;
    border-radius: 15px;
}
.about-text h2 {
    color: orange;
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 35px;
}
.about-text p {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* JUSTIFY TEXT */
.about-text p,
.dos-text p,
.news p{
    text-align: justify;
    line-height: 1.8;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ================= VISION MISSION VALUES ================= */

.vmv-container{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:40px;
    background-color: #07010f;
}

.vmv-card{
    flex:1;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(135, 178, 235, 0.1);
    text-align:center;
}

.vmv-card h3{
    color:orange;
    margin-bottom:15px;
}

.vmv-card ul{
    list-style:none;
    padding:0;
}

.vmv-card li{
    margin:8px 0;
}

/* Mobile Responsive */
@media(max-width:768px){
    .vmv-container{
        flex-direction:column;
    }
}
/* ================= ADMISSIONS ================= */
.admissions {
    background: var(--color-surface);
    background-color: #dee8ee;
     padding: 50px 10%;
}
.admissions h2 {
    color: orange;
}

.admissions-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
}

.admissions-intro p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.admissions-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.admission-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.admission-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}


.admission-card h3 {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    color: red;
}

.admission-card ul,
.admission-card ol {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    line-height: 1.75;
    padding-left: 18px;
}

.admission-card li {
    margin-bottom: 8px;
}

.admission-steps {
    list-style: decimal;
}

.admissions-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.admissions-table-wrap,
.admissions-fees {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
    
}


.admissions-table-wrap h3,
.admissions-fees h3 {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin-bottom: 16px;
    color: orange;
}

.admissions-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
    padding: 50px 10%;
}

.admissions-table th,
.admissions-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.admissions-table th {
    background: var(--color-primary);
    color: #395307;
    font-weight: 600;
}

.admissions-table tbody tr:hover {
    background: rgba(12, 61, 90, 0.04);
}

.admissions-note,
.fees-disclaimer {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: 12px;
    font-style: italic;
}

.fees-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.fees-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    gap: 16px;
}

.fees-list strong {
    color: var(--color-primary);
    white-space: nowrap;
}

.admissions-fees a {
    color: var(--color-teal);
    font-weight: 600;
}

.admissions-fees a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .admissions-grid {
        grid-template-columns: 1fr;
    }

    .admissions-cards {
        grid-template-columns: 1fr;
    }

    .admissions-details {
        grid-template-columns: 1fr;
    }
}

/* ACADEMICS */
.academics{
    padding: 50px 10%;
    background:#eef5ff;
}

.academics h2{
    text-align: center;
    color: #ff9900;
    margin-bottom: 20px;
}

.academic-intro{
    max-width: 900px;
    margin: auto;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.academic-cards{
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.academic-card{
    background: white;
    padding: 25px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.academic-card:hover{
    transform: translateY(-8px);
}

.academic-card h3{
    color: #003366;
    margin-bottom: 15px;
}

.academic-card p{
    color: #666;
    line-height: 1.7;
}

.section-title{
    text-align: center;
    color: #003366;
    margin-bottom: 30px;
}
/* TOP STUDENTS SECTION */
.students-container{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin-top:30px;
}


/* STUDENT CARD */
.student-box{
    width:260px;
    background:rgb(51, 49, 49);
    border-radius:15px;
    padding:25px 15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}


.student-box:hover{
    transform:translateY(-8px);
}


/* ROUND STUDENT IMAGE */
.student-box img{
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit:cover;
    margin:auto;
    display:block;
    border:5px solid orange;
}


/* STUDENT NAME */
.student-box h4{
    margin:20px 0 10px;
    color:#ff9900;

    font-size:20px;
}


/* DESCRIPTION */
.student-box p{
    padding:0 10px 10px;
    color:#f3f0f0;
    line-height:1.6;
}
/* MOBILE RESPONSIVENESS */
@media(max-width:768px){
    .students-container{
        flex-direction:column;
        align-items:center;
    }

    .student-box{
        width:90%;
        max-width:400px;
    }
}
/* YEAR HEADINGS */
.year-title{
    text-align:center;
    color:#003366;
    margin:40px 0 20px;
    font-size:32px;
    font-weight:bold;
}

/* O-LEVEL & A-LEVEL HEADINGS */
.level-title{
    text-align:center;
    color:#ff9900;
    margin:20px 0;
    font-size:24px;
    font-weight:600;
}
/* MOBILE */
@media(max-width:768px){
    .dos-section{
        flex-direction: column;
        text-align: center;
    }

    .dos-text{
        text-align: center;
    }
}

/* ================= FACILITIES ================= */
.facilities{
     padding: 50px 10%;
    background-color:rgb(182, 240, 208);
}

.facilities h2{
    text-align:center;
    margin-bottom:40px;
    color:orange;
    font-size:36px;
}

.facility-container{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    width:100%;
}

.facility-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.facility-card img{
    width:100%;
    height:250px;
    object-fit:contain;
}

.facility-card h3{
    padding:15px;
    color:#003366;
    text-align:center;
}

.facility-card p{
    padding:0 15px 20px;
    color:#333;
    text-align:center;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:992px){
    .facility-container{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:768px){
    .facility-container{
        grid-template-columns:1fr;
    }
}
/* CLUBS SECTION */
.clubs-section{
   padding: 50px 10%;
    background:#f5f8ff;
}

.clubs-section h2{
    text-align:center;
    font-size:36px;
    color:#003366;
    margin-bottom:50px;
    position:relative;
}

.clubs-section h2::after{
    content:"";
    width:80px;
    height:4px;
    background:orange;
    display:block;
    margin:15px auto;
    border-radius:10px;
}


/* CLUB CONTAINER */
.clubs-container{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:nowrap;
}


/* CLUB CARD */
.club-card{
    width:30-px;
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    transition:0.4s;
    text-align:center;
}


.club-card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 30px rgba(0,0,0,0.2);
}


/* CLUB IMAGE */
.club-card img{
    width:100%;
    height:230px;
    object-fit:contain;
    padding:20px;
    background:#eef5ff;
}


/* CLUB TITLE */
.club-card h3{
    color:#003366;
    font-size:24px;
    margin:20px 10px 10px;
}


/* CLUB DESCRIPTION */
.club-card p{
    color:#555;
    padding:0 25px 30px;
    line-height:1.7;
    font-size:16px;
}


/* MOBILE DESIGN */
@media(max-width:768px){

    .clubs-section{
        padding:50px 5%;
    }

    .club-card{
        width:100%;
        max-width:400px;
    }

    .clubs-section h2{
        font-size:28px;
    }

}
/* NEWS */
.news{
   padding: 50px 10%;
   background:#f8f9fa;
}

.news h2{
    text-align: center;
    color: orange;
    margin-bottom: 40px;
}
.news-intro{
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #555;
    font-size: 17px;
}

.news-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card{
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.news-card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.news-card video{
    width:100%;
    height:250px;
    object-fit:contain;
    display:block;
}

.news-card h3{
    color: #003366;
    padding: 15px;
}

.news-card p{
    padding: 0 15px 20px;
    text-align: justify;
}

@media(max-width:768px){
    .news-container{
        grid-template-columns: 1fr;
    }
}
/* ================= HOME GALLERY ================= */

.gallery-home{
    padding:80px 10%;
    background:#f8fafc;
    text-align:center;
}

.gallery-home h2{
    color:orange;
    margin-bottom:15px;
}

.gallery-home p{
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
    color:#555;
}

.gallery-home-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-home-card{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.gallery-home-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.4s;
}

.gallery-home-card img:hover{
    transform:scale(1.08);
}

.gallery-btn{
    margin-top:35px;
}

.gallery-btn .btn{
    background:orange;
    color:white;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

.gallery-btn .btn:hover{
    background:#003366;
}

/* ================= CONTACT ================= */
.contact {
    background: #50a2f3;
    color: white;
    text-align: center;
     padding: 50px 10%;
}

.contact h2 {
    margin-bottom: 20px;
}

/* FOOTER */

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .about,
    .facility-container,
    .academic-box {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 24px;
    }
}
.footer{
    background:#0b1d3a;
    color:white;
    padding:50px 10% 20px;
}

/* 4 COLUMN LAYOUT */
.footer-container{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
}

/* EACH BOX */
.footer-box h3{
    margin-bottom:15px;
    color:#ffcc00;
}

.footer-box p,
.footer-box li{
    margin-bottom:10px;
    font-size:14px;
}

/* LIST STYLE */
.footer-box ul{
    list-style:none;
    padding:0;
}

/* LOGO */
.footer-logo{
    width:80px;
    margin-bottom:10px;
}

/* BOTTOM TEXT */
.footer-bottom{
    text-align:center;
    margin-top:30px;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:15px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .footer-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .footer-container{
        grid-template-columns: 1fr;
        text-align:center;
    }
}
/* ================= FULL SCREEN SECTIONS ================= */

html, body{
    width:100%;
    margin:0;
    padding:0;
}

section, header, footer, nav{
    width:100%;
    margin:0;
}

.leadership,
.about,
.academics,
.facilities,
.clubs-section,
.news,
.contact,
.footer{
     padding: 50px 10%;
    padding-left:0;
    padding-right:0;
}

.facility-container,
.news-container,
.clubs-container,
.footer-container,
.academic-cards,
.students-container,
.vmv-container{
    width:100%;
    max-width:none;
    margin:0;
    padding-left:20px;
    padding-right:20px;
}

.facility-container{
    max-width:none;
}

.club-card{
    width:300px;
}

.footer{
    padding-top:50px;
    padding-bottom:20px;
}

.about-image img{
    width:100%;
}
@media(max-width:768px){

header{
    position:relative;
}

.logo-container{
    flex-direction:column;
    text-align:center;
}

.school-name h1{
    font-size:20px;
}


nav ul{
    flex-direction:column;
}


nav ul li a{
    padding:12px;
}


.hero-text h2{
    font-size:25px;
}


.hero-text p{
    font-size:15px;
}


.about{
    flex-direction:column;
}


.dos-section{
    flex-direction:column;
    padding:20px;
}


.vmv-container{
    flex-direction:column;
}


.clubs-container{
    flex-direction:column;
}


.club-card{
    width:100%;
}


.news-container{
    grid-template-columns:1fr;
}

}
/* ================= PHONE RESPONSIVE FIX ================= */

@media(max-width:768px){

    /* BODY */
    body{
        width:100%;
        overflow-x:hidden;
    }


    /* HEADER */
    header{
        width:100%;
        position:relative;
        padding:15px 10px;
    }


    .logo-container{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }


    .logo-container img{
        width:80px;
        margin-bottom:10px;
    }


    .school-name h1{
        font-size:20px;
        line-height:1.3;
    }


    .school-name p{
        font-size:14px;
    }


    /* NAVIGATION */
    nav ul{
        display:flex;
        flex-direction:column;
        width:100%;
    }


    nav ul li{
        width:100%;
        text-align:center;
    }


    nav ul li a{
        padding:12px;
    }



    /* HERO IMAGE */
    .hero{
        height:70vh;
    }


    .hero-text{
        width:90%;
        padding:15px;
    }


    .hero-text h2{
        font-size:24px;
    }


    .hero-text p{
        font-size:15px;
    }



    /* ABOUT */
    .about{
        display:flex;
        flex-direction:column;
        padding:30px 15px;
    }


    .about-image img{
        height:auto;
    }


    .about-text h2{
        font-size:26px;
    }



    /* LEADERSHIP */
    .dos-section{
        display:flex;
        flex-direction:column;
        padding:20px;
        text-align:center;
    }


    .dos-text p{
        text-align:justify;
    }


    .dos-image img{
        max-width:250px;
    }



    /* VISION MISSION VALUES */
    .vmv-container{
        display:flex;
        flex-direction:column;
        padding:20px;
    }


    .vmv-card{
        width:100%;
    }



    /* ACADEMICS */
    .academic-cards{
        flex-direction:column;
        align-items:center;
    }


    .academic-card{
        width:90%;
    }



    /* STUDENTS */
    .students-container{
        flex-direction:column;
        align-items:center;
    }


    .student-box{
        width:90%;
    }



    /* FACILITIES */
    .facility-container{
        display:flex;
        flex-direction:column;
    }


    .facility-card{
        width:100%;
    }


    .facility-card img{
        height:auto;
    }



    /* CLUBS */
    .clubs-container{
        display:flex;
        flex-direction:column;
        align-items:center;
    }


    .club-card{
        width:100%;
        max-width:350px;
    }



    /* NEWS */
    .news-container{
        display:flex;
        flex-direction:column;
    }


    .news-card{
        width:100%;
    }


    .news-card img{
        height:auto;
    }



    /* FOOTER */
    .footer-container{
        display:flex;
        flex-direction:column;
        text-align:center;
    }

}
/* ================= MOBILE MENU ================= */

.menu-icon{
    display:none;
    font-size:35px;
    cursor:pointer;
    position:absolute;
    right:20px;
    top:20px;
    color:white;
}


/* PHONE VIEW */
@media(max-width:768px){

    .menu-icon{
        display:block;
    }


    nav{
        display:none;
        width:100%;
    }


    nav.active{
        display:block;
    }


    nav ul{
        flex-direction:column;
        background:#5ca5e0;
    }


    nav ul li{
        text-align:center;
    }


    nav ul li a{
        padding:15px;
        color:white;
    }

}
/* ================= GALLERY HEADER STYLE ================= */

.site-header{
    background:#013a55;
    color:white;
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
}


/* HEADER BRAND */
.header-brand{
    padding:15px 20px;
}


.header-brand-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}


.logo-container{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:white;
}


.logo-img{
    width:90px;
    margin-right:20px;
}


.school-name h1{
    font-size:30px;
    margin:0;
}


.school-name p{
    color:#ffcc00;
}


/* NAVIGATION */

.header-nav{
    background:#5ca5e0;
}


.header-nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    margin:0;
    padding:0;
}


.header-nav ul li a{
    display:block;
    padding:18px 20px;
    color:white;
    text-decoration:none;
}


.header-nav ul li a:hover,
.header-nav ul li a.active{
    background:#ffcc00;
    color:black;
}



/* ================= GALLERY FOOTER STYLE ================= */


.footer{
    background:#0b1d3a;
    color:white;
    padding:50px 10% 20px;
}


.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}


.footer-box h3{
    color:#ffcc00;
    margin-bottom:15px;
}


.footer-box p,
.footer-box li{
    font-size:14px;
    margin-bottom:10px;
}


.footer-box ul{
    list-style:none;
    padding:0;
}


.footer-box a{
    color:white;
    text-decoration:none;
}


.footer-box a:hover{
    color:#ffcc00;
}


.footer-logo{
    width:80px;
    margin-bottom:10px;
}


.footer-bottom{
    text-align:center;
    margin-top:30px;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:15px;
}


/* ================= MOBILE HEADER FOOTER ================= */

@media(max-width:768px){

    .header-brand-inner{
        flex-direction:column;
        text-align:center;
    }


    .logo-container{
        flex-direction:column;
    }


    .logo-img{
        margin-bottom:10px;
    }


    .school-name h1{
        font-size:20px;
    }


    .header-nav ul{
        flex-direction:column;
    }


    .header-nav ul li{
        text-align:center;
    }


    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}