@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather+Sans:wght@400;700&display=swap");
body {
  font-family: "Lato", sans-serif;
  color: #040000;
}

.layout_padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 120px;
}

.layout_padding-bottom {
  padding-bottom: 120px;
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.heading_container h2 {
  font-weight: bold;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: "Merriweather Sans", sans-serif;
}
.heading_container p {
  margin-bottom: 0;
}
.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

h1,
h2 {
  font-family: "Merriweather Sans", sans-serif;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

/*header section*/
.hero_area {
  position: relative;
  background-color: #5eb4b3;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}
.header_section .header_top {
  padding: 15px 0;
  background-color: #000000;
}
.header_section .header_top .contact_nav {
  display: flex;
  justify-content: space-between;
}
.header_section .header_top .contact_nav a {
  color: #000000;
  background-color: #ffffff;
  border: 4px solid #f4d28c;  /* Changed from #16c8ba to #f4d28c */
  border-radius: 8px;
  padding: 5px 10px;
  margin: 0 5px;
  min-width: 165px;  /* Added minimum width to ensure text visibility */
  text-align: center;
}
.header_section .header_top .contact_nav a i {
  color: #1acdbe;  /* Changed from #f4d28c to #1acdbe */
}
.header_section .header_bottom {
  padding: 10px 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  color: #000000;
  font-weight: bold;
  font-size: 24px;
  font-weight: bold;
}
.navbar-brand span {
  color: #16c8ba;
  text-transform: uppercase;
}

.custom_nav-container {
  padding: 0;
  display: flex;
  justify-content: flex-end;
}
.custom_nav-container .navbar-nav {
  margin-left: auto;
}
/* Default state for all nav items */
.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 10px 25px;
    color: #000000;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Hover state for all nav items except FAQ */
.custom_nav-container .navbar-nav .nav-item:not(:last-child) .nav-link:hover {
    color: #b1f643;
    font-size: 18px;
}

/* Active state for all nav items */
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
    color: #b1f643;
    font-size: 18px;
}

/* FAQ specific styling - always black by default */
.custom_nav-container .navbar-nav .nav-item:last-child .nav-link {
    color: #000000;
}

/* Add hover effect to FAQ */
.custom_nav-container .navbar-nav .nav-item:last-child .nav-link:hover {
    color: #b1f643;
}

/* Active state for FAQ */
.custom_nav-container .navbar-nav .nav-item:last-child.active .nav-link {
    color: #b1f643;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
  margin-left: auto;
  float: right;
}
.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] {
  transform: rotate(360deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span {
  transform: rotate(45deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span::before, .custom_nav-container .navbar-toggler[aria-expanded=true] span::after {
  transform: rotate(90deg);
  top: 0;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] .s-1 {
  transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] .s-2 {
  display: none;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] .s-3 {
  transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}
.custom_nav-container .navbar-toggler[aria-expanded=false] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded=false] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded=false] .s-3 {
  transform: none;
}

.quote_btn-container {
  display: flex;
  align-items: center;
}
.quote_btn-container a {
  color: #ffffff;
  margin-right: 25px;
  text-transform: uppercase;
}
.quote_btn-container a span {
  margin-left: 5px;
}
.quote_btn-container a:hover {
  color: #63ac43;
}

/*end header section*/
/* slider section */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: bottom;
}
.slider_section .row {
  align-items: center;
}
.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}
.slider_section .detail-box {
  padding-bottom: 90px;
}
.slider_section .detail-box h1 {
  font-weight: bold;
  margin-bottom: 25px;
  color: #000112;
}
.slider_section .detail-box p {
  color: #444;
  font-size: 15px;
}
.slider_section .detail-box a {
  display: inline-block;
  font-family: "Merriweather Sans", sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: #ff0000;  /* Change to bright red */
  border: 1px solid #ff0000;  /* Match border color */
  border-radius: 15px;        /* Increase border radius for rounded corners */
  color: #ffffff;
  margin-top: 15px;
  font-size: 18px;            /* Increase text size */
  font-weight: 900;           /* Change from bold to 900 for maximum boldness */
  letter-spacing: 1px;        /* Add letter spacing for better readability */
}
.slider_section .detail-box a:hover {
  background-color: transparent;
  color: #ff0000;             /* Match hover color to new red */
}
.slider_section .img-box img {
  width: 90%;  /* Reduce further from 95% to 90% */
  border: 8px solid #ffffff;  /* Add thick white border */
  border-radius: 30px;        /* Increase border radius for heavier rounding */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);  /* Optional: subtle shadow for depth */
  margin-bottom: 30px;  /* Increase margin-bottom from 20px to 30px */
  margin-left: auto;    /* Center the image horizontally */
  margin-right: auto;
  display: block;       /* Ensure proper margin application */
}

