html {
  padding: 0;
  margin: 0;
}
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* header css  */
.aboveheader {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 50px;
  background-color: rgb(97, 155, 220);
  width: 100%;
}
.aboveheader a {
  text-decoration: none;
  color: white;
}
.aboveheader i {
  margin: 0 10px 0 0px;
}
.wrapperheader {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
  gap: 20px;
}
.wrapperheader a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  margin: 0 15px 0 15px;
}
.headerbtn {
  color: white;
  background-color: rgb(97, 155, 220);
  font-size: 20px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  margin-left: 20px;
}
/* headercss end  */
/* bannercss */
.banner-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide-img.active {
  opacity: 1;
  z-index: 1;
}

.bannercontent {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
}

.bannercontentwrapper h1 {
  font-size: 40px;
  color: white;
  margin: 0;
  line-height: 1.3;
}

.bannerbutton {
  background-color: rgb(97, 155, 220);
  color: white;
  text-decoration: none;
  padding: 14px 26px;
  display: inline-block;
  margin-top: 20px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.bannerbutton:hover {
  background-color: rgb(77, 135, 200);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 10px;
}

.arrow svg {
  fill: white;
  width: 24px;
  height: 36px;
}

#prev {
  left: 20px;
}
#next {
  right: 20px;
}

.circle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.circle span {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
}

.circle span.active {
  background: rgb(97, 155, 220);
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .bannercontent {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    padding: 0 10px;
  }

  .bannercontentwrapper h1 {
    font-size: 22px;
  }

  .bannerbutton {
    font-size: 15px;
    padding: 12px 24px;
  }

  .arrow {
    display: none;
  }
}

/* bannercss  end*/
/* main css start  */
/* aboutcss start ? */
main {
  width: 80%;
  margin: 0 auto;
}
.about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about h2 {
  color: rgb(97, 155, 220);
  font-size: 40px;
}
.para {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 20px;
}

