* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #444;
  scroll-behavior: smooth;
}

/* hero section */
.hero {
  background: linear-gradient(135deg, #2e3192, #1bffff);
  padding: 50px 20px;
  text-align: center;
  animation: fadeInDown 1s ease;
}

.hero h1 {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
  animation: zoomIn 1.2s ease;
}

.school-logo {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.school-logo:hover {
  transform: scale(1.1) rotate(-2deg);
}

.hero p {
  font-size: 1.2rem;
  color: #f3f3f3;
  margin-top: 10px;
  animation: fadeIn 2s ease;
}
/* login */
.login-section {
  padding: 40px 20px;
  background: #f5f5f5;
  text-align: center;
}

.login-container {
  max-width: 400px;
  margin: 30px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-container input,
.login-container button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.login-container button {
  background-color: #2e3192;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-container button:hover {
  background-color: #1e237a;
}


/* navbar */
.navbar {
  background: #2e3192;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.navbar a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.navbar a:hover {
  background: #fcb045;
  color: #000;
  border-radius: 6px;
  transform: scale(1.05);
}


.news-strip {
  background: #ffeb3b;
  color: #000;
  padding: 10px 0;
  font-weight: bold;
  font-size: 1.1rem;
  border-bottom: 2px solid #f57f17;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
  position: relative;
  width: 100%;
}

.banner {
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}

.banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/*events  */
.events-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb); /* Light gradient */
  text-align: center;
  border-top: 3px solid #4f46e5;
  border-bottom: 3px solid #4f46e5;
}

.events-section h2 {
  font-size: 32px;
  color: #1f2937;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
}

.event-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.event-list li {
  background-color: #ffffff;
  border-left: 6px solid #6366f1;
  margin-bottom: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 18px;
  color: #111827;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.event-list li:hover {
  transform: scale(1.03);
  background-color: #f9fafb;
  cursor: default;
}

.event-list li strong {
  color: #4f46e5;
  font-weight: 600;
}




/* section */
 .section {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
  animation: fadeInUp 1s ease;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  color: #2e3192;
  display: inline-block;
  border-bottom: 4px solid #fcb045;
  
  
}

.section p,
.section ul {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.section ul {
  list-style-type: none;
  padding: 0;
}

.section ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
} 


/* about us */
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-text {
  max-width: 800px;
  text-align: center;
  margin-bottom: 40px;
}

.about-text h2 {
  font-size: 36px;
  color: #2e3192;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 4px solid #fcb045;
}

.about-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}


.student-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.student-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 220px;
  text-align: center;
}

.student-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.student-card p {
  padding: 15px;
  font-size: 16px;
  color: #333;
}

/* fun facts */
.fun-facts {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 60px 20px;
  background: linear-gradient(135deg, #f1f1f1, #dff6ff);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.fun-facts h3 {
  font-size: 3rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.fun-facts p {
  font-size: 1.2rem;
  color: #023047;
  font-weight: 500;
}

/* welcome */
.audio-section {
  background-color: #edf6f9;
  padding: 50px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 700px;
}

.audio-section h2 {
  color: #2e3192;
  font-size: 24px;
  margin-bottom: 20px;
}

.audio-section audio {
  width: 100%;
  max-width: 500px;
}


/*mission section  */
.mission-section {
  background-color: #f2f8ff;
  padding: 60px 20px;
  text-align: center;
}

.mission-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #003366;
  display: inline-block;
  border-bottom: 4px solid #fcb045 ;
}

.mission-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mission-cards .card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 400px;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
}

.mission-cards .card:hover {
  transform: scale(1.05);
}

.mission-cards .card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #006699;
}

.mission-cards .card p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

/* courses */
.courses-section {
  background-color: #fffaf0;
  padding: 60px 20px;
  text-align: center;
}

.courses-section h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 4px solid #fcb045 ;
}

.courses-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.course-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card h3 {
  font-size: 20px;
  color: #ff6600;
  margin-bottom: 10px;
}

.course-card p {
  font-size: 15px;
  color: #333;
}

/* fee str */
.fee-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.fee-section h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 4px solid orange;
}

.fee-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.fee-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.fee-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px;
  width: 240px;
  transition: transform 0.3s ease;
}

.fee-card:hover {
  transform: translateY(-5px);
}

.fee-card h3 {
  font-size: 20px;
  color: #ff6600;
  margin-bottom: 15px;
}

.fee-card p {
  font-size: 15px;
  color: #333;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .fee-card {
    width: 90%;
  }
}

/* syllabus */
.syllabus-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.syllabus-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #2980b9;
}

.syllabus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.syllabus-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.syllabus-card:hover {
  transform: translateY(-5px);
}