.feature_section {
  transform: translateY(0%);
  margin-top: 20px;
}
.feature_section .feature_container {
  display: flex;
}
.feature_section .feature_container .box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Change from flex-start to center to vertically center content */
  text-align: center;
  margin: 0 10px;
  padding: 15px;
  height: 200px; /* Set fixed height */
  min-height: 200px;
  background-color: #ffffff;
  color: #009e8f;
  transition: all 0.3s;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
.feature_section .feature_container .box .img-box {
  width: 90px;
  height: 90px;
  margin-bottom: 15px; /* Add consistent spacing below image */
}
.feature_section .feature_container .box .img-box svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  fill: #6abd45;
  transition: all 0.3s;
}
.feature_section .feature_container .box .img-box svg path {
  fill: #6abd45;
}
.feature_section .feature_container .box .name {
  margin-top: 15px; /* Add consistent spacing */
  text-transform: uppercase;
  font-family: "Merriweather Sans", sans-serif;
  margin-bottom: 0;
  text-align: center;
  padding: 5px;
  width: 100%;
}
.feature_section .feature_container .box:hover {
  background-color: #86d20a;
  color: #ffffff;
}
.feature_section .feature_container .box:hover .img-box svg {
  fill: #ffffff;
}
.feature_section .feature_container .box:hover .img-box svg path {
  fill: #ffffff;
}

/* Make active state match default state */
.feature_section .feature_container .box.active {
  background-color: #ffffff;
  color: #009e8f;
}

/* Remove border for index.html about section by setting border to transparent */
.about_section .container {
  border: 8px solid transparent;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 30px;
}

/* Keep the border for about.html page */
body.about-page .about_section .container {
  border: 8px solid #5eb4b3;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 30px;
}

/* Adjust the background to ensure it doesn't interfere with the border */
.about_section {
  padding: 30px 0;  /* Adjust padding to account for container border */
}

.about_section .row {
  align-items: center;
}
.about_section .detail-box h2 {
  text-transform: uppercase;
  font-weight: bold;
}
.about_section .detail-box p {
  margin-top: 10px;
}
.about_section .detail-box a {
  margin-top: 15px;
  display: inline-block;
  font-family: "Merriweather Sans", sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: #16c8ba;
  border: 1px solid #16c8ba;
  border-radius: 15px;
  color: #ffffff;
}
.about_section .detail-box a:hover {
  background-color: #86d20a;
  border-color: #86d20a;
  color: #ffffff;
}
.about_section .img-box img {
  width: 100%;
  border-radius: 30px;  /* Increase from 15px to 30px to match other rounded elements */
}

.professional_section {
  background-color: #cbfd81;
}
.professional_section .row {
  align-items: center;
}
.professional_section .img-box img {
  width: 100%;
  border-radius: 30px;  /* Increase from 15px to 30px */
}
.professional_section .detail-box h2 {
  text-transform: uppercase;
  font-weight: bold;
  color: #16c8ba;
}
.professional_section .detail-box p {
  margin-top: 20px;
}
.professional_section .detail-box a {
  margin-top: 25px;
  display: inline-block;
  font-family: "Merriweather Sans", sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: #63ac43;
  border: 1px solid #63ac43;
  border-radius: 2px;
  color: #ffffff;
}
.professional_section .detail-box a:hover {
  background-color: transparent;
  color: #63ac43;
}

.service_section {
  position: relative;
  background-color: #5eb4b3;
}

/* Make "Our Services" text white */
.service_section .heading_container h2 {
  color: #ffffff;
}

