/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #f8f8f8;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #2f7d32;
  color: #fff;
  padding: 20px 40px;
  text-align: center;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  background-color: #256429;
  padding: 10px 0;
}

.navbar a {
  color: #fff;
  margin: 0 15px;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('../img/hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 30px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.5rem;
}

.btn {
  display: inline-block;
  background-color: #2f7d32;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Section Headings */
section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #256429;
}

/* Services Grid */
.services-section {
  margin-top: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(47, 125, 50, 0.2);
}

.service-card h3 {
  color: #256429;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
}

/* Contact Form */
.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: #eee;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
}

.testimonials-section {
  margin-top: 60px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 30px;
}

.testimonial-card {
  background-color: #f1fdf2;
  border-left: 5px solid #2f7d32;
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
}
.blog-section {
  margin-top: 60px;
}

.blog-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 30px;
}

.blog-card {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  transition: box-shadow 0.3s;
}

.blog-card h3 {
  color: #256429;
  margin-bottom: 10px;
}

.blog-card a {
  color: #2f7d32;
  font-weight: bold;
}

.blog-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-form select {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.directors-section {
  margin-top: 60px;
  text-align: center;
}

.directors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.director-card {
  background-color: #e9f5ea;
  border: 1px solid #cde3cd;
  padding: 20px;
  border-radius: 10px;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.director-card:hover {
  transform: translateY(-5px);
}

.director-card h3 {
  color: #2f7d32;
  margin-bottom: 10px;
}
.directors-section {
  margin-top: 60px;
  text-align: center;
}

.directors-section h2 {
  color: #256429;
}

.directors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.director-card {
  background-color: #f0faf3;
  border: 1px solid #d5eadd;
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.director-card:hover {
  transform: translateY(-5px);
}

.director-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.director-card h3 {
  color: #2f7d32;
  margin-bottom: 5px;
}

.director-card .title {
  font-weight: bold;
  color: #444;
  margin-bottom: 10px;
}

.director-card p {
  font-size: 0.95rem;
  color: #333;
}

.director-links {
  margin-top: 15px;
}

.director-links a {
  margin: 0 8px;
  color: #256429;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.director-links a:hover {
  color: #1a4f20;
}

