 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 */
 .footer-top {
   background-color: #1a75bb;
   color: white;
   padding: 30px 20px;
 }

 .footer-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   max-width: 1100px;
   margin: auto;
 }

 .footer-section {
   flex: 1 1 250px;
   margin: 10px;
 }

 .footer-section h3 {
   font-size: 1.2em;
   margin-bottom: 10px;
 }

 .footer-section ul {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .footer-section ul li {
   margin-bottom: 8px;
    padding: 8px 1px;
    border-bottom: 1px solid #b5c3cd;

 }

 .footer-section ul li a {
   color: white;
   text-decoration: none;
 }

 .footer-section ul li a:hover {
   text-decoration: underline;
 }

 .footer-bottom {
   background-color: #222;
   color: white;
   text-align: center;
   padding: 15px 10px;
   font-size: 0.85em;
 }