/********** Template CSS **********/
:root {
  --primary: #aec8a4;
  --light: #f5f5f5;
  --dark: #353535;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  /* ✅ Hero images keep their original aspect ratio */
  .header-carousel .owl-item img {
    width: 100%;
    height: auto; /* Preserve natural height */
    object-fit: contain; /* Show full image without cropping */
    display: block;
    margin: 0 auto;
    max-height: 100vh; /* Optional: Prevent oversize on very tall screens */
  }

  .header-carousel .owl-carousel-item h5,
  .header-carousel .owl-carousel-item p {
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  .header-carousel .owl-carousel-item h1 {
    font-size: 30px;
    font-weight: 600;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  width: 200px;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.header-carousel .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #ffffff;
  transition: 0.5s;
}

.header-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: transparent;
  border: 1px solid #ffffff;
}

.header-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)),
    url(../my-img/aboutbanner.webp) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title h1 {
  position: relative;
  display: inline-block;
  padding: 0 60px;
}

.section-title.text-start h1 {
  padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 5px;
  bottom: 0;
  background: var(--dark);
}

.section-title h1::before {
  left: 0;
}

.section-title h1::after {
  right: 0;
}

.section-title.text-start h1::before {
  display: none;
}

/*** About ***/
@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Service ***/
.service-item img {
  transition: 0.5s;
}

.service-item:hover img {
  transform: scale(1.1);
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Project Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--primary);
  border-color: var(--primary);
}

.portfolio-item img {
  transition: 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  bottom: 0;
  left: 50%;
  background: rgba(53, 53, 53, 0.7);
  transition: 0.5s;
}

.portfolio-item:hover .portfolio-overlay {
  width: 100%;
  height: 100%;
  left: 0;
}

.portfolio-item .portfolio-overlay .btn {
  opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
  opacity: 1;
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .quote-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .quote-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .quote-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Team ***/
.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item .team-social {
  position: absolute;
  width: 38px;
  top: 50%;
  left: -38px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  transition: 0.5s;
}

.team-item .team-social .btn {
  color: var(--primary);
  background: #ffffff;
}

.team-item .team-social .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

.team-item:hover .team-social {
  left: 0;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  border: 5px solid var(--light);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
    max-width: 100% !important;
  }

  .contact-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Footer ***/
.footer {
  background: linear-gradient(
      rgba(182, 182, 152, 0.9),
      rgba(182, 182, 152, 0.9)
    ),
    url(../img/footer.jpg) center center no-repeat;
  background-size: cover;
}

.footer .btn.btn-social {
  margin-right: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #fff;
  transition: 0.3s ease;
  border-radius: 4px;
}

.footer .btn.btn-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright {
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer .btn.btn-link {
    text-align: center;
  }

  .footer .btn.btn-social {
    margin: 5px;
  }

  .footer .col-md-6,
  .footer .col-lg-3 {
    margin-bottom: 20px;
  }

  .footer img {
    margin-bottom: 10px;
  }
}
/* --- Modern Navbar Styles --- */

.custom-navbar {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 0.6rem 2rem;
}

.custom-logo img {
  transition: transform 0.3s ease;
}

.custom-logo img:hover {
  transform: scale(1.05);
}

.custom-nav-links .nav-link {
  font-weight: 500;
  color: #333 !important;
  padding: 0.8rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.custom-nav-links .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 4px;
  background: #007b5e;
  transition: width 0.3s ease;
}

.custom-nav-links .nav-link:hover::after,
.custom-nav-links .nav-link.active::after {
  width: 100%;
}

.custom-nav-links .nav-link:hover,
.custom-nav-links .nav-link.active {
  color: #007b5e !important;
}

.custom-dropdown {
  border-radius: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: none;
}

.custom-dropdown .dropdown-item {
  font-weight: 500;
  padding: 0.7rem 1rem;
  color: #444;
  transition: all 0.2s ease-in-out;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #007b5e;
  color: #fff;
}

.custom-contact-btn {
  background-color: #007b5e;
  color: #fff !important;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.custom-contact-btn:hover {
  background-color: #005c47;
  transform: translateY(-2px);
}

.custom-toggler {
  border: none;
  outline: none;
}

@media (max-width: 991px) {
  .custom-navbar {
    padding: 0.6rem 1rem;
  }

  .custom-contact-btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  .custom-nav-links {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
  }
}
/* ---------------------------
   🌿 Modern Header Redesign
----------------------------*/

.new-navbar {
  background-color: rgba(
    248,
    249,
    250,
    0.85
  ) !important; /* semi-transparent light grey */
  backdrop-filter: blur(12px); /* frosted glass effect */
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  padding: 0.6rem 1.5rem !important;
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Logo hover */
.new-navbar .navbar-brand img {
  transition: transform 0.3s ease;
}
.new-navbar .navbar-brand img:hover {
  transform: scale(1.05);
}

/* Nav links */
.new-navbar .nav-link {
  font-weight: 500;
  color: #333 !important;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 0.8rem 1.1rem !important;
  position: relative;
  transition: all 0.3s ease;
}

/* Active link */
.new-navbar .nav-link.active {
  color: #007b5e !important;
}
.new-navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #007b5e;
  left: 0;
  bottom: 6px;
  transition: width 0.3s ease;
}
.new-navbar .nav-link:hover::after,
.new-navbar .nav-link.active::after {
  width: 100%;
}

/* Dropdown styling */
.new-navbar .dropdown-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  margin-top: 0.5rem;
}
.new-navbar .dropdown-item {
  font-weight: 500;
  padding: 0.7rem 1.2rem;
  color: #444;
  transition: all 0.25s ease;
}
.new-navbar .dropdown-item:hover {
  background-color: #007b5e;
  color: #fff;
}