.syllabus-card h4 {
  color: #ff6600;
  font-size: 20px;
  margin-bottom: 10px;
}

.syllabus-card ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
}

.syllabus-card ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}


/* achievements */
.achievements-section {
  background-color: #fdf6f0;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Popins', sans-serif;
}

.achievements-section h2 {
  font-size: 34px;
  color:#003366 ;
  margin-bottom: 40px;
  position: relative;
   display: inline-block;
  border-bottom: 4px solid #fcb045 ;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.achievement-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-8px);
}

.achievement-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.achievement-card h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #333;
}

.achievement-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}
/* results */
.result-section {
  background: #f3f4f6;
  padding: 60px 20px;
  text-align: center;
  
}

.result-section h2 {
  font-size: 2.2rem;
  color: #2e3192;
  margin-bottom: 40px;
  position: relative;
}

.result-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.student-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
}

.student-card:hover {
  transform: translateY(-8px);
}

 .student-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  border: 4px solid #2e3192;
} 
 

.student-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(46, 49, 146, 0.4);
  border-color: #fcb045;
}


.student-card h3 {
  margin: 10px 0 5px;
  color: #2e3192;
}

.student-card p {
  color: #ff6600;
  margin-bottom: 15px;
}

.percentage-bar {
  height: 12px;
  background: #ddd;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 10px;
}

.percentage-bar .fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  border-radius: 20px;
  transition: width 1.5s ease-in-out;
}

.percent-label {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  color: #023047;
}
/* fun zone */
.fun-zone {
  padding: 50px 20px;
  background: #f9f9ff;
  text-align: center;
}

.fun-zone h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #2e3192;
}

.student-highlight img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #2e3192;
  object-fit: cover;
  margin-bottom: 10px;
}

.student-highlight {
  margin-bottom: 30px;
}

.joke-box, .fact-box {
  background: #fff;
  margin: 15px auto;
  padding: 15px 20px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(46,49,146,0.1);
}

.joke-box h3, .fact-box h3 {
  color: #2e3192;
  margin-bottom: 10px;
}
/* quiz */
.quiz-section {
  background: linear-gradient(135deg, #fce4ec, #e0f7fa);
  padding: 30px;
  margin: 40px auto;
  max-width: 550px;
  border-radius: 25px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.quiz-section h2 {
  font-size: 28px;
  color: #6a1b9a;
  margin-bottom: 20px;
}

#quiz-box p#question {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: bold;
}

#options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}

.option-btn {
  padding: 12px 20px;
  font-size: 18px;
  border-radius: 14px;
  border: 2px solid transparent;
  background-color: #e1bee7;
  color: #4a148c;
  cursor: pointer;
  transition: 0.3s;
}

.option-btn:hover {
  background-color: #ce93d8;
  color: white;
  border-color: #7b1fa2;
  transform: scale(1.03);
}

#next-btn {
  display: none;
  padding: 10px 18px;
  font-size: 17px;
  border-radius: 10px;
  background-color: #81d4fa;
  color: #01579b;
  cursor: pointer;
  margin-top: 10px;
}

#next-btn:hover {
  background-color: #4fc3f7;
}

#score-box {
  margin-top: 20px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  padding: 10px;
  border-radius: 10px;
  background-color: #f8bbd0;
  display: inline-block;
}


/* school gallery */
 .gallery-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #fdfdfd;
}

.gallery-section h2 {
  font-size: 32px;
  color: #003366 ;
  margin-bottom: 10px;
  display: inline-block;
   border-bottom: 4px solid #fcb045 ;

}

.gallery-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
  transform: scale(1.05);
} 
 

/* manager */
.manager-section {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.manager-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.manager-photo img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #003366;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.manager-info {
  max-width: 600px;
}

.manager-info h2 {
  font-size: 30px;
  color: #003366;
  margin-bottom: 10px;
}

.manager-info h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 5px;
}

.manager-info h4 {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
}

.manager-info h4 span {
  background: #0077b6;
  color: white;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
}

.manager-info p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

 @media (max-width: 768px) {
  .manager-container {
    flex-direction: column;
    text-align: center;
  }

  .manager-photo img {
    width: 200px;
    height: 200px;
  }
} 



/* ADMISSION */
  .admission-section {
  background: #fff8f0;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
}

.admission-container {
  max-width: 800px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  text-align: center;
}

.admission-container h2 {
  font-size: 32px;
  color: #2e3192;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid orange;
}


.admission-container p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

 .admission-container button {
  background-color: #ffcb0f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.admission-container button:hover {
  background-color: #fcb045;
}   



 @media (max-width: 768px) {
  .admission-container h2 {
    font-size: 26px;
  }

  .admission-container p {
    font-size: 16px;
  }

  .admission-container {
    padding: 30px 20px;
  }
} 