.service_section .box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Add vertical centering */
  text-align: center;
  margin: 0 10px;
  margin-top: 30px;
  padding: 15px;
  height: 200px; /* Set fixed height */
  min-height: 200px;
  background-color: #ffffff;
  color: #009e8f;
  transition: all 0.3s;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}
.service_section .box .detail-box {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Add vertical centering to detail box */
}
.service_section .box .detail-box h5 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.service_section .box .detail-box p {
  margin-top: 10px;
  text-align: center;
  width: 100%;
}
.service_section .box:hover {
  background-color: #86d20a;
  color: #ffffff;
}
.service_section .box:hover {
  background-color: #86d20a;
  color: #ffffff;
}


/* Center the text content */
body.service-page .service_section .box .detail-box {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
  margin: 0;
}

body.service-page .service_section .box .detail-box h5 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-family: "Merriweather Sans", sans-serif;
}

body.service-page .service_section .box .detail-box p {
  margin-top: 10px;
  text-align: center;
  width: 100%;
  max-width: 90%;              /* Prevent text from stretching too wide */
}

/* Keep hover effect but adjust for new border */
body.service-page .service_section .box:hover {
  background-color: #86d20a;
  color: #ffffff;
  border-color: #86d20a;
}

.service_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
.service_section .btn-box a {
  display: inline-block;
  font-family: "Merriweather Sans", sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: #16c8ba;
  border: 1px solid #16c8ba;
  border-radius: 0;
  color: #ffffff;
}
.service_section .btn-box a:hover {
  background-color: transparent;
  color: #16c8ba;
}

.client_section .heading_container {
  align-items: center;
  text-align: center;
}
.client_section .box {
  margin: 15px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 25px;
}
.client_section .box .client_id {
  display: flex;
}
.client_section .box .client_id .img-box {
  width: 125px;
  min-width: 125px;
  margin-right: 15px;
}
.client_section .box .client_id .img-box img {
  width: 100%;
  border-radius: 100%;
}
.client_section .box .client_id .client_detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding-right: 25px;
}
.client_section .box .client_id .client_detail .client_info h6 {
  margin-bottom: 0;
}
.client_section .box .client_id .client_detail .client_info i {
  color: #84f8fc;
}
.client_section .box .client_text {
  margin-top: 20px;
}
.client_section .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.client_section .owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: #16c8ba;
  outline: none;
  margin: 0 20px;
  color: #ffffff;
}

.heading_container {
  margin-bottom: 30px;
}

/* Contact form input styling */
.contact_section input,
.contact_section textarea {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: #f3ce80;
  outline: none;
  color: #000000;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
}

.contact_section textarea.message-box {
  height: 120px;
  padding-top: 15px;
  resize: none;
}

.contact_section input::placeholder,
.contact_section textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
}
.contact_section button {
  border: none;
  display: inline-block;
  font-family: "Merriweather Sans", sans-serif;
  text-transform: uppercase;
  padding: 10px 55px;
  background-color: #16c8ba;
  border: 1px solid #16c8ba;
  border-radius: 15px;
  color: #ffffff;
  margin-top: 15px;
}
.contact_section button:hover {
  background-color: #86d20a;
  border-color: #86d20a;
  color: #ffffff;
}
.contact_section .map_container {
  height: 360px;
  width: 100%;
  overflow: hidden;
}
.contact_section .map_container .map {
  height: 100%;
  width: 100%;
  position: relative;
}
.contact_section .map_container .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.info_section {
  padding: 75px 0;
  background-color: #5eb4b3;
  text-align: center;
  color: #fff;
}
.info_section h4 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 25px;
}
.info_section .social-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}
.info_section .social-box .box {
  background-color: #ffffff;
  padding: 5px 15px;
  border-radius: 15px;  /* Add rounded corners */
}
.info_section a {
  margin: 0 5px;
  color: #5eb4b3;
}
.info_section a i {
  font-size: 18px;
}
.info_section a:hover {
  color: #4d9594;
}

.info_items a {
  position: relative;
}
.info_items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.info_items .item .img-box {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 80px;
  background-color: #86d20a;
  color: #ffffff;
  border: 3px solid #ffffff; /* Increase to 3px white border around the circles */
}
.info_items .item .img-box i {
  font-size: 24px;
  color: #ffffff;
}
.info_items .item p {
  margin-top: 25px;
  color: #fff;
  margin-bottom: 0;
  background-color: #5eb4b3;
}
.info_items .item:hover .img-box {
  background-color: #6ba808;
}

