/* General Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: #f7f8fa; color: #333; }
h1, h2, h3, h4 { font-weight: 600; }

/* Hero Section */
.about-hero {
  position: relative;
  height: 60vh;
  background: url('/assets/images/IMG/best-time-3.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.about-hero-content { z-index: 1; }
.about-hero-content h1 { font-size: 2.8rem;background-color: rgb(190, 86, 86); padding: 10px; border-radius: 10px; }
.about-hero-content p { font-size: 1.2rem; margin-top: 10px; background-color: rgb(208, 231, 233); padding: 10px; border-radius: 10px; color: black; }

/* Sections */
.about-section, .team-section, .testimonials {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}
.about-section p {
  max-width: 900px;
  margin: 10px auto;
  color: #555;
}

/* Vision & Mission */
.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}
.highlight-card {
  background: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.highlight-card:hover { transform: translateY(-5px); }
.highlight-card img { width: 50px; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.team-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 20px;
}
.team-card img {
  width: 100%;
  border-radius: 12px;
}
.team-card h4 { margin: 10px 0 5px; }
.team-card p { color: #777; font-size: 0.9rem; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.testimonial-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-style: italic;
}
.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #555;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  padding: 50px 20px;
  text-align: center;
  color: white;
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #e67e22;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  margin-top: 15px;
}
.btn:hover { background: #d35400; }

/* Animations */
.fade-section { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.fade-in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  .about-hero-content , .about-hero h1 { 
    font-size: 20px;
    background-color: none;
   }
  .about-hero-content p { display: none; }
}