/* --- Simple & Elegant Contact Us Button --- */
.new-contact-btn {
  background-color: transparent;
  color: #007b5e !important;
  border: 2px solid #007b5e;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  padding: 0.6rem 1.4rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.new-contact-btn:hover {
  background-color: #aec8a4;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .new-contact-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 1rem;
  }
}

/* ✅ Responsive fixes */
@media (max-width: 991px) {
  .new-navbar {
    padding: 0.8rem 1rem !important;
  }

  .new-navbar .navbar-collapse {
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 0.5rem;
    padding: 1rem;
  }

  .new-navbar .nav-link {
    text-align: center;
    padding: 0.8rem !important;
    display: block;
  }

  .new-contact-btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}
/* ======================================================
   🌟 SL Service Carousel — Final Clean Styling
====================================================== */

.sl-service-carousel {
  position: relative;
  padding: 0 50px;
  overflow: visible !important;
}

/* Service Card */
.sl-service-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sl-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #aec8a4;
}

/* SVG Icons */
.sl-service-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.sl-service-item:hover .sl-service-icon {
  transform: scale(1.05);
  filter: brightness(0) saturate(100%) invert(39%) sepia(74%) saturate(527%)
    hue-rotate(122deg) brightness(96%) contrast(90%);
}

/* Title & Text */
.sl-service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.sl-service-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  min-height: 80px;
}

