
       
        /* General Styles */
        body {
            font-family: Arial, Helvetica, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f8f2;
            color: #0b0b0b;
        }
        

/* Navbar Styling */
.custom-navbar {
    background-color: #b9d5f3;
    padding: 10px 0;
    padding: 10px 0;
  
    
}

.navbar-nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.navbar-nav .nav-item {
    margin: 0 0px;
    margin-left: 3px;
    margin-right: 3px;
}

.navbar-nav .nav-link {
    color: #420f94 !important;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #f01dc9 !important;
}
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    background-color: #d5f9d5;
}
.dropdown-divider {
  border-top: 1px solid #030304
}

.navbar-toggler {
    border: none;
    outline: none;
}

/* Container to align both sections side by side */
.facilities-principal-container {
    display: flex;
    justify-content: space-between; /* Spaces items evenly */
    align-items: flex-start; /* Aligns items to the top */
    gap: 20px; /* Adds spacing between sections */
    padding: 20px;
}

/* Facilities Section */
.facilities {
    width: 90%;
    margin-left: 0px;
}

/* Principal Section */
.principal-section {
    margin-top: 50px;
    width: 60%;
    height: 35px;
}

/* Principal Box Styling */
.principal-box {
    background-color: #f8f9fa;
    border: 1px solid #82d763;
    border-radius: 10px;
    text-align: center;
    padding: 5px;  
    margin-top: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Principal Image Styling */
.principal-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid #e2e244;
    margin-bottom: 10px;
}




/* Dropdown Styling */
.navbar-nav .dropdown-menu {
    background-color: #fff;
    border: none;
    text-align: center;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    
        position: absolute;
        right:20px;
        left: 10;
    
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: #2c1ac9 !important;
    transition: 0.3s;
}



.navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}


.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #ebb619;
    color: #090558 !important;
    font-weight: bold;
}


        .school-logo {
        margin: 0; /* Remove default margin for full-width */
    }

    .school-logo img {
        width: 100%; /* Set image width to 100% */
        height: 200px; /* Maintain aspect ratio */
        display: block; /* Remove default inline behavior of the image */
    }
    h1 {
        text-align: center;
        margin: 20px 0;
        margin-top: 20px;
        color: #4caf50;
        font-size: 2.5rem;
        font-weight: 700;
    }
   
    .image-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .image-card {
        width: 200px;
        height: 200px;
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }
    .image-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    .image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .img-fluid {
        height: 250px; 
        width: 500px;/* Adjust height as needed */
        object-fit: cover; /* Ensures images maintain aspect ratio while covering the set height */
    }
    
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
        z-index: 1000;
        padding: 20px;
    }
    .modal img {
        width: 80%;
        max-width: 1000px;
        height: auto;
        object-fit: contain;
        border-radius: 12px;
    }
    .modal:target {
        display: flex;
    }
    .close-button {
        position: absolute;
        top: 30px;
        right: 50px;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .close-button:hover {
        background-color: rgba(0, 0, 0, 0.9);
    }
    footer {
        text-align: center;
        padding: 20px;
        background-color: #4caf50;
        color: white;
        font-size: 1rem;
        margin-top: 20px;
    }

    #admission-bar {
        position: fixed;
        bottom: 20px;
        left: 100%;  /* Start off-screen from the right */
        background-color: #ffeb3b;
        color: #333;
        padding: 10px 20px;
        border-radius: 25px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        z-index: 1000;
        white-space: nowrap;
        width: max-content;  
        animation: moveLeft 10s linear infinite;  
    }
    
    @keyframes moveLeft {
        from {
            left: 100%; 
        }
        to {
            left: -100%;  
        }
    }
    
    #admission-bar span {
        font-weight: bold;
        margin-right: 10px;
    }
    
    #close-btn {
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
        color: #333;
    }
    
    #admission-bar:hover {
        animation-play-state: paused;
    }
     
    .highlight-circle {
        width: 180px;
        height: 180px;
        background-color: #C82B41; /* Red color */
        color: white;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        font-weight: bold;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    }
    
    .highlight-circle h3 {
        font-size: 28px;
        margin-bottom: 5px;
       
    }
    
    .highlight-circle p {
        font-size: 16px;
        margin: 0;
    }
    
    @media (max-width: 576px) {
        .modal-content {
            width: 100%;
        }
    }

    /*form css */
  
    .admission-form {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 20px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
    }
    .form-group {
        margin-bottom: 10px;
    }
    .form-group label {
        display: block;
    }
    .form-group input {
        width: 100%;
        padding: 8px;
        margin-top: 5px;
    }
    .form-actions {
        text-align: right;
    }
    
    