/* Hero Section */
.hero {
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../photos/IMG_01151.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  z-index: 0;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 50px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 2px;

}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;  background: linear-gradient(45deg, #4a90e2, #6ba334);
  text-align: center;
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, #4a90e2, #6ba334);
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serifArial;
  color: white;
  box-shadow: 0 4px 15px rgba(135, 204, 70, 0.3);
}



.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(135, 204, 70, 0.4);
}

.btn-center {
  text-align: center;
  margin: 2rem 0;
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: transparent;
  color: #ffffff;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-nav.prev {
  left: 30px;
}

.hero-nav.next {
  right: 30px;
}

/* Services */
/* Services Section Container */
.services {
  background-color: #f9fafb;
  padding: 48px 16px;
}

@media (min-width: 1024px) {
  .services {
    padding: 48px 32px;
  }
}

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.service-card {
  border: 1px solid rgba(0, 200, 170, 0.4) !important;
  box-shadow:
    0 0 6px rgba(0, 200, 170, 0.4),
    0 0 20px rgba(0, 200, 170, 0.2),
    0 0 40px rgba(0, 200, 170, 0.1);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(0, 200, 170, 0.8) !important;
  box-shadow:
    0 0 8px rgba(0, 200, 170, 0.7),
    0 0 25px rgba(0, 200, 170, 0.4),
    0 0 60px rgba(0, 200, 170, 0.2);
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Main Services Card (Left Column) */
.main-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  height: fit-content;
}

@media (min-width: 1024px) {
  .main-card {
    grid-column: span 1;
  }
}

.main-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

@media (min-width: 1024px) {
  .main-card h2 {
    font-size: 30px;
  }
}

.main-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .main-card h3 {
    font-size: 30px;
  }
}

.main-card p {
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 24px;
  font-size: 14px;
}

.main-card-button {
  color: #10b981;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
  text-decoration: none;
}

.main-card-button:hover {
  color: #059669;
}

.main-card-button svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.main-card-button:hover svg {
  transform: translateX(4px);
}

/* Service Cards Container */
.service-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .service-cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-cards-container {
    grid-column: span 3;
  }
}

/* Individual Service Cards */
.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  height: fit-content;
}

.service-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-image {
  height: 160px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px;
}

.service-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.service-content p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.625;
  margin-bottom: 12px;
}

.service-link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
  text-decoration: none;

}
.service-link-bg{
  display: inline-flex;
  gap: 20px; /* Space between the buttons */
  padding: 10px 10px; /* Padding around the buttons */
  background-color: #2e7d32; /* Matched dark green background */
  border-radius: 5px;
}

.service-link:hover {
  color: #059669;
}

.service-link svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* About Contact */
/* About & Contact Section */
.about-contact {
  padding: 80px 0;
  background: #fff;
}

.about-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-card h2,
.contact-card h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.about-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 2px solid #e5e5e5;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #87cc46;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 10px;
}
 /* Testimonials */
/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials-slider {
  margin-bottom: 40px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.testimonial-text-left h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.testimonial-text-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.read-more {
  color: #87cc46;
  font-weight: 600;
}

.testimonial-images-right {
  position: relative;
}

.images-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.image-item {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  background: #4a90e2;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-arrow:hover {
  background: #6ba835;
}

.slider-dots-bottom {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #87cc46;
}

/* Why Choose Us */
/* Why Choose Section */
.why-choose .container {
  display: block;  /* overrides any flex/grid on the container */
}
/* Section Title */
/* Section Title */
.section-title {
  font-size: 2rem; /* Adjusted size */
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.text-darkgreen {
  color: #2e7d32; /* Dark green color */
}

/* Feature Card Styles */
.feature-card {
  background-color: #fff;
  padding: 20px; /* reduced from 30px */
  border-radius: 8px; /* slightly smaller radius */
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 0 8px rgba(135, 204, 70, 0.4); /* Softer neon green glow */
  transition: transform 0.3s, box-shadow 0.3s ease-in-out;
}

/* Hover effect for feature cards */
.feature-card:hover {
  transform: translateY(-3px); /* smaller hover lift */
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15), 0 0 15px rgba(135, 204, 70, 0.6); /* Subtle but stronger neon glow on hover */
}

/* Feature Icon */
.feature-icon {
  width: 60px; /* reduced from 80px */
  height: 60px; /* reduced from 80px */
  background: #87cc46; /* Neon green background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px; /* smaller bottom margin */
  box-shadow: 0 0 8px rgba(135, 204, 70, 0.4); /* Softer neon glow for icon */
}

.feature-icon i {
  font-size: 1.5rem; /* reduced from 2rem */
  color: #fff;
}

/* Feature Card Titles */
.feature-card h4 {
  font-size: 1.1rem; /* reduced from 1.3rem */
  font-weight: 700;
  margin-bottom: 10px; /* reduced from 15px */
  color: #333;
}

/* Feature Card Descriptions */
.feature-card p {
  font-size: 13px; /* slightly smaller */
  line-height: 1.4; /* slightly tighter */
  color: #666;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* reduced from 40px */
}
/* CAll to aCtion */
/* Call to Action Section */
.cta-section {
  margin-top: 60px;
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
  url('../photos/Sod.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Styles */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.text-green {
  color: #87cc46;
}

.text-black{
  color: #000000;
}
.text-brown {
  color: #6A4E23
}
.text-blue {
  color: #4a90e2;
}

.text-darkgreen {
  color: #10b981;
}
.text-yellow {
  color: #B29459;
}


/* text-yellow1 - For yellow/tan colored text */
.text-yellow1 {
  color: #d4a574;
  font-weight: 700;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(212, 165, 116, 0.5);
}

/* text-blue1 - For blue colored text */
.text-blue1 {
  color: #4a90e2;
  font-weight: 700;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(74, 144, 226, 0.5);
}

/* text-green1 - For green colored text */
.text-darkgreen1 {
  color: #f87cc46;
  font-weight: 900;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(135, 204, 70, 0.5),
    0 0 40px rgba(135, 204, 70, 0.3);
}

.text-white {
  color: #ffffff;
  font-weight: 900;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(135, 204, 70, 0.5),
    0 0 40px rgba(135, 204, 70, 0.3);
}
.reviews-section {
  padding: 70px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.reviews-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.reviews-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  max-width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #f5a623;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.reviewer-name {
  font-weight: bold;
  color: #333;
  font-size: 0.9rem;
}