/* Read More link */
.sl-service-link {
  display: inline-block;
  color: #aec8a4;
  font-weight: 600;
  margin-top: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.sl-service-link:hover {
  color: #00795d;
}

/* Owl Carousel Arrows */
.sl-service-carousel .owl-nav {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}

.sl-service-carousel .owl-nav button {
  pointer-events: all;
  cursor: pointer;
  background: #fff !important;
  border: 1px solid #ccc !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-service-carousel .owl-nav button span {
  font-size: 22px;
  color: #0a7c5f;
  line-height: 1;
}

.sl-service-carousel .owl-nav button:hover {
  background: #0a7c5f !important;
  border-color: #0a7c5f !important;
}

.sl-service-carousel .owl-nav button:hover span {
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .sl-service-carousel {
    padding: 0 25px;
  }

  .sl-service-icon {
    width: 55px;
    height: 55px;
  }
}
/* ==========================================================
   🌟 Header Carousel Styling — Modern Design (Matches Services)
========================================================== */

.header-carousel {
  position: relative;
  overflow: hidden;
}

.header-carousel .owl-item img {
  height: 100vh;
  object-fit: cover;
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
}

.header-carousel .owl-nav button {
  pointer-events: all;
  background: #fff !important;
  border: 1px solid #ccc !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-nav button span {
  font-size: 22px;
  color: #0a7c5f;
  line-height: 1;
}

.header-carousel .owl-nav button:hover {
  background: #0a7c5f !important;
  border-color: #0a7c5f !important;
}

.header-carousel .owl-nav button:hover span {
  color: #fff;
}

/* Dots styling */
.header-carousel .owl-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.header-carousel .owl-dot {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s;
}

.header-carousel .owl-dot.active,
.header-carousel .owl-dot:hover {
  background: #aec8a4;
  border-color: #aec8a4;
}
/* ==========================================
   🌟 Hero Carousel Text Styling — Final Version
========================================== */

.header-carousel h5 {
  color: #aec8a4; /* subtle brand green highlight */
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.header-carousel h1 {
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
  font-weight: 800;
}

.header-carousel p {
  color: #f1f1f1;
  max-width: 850px;
  margin: 0 auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* Make buttons stand out more */
.header-carousel .btn-success {
  background-color: #aec8a4;
  border: none;
  transition: all 0.3s ease;
}

.header-carousel .btn-success:hover {
  background-color: #00795d;
  transform: translateY(-2px);
}

.header-carousel .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}

.header-carousel .btn-outline-light:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* ✨ Simple fade + upward motion for smooth text reveal */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-carousel .animated {
  animation: fadeUp 1.2s ease forwards;
}
/* ==========================================
   ✅ Fixed Modern Testimonial Image Styling
========================================== */

.modern-t-img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  background: #fff;
  padding: 3px;
  border: 2px solid #aec8a4;
  display: block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.modern-t-item img.img-fluid {
  border-radius: 50%;
  object-fit: cover;
  width: 95px !important;
  height: 95px !important;
  border: 2px solid #aec8a4;
  padding: 3px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Make layout consistent between your and my structure */
.modern-t-item .testimonial-text {
  padding: 0;
}

.modern-t-item h5,
.modern-t-item .modern-t-name {
  font-weight: 700;
  color: #222;
  margin-top: 10px;
}

.modern-t-item p {
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .modern-t-item {
    padding: 40px 25px;
  }
  .modern-t-text {
    font-size: 0.9rem;
  }
}
/* --- Modern Spinner Styles --- */
.loader-wrapper {
  z-index: 1050;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
  text-align: center;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Optional glow animation */
.spinner-border {
  animation: spinGlow 1.2s linear infinite;
}

@keyframes spinGlow {
  0% {
    box-shadow: 0 0 0px #006b4f;
  }
  50% {
    box-shadow: 0 0 15px #006b4f;
  }
  100% {
    box-shadow: 0 0 0px #006b4f;
  }
}
/* --- Product Image Button Styles --- */
.product-btn-group {
  margin-top: 1rem;
}

.product-btn-outline {
  background: #fff;
  color: #006b4f;
  border: 2px solid #006b4f;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 22px;
  transition: all 0.3s ease;
}

.product-btn-outline:hover {
  background: #006b4f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 107, 79, 0.25);
}

.product-btn-fill {
  background: #006b4f;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 22px;
  border: 2px solid #006b4f;
  transition: all 0.3s ease;
}

.product-btn-fill:hover {
  background: #004d39;
  border-color: #004d39;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 77, 57, 0.25);
}

@media (max-width: 768px) {
  .product-btn-group {
    flex-direction: column;
    gap: 12px;
  }
}

/* Navbar Logo – balanced size and proportion */
.navbar-logo {
  height: 70px; /* Increased from 55px → 70px */
  width: auto; /* Maintain original logo proportions */
  object-fit: contain; /* Prevent distortion */
}

/* On smaller screens (tablets & mobile) */
@media (max-width: 992px) {
  .navbar-logo {
    height: 60px; /* Slightly smaller for tablets */
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    height: 50px; /* Compact size for mobile */
  }
}

/* Optional: add some spacing between logo and nav links */
.navbar-brand {
  margin-right: 25px;
}

/* Make navbar items vertically centered */
.navbar-nav .nav-link {
  padding-top: 18px;
  padding-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Active nav link style */
.navbar-nav .nav-link.active {
  color: #007c5a !important; /* match brand green */
  font-weight: 600;
  border-bottom: 3px solid #007c5a;
}

/* Contact Button Styling */
.new-contact-btn {
  border: 2px solid #007c5a;
  color: #007c5a;
  font-weight: 500;
  border-radius: 50px;
  padding: 10px 25px; /* increased for better proportion */
  transition: all 0.3s ease;
}

.new-contact-btn:hover {
  background-color: #aec8a4;
  color: #fff;
}
/* 🌿 About Page (with Mission & Vision Images) */
.about-page {
  background-color: #f9f9f6;
  font-family: "Open Sans", sans-serif;
  color: #333;
}

/* Headings */
.about-page .section-title h1 {
  color: #004b36;
  font-weight: 700;
  text-transform: capitalize;
  border-left: 5px solid #007c5a;
  padding-left: 12px;
}

/* Mission & Vision Cards */
.about-page .about-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-page .about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Image styling */
.about-page .about-img-wrap {
  flex: 1 1 40%;
  overflow: hidden;
}

.about-page .about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-page .about-card:hover img {
  transform: scale(1.05);
}

/* Content styling */
.about-page .about-card-content {
  flex: 1 1 60%;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-page .about-card-content h2 {
  font-weight: 700;
  color: #004b36;
}

.about-page .about-card-content p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Icon inside content */
.about-page .icon-wrap {
  background: #007c5a;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-page .about-card {
    flex-direction: column;
  }

  .about-page .about-img-wrap {
    height: 220px;
  }

  .about-page .about-card-content {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .about-page .about-card-content h2 {
    font-size: 1.3rem;
  }

  .about-page .about-card-content p {
    font-size: 0.95rem;
  }

  .about-page .icon-wrap {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* Custom grid fix: ensure 3 columns look aligned & balanced */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
