 body {
   margin: 0;
   font-family: Arial, sans-serif;
   background-color: #f4f4f4;
   color: #000;
 }


 /* Header */
 .header {
   background-color: #901f1f;
   color: #fff;
   padding: 25px 10px;
   display: flex;
   justify-content: center;
 }

 .header-container {
   display: flex;
   align-items: center;
   gap: 15px;
   flex-wrap: wrap;
   text-align: center;
 }

 .header-logo img {
   height: 80px;
   width: auto;
     border-radius: 38px; /* Slightly rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  image-resolution: from-image; /* Ensure high-res images look sharp */
  transition: transform 0.3s ease; /* Smooth hover effect */
 }

 .header-text h1 {
   margin: 0;
   font-size: 2.5em;
   color: #fff;
 }

 .header-text p {
   margin: 5px 0 0;
   font-size: 1.1em;
 }



 /* Navbar */
 .navbar {
   background-color: #000000;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 10px;
   box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
   position: relative;
   z-index: 1000;
 }

 .menu-wrapper {
   position: relative;
 }

 .nav-links {
   display: flex;
 }

 .navbar a {
   padding: 14px 15px;
   color: white;
   text-decoration: none;
 }

 .navbar a:hover {
   background-color: #1fbdec;
 }

 /* Hamburger */
 .hamburger {
   display: none;
   background: none;
   border: 0;
   font-size: 26px;
   color: white;
   cursor: pointer;
 }

 /* Search styling */
 .search-container {
   position: relative;
 }

 #searchInput {
   padding: 6px 10px;
   border: none;
   border-radius: 4px;
   outline: none;
 }

 #suggestions {
   position: absolute;
   top: 35px;
   left: 0;
   background: white;
   border: 1px solid #ccc;
   width: 200px;
   max-height: 200px;
   overflow-y: auto;
   display: none;
   z-index: 10;
 }

 #suggestions div {
   padding: 8px;
   cursor: pointer;
 }

 #suggestions div:hover {
   background: #f1f1f1;
 }

 /* Mobile Nav */
 @media (max-width: 768px) {
   .hamburger {
     display: block;
   }

   .nav-links {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background: #333;
     width: 130px;
     flex-direction: column;
     padding: 8px 0;
     border-radius: 8px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
   }

   .nav-links a {
     display: block;
     padding: 10px 14px;
     text-align: left;
   }

   /* show on hover/focus */
   .menu-wrapper:hover .nav-links,
   .menu-wrapper:focus-within .nav-links {
     display: flex;
   }
 }


 /* navbar code end */


 .container {
   width: 90%;
   max-width: 900px;
   margin: 20px auto;
   padding: 20px;
   background-color: #fff;
 }

 h1 {
   color: #2a0073;
   font-size: 36px;
   margin-bottom: 10px;
 }

 p {
   font-size: 22px;
   line-height: 1.6;
 }

 a {
   color: #3300cc;
   text-decoration: none;
 }

 a:hover {
   text-decoration: underline;
 }

 .hindi-note {
   margin-top: 10px;
   margin-bottom: 20px;
   padding-left: 20px;
   list-style: disc;
   font-size: 15px;
   color: #333;
 }

 .admit-header {
   background-color: #a10000;
   color: white;
   font-size: 28px;
   font-weight: bold;
   padding: 10px;
   margin: 20px 0;
   text-align: center;
 }

 .admit-list {
   list-style: disc;
   padding-left: 20px;
 }

 .admit-list li {
   margin-bottom: 10px;
   font-size: 22px;
 }

 .notice {
   background-color: #fff9c4;
   border-left: 5px solid #fbc02d;
   border-right: 5px solid #fbc02d;
   border-top: 5px solid #fbc02d;
   border-bottom: 5px solid #fbc02d;
   padding: 15px 20px;
   margin: 20px 0;
   font-size: 16px;
   border-radius: 4px;
 }

 .notice h2 {
   margin-top: 0;
   font-size: 20px;
   color: #e65100;
 }


 /* Footer styles: top and bottom sections */

/* ===== FOOTER STYLES ===== */
.footer-top {
    background-color: #222;
    color: white;
    padding: 40px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-section h3 {
    color: #1fbdec;
    margin-bottom: 20px;
    font-size: 1.2em;
    position: relative;
    padding-bottom: 10px;
    text-decoration: none;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #901f1f;
}

.footer-section p {
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: #1fbdec;
    text-decoration: none;
}

.footer-section ul li a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #1fbdec;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.85em;
    border-top: 1px solid #333;
}

.footer-bottom p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.footer-bottom a {
    color: #1fbdec;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 100%;
        margin: 0;
    }
    
    .footer-section h3 {
        font-size: 1.1em;
    }
}