/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #ede9e9;
}

.logo {
  height: 100px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  text-decoration: none;
  color: #032d6c;
  padding: 8px 12px;
  transition: 0.3s;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
  display: none;
  font-size: 25px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
/* Slider container */
.Img_sliders {
  position: relative;
  width: 100%;
  height: 80vh; /* Full screen height */
  overflow: hidden;
  background-image: url(slider1.jpg);
  background-size: cover; /* Makes sure the image covers the entire div */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat;
  animation: slide 20s ease-in-out 5s infinite;
}
.online_admission_and_enquiry {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.online_admission_and_enquiry a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-left: 10px;
  border-radius: 40px;
  height: 60px;
  width: 150px;
  background-color: #032d6c;
  color: white;
}
/* Keyframes for automatic sliding 
@keyframes slide {
  0% {
    background-image: url(slider1.jpg);
  }
  25% {
    background-image: url(slider2.jpg);
  }
  50% {
    background-image: url(slider3.JPG);
  }
  75% {
    background-image: url(slider4.JPG);
  }
  100% {
    background-image: url(slider5.jpg);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0px;
    width: 100%;
    background-color: white;
    height: 90vh;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    margin: 10px 0;
    margin-top: 10px;
    font-style: normal;
  }

  .menu-toggle {
    color: #032d6c;
    display: block;
  }
}
/* about us */

/* end */

/* sunil sir and mam css */
.container_principal_director {
  margin-top: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container h2 {
  color: #032d6c;
}
.messages {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.message-box {
  background-color: #032d6c;
  color: white;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  text-align: center;
}
.message-box img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}
.message-box h3 {
  font-size: 20px;
  font-weight: bold;
}
.message-box p {
  font-size: 14px;
  margin: 10px 0;
}
.message-box a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.message-box a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .messages {
    flex-direction: row;
    justify-content: space-between;
  }
  .container_principal_director h2 {
    color: #032d6c;
  }
  .message-box {
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
  }
  .message-box img {
    margin-right: 20px;
  }
}
/* end   */

/* video */
.video {
  margin-top: 100px;
  color: #032d6c;
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.video_school {
  margin-top: 30px;
  width: 80%;
  height: 100%;
}

/* tables css imp */
.container {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
  text-align: center;
  color: #333;
}
.table-responsive {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th,
td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}
th {
  background-color: #032d6c;
  color: white;
}
@media (max-width: 600px) {
  th,
  td {
    padding: 8px;
    font-size: 14px;
  }
}
