/********** Template CSS **********/
:root {
    --primary: #00B98E;
    --light: #F3F6F8;
    --dark: #0E2E50;
}


body {
    margin: 0;
    font-family: "Heebo", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    background-color: #F3F6F8;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* Couldn't Select Text in website 
 body {
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }*/
   html {
  scroll-behavior: smooth;
}     
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    /* margin-top: 6rem; */
    margin-bottom: 3rem;
}

.py-6 {
    padding-top: 15px;
    padding-bottom: 3rem;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    color:white;
   
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    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;
    border-radius: 50px;
    background-color:#30b60f;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 18px 0;
    color: black;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: black;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 18px 0;
    color: black;
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
    color: black;
}

.navbar .navbar-brand h1 {
    color: white;
}

.navbar .navbar-brand img {
    max-height: 84px;
    transition: .5s;
    width: 12rem;
    border-radius: 10px;
}

.sticky-top.navbar .navbar-brand img {
    max-height: 99px;
    max-width: 12rem;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: black;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar .navbar-brand h1 {
        color: white;
    }

    .navbar .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .2);
        z-index: 999;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        bottom: 10px;
        left: 0;
        background: #FFFFFF;
        opacity: 0;
        transition: .5s;
    }

    .sticky-top.navbar .navbar-nav .nav-link::before {
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        bottom: -1px;
        left: 0;
        opacity: 1;
    }

    .navbar .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: white;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
     margin-bottom: 2rem; 
    padding: 6rem 0 9rem 0;
    background: url(../img/shape-bottom.png) center bottom no-repeat; 
}
.hero-header1 {
     margin-bottom: 2rem; 
    padding: 6rem 0 9rem 0;
    background: url(../img/shape-bottom1.png) center bottom no-repeat; 
}
.page-header {
    margin-bottom: 6rem;
    padding: 12rem 0 6rem 0;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

    .page-header {
        padding: 6rem 0;
    }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(256, 256, 256, .5);
}


/*** Service ***/
.service-item {
  
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    box-shadow: none;
}

.service-item .service-icon,
.service-item .service-btn {
    margin: -1px 0 0 -1px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 5px 0;
    transition: .5s;
}

.service-item .service-btn {
    margin: -1px -1px 0 0;
    border-radius: 0 5px;
    opacity: 0;
}

.service-item:hover .service-btn {
    opacity: 1;
}


/*** Testimonial 
.testimonial-carousel .owl-item .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transform: scale(.85);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: none;
    border-color: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 50px;
    height: 50px;
}

.testimonial-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 30px;
    text-align: center;
    transition: .5s;
    z-index: 1;
}

.team-item::before,
.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: -1;
}

.team-item::after {
    top: auto;
    bottom: 0;
}

.team-item:hover::before,
.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item p {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover p {
    color: #FFFFFF;
}

.team-item img {
    padding: 15px;
    border: 1px solid var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
    .enquiry-section {
      max-width: 600px;
      margin: -23px auto;
      background: #f8f9fa;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .form-control, .form-select {
      border-radius: 10px;
    }
    .btn-custom {
      background-color: #007bff;
      color: white;
      border-radius: 10px;
    }
    .btn-custom:hover {
      background-color: #0056b3;
    }
    
 
 /* About Us  */
    .section-title {
      color: #1e7e34; 
      font-weight: 700;
    }

    .value-card {
      background-color: #f0fdf4; /* Light greenish bg */
      border-left: 6px solid;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .border-green { border-color: #28a745; } /* Bootstrap green */
    .border-red { border-color: #dc3545; }   /* Bootstrap red */
    .border-olive { border-color: #808000; } /* Custom olive */

    @media (max-width: 576px) {
      .value-card {
        padding: 15px;
      }
    }
    
    
    
        .hero-section {
      position: relative;
      background: url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df') no-repeat center center/cover;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 128, 0, 0.85); /* Green overlay */
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .btn-custom {
         color: white;
    background-color: #198754;
    border-color: #198754;
    }

    .btn-custom:hover {
      background-color: #e0e0e0;
    }
    
    
    
    .img-fluid {
    max-width: 100%;
    height: 85px;
}

.responsive-cell-block {
  min-height: 75px;
}


.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  line-height: 25px;
}



.quotes {
  position: absolute;
  top: -30px;
  right: 0px;
  left: 85%;
}

.responsive-container-block.bigContainer {
  justify-content: center;
}

.swiper-button-next {
  padding: 0 0 0 0;
  min-height: auto;
}

.swiper-button-prev {
  padding: 0 0 0 0;
  min-height: auto;
  top: 100%;
}

@media (max-width: 1024px) {
  .personimg {
    width: 50%;
    text-align: center;
  }

  .responsive-cell-block.wk-tab-1.wk-mobile-1.wk-desk-6.img-section.wk-ipadp-6 {
    display: block;
    flex-direction: row-reverse;
    text-align: center;
  }

  .responsive-cell-block.wk-desk-6.img-section.wk-ipadp-6.wk-tab-6.wk-mobile-12 {
    text-align: center;
  }

  .swiper-button-next.container-block {
    top: 100%;
    left: 45%;
  }

  .swiper-button-prev.container-block {
    top: 100%;
    left: 38%;
  }

  .card-section {
    overflow-x: visible;
    overflow-y: visible;
  }

  .quotes {
    left: 78%;
  }

  .swiper-button-next.container-block {
    left: 445.8px;
  }

  .swiper-button-prev.container-block {
    left: 356px;
  }

  .personimg.image-block {
    display: block;
    margin: 0 auto 0 auto;
  }

  .img-section {
    display: block;
  }
}


  .testimonial-section {
    padding: 60px 20px;
  }

  .testimonial-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
  }

  .testimonial-card.reverse {
    flex-direction: row-reverse;
  }

  .testimonial-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }

  .testimonial-text {
    flex: 1;
  }

  .testimonial-text .quote {
    font-size: 1.1rem;
    
    color: #333;
    margin-bottom: 15px;
  }

  .testimonial-text .name {
    font-weight: 600;
    font-size: 1.2rem;
    color: #007bff;
  }

  .testimonial-text .role {
    font-size: 0.95rem;
    color: #666;
  }

  @media (max-width: 768px) {
    .testimonial-card,
    .testimonial-card.reverse {
      flex-direction: column;
      text-align: center;
    }

    .testimonial-img {
      width: 150px;
      height: 150px;
      margin: 0 auto;
    }


.underline-center {
  display: inline-block !important;
  position: relative !important;
  text-align: center !important;
}

.underline-center::after {
  content: "" !important;
  position: absolute !important;
  bottom: -6px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 50% !important;
  height: 2px !important;
  background-color: red !important;
}
