.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

.main-banner-swiper {
  width: 100%;
}

.banner-slide-content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 16% 9%;
  box-sizing: border-box;
}

.banner-text-container {
  max-width: 650px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s,
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.swiper-slide-active .banner-text-container {
  opacity: 1;
  transform: translateY(0);
}

.banner-text-container .subtitle {
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 15px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-text-container .subtitle::after {
  content: "";
  position: absolute;
  top: 27px;
  background: linear-gradient(45deg, #0c4b04, #95c016);
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-repeat: no-repeat;
}

.banner-text-container .title {
  font-family: "Raleway";
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 25px 0;
  color: #ffffff;
  text-shadow: 0 2px 0 rgb(51 51 51 / 50%);
}

.banner-text-container .title .highlight {
  display: inline-block;
  margin-top: 5px;
  font-size: 66px;
  font-weight: 900;
  color: #97c217 !important;
}

.banner-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 0.5em 1em;
  line-height: 1.7em;
  background: transparent;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.banner-btn::after {
  content: "\003E";
  font-size: 29px;
  line-height: 1;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

.banner-btn:hover {
  background-color: hsla(0, 0%, 100%, 0.2);
  border: 2px solid transparent;
  color: #ffffff;
}

.banner-btn:hover::after {
  opacity: 1;
  max-width: 20px;
  margin-left: 8px;
  transform: translateX(0);
}

.custom-nav-btn {
  position: absolute;
  top: 50% !important;
  width: 46px;
  height: 46px;
  background-color: transparent !important;
  border: 1px solid #ffffff;
  border-radius: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  margin-top: 0 !important;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
  padding: 23px !important;
}

.custom-nav-btn::after {
  font-size: 22px !important;
  font-weight: 700;
  color: #ffffff !important;
  transition: color 0.3s ease;
}

.custom-nav-btn:hover {
  background: none !important;
  border-color: #ffffff !important;
}

.custom-nav-btn:hover::after {
  color: #ffffff !important;
}

.prev-btn {
  left: -25px;

  transform: translate(-100px, -100%);
  opacity: 0;
}

.next-btn {
  right: -25px;

  transform: translate(50px, -50%);
  opacity: 0;
}

.hero-banner:hover .prev-btn,
.hero-banner:hover .next-btn {
  transform: translate(0, -100%);
  opacity: 1;
}
.swiper-pagination-bullet {
  background: hsla(0, 0%, 100%, 0.5);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .prev-btn {
    left: 10px;
    transform: translate(0, -50%);
    opacity: 1;
  }

  .next-btn {
    right: 10px;
    transform: translate(0, -50%);
    opacity: 1;
  }
}

.swiper-pagination-bullet {
  background: hsla(0, 0%, 100%, 0.5) !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
  opacity: 1;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .banner-slide-content {
    padding: 16% 9%;
  }

  .prev-btn {
    left: 10px;
    opacity: 1;
  }

  .next-btn {
    right: 10px;
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .banner-text-container .subtitle {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .banner-text-container .title {
    font-size: 22px;
    margin: 0px;
    padding: 0px;
  }

  .banner-text-container .title .highlight {
    font-size: 28px;
    font-weight: 900;
  }

  .banner-btn {
    font-size: 16px;
    padding: 0.3em 1em;
    margin-top: 20px;
  }
}

/* neem products section */
.neem-based-products-section {
  padding: 20px 20px;
  background-color: #ffffff;
  font-family: "Raleway", sans-serif;
}

.neem-based-products-section .container {
  max-width: 1040px;
  margin: 0 auto;
}

.neem-based-products-section .section-header {
  text-align: center;
  margin-bottom: 45px;
}

.neem-based-products-section .section-header .sub-heading {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  color: #9ac41f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7em;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.neem-based-products-section .section-header .main-heading {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: #000000 !important;
  margin: 0 0 2.7% 0;
}

.neem-based-products-section .section-header .description {
  color: #666;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.neem-based-products-section .products-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.neem-based-products-section .product-card {
  max-width: 473px;
  height: 100%;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 9px #ccc;
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.neem-based-products-section .product-card:hover {
  transition: 0.5s ease-in-out;
  transform: scale3d(1.05, 1.05, 1.05);
}

.neem-based-products-section .card-image {
  width: 100%;
  height: 254px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.neem-based-products-section .card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.neem-based-products-section .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  width: 100%;
  padding-bottom: 15px;
}
.neem-based-products-section .card-content a{
  text-decoration: none !important;
}

.neem-based-products-section .product-title {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000 !important;
  line-height: 1.2em;
  text-align: center;
  text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
  margin: 0 0 15px 0;
  height: 33px;
}
.neem-based-products-section .product-title.non-text-shadow {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000 !important;
  line-height: 1.2em;
  text-align: center;
  text-shadow: none;
  margin: 0 0 15px 0;
  height: 33px;
}

.neem-based-products-section .action-btn {
  position: relative;
  padding: 8px 36px 8px 12px;
  color: #424242;
  margin-top: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.neem-based-products-section .action-btn:before {
  content: "\f18c";
  font-family: "FontAwesome";
  right: 10px;
  position: absolute;
  color: #0c4b04;
  text-align: center;
  font-size: 21px;
}

.neem-based-products-section .action-btn:hover {
  background: #9ac41f;
  color: #fff;
}

@media (max-width: 768px) {
  .neem-based-products-section .products-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .neem-based-products-section .section-header .main-heading {
    font-size: 26px;
  }

  .neem-based-products-section .card-image {
    height: 200px;
  }
  .why-choose-us .container {
    width: 100% !important;
  }
}

/* why choose us section */
.why-choose-us {
  padding: 50px 20px;

  font-family: "Raleway", sans-serif;
}

.why-choose-us .container {
  max-width: 1040px;
  width: 80%;
  margin: 0 auto;
}

.why-choose-us .content-wrapper {
  display: flex;
  gap: 60px;
}

.why-choose-us .image-box {
  flex: 1;
  width: 50%;
}

.why-choose-us .image-box img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  display: block;
}

.why-choose-us .info-box {
  flex: 1;
  width: 50%;
  display: flex;
  flex-direction: column;
}

.why-choose-us .section-heading {
  font-size: 35px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 25px 0;
}

.why-choose-us .card-content {
  padding: 50px 35px;
  border-radius: 4px;
  box-shadow: 6px 6px 18px 0 rgba(0, 0, 0, 0.3);
  text-align: center;
}

.why-choose-us .card-title {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600 !important;
  font-size: 29px !important;
  color: #000000 !important;
  margin: 0 0 10px 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.why-choose-us .card-text {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  color: #000000 !important;
  line-height: 1.8em !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin: 0;
}

@media (max-width: 991px) {
  .why-choose-us .content-wrapper {
    flex-direction: column;
  }

  .why-choose-us .image-box,
  .why-choose-us .info-box {
    width: 100%;
  }

  .why-choose-us .section-heading {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .why-choose-us .section-heading {
    font-size: 26px;
  }
}

/* blog section  */
.blog-section {
  position: relative;
  padding: 20px 20px;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../img/neem-based-products/bnr4.jpg") center/cover no-repeat;
}

.section-title {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  font-size: 39px;
  color: #000000 !important;
  text-align: center;
  margin-bottom: 40px;
}

.blog-section-container {
  width: 83%;
  max-width: 1080px;
  margin: 0 auto;
}

.blog-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 25px;
  max-width: 1100px;
  width: 100%;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #0c4b04;
  border-radius: 13px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.blog-card a{
  text-decoration: none !important;
}

.featured-card .card-image {
  width: 100%;
  object-fit: cover;
  margin-bottom: 16px;
}

.side-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-card {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 50px;
}

.small-card .card-image {
  width: 119px;
  height: 120px;
  object-fit: cover;
  /* flex-shrink: 0; */
  margin-bottom: 15px;
  padding-bottom: 25px;
}

.category {
  color: #2ea3f2;
  width: fit-content;
  font-weight: 500;
  font-size: 13px;
  padding: 3px 2px;
  line-height: normal;
  display: inline-block;
  margin: 0 0 5px 0;
  font-family:
    Open Sans,
    Arial,
    sans-serif;
  border-bottom: 3px solid #f1f1f1;
}

.card-title {
  color: #1a231b;
  font-size: 25px;
  font-family: "Raleway";
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.small-card .card-title {
  font-family:
    Open Sans,
    Arial,
    sans-serif;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 600;
  color: #0c4b04;
  margin-bottom: 15px;
}

.meta-info {
  font-family:
    Open Sans,
    Arial,
    sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-style: italic;
  font-size: 12px;
  line-height: normal !important;
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 13px 0 3px 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.meta-info .slash {
  font-style: normal;
  font-weight: 500;
  color: #000;
  font-size: 24px;
  line-height: normal !important;
}

.excerpt {
  font-size: 17px !important;
  font-family: "Raleway";
  font-weight: 500;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.read-more-btn {
  align-self: flex-start;
  background-color: #9ac41f;
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-family: "Raleway";
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 10px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

@media (max-width: 850px) {
  .blog-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 690px) {
  .blog-container {
    grid-template-columns: 1fr;
  }
}

/* testimonial section */
.testimonial-section {
  padding: 20px 20px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

.testimonial-container {
  max-width: 950px;
  width: 80%;
  margin: 0 auto;
}

.testimonial-heading {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  font-size: 39px;
  color: #000000 !important;
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-swiper {
  width: 100%;
  padding-bottom: 10px;
}

.testimonial-swiper .swiper-slide {
  background: none !important;
  box-shadow: none !important;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 850px;
  margin: 0 auto;
}

.testimonial-img-box {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  padding-left: 52px;
  flex: 1;
  text-align: left;
}

.company-name {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600 !important;
  font-size: 28px !important;
  color: #0c4b04 !important;
  padding-bottom: 10px;
  line-height: 1em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.testimonial-text {
  font-size: 18px;
  font-weight: 600;
  color: #000000 !important;
  line-height: 1.8em !important;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .testimonial-heading {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .testimonial-container {
    width: 100%;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .testimonial-content {
    text-align: center;
  }

  .testimonial-img-box {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 690px) {
  .testimonial-content {
    padding-left: 0px;
  }
}

/* form section  */
.neem-based-products-section-contact{
      background-size: initial;
    background-position: right 0 top;
    background-blend-mode: overlay;
    background-image: url(../img/neem-based-products/bg-tree.png) !important;
    background-repeat: no-repeat;
        background-color: rgba(255, 255, 255, .42) !important;
}
.neem-based-products-section-contact-container {
  max-width: 750px;
  padding: 30px 0px;
  width: 60%;
  margin: 0 auto;
  
}

.neem-based-products-section-contact-container .form-title {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 800 !important;
  font-size: 41px !important;
  color: #000000 !important;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.neem-based-products-section-contact-container .typewriter-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #000000;
  width: 0;
  animation: 
    typing 3s steps(7, end) infinite,
    blink 0.75s step-end infinite;
}


@keyframes typing {
  0% { width: 0; }
  50% { width: 7.2ch; } 
  80% { width: 7.2ch; } 
  100% { width: 0; }     
}


@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: #000000; }
}



.neem-based-products-section-contact-container .error-box {
  display: none;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: #666;
  font-family:
    Open Sans,
    Arial,
    sans-serif;
}

.neem-based-products-section-contact-container .error-heading {
  margin: 0 0 10px 0;
}

.neem-based-products-section-contact-container .error-list {
  margin: 0 0 15px 0;
  padding-left: 20px;
  color: #666666;
}

.neem-based-products-section-contact-container .error-list li {
  margin-bottom: 4px;
}
.neem-based-products-section-contact-container #contactForm{
  width: 80%;
}

.neem-based-products-section-contact-container .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.neem-based-products-section-contact-container .input-group {
  font-family:
    Open Sans,
    Arial,
    sans-serif;
  width: 100%;
}

.neem-based-products-section-contact-container .input-group input {
  border: 1px solid #b2b2b2;
  border-left: 6px solid #154709;
}

.neem-based-products-section-contact-container .input-group.full-width {
  grid-column: span 2;
}

.neem-based-products-section-contact-container .input-group input,
.neem-based-products-section-contact-container .input-group textarea {
  width: 100%;
  padding: 12px 15px 12px 20px;
  font-size: 0.85rem;
  color: #666;
  box-sizing: border-box;
  font-family: inherit;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}

.neem-based-products-section-contact-container .input-group textarea {
  border: 1px solid #b2b2b2;
  border-left: 6px solid #154709;
}

.neem-based-products-section-contact-container .input-group input::placeholder,
.neem-based-products-section-contact-container
  .input-group
  textarea::placeholder {
  font-family:
    Open Sans,
    Arial,
    sans-serif;
  color: #666;
}

.neem-based-products-section-contact-container .input-group input.error,
.neem-based-products-section-contact-container .input-group textarea.error {
  border: 1px solid #ff0000 !important;
}

.neem-based-products-section-contact-container .input-group textarea {
  resize: vertical;
  min-height: 140px;
}

.neem-based-products-section-contact-container .form-bottom-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 20px;
}

.neem-based-products-section-contact-container .captcha-box {
  font-family:
    Open Sans,
    Arial,
    sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #666;
}

.neem-based-products-section-contact-container .captcha-input-group {
  max-width: 50px;
}

.neem-based-products-section-contact-container .captcha-input-group::before {
  display: none;
}

.neem-based-products-section-contact-container .captcha-input-group input {
  padding: 16px 10px;
  text-align: center;
}

.neem-based-products-section-contact-container .submit-btn-1 {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
  position: relative;
  padding: 8px 36px 8px 12px;
  color: #424242;
  margin-top: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  border: none !important;
  background: none !important;
}

.neem-based-products-section-contact-container .submit-btn-1::before {
  content: "\f18c";
  font-family: "FontAwesome";
  right: 10px;
  position: absolute;
  color: #7cda24;
  text-align: center;
  font-size: 21px;
}
@media (max-width:800px){
  .neem-based-products-section-contact-container #contactForm{
    width: 100%;
  }
  .neem-based-products-section-contact-container{
    width: 80%;
  }
}

@media (max-width: 600px) {
  .neem-based-products-section-contact-container .form-grid {
    grid-template-columns: 1fr;
  }

  .neem-based-products-section-contact-container .input-group.full-width {
    grid-column: span 1;
  }

  .neem-based-products-section-contact-container .form-bottom-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }

  .neem-based-products-section-contact-container .form-title {
    font-size: 25px !important;
  }
  
}