.missionandvision {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mission {
  display: flex;
  flex-direction: column;
  width: 45%;
  padding: 20px;
}
.mission h3 {
  color: rgb(97, 155, 220);
  font-size: 30px;
}
.mission p {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}

.vision {
  display: flex;
  flex-direction: column;
  width: 45%;
  padding: 20px;
}
.vision h3 {
  color: rgb(97, 155, 220);
  font-size: 30px;
}
.vision p {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}

.ourvalues {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.ourvalues h3 {
  color: rgb(97, 155, 220);
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
}

.boxes {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.box {
  height: 180px;
  width: 300px;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  padding: 10px;
}

.black {
  background-color: rgb(83, 98, 114);
  height: 8px;
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

.number {
  font-size: 30px;
  font-weight: 700;
  margin-top: 25px;
  color: #222;
}

.text {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* aboutcss end ? */
/* servicecss start ? */

.ourservice {
  text-align: center;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.ourservice h3 {
  font-size: 36px;
  color: #333;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.ourservice h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: rgb(97, 155, 220);
  margin: 10px auto 0;
}

.service1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: nowrap;
}

.service1 img {
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  height: 250px;
  width: 450px;
  margin-top: 30px;
}

.serviceupdate {
  max-width: 600px;
  text-align: left;
}

.servicehighlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.servicehighlight h3 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.servicehighlight h2 {
  font-size: 48px;
  font-weight: 500;
  color: rgb(97, 155, 220);
  opacity: 0.6;
}

.serviceupdate p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.serviceupdate a {
  color: rgb(97, 155, 220);
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.serviceupdate a:hover {
  color: #689f38;
}
/* Initial hidden state */
.service1 {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

/* When visible on scroll */
.service1.visible {
  opacity: 1;
  transform: translateY(0);
}

/* servicecss end ? */
/* sector we serve   */
.sector-container {
  text-align: center;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  max-width: 1300px;
  margin: auto;
}

.sector-container h3 {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.sector-container h3 span {
  color: rgb(97, 155, 220);
}

.sector-container h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: rgb(97, 155, 220);
  margin: 10px auto 0;
}

.slider {
  overflow: hidden;
  margin-top: 30px;
  position: relative;
}

.slides-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.slide {
  flex: 0 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  text-align: center;
}

/* Desktop - 3 slides */
@media (min-width: 1025px) {
  .slide {
    width: calc(100% / 3);
  }
}

/* Tablet - 2 slides */
@media (max-width: 1024px) and (min-width: 601px) {
  .slide {
    width: calc(100% / 2);
  }
}

/* Mobile - 1 slide */
@media (max-width: 600px) {
  .slide {
    width: 100%;
    padding: 0 10px;
  }
}

.slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.slide p {
  margin-top: 10px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  font-size: 16px;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.nav-btn {
  background-color: rgb(97, 155, 220);
  border: none;
  color: white;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-btn:hover {
  background-color: rgb(40, 68, 100);
}

/* sector we serve  end */

/* why choose us css start  */
.why-choose-us {
  padding: 60px 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
}

.why-choose-us h2 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 30px;
  position: relative;
}

.why-choose-us h2 span {
  color: rgb(97, 155, 220);
}

.why-choose-us h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: rgb(97, 155, 220);
  margin: 10px auto 0;
}

.why-boxes {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
}

.why-card {
  position: relative;
  background: rgb(37, 59, 85);
  width: 270px;
  padding: 30px 25px 25px;
  border-radius: 6px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.card-number {
  position: absolute;
  top: -105px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  color: transparent; /* no fill color */
  -webkit-text-stroke: 1.5px white; /* white border */
  font-family: "Arial", sans-serif; /* or your chosen font */
  opacity: 1;
  color: rgb(97, 155, 220);
}

.why-card img {
  height: 60px;
  width: 60px;
}

.why-card h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.why-card ul {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}
.card-img {
  height: 50px;
  width: 50px;
}
/* === Testimonial Section Styling === */
.team-section {
  padding: 60px 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.team-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.team-section h2 span {
  color: rgb(97, 155, 220);
}

.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 40px auto;
}

.slide-wrapper {
  display: flex;
  gap: 20px; /* spacing between cards */
  transition: transform 0.5s ease;
  width: 100%;
}

.slide-card {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  padding: 30px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slide-card p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}

.profile {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #000;
}

.profile h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.profile p {
  margin: 5px 0;
  font-size: 15px;
}

.social a img {
  height: 24px;
  width: 24px;
  margin-right: 10px;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: rgb(97, 155, 220);
}

/* === Mobile Responsive Fixes === */
@media (max-width: 768px) {
  .team-section {
    padding: 30px 10px;
  }

  .team-section h2 {
    font-size: 26px;
  }

  .slide-wrapper {
    gap: 0; /* remove gap between cards */
  }

  .slide-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 20px 15px;
    margin: 0 auto;
    border-radius: 10px;
  }

  .slide-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile img {
    margin-bottom: 10px;
  }

  .profile h3 {
    font-size: 18px;
  }

  .profile p {
    font-size: 14px;
  }

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

  .slider-container {
    max-width: 100%;
  }

  .dots {
    margin-bottom: 10px;
  }
}

/* testimonial css end */

.clients-section {
  padding: 60px 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.clients-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.clients-section h2 span {
  color: rgb(97, 155, 220);
  margin-left: 5px;
}

.client-slider-container {
  overflow: hidden;
  max-width: 1200px;
  margin: 40px auto;
}

.client-slider-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.client-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.client-slide img {
  width: 200px;
  height: auto;
}

.client-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.client-dots .dot {
  height: 10px;
  width: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.client-dots .dot.active {
  background-color: rgb(97, 155, 220);
}
/* BRAND CSS END  */

/* main css start end  */
/* FOOOTER CSS */
footer {
  display: flex;
  align-items: center;
  background-color: rgb(46, 67, 90);
  padding: 40px 0;
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 50px;
  width: 80%;
  margin: 0 auto;
}

.footer-wrapper h3 {
  color: white;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-wrapper h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: white;
}

.abouttruckit,
.fservices,
.quicklinks,
.contactusf {
  color: white;
  display: flex;
  flex-direction: column;
}

.servicessf a,
.quicklinks a,
.contactusf a {
  color: white;
  text-decoration: none;
  margin: 5px 0;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.servicessf a:hover,
.quicklinks a:hover,
.contactusf a:hover {
  color: rgb(96, 104, 113);
}

footer svg {
  height: 10px;
  width: 10px;
  margin-right: 6px;
  fill: white;
}
/* FOOOTER CSS END */

/* drop down css  */

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown a {
  color: black;
  text-decoration: none;
  /* padding: 10px 15px; */
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  flex-direction: column;
  border-radius: 4px;
}

.dropdown-content a {
  color: #333;
  padding: 12px 6px;
  text-decoration: none;
  display: block;
  font-size: 15px;
}

.dropdown-content a:hover {
  background-color: #f4f4f4;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* drop down css  */
.navigation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Full viewport height */
  background-color: #000; /* Black background as per screenshot */
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Prevent internal scroll here */
  padding: 0;
  display: none;
  margin: 0 auto;
}

.navigation-overlay.active {
  display: flex;
}

.navigation-overlay .content-wrapper {
  max-height: 100%;
  overflow-y: auto; /* Only scroll this part */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 20px;
  /*margin: 0 auto; */
  margin-right: 30px;
}

.menu-logo {
  max-width: 160px;
  margin-bottom: 10px;
}

.menu-close {
  position: absolute;
  top: 15px;
  right: 50px;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.aboveheader-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: white;
}

.aboveheader-mobile span,
.aboveheader-mobile i {
  color: white;
  font-size: 14px;
}

.headersocialicon a {
  color: white;
  font-size: 16px;
  margin: 0 6px;
}

.navigation-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  color: white;
}

.navigation-links a {
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.navigation-links a:hover {
  color: #e30613;
}

.headerbtn {
  padding: 10px 24px;
  background-color: rgb(97, 155, 220);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.mobile-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-dropdown-toggle {
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: flex;
}
/* pop up form  */
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  background: #fff;
  margin: 50px auto;
  padding: 25px 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  position: relative;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  background: none;
  border: none;
}

/* Form fields */
.modal-content form input,
.modal-content form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  box-sizing: border-box;
}

.modal-content form button {
  background: #007bff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.modal-content form button:hover {
  background: #0056b3;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .modal-content {
    width: 100%;
    margin: 20px auto;
    padding: 20px 15px;
    border-radius: 6px;
  }

  .close-btn {
    top: 10px;
    right: 10px;
    font-size: 26px;
  }
}

/* pop up form  */

/* preloader css  */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; /* or #fff, or your brand color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#preloader img {
  width: 200px;
  height: auto;
  animation: pulse 1.5s infinite;
}

/* Optional pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* preloader css  */

/* whatsapp icon and phone icon css  */
.floating-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-icons a {
  text-decoration: none;
  color: white;
  font-size: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.whatsapp-float {
  background-color: #25d366;
}

.phone-float {
  background-color: #0a66c2;
}

/* Optional: Adjust spacing for smaller screens */
@media (max-width: 600px) {
  .floating-icons {
    bottom: 15px;
    left: 15px;
  }

  .floating-icons a {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

/* whatsapp icon and phone icon css  */

/* top up button css  */
.top-button {
  position: fixed;
  bottom: 20px; /* Above WhatsApp and Phone buttons */
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: #0a66c2;
  color: white;
  border-radius: 50%;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: none; /* Hidden until scroll */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-button:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .top-button {
    width: 44px;
    height: 44px;
    font-size: 18px;
    line-height: 44px;
    right: 15px;
    bottom: 15px;
  }
}

/* top up button css  */
.why-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.white-icon {
  color: #ffffff !important;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.why-card:hover .white-icon {
  transform: scale(1.1);
}

/* =================== RESPONSIVE STYLES (MERGED) =================== */
/* =================== RESPONSIVE STYLES =================== */

/* Tablets (up to 1024px) */
@media (max-width: 1024px) {
  .banner {
    height: 400px;
    background-position: center;
    background-size: cover;
    padding: 0 20px;
  }

  .bannerwrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .bannercontent {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .bannercontentwrapper h1 {
    font-size: 28px;
  }

  .arrow svg {
    width: 18px;
  }

  .circle {
    gap: 10px;
    bottom: 15px;
  }

  .smallcircle {
    width: 10px;
    height: 10px;
  }

  .missionandvision {
    flex-direction: column;
  }

  .mission,
  .vision {
    width: 100%;
  }

  .boxes {
    flex-wrap: wrap;
    justify-content: center;
  }

  .box {
    width: 90%;
    margin-bottom: 20px;
  }

  .service1 {
    flex-direction: column;
    gap: 20px;
  }

  .service1 img {
    width: 100%;
    height: auto;
  }

  .serviceupdate {
    max-width: 100%;
  }

  .why-boxes {
    flex-wrap: wrap;
    gap: 20px;
  }

  .slide-wrapper {
    flex-wrap: wrap;
  }

  .slide-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }

  .client-slide {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .brand-box {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
  }

  .brand-box img {
    max-width: 160px;
    width: 100%;
    height: auto;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .aboveheader {
    flex-direction: column;
    height: auto;
    padding: 10px;
    text-align: center;
    line-height: 1.5;
    display: none;
  }

  .wrapperheader {
    flex-direction: column;
    gap: 10px;
  }

  .headerbtn {
    margin-left: 0;
    margin-top: 10px;
  }

  .banner {
    height: 300px;
    padding: 20px;
  }

  .bannerwrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .bannercontent {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-right: 35px;
    text-align: center;
  }

  .bannercontentwrapper h1 {
    font-size: 22px;
    line-height: 1.4;
  }

  .bannerbutton {
    width: auto;
    min-width: 160px;
    height: auto;
    font-size: 16px;
    padding: 12px 20px;
    text-align: center;
    display: inline-block;
    border-radius: 4px;
  }

  .arrow {
    display: none;
  }

  .circle {
    gap: 8px;
    bottom: 10px;
  }

  .smallcircle {
    height: 8px;
    width: 8px;
  }

  .ourvalues h3,
  .ourservice h3,
  .sector-container h3,
  .why-choose-us h2,
  .clients-section h2,
  .team-section h2 {
    font-size: 26px;
  }

  .box,
  .why-card {
    width: 100%;
  }

  .servicehighlight h2 {
    font-size: 32px;
  }

  .slide-wrapper {
    flex-wrap: nowrap;
  }

  .slide-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 10px 0;
  }

  .profile {
    flex-direction: column;
    text-align: center;
  }

  .profile img {
    width: 70px;
    height: 70px;
  }

  .client-slide {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .brand-box {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
  }

  .brand-box img {
    max-width: 140px;
    width: 100%;
    height: auto;
  }

  .nav-btn {
    padding: 10px 14px;
    font-size: 16px;
  }

  footer {
    padding: 30px 15px;
  }

  .footer-wrapper {
    width: 100%;
  }
}

.wrapperheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}
.nav-logo {
  height: 100px;
}
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
  transition: 0.3s;
}
.navigation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #111;
  color: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 20px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.navigation-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 80px;
  z-index: 1002;
}
.menu-logo {
  height: 60px;
  margin-bottom: 10px;
}
.aboveheader-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}
.aboveheader-mobile span {
  color: #ccc;
}
.aboveheader-mobile .headersocialicon a {
  color: #ccc;
  margin: 0 5px;
}
.navigation-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.navigation-links a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
.navigation-links .headerbtn {
  padding: 10px 20px;
  background: #3498db;
  color: #fff;
  border: none;
  margin-top: 10px;
  border-radius: 4px;
  cursor: pointer;
}
@media (min-width: 769px) {
  .mobile-menu-btn,
  .navigation-overlay {
    display: none !important;
  }
}

.wrapperheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}
.nav-logo {
  height: 60px;
}
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
  transition: 0.3s;
}
.navigation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #111;
  color: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 20px;
  z-index: 1000;
}
.navigation-overlay.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
}
.menu-logo {
  height: 60px;
  margin-bottom: 10px;
}
.aboveheader-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}
.aboveheader-mobile span {
  color: #ccc;
}
.aboveheader-mobile .headersocialicon a {
  color: #ccc;
  margin: 0 5px;
}
.navigation-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.navigation-links a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
.navigation-links .headerbtn {
  padding: 10px 20px;
  background: #3498db;
  color: #fff;
  border: none;
  margin-top: 10px;
  border-radius: 4px;
  cursor: pointer;
}
@media (min-width: 769px) {
  .mobile-menu-btn,
  .navigation-overlay {
    display: none !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .slide {
    min-width: 100% !important;
    margin-right: 0;
  }

  .s {
    gap: 0; /* Remove gap between slides */
  }

  .nav-btn {
    font-size: 24px;
    padding: 10px 16px;
  }
}

/* mobile nav  */
.wrapperheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.nav-logo {
  height: 60px;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
  transition: 0.3s;
}

.navigation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #111;
  color: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 20px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.navigation-overlay.open {
  display: flex;
  animation: fadeIn 0.3s ease;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 80px;
  z-index: 1002;
}

.menu-logo {
  height: 60px;
  margin-bottom: 10px;
}

.aboveheader-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  /* Center horizontally */
  justify-content: center;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.aboveheader-mobile span {
  color: #ccc;
}

.aboveheader-mobile .headersocialicon a {
  color: #ccc;
  margin: 0 5px;
}

.navigation-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.navigation-links a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.navigation-links .headerbtn {
  padding: 10px 20px;
  background: #3498db;
  color: #fff;
  border: none;
  margin-top: 10px;
  border-radius: 4px;
  cursor: pointer;
}

@media (min-width: 769px) {
  .mobile-menu-btn,
  .navigation-overlay {
    display: none !important;
  }
}

.wrapperheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.nav-logo {
  height: 100px;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
  transition: 0.3s;
}

.navigation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #111;
  color: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 20px;
  z-index: 1000;
}

.navigation-overlay.open {
  display: flex;
  animation: fadeIn 0.3s ease;
  justify-content: center;
}

.menu-close {
  /* align-self: flex-end; */
  position: absolute;
  right: 60px;
  top: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
}

.menu-logo {
  height: 120px;
  margin: 0px auto;
  display: block;
  margin-left: 40px;
}

.aboveheader-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.aboveheader-mobile span {
  color: #ccc;
}

.aboveheader-mobile .headersocialicon a {
  color: #ccc;
  margin: 0 5px;
}

.navigation-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.navigation-links a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.navigation-links .headerbtn {
  padding: 10px 20px;
  background: #3498db;
  color: #fff;
  border: none;
  margin-top: 10px;
  border-radius: 4px;
  cursor: pointer;
}

@media (min-width: 769px) {
  .mobile-menu-btn,
  .navigation-overlay {
    display: none !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}

.mobile-dropdown-menu.show {
  display: flex;
}

.mobile-dropdown-toggle {
  cursor: pointer;
  font-size: 18px;
  margin-bottom: -5px;
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (min-width: 769px) {
  .mobile-menu-btn,
  .navigation-overlay {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .navigation {
    display: none !important;
  }
}

/* mobile nav  */
/* Remove horizontal scroll and fit banner on all screens */
@media (max-width: 1366px) {
  html,
  body {
    overflow-x: hidden;
  }

  .banner-slider,
  .slide-img {
    max-width: 100vw;
  }

  /* Safety for all big containers */
  .wrapperheader,
  .bannercontent,
  main,
  footer {
    max-width: 100%;
  }
}

/* Achievements Section */
.achievements-section {
  background: #fff;
  padding: 90px 20px;
  border-top: 1px solid #e5eaf0;
}

.achievements-container {
  max-width: 1200px;
  margin: 0 auto;
}

.achievements-header {
  text-align: center;
  margin-bottom: 60px;
}

.achievements-header h2 {
  font-size: 2rem;
  color: #0a2342;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.achievements-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #4a90e2;
  margin: 10px auto 0;
  border-radius: 3px;
}

.achievements-header p {
  color: #555;
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 1rem;
  line-height: 1.7;
}

.achievements-content {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 50px;
  align-items: center;
}

.achievement-image img {
  width: 75%;
  height: 50vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.achievement-text h3 {
  color: #0a2342;
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.achievement-subtitle {
  color: #4a90e2;
  margin-bottom: 16px;
}

.achievement-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}

.achievement-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #4a90e2;
  font-size: 1.1rem;
  top: 0;
}

@media (max-width: 900px) {
  .achievements-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .achievement-list li {
    text-align: left;
    display: inline-block;
    width: 90%;
  }
}

/* Leadership / Founder Section */
.founder-section {
  background: #f8fafc;
  padding: 90px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2rem;
  color: #0a2342;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: start;
}

.founder-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.founder-photo img {
  width: 100%;
  height: 360px;
  object-fit: contain;
}

.founder-details {
  padding: 24px 28px;
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a2342;
  margin-bottom: 6px;
}

.founder-role {
  color: #4a90e2;
  font-weight: 600;
  margin-bottom: 16px;
}

.founder-bio {
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}

.founder-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.founder-info li {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-photo img {
    height: 320px;
  }
}