.info_items {
  position: relative;
}
.info_items::before {
  content: "";
  position: absolute;
  top: 65px;
  width: 75%;
  height: 3px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
}

/* footer section*/
.footer_section {
  background-color: #5eb4b3;
}

.footer_section p {
  margin: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
  border-top: 0.8px solid #ffffff;
}

.footer_section a {
  color: inherit;
}

/* end footer section*/
/* Mobile view adjustments */
@media (max-width: 576px) {
  .header_section .header_top .contact_nav a span {
    display: none;  /* Hide the text */
  }
  
  /* Right-align collapsed navbar menu */
  .custom_nav-container .navbar-collapse {
    text-align: right;
  }
  
  .custom_nav-container .navbar-nav {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    text-align: right;
    padding-right: 15px;
  }
  
  .header_section .header_top .contact_nav a {
    padding: 5px;  /* Reduce padding since we're only showing icons */
    width: 35px;   /* Set fixed width for icon containers */
    height: 35px;  /* Set fixed height for icon containers */
    min-width: unset;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .header_section .header_top .contact_nav a i {
    font-size: 18px;  /* Adjust icon size for better mobile visibility */
    margin-right: 0;
  }
}

/* Make boxes responsive on smaller screens */
@media (max-width: 768px) {
  .feature_section .feature_container .box,
  .service_section .box {
    height: auto;
    min-height: 200px;
  }
}

/* Optimized feature section styling for index.html page */
body.home-page .feature_section {
  margin: 0 !important; 
  padding: 0 !important;
}

body.home-page .feature_section .container {
  padding: 0 15px !important; /* Keep minimal horizontal container padding */
}

body.home-page .feature_section .feature_container {
  display: flex !important;
  justify-content: space-between !important;
  gap: 15px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.home-page .feature_section .feature_container .box {
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background-color: #ffffff !important;
  padding: 0 10px !important; /* horizontal padding only */
  margin: 0 !important;
  height: 50px !important; /* reduced to 50px */
  min-height: 50px !important;
  max-height: 50px !important;
  border-radius: 10px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}

body.home-page .feature_section .feature_container .box .name {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 14px !important;
  color: #009e8f !important;
  text-align: center !important;
  width: 100% !important;
  white-space: nowrap !important;
  display: block !important; /* changed to block for better control */
  height: 14px !important; /* match font size exactly */
}
/* Keep hover state only */
body.home-page .feature_section .feature_container .box:hover {
  background-color: #86d20a !important;
}

body.home-page .feature_section .feature_container .box:hover .name {
  color: #ffffff !important;
}

/* Active state should match default state */
body.home-page .feature_section .feature_container .box.active {
  background-color: #ffffff !important;
}

body.home-page .feature_section .feature_container .box.active .name {
  color: #009e8f !important;
}
}

/* Mobile optimization */
@media (max-width: 768px) {
  body.home-page .feature_section .feature_container {
    flex-direction: column !important;
    gap: 10px !important;
  }
  
  body.home-page .feature_section .feature_container .box {
    width: 100% !important;
    margin: 0 0 5px 0 !important;
  }
  
  body.home-page .feature_section .feature_container .box:last-child {
    margin-bottom: 0 !important;
  }
}
/*# sourceMappingURL=style.css.map */

/* Fix for small screens (135 x 685) - Hide logo when navbar is expanded */
@media (max-width: 685px) {
  /* Hide the logo when navbar is expanded */
  .custom_nav-container .navbar-toggler[aria-expanded=true] + .navbar-brand {
    display: none;
  }
  
  /* Ensure navbar-brand is visible by default */
  .navbar-brand {
    display: block;
  }
  
  /* Adjust navbar toggler position */
  .custom_nav-container .navbar-toggler {
    position: relative;
    z-index: 100;
    margin-left: auto;
  }
  
  /* Ensure the navbar menu appears below the header */
  .custom_nav-container .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #5eb4b3;
    z-index: 99;
    padding: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
