/********** Template CSS **********/
:root {
    --primary: #0b6937;
    --secondary: #F57E57;
    --light: #eff1f0;
    --dark: #091E3E;
}
body{
    background-image: url('../img/page-bg.png');
    background-size: contain;
}
.about{
    padding: 80px;
    background-image: url('../img/why-mango.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

p{
    text-align: justify;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

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

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#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;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.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,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.logo-img{
    height: 100px;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .85);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}



@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.carousel-item-content {
    position: relative;
    /*background-image: url("../img/bg.png");*/
    background-color: #eff1f0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-content {
    margin-top: 20%;
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 30px 10px;
    text-align: left;
}

.inner-content img {
    height: 400px;
}

.slide-heading {
    font-size: 56px;
}



.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: rgb(11 105 55);
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

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

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background:url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgb(254 95 3);
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: #fe5f03;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

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

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}
.feature-box {
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
    height: 80%;
    margin: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-color: #091E3E 10px solid;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
  }
  
  .icon {
    font-size: 3rem;
    margin-bottom: 1.1 rem;
    color: #2b8a3e;
  }
  @media (max-width: 768px) {
    .feature-box {
      margin-bottom: 2rem;
    }
  }  
 .chemical ul {
    list-style-type: none;
    padding: 0;
  }

  .chemical li {
    color: #999999;
    border: 1px solid #D6D6D6;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .original ul {
    list-style-type: none;
    padding: 0;
  }

  .original li {
    color: #F96C00;
    border: 1px solid #D6D6D6;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
  }
  
.product {
  border: 2px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius:15px;
}

.product h4 {
  font-size: 18px;
  background-color: #f2f2f2;
  text-transform: uppercase;
  padding: 10px;
  margin: 0;
}

#benefits-list{
    list-style:none;
    padding-left: 0;

}
 #benefits-list li {
        border: 1px solid #D6D6D6;
        border-radius: 10px;
        padding: 10px;
        cursor: pointer;
        margin-bottom: 10px;
}

#benefits-list li:hover {
        background-color: #FEEFD7;
}
.benefits-img {
    border-radius:20px;
}
.journey {
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .journey {
        margin-right: 0;
        margin: 20px;
    }
}
.journeys {
  counter-reset: journey-counter;
}

.journey {
  position: relative;
}

.journey::before {
  counter-increment: journey-counter;
  content: counter(journey-counter);
  position: absolute;
  top: 0;
  left: -10px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #333;
  color: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-weight: bold;
}
.harvesting-column {
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    border-radius:20px;
}
.carousel-item-content img {
    max-width: 100%;
    height: auto;
}


@media (max-width: 768px) {
    .carousel-item-content {
        display: flex;
        justify-content: center;
    }
}
/* Adjust the size and position of carousel control buttons on mobile devices */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
        font-size: 30px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        margin-top: 130px;
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 768px) {
    .about {
        padding:0px;
    }
}
/* Style for the modal */
.modal-dialog {
    max-width: 600px;
}

/* Style for the modal content */
.modal-content {
    padding: 20px;
    border-radius: 10px;
}

/* Style for the modal title */
.modal-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Style for the modal body */
.modal-body {
    flex-direction: column;
    align-items: center;
}

/* Style for the modal paragraph */
.modal-body p {
    margin-bottom: 15px;
}

/* Style for the modal image */
.modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
/* Adjust z-index for Bootstrap modal overlay */
.modal {
    z-index: 1050; /* Or a higher value if needed */
}
.company{
    padding:10px;
    border-radius:20px;
    background-color:#fff;
}
.two-line-ellipsis {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    line-height: 1.4; /* Adjust as needed */
}

