:root {
  --primary: #2563eb;
  --secondary: #1e293b;
  --accent: #06b6d4;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
  --border-radius: 12px;
  --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  --transition: 0.3s ease-in-out;
}

/* Section container adjustment */
.about-section,
.about-one {
  padding-top: 80px;
  padding-bottom: 80px;
  margin: 0;
}

/* Inner container spacing resets */
.about-section .container,
.about-one .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* Remove extra gaps on rows */
.about-section .row,
.about-one .row {
  margin-top: 0;
  margin-bottom: 0;
}

/* Ensure columns have consistent padding */
.col-lg-6 {
  padding-top: 0;
  padding-bottom: 0;
}

/* Reduce bottom margin on images for mobile */
.about-section img,
.about-one img {
  margin-bottom: 0;
}

/* Stats container spacing */
.stats-container {
  margin-top: 40px;
  margin-bottom: 0;
}

/* For the about-one section */
.about-one {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Ensure no automatic margin pushes by titles or paragraphs */
.about-one__content,
.about-section .section-title,
.about-one__description,
.about-section p,
.about-section h3,
.about-section ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Responsiveness tweaks */
@media (max-width: 991px) {
  .about-section,
  .about-one {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about-section img,
  .about-one img {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .about-section,
  .about-one {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-6 {
  padding: 0 15px;
  flex: 0 0 50%;
  max-width: 50%;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(15, 23, 42, 0.1));
  z-index: 1;
}

.section-title {
  margin-bottom: 25px;
}

.section-title .subtitle {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.section-title .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 15px;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin-top: 15px;
  border-radius: 2px;
}

.feature-box {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-box h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
}

.feature-box p {
  margin-bottom: 0;
  font-size: 15px;
  color: #333;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--primary);
  margin-top: 20px;
}

.cta-button:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(37, 99, 235, 0.2);
}

.stats-container {
  display: flex;
  margin-top: 40px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: 25px 20px;
  text-align: center;
  border-right: 1px solid var(--light-gray);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 991px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-image {
    margin-bottom: 30px;
    height: 400px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .stats-container {
    flex-direction: column;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .about-image {
    height: 300px;
  }
}

/* --- Remove vertical spacing from testimonials section --- */
/* Remove margins and paddings from the section */
.testimonials-one.section-space {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Position adjustments for buttons on smaller screens */
@media (max-width: 767px) {
  .owl-carousel .owl-nav {
    top: auto;
    bottom: -20px;
    justify-content: center;
    gap: 10px;
  }
}
  .faq-modern {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
   }

   .faq-modern .sec-title__title {
      font-size: 28px;
      font-weight: 700;
      color: #222;
   }

   .accordion-button {
      background-color: #fff;
      font-weight: 600;
      font-size: 16px;
      color: #333;
      padding: 1rem 1.25rem;
      border-radius: 8px;
   }

   .accordion-button:not(.collapsed) {
      background-color: #f0f8ff;
      color: #0d6efd;
   }

   .accordion-item {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   }

   .accordion-body {
      padding: 1rem 1.25rem;
      background: #fff;
      font-size: 15px;
      line-height: 1.6;
      color: #555;
   }

   .faq-modern__image img {
      border-radius: 12px;
      max-height: 400px;
      object-fit: cover;
   }

   @media (max-width: 767.98px) {
      .faq-modern .sec-title__title {
         font-size: 22px;
      }
   }

   .form-section {
      background: #3c6881;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
   }

   .form-control,
   .form-select {
      border-radius: 10px;
      background-color: #fff;
      color: #000;
      border: 1px solid #ccc;
      font-family: 'Open Sans', sans-serif;
      font-size: 15px;
   }

   .form-control::placeholder {
      color: #000;
   }

   .form-control:focus,
   .form-select:focus {
      box-shadow: 0 0 5px #0d6efd;
      border-color: #0d6efd;
   }

   .contact-title {
      font-size: 27px;
      font-weight: 600;
      margin-bottom: 25px;
      color: #fff;
      font-family: 'Open Sans', sans-serif;
   }

   .nature-image {
      border-radius: 12px;
      width: 100%;
      height: 100%;
      object-fit: cover;
   }

   label {
      font-weight: 500;
      margin-bottom: 5px;
      color: #fff;
      font-family: 'Open Sans', sans-serif;
      font-size: 15px;
   }

   .scrollable-select option {
      padding: 5px;
   }