/* ========= Header Styles ========= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  padding: 10px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
header.sticky {
  background-color:#000000a8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Hide Bootstrap default collapse behavior */
.navbar-collapse {
  display: none !important;
}

/* Always show the hamburger */
.custom-navbar .custom-toggler {
  display: block;
  border: none;
  background: transparent;
}
.navbar-toggler-icon{
    background-image: none !important;
}
.navbar-toggler-icon i{
    font-size: 24px;
    color: #fff;
}
/* Fullscreen Slide Menu */
.slide-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  /* background-color: #111; */
  background-image: url(../image/banner01.png);
  background-size: cover;
  background-position: bottom center;
  color: white;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  overflow-y: auto;
}
.slide-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* black overlay with 50% opacity */
    z-index: 1;
    pointer-events: none;
}
.slide-menu > .slide-inner {
    position: relative;
    z-index: 2;
}
.slide-menu.show {
  transform: translateY(0%);
}

.slide-menu .nav-link {
  color: white;
  font-size: 1.5rem;
  margin: 1rem 0;
  display: block;
  transition: color 0.3s;
}

.slide-menu .nav-link:hover {
  color: var(--highlight-color, #7CDA24);
}
.slide-inner {
  height: 100%;
  overflow-y: auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;             
  -ms-overflow-style: none;
  max-width: 800px !important;
}
.slide-inner::-webkit-scrollbar {
  display: none;                     
}
.slide-header {
  position: relative;
  margin-bottom: 2rem;
}
.slide-logo {
  max-width: 150px;
}
.close-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    cursor: pointer;
}

