        /* Custom CSS for logo resizing */
        /* .row>* {
          width: auto !important;
        } */

        @charset "UTF-8";
.navigation {
  height: 70px;
  background: white;
}

.brand {
  position: absolute;
  /* padding-left: 20px; */
  float: left;
  line-height: 68px;
  /* text-transform: uppercase; */
  /* font-size: 1.4em; */
}
.brand a,
.brand a:visited {
  color: #ffffff;
  text-decoration: none;
}

.nav-container {
  max-width: 88%;
  margin: 0 auto;
}

nav {
  float: right;
  /* display: flex; */
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: white;
  display: flex;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  background: white;
  color: #1e1e1e;
  text-decoration: none;
}
nav ul li a:hover,
nav ul li a:visited:hover {
  background: #ffffff;
  color: #5892ff;
  text-decoration: none;
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}
nav ul li ul li {
  min-width: 190px;
}
.line{
  background-color: red;
}

nav ul li ul li a {
  padding: 10px;
  line-height: 12px;
  font-size: 14px;
  text-decoration: none;
}

.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  /* border: 1px solid rgb(0, 0, 0); */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
 
}

.nav-dropdown li {
  border-bottom: 1px solid rgb(214, 214, 214);
  text-decoration: none;
 
}


/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: white;
  height: 60px;
  width: 69px;
}

