@import url("font-awesome.min.css");
body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}

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

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

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

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

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

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

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.heading_container h2::before {
  content: "";
  width: 40px;
  height: 7px;
  background-color: #f1db25;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.heading_container.heading_center h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*header section*/
.hero_area {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero_bg_box .img-box {
  width: 100%;
}

.hero_bg_box .img-box img {
  min-width: 100%;
  min-height: 100%;
}

.hero_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.35)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.35));
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding-bottom: 21px;
}

.hero_area.sub_pages {
  height: auto;
}

.header_section {
  padding: 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.header_top {
  background-color: #1c1c1c;
  padding: 15px 0;
}

.header_top .contact_link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_top .contact_link-container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 15px;
}

.header_top .contact_link-container a i {
  font-size: 20px;
  color: #f1db25;
  margin-right: 5px;
}

#navbarSupportedContent {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 0;
  padding: 35px 15px 10px 15px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  background-color: #1c1c1c;
}

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

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-brand span {
  font-weight: bold;
  color: #ffffff;
  font-size: 24px;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 32px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 15px;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  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: #ffffff;
  border-radius: 15px;
  top: -10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/

/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .detail-box {
  width: 100%;
  margin: 0 auto;
}

.slider_section .detail-box h1 {
  text-transform: uppercase;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 600;
}

.slider_section .detail-box h1 span {
  color: #f1db25;
}

.slider_section .detail-box p {
  margin-top: 25px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.slider_section .detail-box .btn-box a {
  width: 180px;
  text-align: center;
  margin: 5px;
}

.slider_section .detail-box .btn-box .btn-1 {
  display: inline-block;
  padding: 10px 35px;
  background-color: #ffffff;
  color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.slider_section .detail-box .btn-box .btn-1:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.slider_section .detail-box .btn-box .btn-2 {
  display: inline-block;
  padding: 10px 35px;
  background-color: #f1db25;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.slider_section .detail-box .btn-box .btn-2:hover {
  background-color: transparent;
  border-color: #f1db25;
  color: #f1db25;
}

.slider_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .idicator_container {
  position: relative;
}

.slider_section ol.carousel-indicators {
  margin: 0;
  bottom: -75px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.slider_section ol.carousel-indicators li {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  background-color: #f27405;
  opacity: 1;
  border: none;
  margin: 0 4px;
}

.slider_section ol.carousel-indicators li.active {
  background-color: #ffffff;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img_container .img-box img {
  width: 100%;
}

.about_section .detail-box {
  background-color: #ffffff;
  padding: 45px 25px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  margin-left: -45px;
}

.about_section .detail-box p {
  margin-top: 5px;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img_container .img-box img {
  width: 100%;
}

.about_section .detail-box {
  background-color: #ffffff;
  padding: 45px 25px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  margin-left: -45px;
}

.about_section .detail-box p {
  margin-top: 5px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #ee5b05;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  border-color: #ee5b05;
  color: #ee5b05;
}
/* Service Section */
.service_section {
  background-color: #faf4f4;
  padding: 50px 0;
}

.service_section .heading_container {
  text-align: center;
  margin-bottom: 30px;
}

.service-box {
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.service-box:hover {
  transform: scale(1.05);
}

/* Service Images */
.service-box .img-box img {
  width: 100%;
  max-width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

/* Service Button */
.service-box a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ee5b05;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.service-box a:hover {
  background-color: white;
  color: #ee5b05;
  border: 1px solid #ee5b05;
}

/* Fleet Section */
.fleet_section {
  padding: 50px 0;
  background-color: #f8f9fa;
}

/* Fleet Title */
.fleet-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.fleet-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 30px;
}

s
/* Fleet Card */
.fleet-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 40px;
}

.fleet-card:hover {
  transform: scale(1.05);
}

/* Fleet Image */
.fleet-img {
  width: 100%;
  max-width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

/* Button Styling */
.fleet-card .btn-dark {
  background-color: #BD0451;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s ease;
}

.fleet-card .btn-dark:hover {
  background-color: #066726;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-box, .fleet-card {
    width: 90%;
    margin: 15px auto;
  }

  .service-box .img-box img, .fleet-img {
    max-width: 220px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .service-box, .fleet-card {
    width: 100%;
  }

  .service-box .img-box img, .fleet-img {
    max-width: 200px;
    height: 150px;
  }

  .fleet-card h4 {
    font-size: 1.4rem;
  }

  .fleet-card p {
    font-size: 0.95rem;
  }

  .fleet-card .btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}
.client_section {
  text-align: center;
  background-color: #1c1c1c;
  color: #ffffff;
  margin: 100px 0; /* Adds space outside the section */
  padding: 60px 0;
}

.client_section .heading_container h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.client_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #222;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.client_section .box .img-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.client_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client_section .box .detail-box h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.client_section .box .detail-box p {
  font-size: 16px;
  line-height: 1.5;
}

.client_section .box .detail-box span {
  font-size: 14px;
  color: #ccc;
  display: block;
  margin-top: 10px;
}

/* Carousel Controls */
.carousel_btn-box {
  display: flex;
  justify-content: center;
  margin-top: 20px 30px;
  padding: 20px;

}

.carousel-control-prev,
.carousel-control-next {
  background: rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #ee5b05;
}

/* Dots */
.carousel-indicators {
  position: absolute;
  bottom: -30px;
}

.carousel-indicators li {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 5px;
  border: none;
  cursor: pointer;
}

.carousel-indicators .active {
  background-color: #ee5b05;
}

/* Contact Section */
.contact_section {
  position: relative;
  padding: 20px 20px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image */
.contact_bg_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact_bg_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(35%);
  position: absolute;
}

/* Heading Section (Specific to Contact Form) */
.contact_section .heading_container {
  text-align: center;
  margin-bottom: 35px;
  color: white;
}

.contact_section .heading_container h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #f4f1ee;
}

.contact_section .heading_container p {
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  color: #f1f1f1;
}

/* Contact Form Container */
.contact_form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8); /* Increased Opacity */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}

.contact_form-wrapper:hover {
  transform: scale(1.02);
}

/* Form Fields */
.form-group {
  margin-bottom: 15px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  display: block;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #bbb;
  border-radius: 6px;
  background: rgba(249, 249, 249, 0.8); /* Adjusted Opacity */
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #f5f3f3;
  box-shadow: 0px 0px 8px rgba(238, 91, 5, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.9); /* Adjusted Opacity */
}

/* Button Styles */
.btn-box {
  text-align: center;
  margin-top: 15px;
}

button {
  background: linear-gradient(45deg, #ee5b05, #ff7700);
  color: #fff;
  font-size: 16px;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

button:hover {
  background: #222;
  transform: scale(1.08);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.team_section {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.team_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c;
  color: #ffffff;
  padding: 25px;
  text-align: center;
  margin-top: 20px;
  border-radius: 10px;
}

.team_section .text-box {
  width: 100%;
  padding: 15px;
}

.faq-section {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.faq-item h3 {
  margin-bottom: 5px;
}

.team_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.team_section .btn-box a {
  display: inline-block;
  padding: 12px 50px;
  background-color: #ee5b05;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-decoration: none;
}

.team_section .btn-box a:hover {
  background-color: transparent;
  border-color: #ee5b05;
  color: #ee5b05;
}

.core-values {
  margin-top: 60px;
  margin-bottom: 60px;
}

.core-values .box {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  padding: 30px;
}

.core-values .text-box h5 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.core-values .text-box p {
  font-size: 1rem;
  color: #333;
}

.core-values .text-box ul {
  list-style-type: none;
  padding-left: 0;
}

.core-values .text-box ul li {
  margin-bottom: 12px;
  color: #666;
}

@media (max-width: 768px) {
  .team_section .box {
    padding: 20px;
  }

  .team_section .btn-box a {
    padding: 10px 35px;
  }

  .faq-section {
    padding: 20px;
  }

  .core-values .box {
    padding: 20px;
  }

  .core-values .text-box h5 {
    font-size: 1.4rem;
  }

  .core-values .text-box p,
  .core-values .text-box ul li {
    font-size: 0.95rem;
  }
}


/*-----------------------------------*\
  #Preeloader
\*-----------------------------------*/

/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/* quote session */
.quote_section {
  padding: 20px 15px;  /* Increased horizontal padding for better spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 15vh; /* Reduced height */
}

.wrapper {
  max-width: 1600px;  /* Increased width */
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.title_container h2 {
  font-size: 20px;  /* Increased font size for title */
  font-weight: bold;
  text-transform: uppercase;
}

.title_container p {
  font-size: 14px;  /* Increased font size for better readability */
  margin-bottom: 12px;
}

.field_group {
  margin-bottom: 8px;
  text-align: left;
}

.field_group label {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 13px;  /* Slightly increased label font size */
}

.field_group input, .field_group select {
  width: 100%;  /* Ensure input width is 100% for responsiveness */
  max-width: 1600px;  /* Increased max width for input fields */
  padding: 5px 10px;  /* Reduced padding to decrease height */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  height: 28px;  /* Slightly reduced height */
}
/* Adjust submit button style */
#quote_submit_button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 8px 18px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

#quote_submit_button:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .wrapper {
    max-width: 95%;  /* Adjust wrapper width for medium screens */
  }
  .field_group input, .field_group select {
    width: 100%;  /* Ensure input fields are responsive */
  }
}

@media (max-width: 768px) {
  .quote_section {
    padding: 20px 10px;  /* Adjust padding for smaller screens */
  }
  .wrapper {
    max-width: 100%;  /* Full-width on small screens */
    padding: 15px;  /* Adjust padding */
  }
  .title_container h2 {
    font-size: 18px;  /* Slightly smaller font size for small screens */
  }
  .title_container p {
    font-size: 12px;  /* Smaller text for readability */
  }
  .field_group input, .field_group select {
    width: 100%;  /* Ensure inputs take full width on smaller screens */
    font-size: 14px;  /* Larger font size for input on smaller screens */
  }
  .button_wrapper button {
    width: 100%;  /* Full-width button on small screens */
    padding: 12px 20px;  /* Adjust padding */
    font-size: 16px;  /* Larger font size for buttons */
  }
}

@media (max-width: 480px) {
  .quote_section {
    padding: 15px 5px;  /* Reduce padding for very small screens */
  }
  .wrapper {
    padding: 10px;  /* Adjust padding for small screens */
  }
  .title_container h2 {
    font-size: 14px;  /* Even smaller text on very small screens */
  }
  .title_container p {
    font-size: 10px;  /* Smaller paragraph text */
  }
  .field_group input, .field_group select {
    width: 100%;  /* Ensure inputs take full width */
    font-size: 12px;  /* Smaller input font size */
  }
  .button_wrapper button {
    width: 100%;  /* Full-width button */
    padding: 10px 16px;  /* Adjust padding for buttons */
    font-size: 14px;  /* Standard font size for buttons */
  }
}

/*-----------------------------------*\
  #BACK TO TOP BUTTON
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px; /* Smooth rounded corners */
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3); /* Soft shadow effect */
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

/* Show button when active */
.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

/* Hover effect */
.back-top-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Ensure the icon is visible */
.back-top-btn i {
  font-size: 28px;
  color: white; /* Make sure icon color is white */
}


/* Company Overview Section */
.company-overview {
  padding: 50px 15px;
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
}

.company-overview .heading {
  margin-bottom: 40px;
  text-align: center;  /* Center align the heading text */
}

.company-overview .title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.company-overview .separator {
  height: 3px;
  width: 50px;
  background: #d90429;
  margin: 10px auto;
}

.company-overview .lead {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 500;
}

.company-overview .row {
  display: flex;
  justify-content: center; /* Center align content horizontally */
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px; /* Increase gap for better mobile spacing */
  margin-top: 30px;
}

.company-overview .content-box {
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  flex: 1 1 45%; /* Flexible layout */
  max-width: 45%;
  text-align: center;  /* Center-align content inside content box */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mission-box {
  background: #ffffff;
}

.vision-box {
  background: #e9ecef;
}

/* Hover Effect */
.company-overview .content-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.company-overview h2 {
  font-size: 22px;
  color: #d90429;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;  /* Center align the heading text */
}

.company-overview .list-group {
  padding: 0;
  list-style: none;
}

.company-overview .list-group-item {
  background: none;
  border: none;
  font-size: 15px;
  padding: 8px 0;
  color: #131313;
  display: flex;
  align-items: center;
  transition: color 0.3s, transform 0.3s;
  font-weight: 500;
  text-align: left;  /* Align list items to the left */
}

.company-overview .list-group-item:hover {
  color: #d90429;
  font-weight: bold;
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .company-overview .row {
      flex-direction: column;
      align-items: center;
      gap: 30px; /* Increase gap for better readability on mobile */
  }
  .company-overview .content-box {
      width: 90%;
      max-width: 90%;
  }
}

@media (max-width: 768px) {
  .company-overview {
      padding: 40px 10px;
  }
  .company-overview .lead {
      font-size: 16px;
      line-height: 1.6;
  }
  .company-overview h2 {
      font-size: 20px;
  }
  .company-overview .content-box {
      padding: 15px;
      width: 85%;
      max-width: 85%;
  }
}

@media (max-width: 576px) {
  .company-overview .content-box {
      width: 95%;
      padding: 12px;
      max-width: 100%;
  }
  .company-overview h2 {
      font-size: 18px;
  }
  .company-overview .list-group-item {
      font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .company-overview .col-md-6 {
      width: 100%;
  }
}

.highlight {
  color: #d7006d;
  font-weight: bold;
}
.icon-check {
  color: #d7006d;
  margin-right: 5px;
}

/* Info Section Styling */
.info_section {
  background-color: #101010;
  color: #ffffff;
  padding: 50px 0;
}

.info_section .container {
  max-width: 1200px;
  padding: 0 20px;
}

.info_section h5 {
  font-size: 20px;
  margin-bottom: 15px;
}

.info_section .info_logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.info_section .info_logo .navbar-brand {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}

.info_section .info_links ul {
  padding: 0;
  list-style: none;
}

.info_section .info_links ul li {
  margin-bottom: 8px;
}

.info_section .info_links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.info_section .info_links ul li a:hover {
  color: #ee5b05;
}

.info_section .info_contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info_section .info_contact a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info_section .info_contact a i {
  font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .info_section .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .info_section .info_logo,
  .info_section .info_links,
  .info_section .info_contact {
    align-items: center;
    text-align: center;
  }
}