/* Slide Content Two Column */
.slide-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.slide-links .nav-link {
 font-size: 1.2rem;
    margin: 0;
    color: white;
    padding: 0;
    margin-bottom: 20px;
    line-height: 1;
}
.slide-links .nav-link:hover {
  color: var(--highlight-color, #7CDA24);
}

/* Contact Info Styling */
.slide-contact {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 2rem;
}
.slide-contact h5, .slide-contact h6 {
  color: white;
  font-weight: 500;
  margin-bottom: 20px;
}
.slide-contact p, .slide-contact a {
  color: white;
  font-size: 0.95rem;
  text-decoration: none;
}
.slide-contact a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons .social-icon {
  display: inline-block;
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  padding: 8px 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons .social-icon:hover {
  background-color: white;
  color: #111;
}

/* Footer */
.slide-footer {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.95rem;
}
.navbar-nav li{
  list-style: none;
  padding: 0;
}
.navbar-nav li:before{
  display: none;
}
.solution-box {
  padding: 30px 20px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  gap: 20px;
  transition: .3s;
}
.solution-box:hover{
  background: #070707;
    /* transform: translatey(10px); */
    border-radius: 60% 40% 40% 20%;
}
.solution-icon {
  font-size: 32px;
  color: #28a745;
  margin-bottom: 15px;
  /* width: calc(20% - 20px/2); */
}
.solution-content{
  /* width: calc(80% - 20px/2); */
}
.solution-title {
  font-weight: 700;
  color: #31bc19;
  font-family: var(--heading-font);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.solution-text {
  font-size: 14px;
  font-family: var(--heading-font);
  line-height: 1.6;
  color: #fff;
}
.solution-section a{
  text-decoration: none;
  color: currentColor;
}
.testimonial-carousel .testimonial-item {
  min-height: 300px;
}
.testimonial-item .text-success i{
  color: #31bc19;
}

/* Responsive Fixes */
@media (max-width: 767px) {
  .slide-contact {
    border-left: none;
    margin-top: 2rem;
    padding-left: calc(var(--bs-gutter-x) * .5);
  }
  .close-btn{
    top: 10px;
    right: 10px;
  }
}






.carousel-item.active .hero-img {
  animation: zoomInOut 16s ease-in-out infinite;
}

@keyframes zoomInOut {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}




.contact-section {
    padding: 50px 0;
}

.section-title {
    color: #31BC19; 
    font-family: "Roboto", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 50%;
    overflow: hidden; 
    width: 100%; 
    padding-bottom: 100%;
    position: relative;
    background-color: #f0f0f0; 
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info-item i {
    color: #ffffff; 
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px; 
}

.contact-info-item span,
.contact-info-item a {
    color: #ffffff;
    text-decoration: none;
    /* font-weight: bold; */
}

.contact-info-item a:hover {
    text-decoration: none;
    color: #f2f2f2;
    /* font-weight: bold; */
}

.social-icons {
    margin-top: 20px;
    text-align: center;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #31BC19; 
}
.contact-details-for h4{
  color: #ECECEC;
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}
.contact-map-for .social-icons a{
  font-size:1.4rem;
  text-decoration: none;
}
/* Responsive adjustments */
@media (max-width: 767.98px) {
    .contact-section {
        padding: 30px 0;
    }
    .section-title {
        text-align: center;
        margin-bottom: 20px;
    }
    .map-container {
        width: 70%; 
        padding-bottom: 70%;
        margin: 0 auto 30px auto; 
    }
    .contact-info-item {
        justify-content: center; 
        text-align: center;
        flex-direction: column;
    }
    .contact-info-item i {
        margin-right: 0;
        margin-bottom: 5px;
    }
}


.contact-form-section form p{
    margin : 0 !important;
}

.contact-form-section {
        max-width: 767px;
        width: 100%;
            margin: auto;
        }
        .contact-form-section .form-control{
          background: #fff;
    border: none;
    color: #000;
    border-radius: 0;
    padding: 8px 15px;
    font-size: 14px;
        }
       .contact-form-section .form-group-row{
        gap: 15px;
        margin-bottom: 15px !important;
       }
        .contact-form-section h2 {
                color: #FFFFFF;
    font-family: "Roboto", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
        }

        .form-control {
            background-color: #ffffff; /* White background for input fields */
            color: #000000; /* Black text color for input */
            border: 1px solid #ced4da; /* Default Bootstrap border */
            border-radius: 0.25rem; /* Slightly rounded corners */
            padding: 12px 15px; /* Adjust padding for input fields */
            height: auto; /* Allow height to adjust for content */
            font-size: 1rem;
        }

        .form-control::placeholder {
            color: #6c757d; /* Placeholder color */
        }

        .form-control:focus {
            border-color: #6cbf2f; /* Green border on focus */
            box-shadow: 0 0 0 0.25rem rgba(108, 191, 47, 0.25); /* Green shadow on focus */
            background-color: #ffffff; /* Keep background white on focus */
            color: #000000; /* Keep text black on focus */
        }

        textarea.form-control {
            min-height: 120px; /* Minimum height for textarea */
            resize: vertical; /* Allow vertical resizing */
        }

        .btn-submit {
            background-color: #6cbf2f; /* Green button color */
            color: #ffffff; /* White text on button */
            border: none;
            padding: 12px 30px; /* Padding for the button */
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 0.25rem;
            transition: background-color 0.3s ease;
        }

        .btn-submit:hover {
            background-color: #5aa12a; /* Slightly darker green on hover */
            color: #ffffff;
        }

        .mb-4 {
            margin-bottom: 1.5rem !important; /* Standard Bootstrap spacing */
        }

        /* Responsive adjustments for input fields */
        @media (min-width: 768px) {
            .form-group-row {
                display: flex;
                gap: 20px; /* Space between side-by-side inputs */
            }
            .form-group-row > div {
                flex: 1; /* Each input takes equal width */
            }
        }



        .nav-tabs{
          border: none !important;
        }
        .devider-pipe{
          border-right: 1px solid #fff !important;
          border-radius: 0 !important;
        }
        .nav-item{
          list-style: none;
          padding: 0 !important;
        }
        .nav-item:before{
          display: none;
        }
        .nav-tabs .nav-link.active {
      color: #31BC19;
      /* border-color: transparent transparent #4CAF50 transparent; */
      background-color: transparent;
    }
    .nav-tabs .nav-link {
      color: #fff;
      border: none;
      font-family: "Roboto", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px;
    }
    .image-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }
    .image-grid img {
      width: 100%;
      display: block;
      border-radius: 5px;
    }
    .image-title {
      text-align: center;
      margin-top: 10px;
      font-weight: bold;
    }


body.static header {
    position: static;
    background: #000;
}
.fifty-fifty-section {
  /* padding: 60px 0; */
}

.fifty-fifty-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.fifty-fifty-section .row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.fifty-fifty-section .col {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 0;
}
.content-row{
  display: flex;
  flex-direction: column;
}
.left-content {
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-top: 30px !important;
}
.left-content h1{
  color: #7CDA24;
  font-family: "Roboto", Sans-serif;
  font-size: 33px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #7CDA24;
  line-height: 1;
  letter-spacing: 0;
}
.right-image {
  display: flex;
  justify-content: flex-end;
}

.right-image img {
  max-width: 100%;
  height: auto;
}
.content-container p{
    text-align: left;
    color: #FFFFFF;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;

}
.button-container{
   display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    align-items: center;
}
.button-container .button {
    font-family: "Roboto", Sans-serif;
    font-size: 13px;
    font-weight: 500;
    fill: #000000;
    color: #000000;
    background-color: #7CDA24;
    border-style: solid;
    border-width: 0px 0px 4px 0px;
    border-color: #2A5501;
    border-radius: 50px 50px 50px 50px;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
    text-align: center;
    transition: all .3s;
  }
  .button-container .button:hover{
    background-color: #5BA516;
    border-color: #2A5501;

  }
  .button-container .arrow {
    margin-left: 10px;
  }
  body,html {
    overflow-x: hidden;
  }
.insight-title{
    color: #31BC19;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
    margin-top: 12px;
}
.insight-item a{
      text-decoration: none !important;
}
.insight-img{
    overflow: hidden;
}
.insight-img img{
      transition: .7s;
}
.insight-img:hover img{
      transform: scale(1.1);
}
.youtube-wrapper {
    max-width: 992px;
    margin: auto;
    height: 320px !important;
}
.youtube-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.insight-img {
    overflow: hidden;
    width: 100%;
    height: 180px;
}
.insight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.owl-dots {
  display: flex !important;
  justify-content: center;
  margin-top: 20px; 
  position: relative;
  padding: 0;
}
.owl-dots.disabled {
    display: none !important;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #555655 !important;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}

.owl-dots .owl-dot.active {
  background-color: #31BC19 !important;
}
.service-card a
 {
    color: inherit;
    text-decoration: none;
}
@media (min-width: 992px){
  .content-row{
    gap: 0px;
    flex-direction: row;
  }
}
@media (min-width: 1440px){
  
  .left-content {
    padding-left: 12% !important;
    padding-right: 150px !important;
    padding-top: 40px !important;
  }
}