@media only screen and (max-width: 798px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 55px 0px 19px;
    position: absolute;
    left: 0;
    right: 0;
    /* bottom: 0; */
    top: 10px;
    z-index: 99;
    /* height: 100%; */
  }
  nav ul {
    display: none;
    padding-bottom: 17px;
    box-shadow: 0px 5px 5px #1818184d;
  }
  nav ul li {
    float: none;
    /* text-decoration: underline; */
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
    text-decoration: none;
  }
  nav ul li ul li a {
    padding-left: 30px;
    text-decoration: none;
  }

  .nav-dropdown {
    position: static;
  }
}
@media screen and (min-width: 799px) {
  .nav-list {
    /* display: block !important; */
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 35px;
  background: #1e1e1e;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}



        .logo {
          max-width: 100%; /* Reduced by 10% from the original size */
          height: 55px;
      }
      .navbar {
          align-items: center !important; /* Ensure vertical alignment of logo and menu */
      }
      .navbar-brand {
          margin-right: 15px; /* Add some space between logo and menu */
      }
      .navbar-nav .nav-item {
          margin-left: 5px; /* Space between menu items */
      }
      .navbar-nav .nav-link {
          padding-left: 0.5rem !important;
          padding-right: 0.5rem !important;
          font-family: "Source Sans Pro", sans-serif;
          font-size: 1.1rem;
          font-weight: 600;
      }
      .navbar-nav .nav-link:hover,  .navbar-nav .nav-link i:hover{
        color: #5991ff;
      }
      .menu-separator {
          margin: 0 4px;
          color: #ccc; /* Light grey separator */
          display: none;
      }
      .enquiry-button {
          margin-left: auto; /* Push the button to the right */
      }

      .navbar-nav .nav-item{
          display: flex;
      }

      .carousel-item img {
          width: 100%; /* Make images fill the carousel container */
          height: auto;
          object-fit: cover; /* Maintain aspect ratio and cover the area */
          max-height: 400px; /* Adjust as needed */
      }
      .carousel-caption {
          background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
          padding: 15px;
          border-radius: 5px;
      }

      .carousel-caption p{
        color: white;
      }


      /* You might need to adjust these styles based on your overall theme and other CSS rules. */

.about-section-two {
  padding-top: 0; /* Adjust top padding as needed */
  padding-bottom: 80px; /* Adjust bottom padding as needed */
}

.about-section-two .auto-container {
  max-width: 1200px; /* Adjust as per your container width */
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.about-section-two .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.about-section-two .content-column {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .about-section-two .content-column {
    flex: 0 0 auto;
    width: 58.33333333%; /* col-lg-7 */
  }
}
@media (min-width: 1200px) {
  .about-section-two .content-column {
    flex: 0 0 auto;
    width: 50%; /* col-xl-6 */
  }
}
.about-section-two .content-column.order-2 {
  order: 2;
}
@media (max-width: 991px) {
  .about-section-two .content-column.order-2 {
    order: 0;
  }
}

.about-section-two .content-column .inner-column {
  position: relative;
  padding-right: 30px; /* Adjust spacing as needed */
}
@media (max-width: 767px) {
  .about-section-two .content-column .inner-column {
    padding-right: 0;
  }
}

.about-section-two .sec-title {
  margin-bottom: 35px;
}

.about-section-two .sec-title .sub-title {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #1a508b; /* Example color - adjust as needed */
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-section-two .sec-title h2 {
  position: relative;
  font-size: 36px;
  line-height: 1.3;
  color: #222; /* Example color - adjust as needed */
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .about-section-two .sec-title h2 {
    font-size: 28px;
  }
}

.about-section-two .sec-title .text {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #777; /* Example color - adjust as needed */
  margin-bottom: 0;
}

.about-section-two .content-box {
  position: relative;
  margin-top: 40px;
}

.about-section-two .exp-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 25px;
  background-color: #f9f9f9; /* Example background color */
  border-radius: 5px;
}

.about-section-two .exp-box .icon {
  font-size: 40px;
  color: #1a508b; /* Example icon color */
  margin-right: 20px;
}

.about-section-two .exp-box .count {
  font-size: 30px;
  color: #222; /* Example color */
  font-weight: 700;
  line-height: 1;
  margin-right: 5px;
}

.about-section-two .exp-box .text {
  font-size: 16px;
  color: #555; /* Example color */
  font-weight: 500;
}

.about-section-two .list-style-two {
  position: relative;
  margin-bottom: 30px;
}

.about-section-two .list-style-two li {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: #555; /* Example color */
  padding-left: 25px;
  margin-bottom: 8px;
}

.about-section-two .list-style-two li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  color: #1a508b; /* Example icon color */
}

.about-section-two .info-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: #f2f2f2; /* Example background color */
  padding: 15px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-section-two .info-btn:hover {
  background-color: #e0e0e0; /* Example hover color */
}

.about-section-two .info-btn .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff; /* Example icon background */
  margin-right: 15px;
}

.about-section-two .info-btn .icon img {
  max-width: 20px;
  max-height: 20px;
}

.about-section-two .info-btn .title {
  display: block;
  font-size: 12px;
  color: #777; /* Example color */
  margin-bottom: 2px;
}

.about-section-two .info-btn .text {
  display: block;
  font-size: 18px;
  color: #222; /* Example color */
  font-weight: 600;
}

.about-section-two .image-column {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .about-section-two .image-column {
    flex: 0 0 auto;
    width: 41.66666667%; /* col-lg-5 */
  }
}
@media (min-width: 1200px) {
  .about-section-two .image-column {
    flex: 0 0 auto;
    width: 50%; /* col-xl-6 */
  }
}

.about-section-two .image-column .inner-column {
  position: relative;
}

.about-section-two .image-column figure {
  position: relative;
  overflow: hidden;
  border-radius: 10px; /* Example border radius */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Example shadow */
}

.about-section-two .image-column .image-1 {
  margin-bottom: 30px;
}

.about-section-two .image-column .image-1 img,
.about-section-two .image-column .image-2 img {
  width: 100%;
  display: block;
}

.about-section-two .image-column .abs-image {
  position: absolute;
  bottom: 0;
  left: 30px; /* Adjust position as needed */
  z-index: 1;
}
@media (max-width: 991px) {
  .about-section-two .image-column .abs-image {
    display: none;
  }
}

.about-section-two .image-column .abs-image img {
  max-width: 150px; /* Adjust size as needed */
}

/* Optional: Styles for the overlay animation (if you have it defined elsewhere) */
.overlay-anim::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* Example overlay color */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay-anim:hover::before {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .about-section-two .content-column {
    margin-bottom: 50px;
  }
  .about-section-two .content-column .inner-column {
    padding-right: 0;
  }
}

.navbar-brand{
  width: 7rem;
}

.image-box .icon{
  display: none !important;
}

.tobBar{
  color: white;
  background-color: #ff694b;
  text-align: center;
  padding: 4px;
  font-size: 15px;
}

.sideMenuToggle {
  display: block;

}

.dropdown-divider {
  margin: 2px 0px !important;
}

.dropdown-item{
  font-size: 13px !important;
}

@media only screen and (max-width: 599px) {
  .enquiryBox {
    padding-left: 0 !important;
    padding-top: 1rem;
}
  .tobBar{
    font-size: 0.8rem;
  }

  .sideMenuToggle {
    display: none;
    position: absolute;
    background: white;
    width: 100%;
    left: 0;
    right: 0;
    top: 73px;
    height: 30rem;
    z-index: 9;
    bottom: 0;
    overflow-y: auto;
  }
  .service-block-two .lower-content {
    padding: 8px 8px 8px !important;
}

.service-block-two .lower-content .text {
    position: relative;
    font-size: 13px !important;
    line-height: 16px !important;
    margin-bottom: 10px;
}
.enquiryBox {
  padding-left: 0;
  background: #f3f3f3;
  width: 100% !important;
  text-align: center;
  /* display: flex
; */
  /* justify-content: center; */
  /* align-items: center; */
  padding-bottom: 28px;


}
}

.enquiryBox{
  padding-left: 0;
  background: #f3f3f3;
  width: 16rem;
  text-align: center;
}

.btn-info{
  background-color: #cce8ff !important;
}
.bigFont{
  font-size: 2rem !important;
}

.testiIcon{
  margin-right: 10px;
  width: 40px !important;
  height: 40px !important;
  /* padding-right: 10px; */
  margin-top: 11px;
  border: 1px solid lightgray;
  border-radius: 100%;
  text-align: center;
}

@media (max-width: 576px) {
  #certificationsCarousel img {
      max-height: 100px;
      padding: 5px;
  }
}