* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slider-item.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.slider-text {
  display: flex;
  align-items: center;
  height: 100%;
}

.slider-content {
  color: white;
  max-width: 600px;
}

.hero-text h1, 
.hero-text h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.slider-item.active .hero-text h1,
.slider-item.active .hero-text h2 {
  opacity: 1;
  transform: translateY(0);    
  text-shadow: 0px 0px 4px black;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.slider-item.active .hero-text p {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0px 0px 4px black;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: #77d33f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.slider-item.active .btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease 0.4s;
}

.btn:hover {
  background: #6bc035;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(119, 211, 63, 0.4);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 255, 255);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: #77d33f;
  border-color: white;
  transform: scale(1.2);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 500px;
  }

  .hero-text h1,
  .hero-text h2 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .slider-controls {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 400px;
  }

  .hero-text h1,
  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* about sction */

.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.about-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.about-col-image {
  order: 2;
}

.about-col-content {
  order: 1;
}

.about-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;

  background-size: cover;
  background-position: center;
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 15px;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.counters-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.counter-col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 10px;
}

.counter-block {
  text-align: center;
  padding: 20px;
}

.counter-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--green-color);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.counter-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .about-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-col-image {
    order: 1;
    margin-bottom: 40px;
  }

  .about-col-content {
    order: 2;
  }

  .about-image-wrapper {
    min-height: 400px;
  }

  .counter-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }

  .counter-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .counter-number {
    font-size: 36px;
  }

  .counter-label {
    font-size: 14px;
  }

  .about-image-wrapper {
    min-height: 300px;
  }
}

.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.service-card-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-card-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(119, 211, 63, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-color);
  font-size: 24px;
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}

.service-card:hover .service-icon {
  transform: scale(1);
}

.service-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-all-wrapper {
  text-align: center;
  margin-top: 30px;
}

.btn-view-all {
  display: inline-block;
  padding: 15px 40px;
  background: var(--green-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--green-color);
}

.btn-view-all:hover {
  background: transparent;
  color: var(--green-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(119, 211, 63, 0.3);
}

.no-services {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 10px;
  color: #666;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .service-img-wrapper {
    height: 250px;
  }
}

/* CTA Banner Section */
.cta-banner {
  margin: 30px 0px;
}

.cta-container {
  background: linear-gradient(135deg, var(--blue-color) 0%, #1a237e 100%);
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  border-radius: 15px;
}

.cta-content h2 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  max-width: 500px;
}

.btn-cta {
  background: var(--green-color);
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #6bc035;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(119, 211, 63, 0.3);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: #ECFFE0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: white;
  border-radius: 15px;
  padding: 20px 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--green-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-color);
  text-align: center;
  margin-bottom: 15px;
}

.testimonial-divider {
  width: 50px;
  height: 3px;
  background: var(--green-color);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.star {
  color: #ffc107;
  font-size: 18px;
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--blue-color);
  color: white;
  border: none;
  /* border-radius: 50%; */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
  background: var(--green-color);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

/* Dots Navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--green-color);
  width: 30px;
  border-radius: 6px;
}

.dot:hover {
  background: var(--green-color);
}

/* Responsive */
@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .cta-content p {
    max-width: 100%;
  }

  .testimonials-slider-wrapper {
    padding: 0 50px;
  }

  .testimonial-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .testimonials-slider-wrapper {
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 40px 0;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .testimonials-slider-wrapper {
    padding: 0 35px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Offers Section */
.offers-section {
  padding: 80px 0 60px;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.offer-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.offer-image-wrapper {
  position: relative;
  overflow: hidden;
}

.offer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-image {
  transform: scale(1.1);
}
.blogs-faq-wrapper {
  padding: 80px 0;
  background: #fff;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.two-columns-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Section Headers */
.section-header-custom {
  margin-bottom: 30px;
}

.section-title-custom {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 12px;
}

.section-subtitle-custom {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Blogs Grid */
.blogs-grid-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.blog-card-custom {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-image-custom {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-custom:hover .blog-image-custom img {
  transform: scale(1.1);
}


.blog-title-bar-custom {
  background: var(--blue-color);
  padding: 15px 20px;
  text-align: center;
}

.blog-title-bar-custom h3 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.blog-title-bar-custom a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title-bar-custom a:hover {
  color: var(--green-color);
}

/* FAQ Section */
.faq-list-custom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item-custom {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  border: 2px solid var(--blue-color);
}

.faq-question-custom {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-color);
  transition: all 0.3s ease;
}


.faq-item-custom .faq-question-custom {
  color: var(--blue-color);
}

.faq-question-custom:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-icon-custom {
  color: var(--green-color);
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-question-text-custom {
  flex: 1;
  line-height: 1.4;
}

.faq-answer-custom {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item-custom.active .faq-answer-custom {
  max-height: 500px;
}

.faq-answer-content-custom {
  padding: 0 25px 20px 40px;
  font-size: 16px;
  line-height: 1.3;
}

.faq-item-custom .faq-answer-content-custom {
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .two-columns-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .blogs-grid-custom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .blogs-faq-wrapper {
    padding: 60px 0;
  }

  .section-title-custom {
    font-size: 24px;
  }

  .blogs-grid-custom {
    grid-template-columns: 1fr;
  }

  .faq-question-custom {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-answer-content-custom {
    padding: 0 20px 18px 38px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .section-title-custom {
    font-size: 22px;
  }

  .section-subtitle-custom {
    font-size: 14px;
  }

  .blog-image-custom {
    height: 180px;
  }

  .blog-title-bar-custom h3 {
    font-size: 14px;
  }

  .faq-question-custom {
    font-size: 14px;
    padding: 15px 18px;
  }

  .faq-answer-content-custom {
    padding: 0 18px 15px 35px;
  }
}
