/* === Base Section === */
/* main {
  padding-top: 80px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2d3e50;
  background-color: #f6f9f8;
  line-height: 1.6;
} */

/* Hero Section */
.hero.hero-services {
  background: url("../assets/images/home.jpg") center/cover no-repeat;
  color: #fff;
  padding: 5rem 2rem;
}

.hero.hero-services h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero.hero-services p {
  font-size: 1.25rem;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0.95;
}

/* === Utility === */
.section-padding {
  padding: 70px 20px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

/* === Section Title === */
.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
  color: #1e5631;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #27ae60;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* === CTA Section === */
.cta-section {
  background-color: #1e5631;
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-radius: 18px;
  margin: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-section p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 35px;
  opacity: 0.95;
}

/* === Buttons: Primary / CTA === */
.cta-button,
.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

/* CTA Primary Button */
.cta-button {
  background-color: #fff;
  color: #1e5631;
  border: 2px solid #fff;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  background-color: #e9f5ec;
  color: #145c28;
  border-color: #d4f0dc;
}

/* Back to Home Button */
.back-to-home {
  text-align: center;
  padding: 40px 0;
}

.btn-secondary {
  background-color: #ecf0f1;
  color: #2c3e50;
  border: 2px solid #bdc3c7;
}

.btn-secondary:hover {
  background-color: #dfe6e9;
  color: #1e272e;
  border-color: #95a5a6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* === Service Card Styles === */
.service-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
  width: 10%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #1e5631;
  margin-bottom: 12px 0 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Button inside service card */
.btn-primary {
  display: inline-block;
  background-color: #27ae60;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: #219150;
  transform: translateY(-2px);
}
