/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* This accounts for the fixed header */
}

body {
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Styles */
.top-header {
  background-color: #1b5e20; /* Dark green */
  color: white;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info a {
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 18px;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.8;
}

/* Navigation */
.main-header {
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #1b5e20; /* Dark green */
}

.logo img {
  height: 50px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #1b5e20; /* Dark green */
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1b5e20; /* Dark green */
  transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.cta-button {
  background-color: #ffd600;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
  border: 2px solid #ffd600;
}

.cta-button:hover {
  background-color: transparent;
  color: #ffd600;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ff7043 0%, #1b5e20 100%); /* Dark green */
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.admission-hero {
  background: linear-gradient(135deg, #1b5e20 0%, #ff7043 100%); /* Reversed gradient for admission page */
}

.hero-content {
  width: 50%;
  padding: 0 5%;
  color: white;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 50px;
  margin-bottom: 20px;
  gap: 10px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  display: block;
}

.hero h1 .highlight {
  color: #ffd600;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-size: cover;
  background-position: center;
}

.decorative-element {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.decorative-element.pencil {
  right: 10%;
  top: 20%;
  font-size: 5rem;
  transform: rotate(30deg);
}

.decorative-element.book {
  left: 10%;
  bottom: 20%;
  font-size: 4rem;
}

/* Admission Section */
.admission-section {
  padding: 80px 5%;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1b5e20; /* Dark green */
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.admission-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.admission-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 300px;
  text-align: left;
  transition: transform 0.3s;
}

.admission-card:hover {
  transform: translateY(-10px);
}

.card-icon {
  font-size: 2.5rem;
  color: #1b5e20; /* Dark green */
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.card-text {
  color: #666;
  margin-bottom: 20px;
}

/* Call to Action Divider */
.cta-divider {
  background-color: #1b5e20; /* Dark green */
  color: white;
  padding: 50px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.1;
}

.cta-divider-alt {
  background-color: #ff7043;
}

.cta-divider-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-divider h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-divider p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-divider-button {
  display: inline-block;
  background-color: #ffd600;
  color: #333;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 2px solid #ffd600;
}

.cta-divider-button:hover {
  background-color: transparent;
  color: #ffd600;
}

/* Programs/Streams Section */
.programs-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
  text-align: center;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
}

.program-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.program-card {
  width: 300px;
  height: 120px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-card i {
  font-size: 2rem;
  margin-right: 15px;
}

.program-card.science {
  background-color: #8e24aa;
}

.program-card.commerce {
  background-color: #00897b;
}

.program-card.humanities {
  background-color: #d81b60;
}

.program-card.ai {
  background-color: #1e88e5;
}

.program-card.coding {
  background-color: #fb8c00;
}

.program-card.languages {
  background-color: #7b1fa2;
}

.program-card.math {
  background-color: #00c853;
}

.program-card.music {
  background-color: #c0ca33;
}

.program-card.reading {
  background-color: #e53935;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 5%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  font-size: 2.5rem;
  color: #1b5e20; /* Dark green */
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.benefit-text {
  color: #666;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 94, 32, 0.7); /* Dark green */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Why Choose Us */
.why-choose-section {
  background-color: #f9f9f9;
  padding: 80px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon {
  background-color: #1b5e20; /* Dark green */
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 10px;
  color: #333;
}

.feature-content p {
  color: #666;
}

/* Admission Process */
.process-section {
  padding: 80px 5%;
}

.timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  z-index: 1;
}

.step {
  width: 22%;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #1b5e20; /* Dark green */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
}

.step-description {
  color: #666;
  text-align: center;
  font-size: 0.9rem;
}

/* Alumni Section */
.alumni-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
}

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.alumni-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.alumni-card:hover {
  transform: translateY(-10px);
}

.alumni-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.alumni-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.alumni-card:hover .alumni-image img {
  transform: scale(1.1);
}

.alumni-info {
  padding: 20px;
}

.alumni-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #1b5e20;
}

.alumni-batch {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.alumni-position {
  font-weight: bold;
  color: #ff7043;
  margin-bottom: 15px;
}

.alumni-quote {
  color: #666;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.alumni-quote::before {
  content: "" "";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2rem;
  color: #ddd;
  line-height: 1;
}

/* Alumni CTA Section */
.alumni-cta-section {
  background: linear-gradient(135deg, #1b5e20 0%, #ff7043 100%);
  color: white;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.alumni-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.1;
}

.alumni-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.alumni-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.alumni-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.alumni-cta-button {
  display: inline-block;
  background-color: #ffd600;
  color: #333;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 2px solid #ffd600;
}

.alumni-cta-button:hover {
  background-color: transparent;
  color: #ffd600;
}

/* CTA Section */
.cta-section {
  background-color: #1b5e20; /* Dark green */
  color: white;
  padding: 80px 5%;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.primary-button {
  background-color: #ffd600;
  color: #333;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
  border: 2px solid #ffd600;
}

.primary-button:hover {
  background-color: transparent;
  color: #ffd600;
}

.secondary-button {
  background-color: transparent;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
  border: 2px solid white;
}

.secondary-button:hover {
  background-color: white;
  color: #1b5e20; /* Dark green */
}

/* Testimonials */
.testimonials-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
}

.testimonials {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.testimonial {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  min-width: 350px;
  scroll-snap-align: start;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.google-review {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 0.9rem;
}

.google-review i {
  color: #4285f4;
}

.star-rating {
  color: #ffc107;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #666;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e0e0e0;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 10px;
  color: white;
  gap: 20px;
}

.contact-card.phone {
  background-color: #ff7043;
}

.contact-card.email {
  background-color: #00c853;
}

.contact-card.location {
  background-color: #7b1fa2;
}

.contact-card i {
  font-size: 2.5rem;
}

.contact-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: #1b5e20; /* Dark green */
}

.form-button {
  background-color: #ffd600;
  color: #333;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.form-button:hover {
  background-color: #e6c200;
}

/* Admission Form Section */
.admission-form-section {
  padding: 80px 5%;
  background-color: #f9f9f9; 
  
  
}

/* .admission-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
} */

.admission-form-container {
  display: flex;
  justify-content: center; /* Centers the form horizontally */
  align-items: center; /* Centers vertically */
  flex-direction: column; /* Stacks items vertically */
  width: 100%;
}

.lead-capture .admission-form-container {
  grid-template-columns: 1fr; /* Makes it a single-column layout */
}

.admission-image {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.admission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admission-form-wrapper {
  
    width: 100%;
    max-width: 600px; /* Limits the form width */
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center; /* Centers text */
  }


.admission-form {

  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.admission-form .form-group {
  margin-bottom: 20px;
}

.admission-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.admission-form input,
.admission-form select,
.admission-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.document-list {
  list-style-type: disc;
  margin-left: 20px;
  color: #666;
}

.submit-button {
  background-color: #1b5e20; /* Dark green */
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #154a1a;
}

/* Admission Sidebar */
.admission-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial-card,
.contact-info-card,
.timeline-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.testimonial-card .star-rating {
  margin-bottom: 15px;
}

.testimonial-card .testimonial-text {
  margin-bottom: 15px;
}

.contact-info-card h3,
.timeline-card h3 {
  color: #1b5e20;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.contact-info-card p {
  margin-bottom: 20px;
}

.contact-info-card .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-info-card .contact-item i {
  color: #1b5e20;
}

.timeline-list {
  list-style-type: none;
}

.timeline-list li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.timeline-list li:last-child {
  border-bottom: none;
}

/* Checkbox Group */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

/* FAQ Section */
.faq-section {
  padding: 80px 5%;
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: #333;
}

.faq-question i {
  color: #1b5e20;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 50px 5% 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 40px;
}

.footer-about p {
  color: #ccc;
  margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffd600;
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  color: #ccc;
}

.contact-item i {
  color: #ffd600;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  color: #ccc;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .timeline {
    flex-direction: column;
    gap: 30px;
  }

  .timeline::before {
    display: none;
  }

  .step {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admission-form-container {
    grid-template-columns: 1fr;

  }

  .admission-image {
    height: 400px;
  }

  .lead-capture .admission-form-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    gap: 10px;
  }

  .hamburger {
    display: block; /* Show hamburger icon on mobile */
    cursor: pointer;
  }

  .main-header {
    padding: 15px 5%;
    position: relative;
  }

  .nav-menu {
    display: none; /* Hide nav menu by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 100%; /* Position right below the header */
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    padding: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 15px 5%;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    flex-direction: column;
  }

  .hero-content {
    width: 100%;
    padding: 50px 5%;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .admission-cards {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .alumni-grid {
    grid-template-columns: 1fr;
  }

  .breadcrumb-nav {
    display: block;
  }

  .cta-button {
    display: none; /* Hide CTA button on mobile */
  }

  /* Fix hamburger icon styling */
  .hamburger-icon {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.4s;
  }
}

.breadcrumb-nav {
  display: none;
  font-size: 14px;
  margin-top: 10px;
}

.hamburger {
  display: none; /* Hide by default */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 100;
}

.hamburger-icon {
  width: 100%;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

/* Animation for hamburger to X */
.hamburger.active .hamburger-icon:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .hamburger-icon:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-icon:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