/* button */
  button {
  background-color: #fcb045;
  color: #000;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 15px;
  transition: all 0.3s ease;
}  

 button:hover {
  background-color: #ff9800;
  transform: scale(1.05);
} 
/* timetable */

.timetable-container {
  overflow-x: auto;
  margin-top: 20px;
}

.timetable {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  text-align: center;
}

.timetable th,
.timetable td {
  border: 1px solid #ddd;
  padding: 10px;
}

.timetable th {
  background-color: #ffcb0f;
  color: white;
}


/* teacher-section */

.teachers-section {
  background-color: #fffaf5;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.teachers-section h2 {
  font-size: 34px;
  color: #003366;
  margin-bottom: 10px;
  display:inline-block ;
  border-bottom: 4px solid orange;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.teacher-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.teacher-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  width: 220px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.teacher-card:hover {
  transform: translateY(-8px);
}

.teacher-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #003366;
  margin-bottom: 15px;
}

.teacher-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.teacher-card p {
  font-size: 15px;
  color: #777;
}

 @media (max-width: 768px) {
  .teacher-card {
    width: 90%;
  }
} 



/* why choose us */
.choose-section {
  background-color: #f4fbff;
  padding: 60px 20px;
  text-align: center;
}

.choose-section h2 {
  font-size: 34px;
  color: #003366;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid orange;
}

.choose-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.choose-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  width: 250px;
  padding: 25px;
  transition: transform 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-10px);
}

.choose-card img {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
}

.choose-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

 @media (max-width: 768px) {
  .choose-card {
    width: 90%;
  }
} 

/* parents review */
.testimonial-section {
  background-color: #fff9f0;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 32px;
  color: #cc6600;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color: #ffffff;
  border-left: 5px solid #ffa500;
  padding: 25px 20px;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border-radius: 12px;
  transition: transform 0.3s ease;
   flex: 1 1 300px; 
}

.testimonial-card:hover {
  transform: scale(1.03);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 15px;
  color: #666666;
}


/* FAQ Section */
.faq-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  border-radius: 15px;
  margin: 40px 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #003366;
  margin-bottom: 30px;
  font-weight: bold;
  
}

.faq-item {
  background: #ffffff;
  margin: 15px auto;
  padding: 20px 25px;
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  font-size: 1.3rem;
  color: #0077b6;
  margin-bottom: 10px;
  font-weight: 600;
}

.faq-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}



/* Newsletter Section */
 .newsletter-section {
  background: linear-gradient(135deg, #edf6f9, #d9f4ff);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 40px 15px;
  position: relative;
  overflow: hidden;
}

.newsletter-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #023047;
  font-weight: bold;
}

.newsletter-section form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.newsletter-section input[type="email"] {
  padding: 14px 20px;
  width: 300px;
  border-radius: 30px;
  border: 2px solid #00b4d8;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.newsletter-section input[type="email"]:focus {
  border-color: #0077b6;
  box-shadow: 0 0 10px rgba(0, 119, 182, 0.2);
}

.newsletter-section button {
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #00b4d8;
  color: white;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-section button:hover {
  background-color: #0077b6;
  transform: scale(1.05);
} 



/* contact */
.contact-section {
  padding: 60px 20px;
  background-color: #fdf4e3;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.contact-form {
  flex: 1 1 350px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.05);
}

.contact-form button {
  background-color: #ff9900;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e88d00;
}

.contact-info {
  flex: 1 1 300px;
  text-align: left;
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.07);
}

.contact-info h3 {
  color: #cc5500;
  margin-top: 15px;
  margin-bottom: 8px;
}

/* footer */


.site-footer {
  background:#2e3192;
  color: #333;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-about {
  flex: 1 1 300px;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
  border-radius: 60%;
}

.footer-about h3 {
  margin: 10px 0;
  color: #fff;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 350px;
  color: #fff;
}

.social-icons a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fcb045;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex: 2 1 600px;
  flex-wrap: wrap;
  color: #fff;
}

.footer-links div h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  color: #fff;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
  color: #fff;
}

.footer-links ul li a:hover {
  color:orange;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #fff;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #fff;
  color: #fff;
} 
.footer-bottom p{
  color: #fff;
}
/*  Responsive Footer -  */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about, 
  .footer-links {
    flex: 1 1 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .footer-links div {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}



/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
} 

/* Mobile Responsive */
@media (max-width: 768px) {
  .teacher-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .navbar {
    flex-direction: column;
  }

  .navbar a {
    padding: 10px 0;
  }

  .section h2 {
    font-size: 1.6rem;
  }
}
