
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300..800&family=Roboto:wght@300..700&display=swap');

* {
  font-family: 'Inter', sans-serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FFB3BA, #FFDFBA, #FFFFBA, #BAFFC9, #BAE1FF);
  background-size: 400% 400%;
  animation: rainbow-background 30s infinite alternate;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Optional: Headings in Roboto for contrast */
h1, h2, h3 {
  font-family: 'Roboto', sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; /* Centers content */
  padding: 0;
  text-align: center;
}

/* Rainbow Background Animation */
@keyframes rainbow-background {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Fix Navigation Bar for Mobile */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar a {
    font-size: 14px;
    padding: 10px;
    display: block;
    text-align: center;
  }
  .header-title {
    font-size: 8vw; /* Makes text more readable */
  }
}

  .welcome-text {
    font-size: 18px;
    position: relative;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

header {
  background: url("image/main logo.jpg") no-repeat center center/cover;
  background-size: contain; /* Ensures full image visibility */
  height: 70vh; /* Adjust this as needed */
  padding: 0; /* Remove padding if you want to control height strictly */
  margin: 0;
  text-align: center;
  color: rgb(8, 6, 0);
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(17, 198, 101, 0.15);
}
.header-title {
  font-size: 5vw;
  margin-bottom: 10px;
  font-weight: bold;
  color: #ff6600; /* Bright contrasting color like orange */
  text-shadow: 2px 2px 4px rgba(0, 4, 12, 0.955);
  position: absolute;
  top: 15%%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  z-index: 2;
}
/* Style for Navbar */
.navbar {
  display: flex;
  justify-content: center;
  background-color: #ff6600;
  padding: 15px;
}

/* Style for Links */
.navbar a, .dropbtn {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 100%;
}

/* Dropdown Links */
.dropdown-content a {
  color: black;
  padding: 10px;
  display: block;
  text-align: left;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hover Effect */
.navbar a:hover, .dropbtn:hover {
  background-color: #ff4500;
  color: white;
}


.hero-section {
  text-align: center;
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.8);
  color: #4a235a;
  box-shadow: 0 4px 12px rgba(12, 0, 0, 0.15);
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.about-section,
.contact-section {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: bounce 2s infinite ease-in-out;
}


.teachers-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.teacher-card {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.4s ease;
}
/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  background-color: #333;
  overflow: hidden;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

.mission-header {
  background-color: #1a8827;
  color: white;
  text-align: center;
  padding: 60px 20px; /* Increased padding to avoid overlap */
  position: relative;
}

.mission-header .logo {
  width: 100px; /* Adjust the size of the logo */
  height: auto;
  display: block;
  margin: 0 auto 20px; /* Center the logo and add some margin */
}

.mission-header h1 {
  font-size: 36px;
  margin: 0;
}

.mission-header p {
  font-size: 20px;
  margin: 10px 0 0;
}

.mission-section {
  padding: 20px;
  background: linear-gradient(90deg, red, orange, yellow, rgb(27, 202, 27), rgb(96, 96, 233), indigo, violet);
  background-size: 400% 400%;
  animation: rainbow 5s infinite linear;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

@keyframes rainbow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
}

.feature-item {
  text-align: center;
  background: linear-gradient(90deg, #FF5733, #FFA500, #FFD700, #1ECA1E, #6090E9, #20d1cb, #EE82EE);

  background-size: 400% 400%;
  animation: rainbow 5s infinite linear;
  padding: 20px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.4s ease;
  position: relative;
}

.feature-item:hover {
  transform: rotate(10deg) scale(1.1);
}

.footer {
  text-align: center;
  padding: 10px;
  background-color: #333;
  color: white;
}
.teacher-card:hover {
  background-color: #ffe4e1;
  transform: translateY(-10px);
}

.teacher-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #ffb6c1;
  transition: transform 0.5s ease;
}

.teacher-photo:hover {
  transform: rotate(360deg);
}.programs-section {
  padding: 30px; /* Increased padding for better spacing */
  background-color: rgba(255, 255, 255, 0.9); /* Slightly more opaque background */
  margin: 20px auto; /* Center the section */
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 1000px; /* Limit the maximum width */
}

.programs-section {
  padding: 40px; /* Increased padding for better spacing */
  background-color: rgba(255, 255, 255, 0.9); /* Slightly more opaque background */
  margin: 30px auto; /* Center the section and add more margin */
  border-radius: 20px; /* Slightly more rounded corners */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow for more depth */
  max-width: 1000px; /* Limit the maximum width */
}

.programs-section h3 {
  text-align: center;
  font-size: 28px; /* Increased font size for better readability */
  margin-bottom: 30px; /* Added margin for spacing */
  color: #333; /* Darker color for better contrast */
}

.programs-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px; /* Increased gap for better spacing */
}

.program-item {
  background-color: rgba(49, 222, 141, 0.9); /* Slightly more opaque background */
  padding: 25px; /* Increased padding for better spacing */
  border-radius: 20px; /* Slightly more rounded corners */
  width: 240px; /* Slightly wider for better content fit */
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 4, 2, 0.3); /* Enhanced shadow for more depth */
  transition: box-shadow 0.5s ease-in-out, transform 0.3s ease;
  animation: glowing-shadow 5s infinite alternate;
  margin: 10px; /* Added margin for spacing */
}

.program-item:hover {
  transform: scale(1.1); /* Increased scale effect for more interactivity */
}

/* Shadow Animation */
@keyframes glowing-shadow {
  0% {
    box-shadow: 0 4px 8px rgba(1, 17, 9, 0.3);
  }
  50% {
    box-shadow: 0 8px 16px rgba(207, 74, 222, 0.948);
  }
  100% {
    box-shadow: 0 4px 8px rgba(49, 222, 141, 0.3);
  }
}

.testimonials-section {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}

.footer-container {
  background-color: #1e3a8a; /* Deep Blue Background */
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  width: 22%;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.footer-column p {
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-icons a {
  display: block;
  margin: 5px 0;
  color: white;
  text-decoration: none;
}

.footer-icons a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid white;
  padding-top: 10px;
  font-size: 14px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

/* Floating Sun Mascot */
.sun-mascot {
  width: 100px;
  position: absolute;
  top: -20px;
  left: -20px;
  animation: floatSun 6s ease-in-out infinite;
}

@keyframes floatSun {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.safe-school-section {
  text-align: center;
  padding: 30px 10px;
  background-color: #f9f9f9;
}

.safe-school-section h2 {
  color: #0d47a1;
  margin-bottom: 20px;
}

.safety-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.safety-item {
  text-align: center;
  max-width: 200px;
}

.safety-item img {
  width: 70px;
  height: 70px;
  background-color: #0d47a1;
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 10px;
}

.safety-item p {
  font-size: 20px;
  color: #333;
}
/* Gallery Styles (same as before) */
/* Gallery Section Styles */
.gallery-section {
  padding: 40px 10px;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  margin: auto;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 5px;
  transform: translateY(-50%);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
body {
  font-family: "Comic Sans MS", cursive, sans-serif;
  background-color: #fef3c7;
  color: #333;
  text-align: center;
}

.header-title {
  font-size: 50px;
  color: #8bff61;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.facilities-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.facility-card {
  width: 25%;
  min-width: 250px;
  background: #ffeb99;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 3px solid #ff6f61;
}

.facility-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #ff4081;
}

.facility-card p {
  font-size: 16px;
}

.facility-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  background-color: #ff6f61;
  padding: 10px;
  border-radius: 20px;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 5px 10px;
  border-radius: 18px;
}

nav a:hover {
  background-color: #ff4081;
}

footer {
  margin-top: 20px;
  background-color: #ff6f61;
  padding: 10px;
  color: white;
  font-size: 18px;
  border-radius: 10px;
}

.contact-container {
  text-align: center;
  padding: 20px;
  background-color: #fef3c7;
}

.contact-details h2 {
  font-size: 24px;
  color: #ff6f61;
}

.contact-details p {
  font-size: 18px;
  margin: 5px 0;
}

.contact-details a {
  color: #ff4081;
  text-decoration: none;
  font-weight: bold;
}

.contact-details a:hover {
  text-decoration: underline;
}

.map-section {
  margin-top: 20px;
}

.whatsapp-button {
  margin-top: 20px;
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 50px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.admission-section {
  margin-top: 30px;
}

.admission-button {
  display: inline-block;
  background-color: #ff4081;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.admission-button:hover {
  background-color: #d81b60;
}
.social-media {
  text-align: center;
  margin-top: 30px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 50px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  color: white;
  font-weight: bold;
}

.social-btn img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.whatsapp {
  background-color: #25d366;
}

.instagram {
  background-color: #e1306c;
}

.facebook {
  background-color: #3b5998;
}

.social-btn:hover {
  opacity: 0.8;
}/* Brain Development Section */
.brain-development {
  text-align: center;
  padding: 40px;
}

.brain-development h2 {
  font-size: 38px;
  font-weight: bold;
  color: #1a8827;
}

.brain-development p {
  font-size: 26px;
  color: #333;
  margin-bottom: 20px;
}

.progress-title {
  color: red;
  font-weight: bold;
  font-size: 28px;
}

.progress-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.progress-item {
  text-align: center;
}

.progress-item img {
  width: 130px;
  height: 120px;
}

.progress-item p {
  font-size: 19px;
  font-weight: bold;
}

.progress-item.highlighted {
  position: relative;
  border: 2px solid #1a8842;
  border-radius: 10px;
  padding: 10px;
}

.progress-item.highlighted span {
  color: red;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

/* What Your Child Could Miss Out Section */
.miss-out-section {
  text-align: center;
  padding: 40px;
}

.miss-out-section h3 {
  font-size: 22px;
  font-weight: bold;
  color: black;
  margin-bottom: 20px;
}

/* Responsive Layout */
.miss-out-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusts to screen size */
  gap: 20px;
  max-width: 90%;
  margin: auto;
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
  .brain-development {
    padding: 20px;
  }

  .brain-development h2 {
    font-size: 28px;
  }

  .brain-development p {
    font-size: 18px;
  }

  .progress-title {
    font-size: 22px;
  }

  .progress-container {
    flex-direction: column;
    align-items: center;
  }

  .progress-item img {
    width: 100px;
    height: 90px;
  }

  .progress-item p {
    font-size: 16px;
  }

  .miss-out-section {
    padding: 20px;
  }

  .miss-out-section h3 {
    font-size: 18px;
  }

  .miss-out-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
}

/* Increase size for better visibility */
.miss-out-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
}

/* Adjust Image Size */
.miss-out-item img {
  width: 60px; /* Increased */
  height: 60px; /* Increased */
  background-color: red;
  border-radius: 50%;
  padding: 12px;
}

/* Adjust Text Size */
.miss-out-item p {
  font-size: 18px; /* Increased */
  font-weight: bold;
  color: #e030e9;
  margin: 0;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
}

.navbar {
  background-color: #ff6600;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.dropbtn {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 10px;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
}

.navbar {
  background-color: #ff6600;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.dropbtn {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 10px;
}

.mission-header {
  text-align: center;
  background-color: white;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mission-content {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.logo {
  width: 100px;
  margin-right: 20px;
}

.mission-text {
  max-width: 600px;
}

.mission-text h1 {
  color: #ff6600;
  font-size: 36px;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.mission-section {
  padding: 20px;
  background: linear-gradient(90deg, red, orange, yellow, rgb(27, 202, 27), rgb(96, 96, 233), rgb(145, 60, 206), violet);
  background-size: 400% 400%;
  animation: rainbow 5s infinite linear;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

@keyframes rainbow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer {
  text-align: center;
  padding: 10px;
  background-color: #333;
  color: white;
}
/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
}

/* Admission Form Styles */
.admission-container {
  width: 90%;
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.admission-container h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
  color: #333;
}

.admission-container form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #28a745;
}

.form-group textarea {
  resize: vertical;
}

.button-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #28a745;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s, transform 0.3s;
  margin: 5px 0;
  flex: 1 1 45%;
  text-align: center;
}

button:hover {
  background: #218838;
  transform: scale(1.05);
}

button:active {
  transform: scale(0.95);
}

#homeButton {
  background: #007bff;
}

#homeButton:hover {
  background: #0056b3;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .admission-container {
      width: 95%;
      margin: 20px auto;
      padding: 15px;
  }

  .button-group {
      flex-direction: column;
  }

  button {
      flex: 1 1 100%;
  }
}
.footer-container {
  background-color: #605be2;   /* Dark background */
  color: #fff;              /* White text */
  padding: 20px;
  text-align: center;
}

.footer-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  background-color: rgba(255, 255, 255, 0.1); /* Slight contrast */
  border-radius: 5px;
  padding: 10px;
}

.footer-column h4 {
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin: 5px 0;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid #4551d8;
  padding-top: 10px;
}
.footer-social {
  margin-top: 15px;
  text-align: center;
}

.footer-social a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
}

.footer-social a:hover {
  text-decoration: underline;
}
