body{
    background-color: #cee1f4;

}
/* Hero Section */
.secondary-hero {
  background: url('./images/tea.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.secondary-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.secondary-hero .hero-text {
  position: relative;
  z-index: 2;
}

.secondary-hero h1 {
  font-size: 3rem; 
  margin-bottom: 10px;
  color: #4db8ff; 
  text-shadow: 0 0 12px rgba(77, 184, 255, 0.7);
  animation: fadeDown 1s ease-out;
}

.secondary-hero p {
  font-size: 1.3rem; 
  color: #dcefff;
  text-shadow: 0 0 10px rgba(0,0,0,0.4);
  animation: fadeUp 1.2s ease-out;
}

/*  Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Overview Section */
.overview {
  padding: 80px 50px;
}
.overview-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}
.overview .text {
  flex: 1;
}
.overview .text h2 {
  margin-top: -105px;
  color: #0d6efd;
  margin-bottom: 15px;
  font-size: 2.5rem;
}
.overview .text p {
  text-align: justify;
  font-size: 20px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}
.overview .text ul {
   font-size: 20px;
  list-style: disc;
  margin-top: 15px;
  padding-left: 25px;
  color: #555;
  line-height: 1.8;
}
.overview .image img {
  width: 600px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Highlights Section */
.highlights {
  padding: 80px 50px;
  background: #b6d3f0;;
  text-align: center;
}
.highlights h2 {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 15px;
}
.highlights .subtitle {
  color: #6c757d;
  margin-bottom: 50px;
  font-size: 1.1rem;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 30px;
  width: 400px;
  text-align: center;
  transition: 0.3s;
}
.card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}
.card:hover img {
  transform: scale(1.05);
}
.card h3 {
  margin-bottom: 15px;
  color: #0d6efd;
  font-size: 1.2rem;
}
.card p {
  color: #6c757d;
  line-height: 1.6;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Student Life Section */
.student-life {
  padding: 80px 50px;
  background: #cee1f4;;
  text-align: center;
}
.student-life h2 {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 15px;
}
.student-life .subtitle {
  color: #6c757d;
  margin-bottom: 50px;
  font-size: 1.1rem;
}
.life-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.life-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
  text-align: center;
}
.life-card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
}
.life-card h3 {
  color: #0d6efd;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.life-card p {
  color: #6c757d;
  line-height: 1.6;
}
.life-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .overview-content {
    flex-direction: column;
    text-align: center;
  }
  .overview .text, .overview .image {
    flex: 100%;
  }
  .cards, .life-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .secondary-hero h1 {
    font-size: 2rem;
  }
  .secondary-hero p {
    font-size: 1.1rem;
  }
  .highlights h2, .student-life h2 {
    font-size: 2rem;
  }
  .overview, .highlights, .student-life {
    padding: 60px 20px;
  }
  .card img {
    width: 100px;
    height: 100px;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.overview,
.highlights,
.student-life {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.overview {
  animation-delay: 0.3s;
}
.highlights {
  animation-delay: 0.6s;
}
.student-life {
  animation-delay: 0.9s;
}
