/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #000000;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

/* Hero Section */
.hero-section {
  /* background: linear-gradient(15deg, #e0e0e0 0%, #addfbc 0%, #addfbc 100%); */
  /* background: linear-gradient(#addfbc 50%, #f8f9fa); */
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  /* background-color: blue; */
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  /* background-color: red; */
}

.hero-content {
  color: rgb(0, 0, 0);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: -webkit-linear-gradient(#159e3e, #000000);
  background: linear-gradient(#159e3e, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.hero-question {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  background-color: #159e3e;
  color: #ffffff;
  padding: 1rem;
  border-radius: 0.4rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.hero-action {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.contact-button {
  display: inline-block;
  padding: 15px 40px;
  background: #6bcb88;
  color: #0d0d0d;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
  background: #ffffff;
  transform: translateY(-3px);
  color: black;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.intro-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #000000;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #159e3e, #6bcb88);
  border-radius: 2px;
}

.intro-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 50px;
}

/* Stats Container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(21, 158, 62, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: -webkit-linear-gradient(#159e3e, #6bcb88);
  background: linear-gradient(#159e3e, #6bcb88);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Services and Why Choose Side by Side */
.services-why-section {
  padding: 100px 20px;
  background: white;
}

.services-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-content-card {
  /* background: white; */
  /* border-radius: 15px; */
  /* overflow: hidden; */
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
}

.service-content-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 10px 30px rgba(21, 158, 62, 0.2); */
}

.service-image-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-content-card:hover .service-image {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 158, 62, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-content-card:hover .image-overlay {
  opacity: 1;
}

.service-icon {
  font-size: 4rem;
  color: white;
  animation: pulse 2s ease-in-out infinite;
}

.service-card-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 30px 30px 20px;

  background: -webkit-linear-gradient(#159e3e, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin: 0 30px 30px;
}

/* Why Choose Card */
.why-choose-card {
  background: linear-gradient(135deg, #addfbc 0%, #6bcb88 100%);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(21, 158, 62, 0.3);
}

.why-choose-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.why-choose-icon {
  font-size: 2.5rem;
  color: #159e3e;
  animation: pulse 2s ease-in-out infinite;
}

.why-choose-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.why-choose-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-item i {
  font-size: 1.5rem;
  color: #159e3e;
  margin-top: 3px;
  flex-shrink: 0;
}

.why-choose-item span {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 20px;
  background: linear-gradient(#addfbc 50%, #f8f9fa);
}

.benefits-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #159e3e;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(21, 158, 62, 0.3);
}

.benefit-icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #159e3e, #6bcb88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: pulse 2s ease-in-out infinite;
}

.benefit-icon {
  font-size: 2rem;
  color: white;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}

.benefit-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Our Services Section */
.our-services-section {
  padding: 100px 20px;
  background: white;
}
.service-grid-text-heading {
  background: -webkit-linear-gradient(#159e3e, #000000);
  background: linear-gradient(#159e3e, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
  line-height: 1.2;
}
.section-subtitle {
  /* font-size: 1.1rem; */
  /* text-align: center; */
  color: #666;
  /* margin-bottom: 50px; */
}
.service-grid-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
.services-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service-item-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 4px solid #159e3e;
  text-align: center;
}

.service-item-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(21, 158, 62, 0.3);
  background-color: #159e3e;
  color: white;
}
.service-item-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}

.service-item-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
}
.service-item-card:hover .service-item-title,
.service-item-card:hover .service-item-description {
  color: white;
}

.service-item-card:hover .service-item-icon {
  background: white;
}
.service-item-card:hover .service-item-icon i {
  color: black;
}
.service-item-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #159e3e, #6bcb88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: pulse 2s ease-in-out infinite;
}

.service-item-icon i {
  font-size: 2rem;
  color: white;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #159e3e 0%, #6bcb88 100%);
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: white;
  margin-bottom: 15px;
}

.cta-sub-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 20px;
  background: #f8f9fa;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.form-group label i {
  margin-right: 8px;
  color: #159e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #159e3e;
  box-shadow: 0 0 0 3px rgba(21, 158, 62, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 15px 40px;
  background: linear-gradient(135deg, #159e3e, #6bcb88);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(21, 158, 62, 0.3);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(21, 158, 62, 0.4);
}

.submit-button i {
  margin-right: 10px;
}
.accordion {
  width: 100%;
  /* background-color: red; */
  background: #fff;
  margin: 4rem auto;
  padding: 1rem;
  border-radius: 0.5rem;
}
.accordion .accordion-content {
  margin: 10px 0;
  /* z-index: 100000; */
  border-radius: 5px;
  /* background-color: red; */
  background-color: #e8ffdc;
  border-color: #bbffaa;
  overflow: hidden;
}

.accordion-content.is-open {
  padding-bottom: 10px;
}
.accordion-content header {
  display: flex;
  min-height: 50px;
  padding: 0 15px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s linear;
}
.accordion-content.is-open header {
  min-height: 35px;
}
.accordion-content-title {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}
.accordion-content-description {
  height: 0;
  font-size: 13px;
  color: #000000;
  font-weight: 400;
  padding: 0 15px;
}
.accordion-content.is-open .accordion-content-description {
  padding: 15px;
}
/* Responsive Design */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-title {
    text-align: center;
  }
  .hero-description {
    text-align: center;
  }
  .contact-button {
    font-size: small;
    margin: 0 0 0 25px;
  }
  .service-grid-text-heading {
    font-size: 1.5rem;
    text-align: center;
  }
  .section-subtitle {
    /* font-size: 1.1rem; */
    text-align: center;
    color: #666;

    margin-bottom: 50px;
  }
  .service-grid-container {
    grid-template-columns: 1fr;
  }
  .services-why-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}
