@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,600&display=swap');
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #111;
}

/* Header */
.logo {
  width: 250px;
}
.owl-dots {
  text-align: center;
  margin-top: 20px !important;
}
.owl-dots .owl-dot {
  display: inline-block;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 4px;
  background: #bfbfbf !important;   /* light grey */
  border-radius: 50%;
  display: block;
  transition: background 0.3s ease;
}
.owl-dots .owl-dot.active span {
  background: #2BA943 !important;   /* green */
}
/* Banner */
.banner-section {
  padding: 5px 0 0px;
}
.banner-slide {
  background: #d7d7d7;
  /* border-radius: 20px; */
  /* height: 500px; */
}
.banner-text {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}
.banner-section .owl-dots {
  margin-top: 10px !important;
  padding-bottom: 15px;
  position: relative;
}
/* About */
.about-text {
  font-size: 21px;
  line-height: 1.7;
}
.custom-btn {
  display: block;
  width: 100%;
  background: #ffffff;
  border: 2px solid #409945;
  border-radius: 18px;
  padding: 20px 28px;
  text-decoration: none;
  box-shadow: 0 10px 20px -5px rgb(44 44 44);
  transition: 0.3s 
ease;
}

.custom-btn .btn-title {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: #409945;
  margin-bottom: 6px;

}

.custom-btn .btn-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.4;
}
.custom-btn-box:hover .btn-subtitle,.custom-btn:hover .btn-title{
  color: #fff;
  transition: 0.3s ;
 
}
.custom-btn-box:hover .custom-btn{
  background-color: #409945;
}

.sec-heading{
  font-weight: 600;
  font-style: italic;
  font-size: 38px;
}
/* Testimonials */
.owl-testimonials .owl-stage {
  display: flex !important;
}

.owl-testimonials .owl-item {
  display: flex;
  height: auto !important;
}

.testimonial-section {
  background: #409945;
  overflow: visible !important;
}
.testimonial-section .section-heading h3 {
  color: #fff;
}
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 24px 20px;
  height: 100% !important;
    display: flex;
    flex-direction: column;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
.testimonial-top {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-between;
}
.testimonial-card .name {
  font-weight: 500;
  color: #2ba943;
  margin-bottom: 4px;
  font-size: 21px;
}
.testimonial-card .name::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #2ba943;
  margin-top: 4px;
}
.testimonial-card .rating span {
  color: #ffc107;
  font-size: 18px;
}
.testimonial-card p {
  margin-top: 12px;
  flex-grow: 1; /* ensures equal stretch */
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

/* Owl navigation for testimonials */
.testimonial-section .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.testimonial-section .owl-nav button {
  pointer-events: auto;
}
.testimonial-section .owl-nav .owl-prev,
.testimonial-section .owl-nav .owl-next {
  width: 26px;
  height: 26px;
  background: #1e7e34 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.testimonial-section .owl-nav .owl-prev span,
.testimonial-section .owl-nav .owl-next span {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
.testimonial-section .owl-dots {
  position: relative;
    margin-top: 25px !important;
    padding-bottom: 10px;
    text-align: center;
}
.testimonial-section .owl-dots .owl-dot span {
  width: 10px;
    height: 10px;
    margin: 5px 4px;
    background: rgba(255,255,255,0.5) !important;
    border-radius: 50%;
    display: block;
}
.testimonial-section .owl-dots .owl-dot.active span {
  background: #fff !important;
}

/* Key Features */
.owl-features .owl-stage {
  display: flex !important;
}
.owl-features .owl-stage-outer {
  padding: 5px;
}
.owl-features .owl-item {
  padding: 0 10px;
  /* display: flex;
  
  height: auto !important; */
}
.key-features .sub-heading {
  font-size: 17px;
  font-style: italic;
}
.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 22px 22px;
  display: flex;
    flex-direction: column;
    height: 100% !important;
  box-shadow: 0 0px 22px rgba(0, 0, 0, 0.1);
}
.icon-wrapper {
  margin: 0 0 15px;
}
.icon-wrapper img {
  max-width: 90px;
}
.feature-card h4 {
  /* text-align: center; */
  font-weight: 600;
  flex-shrink: 0;
  margin-bottom: 12px;
  font-size: 21px;
}
.feature-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  flex-grow: 1;
}
.feature-card ul li {
  font-size: 16px;
  margin-bottom: 6px;
}

/* Owl dots for features */
.key-features .owl-dots {
  margin-top: 18px;
}
.key-features .owl-dots .owl-dot span {
  background: #c4c4c4;
}
.key-features .owl-dots .owl-dot.active span {
  background: #2ba943;
}

/* Footer */
.footer-section {
  background: linear-gradient(180deg, #086A31 0%, #43A022 70%, #75C006 100%);
  font-size: 15px;
}
.footer-section h5,
.footer-section h6 {
  margin-bottom: 12px;
}
.footer-links li {
  margin-bottom: 6px;
}
.footer-links a {
  color: #f5f5f5;
  text-decoration: none;
}
.footer-links a img{
  width: 40px;
  transition: all 0.2s ease-out;
}
.footer-links a img:hover{
  translate: 0 -5px;
  transition: all 0.2s ease-out;
}
.footer-links a:hover {
  text-decoration: underline;
}
.social-list li {
  margin-right: 6px;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.1s ease-out forwards;
}
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Small screens */
@media (max-width: 575.98px) {
  .logo {
    width: 170px;
}
.sec-heading {
  font-size: 27px;
}
  .about-text,.key-features .sub-heading {
    font-size: 16px;
    text-align: center;
}
.custom-btn .btn-title {
  font-size: 24px;
}
  .banner-slide {
    /* height: 180px; */
  }
  .testimonial-card,
  .feature-card {
    padding: 18px 16px;
  }
}
