
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
       
            color: #000;
            line-height: 1.6;
        }
        /* ===== BANNER ===== */
.banner{
    background:linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    url("school-banner.jpg") center/cover no-repeat;
    text-align:center;
    padding:100px 20px;
}

.banner h1{
    font-size:28px;
}

/* ===== MESSAGE SECTION ===== */
.message-box{
    background:#ffffff;
    padding:50px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.message-box p{
    margin-bottom:20px;
}

.highlight{
    color:#c9a227;
    font-weight:bold;
}

        /* ================= HEADER ================= */
        header {
            background: #4b2e2e;
            /* Dark Brown */
            color: white;
            padding: 15px 40px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .yss {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .yss img {
            width: 60px;
        }

        /* ================= NAVIGATION ================= */
        nav {
            text-align: right;
        }

        .main-menu {
            list-style: none;
            display: flex;
            gap: 8px;
        }

        .main-menu li {
            position: relative;
        }

        .main-menu a {
            color: white;
            text-decoration: none;
            padding: 6px 10px;
            display: block;
            font-weight: bold;
        }

        .main-menu a:hover {
            background: black;
            border-radius: 6px;
        }

        /* Dropdown */
        .submenu {
            display: none;
            position: absolute;
            background: #333;
            /* Dark Grey */
            top: 100%;
            right: 0;
            list-style: none;
            min-width: 220px;
            text-align: left;
        }

        .submenu li a {
            padding: 10px;
            color: white;
        }

        .submenu li a:hover {
            background: #555;
        }

        .dropdown:hover .submenu {
            display: block;
        }

        /* ================= BANNER ================= */
        .banner {
            background: #555;
            /* Grey */
            color: white;
            height: 65vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .banner h2 {
            font-size: 40px;
        }

        .banner p {
            margin-top: 5px;
            font-size: 18px;
        }

        /* ================= SECTIONS ================= */
        section {
            padding: 60px 40px;
        }

        section h2 {
            margin-bottom: 20px;
            color: #4b2e2e;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .card {
            background: #494747;
            /* Light Grey */
            padding: 20px;
            border-radius: 8px;
            transition: 0.3s;
            border: 1px solid #ccc;
        }

        .card:hover {
            background: #e0e0e0;
            transform: translateY(-5px);
        }

      
        /* ================= RESPONSIVE ================= */
        @media(max-width:768px) {

            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .main-menu {
                flex-direction: column;
                margin-top: 10px;
            }

            .submenu {
                position: static;
            }
        }
    
    /* ====== BANNER STYLING ====== */
.banner {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

.slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.9s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Black transparent */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.overlay h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ffffff;
}

.overlay p {
    font-size: 20px;
    color: #dddddd;
}

/* Responsive */
@media(max-width:768px){
    .overlay h2 {
        font-size: 28px;
    }

    .overlay p {
        font-size: 16px;
    }
}

/* ===== GENERAL STYLING ===== */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white; /* white background */
    color: #ffffff;
}

header {
    background-color: #3b2f2f; /* dark brown */
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 26px;
}

header p {
    margin: 5px 0 0;
    color: #d3d3d3;
}

/* ===== NAVIGATION ===== */
nav {

    display: flex;
    justify-content: flex-end;
    padding: 0 40px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    position: relative;
}

nav ul li a {
    display: block;
    padding: 15px 18px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav ul li a:hover {
    background-color: #3b2f2f;
}

/* ===== DROPDOWN ===== */
nav ul li ul {
    display: none;
    position: absolute;
    background-color: #2b1f1f;
    min-width: 180px;
    top: 50px;
    right: 0;
}

nav ul li ul li {
    display: block;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li a {
    padding: 12px;
}

/* ===== CONTENT ===== */
.container {
    width: 80%;
    margin: 40px auto;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.container h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 25px;
}

.container p {
    line-height: 1.8;
    font-size: 17px;
    color: #dddddd;
}

.container ul {
    margin-left: 20px;
    line-height: 1.8;
}

.signature {
    margin-top: 40px;
}


/* ================= FOOTER ================= */

.footer {
    background: #2b1a1a;
    color: #ffffff;
    padding: 60px 40px 20px 40px;
}

/* Layout */
.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    text-align: left;
}

/* Columns */
.footer-column h3 {
    margin-bottom: 18px;
    font-size: 18px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 8px;
}

.footer-column p {
    font-size: 14px;
    color: #dddddd;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Links */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #cccccc;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: #ffffff;
    color: #2b1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-6px);
}

/* FAQ Section */
.footer-faq {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 40px;
    text-align: left;
}

.footer-faq h3 {
    margin-bottom: 25px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: #3b2f2f;
    color: #ffffff;
    border: none;
    padding: 14px;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 12px;
    background: #1f1111;
    border-radius: 6px;
    margin-top: 5px;
    color: #dddddd;
}

.faq-icon {
    font-size: 18px;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: left;
    font-size: 14px;
    color: #cccccc;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px 20px;
    }
}


/* HERO */
.hero{
    background:#5a3e36;
    color:white;
    text-align:center;
    padding:60px 20px;
}

/* SECTION */
.section{
    padding:50px 40px;
    opacity:0;
    transform:translateY(40px);
    transition:all 0.6s ease;
}

.section.show{
    opacity:1;
    transform:translateY(0);
}

.section h2{
    color:#3b2f2f;
    border-left:6px solid #5a3e36;
    padding-left:10px;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}

.card{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* TABLE */
table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
    background:white;
}

th, td{
    border:1px solid #ccc;
    padding:10px;
    text-align:center;
}

th{
    background:#3b2f2f;
    color:white;
}

/* BUTTON */
button{
    padding:10px 15px;
    background:#3b2f2f;
    color:white;
    border:none;
    cursor:pointer;
    margin-top:10px;
}

button:hover{
    background:black;
}
