* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.header-images {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.right-side-icons i:hover {
  opacity: 0.4;
}

.navbar ul {
  display: flex;
  list-style: none;
  background-color: #17411c;
  margin: 15px;
  padding: 8px;
  padding-left: 15px;
  gap: 40px;
  color: white;
}
.hero {
  display: flex;
}
.service-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.service-box {
  background-color: #feffff;
  border-radius: 15px 15px 15px 15px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial {
  display: flex;
  padding: 20px;
  padding-top: 100px;
}
.testimonials-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 5px;
  padding-top: 20px;
}
.card-group {
  display: flex;
  text-align: center;
  padding: 20px;
  gap: 40px;
}
.card {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  gap: 40px;
}
.card-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.card-text h2 {
  color: #17411c;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.card-img img {
  width: 400px;
  height: 300px;
  padding: 10px;
}
.highlights {
  width: 90%;
  margin: auto;
  padding: 40px 0;
}

.highlights h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 25px;
  color: #333;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.carb {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.content {
  padding: 15px;
}

.content p {
  color: #444;
  line-height: 1.5;
}

.date {
  display: block;
  margin-top: 10px;
  color: #777;
  font-size: 14px;
}
.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
  background-color: #fff; /* Assuming white background for the section */
}

/* Heading Styling */
.gallery-title {
  color: #1a4d2e; /* Dark Green Color */
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Button Styling */
.view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #eeb045; /* Golden/Mustard Color */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 40px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.view-more-btn:hover {
  background-color: #dfa035; /* Slightly darker on hover */
}

.view-more-btn i {
  margin-left: 8px; /* Space between text and icon */
}

/* Grid Layout for Images */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Columns */
  gap: 20px;
  width: 100%;
}

/* Individual Image Cards */
.gallery-item {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: auto;
    max-height: 300px;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* --- Header Section --- */
.header-section {
  text-align: center;
  margin-bottom: 50px;
}

.header-section h2 {
  color: #1a4d2e; /* Dark Green */
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.view-more-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.view-more-btn:hover {
  opacity: 0.8;
}

/* --- Team Grid --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.team-card {
  background-color: #f4f4f4; /* Slightly different gray for card context */
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  /* Optional: Add shadow if you want depth, removed to match flat style of image */
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #e0e0e0;
}

.contact-info {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
  line-height: 1.4;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

.member-name {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.member-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Statistics Section --- */
.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
  margin-bottom: 20px;
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  color: #1a4d2e; /* Dark Green */
  font-weight: 500;
  /* Using a serif font for numbers to match the image style */
  font-family: "Times New Roman", Times, serif;
  margin-bottom: 5px;
}

.stat-label {
  color: #1a4d2e;
  font-weight: 700;
  font-size: 1rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr; /* Stack cards vertically */
  }

  .stats-row {
    justify-content: center;
  }

  .stat-item {
    flex-basis: 50%; /* 2 items per row on mobile */
  }
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;

  /* 2. Simple Layout: Flexbox */
  display: flex;
  justify-content: space-between; /* Space out the columns */
  flex-wrap: wrap; /* Allows items to stack on small screens */
  gap: 20px;
}

.footer-section {
  /* Ensures each column takes up at least 200px when space allows */
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  color: #ffc107; /* Highlight color (Yellow/Gold) */
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* --- Links and Lists --- */
.footer-links,
.contact-list {
  list-style: none; /* Remove bullet points */
  padding: 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  line-height: 1.8;
  display: block; /* Makes the whole area clickable */
}

.footer-links a:hover {
  color: #ffc107;
}

/* --- Social Icons --- */
.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffc107;
}

/* --- Copyright Bar --- */
.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #555;
  text-align: center;
  color: #aaa;
}

/* --- Mobile Responsive Adjustment (Flexbox handles most of it!) --- */
@media (max-width: 576px) {
  .footer-content {
    flex-direction: column; /* Explicitly stack columns vertically */
    text-align: center;
  }

  .social-icons {
    text-align: center; /* Center social icons */
  }

  .social-icons a {
    margin: 0 10px;
  }
}
