body {
      font-family: Arial, sans-serif;
      padding: 0 50px;
      background-color: #fff;
    }

    /* Logo section */
    .header-logo {
      display: flex;
      align-items: center;
      padding: 22px 0 25px 0px;
    }

    .header-logo img {
      width: 55px;
      margin-right: 10px;
    }

    .header-logo h1 {
      font-size: 20px;
      margin: 0;
      color: #043564 !important;
      /* color: #0b2c6b; */
    }

    .header-logo h1 small {
      display: block;
      color: #02989A !important;
      /* color: #0ca678; */
      font-weight: normal;
    }


    /* ========== nav bar================= */
      /* Navbar styles */
.navbar {
  background-color: #043564;
  border-radius: 15px;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link {
  color: #fff !important;
  position: relative;
  font-weight: 500;
  margin: 0 10px;
  padding: 8px 0;
  text-decoration: none;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100% !important;
  height: 2px;
  background-color: #fff;
}

.contact-btn {
  background-color: #fff !important;
  color: #043564 !important;
  padding: 6px 23px !important;
  border-radius: 25px !important;
  font-weight: 500;
  border: none;
}

@media (max-width: 768px) {
  /* Smaller underline for active nav item */
  .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 25% !important; /* reduced underline width */
    height: 1.0px;
    background-color: #fff;
  }

  /* Centered "Contact Us" button */
  .contact-btn {
    display: block;
    margin: 1px auto 10px auto; /* centers the button */
    background-color: #fff !important;
    color: #073b63 !important;
    border-radius: 15px;
    padding: 4px 15px !important;
    font-weight: 500 !important;
    border: none;
  }
}
/* ========= scrolling section========= */
.logo-marquee {
 
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(250px * 16); /* Keep width assumption as per original scroll */
  animation: scrollLeft 30s linear infinite;
}

.logo-track img {
  width: 150px;         /* Fixed size for clear, sharp logos */
  height: 100px;
  margin-right: 40px;
  object-fit: contain;
  image-rendering: auto;
  display: block;
}

/* Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    width: 130px;
    height: 80px;
    margin-right: 20px;
  }

.our-clients h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom:55px;
  color: #043564;
}
}


/* =======why choose======= */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #0b2c6b;
}

.trusted-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #0b2c6b;
  margin-bottom: 40px;
}


/* .logo-carousel-wrapper {
  width: 100%;
  height: 100px;
  position: relative;
  margin-top: 50px;
}

.logo-carousel {
  display: flex;
  animation: scroll-logos 12s linear infinite; 
}

.client-logo {
  width: 150px;
  height: 100px;
  object-fit: contain;
  margin: 0 20px;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
} */


/* =========== */
.text-muted{
    margin-top: 20px;
}
/* .trusted-title{
     margin-top: 50px;
     margin-bottom: 50px;
} */
.why-choose-us .card {
  border: 1px solid #dce3ea;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.why-choose-us .card:hover {
  transform: translateY(-5px);
}

/* Left align everything */
.why-choose-us .card {
  text-align: left;
}

/* Icon styling */
.why-choose-us .icon {
   
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background-color: #0ca678; /* green background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-us .icon i {
  color: #fff !important;             /* white icon */
  font-size: 20px;
}

/* Title styling */
.why-choose-us h5 {
  color: #0b2c6b;          /* blue title */
  font-weight: 600;
  margin-top: 10px;
}

/* Paragraph styling */
.why-choose-us p {
  color: #6c757d;          /* grey text */
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ========= footer========== */
.footer-section {
  background-color: #073763; /* Navy blue */
  margin-top: 10px !important;
  /* margin-bottom: 5px; */
  border-radius: 10px 10px 0 0;
}

.footer-section h5 {
  font-size: 1.25rem;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d1d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-link {
  color: #d1d1d1;
  text-decoration: none;
}
.footer-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.hello-class{
    padding-left: 45px !important;
}

/* =========== mobile view section ======== */
/* ========= 1) navbar and logo section========== */
@media (max-width: 768px) {
  /* Smaller underline for active nav item */
  body {
      font-family: Arial, sans-serif;
      padding: 0 20px;
      background-color: #fff;
    }

    /* Smaller underline for active nav item */
   .header-logo img {
      width: 50px;
      margin-right: 10px;
    }

    .header-logo h1 {
      font-size: 19px;
      margin: 0;
      color: #043564 !important;
      /* color: #0b2c6b; */
    }
     .navbar-collapse {
    flex-direction: column !important;
    align-items: center !important;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar-nav .nav-item {
    /* margin: 8px 0; */
  }

  .contact-btn {
    margin-top: 5px;
  }
  .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px !important;
    left: 50%;
    transform: translateX(-50%);
    width: 150% !important; /* reduced underline width */
    height: 1.0px;
    background-color: #fff;
    
  }

  /* Centered "Contact Us" button */
  .contact-btn {
    display: block;
    margin: 1px auto 10px auto; /* centers the button */
    background-color: #fff !important;
    color: #073b63 !important;
    border-radius: 15px;
    padding: 4px 15px !important;
    font-weight: 500 !important;
    border: none;
  }
 /* Force white toggler icon */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* Optional: make toggler background transparent and remove border */
.navbar-toggler {
  border: none !important;         /* Remove black border */
  background-color: transparent;   /* Optional: if you don't want grey bg */
  box-shadow: none !important;     /* Prevent any auto shadow/border */
}


}
/* ========= mobile view of footer section======= */
@media (max-width: 768px) {
  .footer-section {
    margin: 0 !important;         /* Removes top and bottom spacing */
    padding: 1rem 1.2rem !important; /* Reduce inner padding for mobile */
    border-radius: 0 !important;  /* Optional: remove rounded corners on mobile */
  }

  .footer-section .container-fluid {
    padding: 0 !important;        /* Removes default Bootstrap horizontal padding */
  }

  .footer-section .row {
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-section .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hello-class{
    padding-left: 0.5px !important;
}
}

@media (max-width: 768px) {
   section.clients-section.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
  }
  .clients-section .section-title {
    font-size: 1.6rem;
  }

  .clients-section p {
    font-size: 0.95rem;
    text-align: center !important; /* Override text-center from section */
  }
}

@media (max-width: 768px) {
  .trusted-title{
    font-size: 1.3rem;
  }
   section.why-choose-us.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .why-choose-us .section-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem; /* Reduce spacing below title */
  }

  .why-choose-us .icon {
    margin-bottom: 0.5rem !important; /* Reduce gap below the icon */
  }

  .why-choose-us .card {
    margin-bottom: 1.25rem !important; /* Reduce bottom gap between cards */
  }
}

/* ========= mobile view of footer section======= */
@media (max-width: 768px) {
  .footer-section {
    margin: 0 !important;         /* Removes top and bottom spacing */
    padding: 0.5rem 1.2rem !important; /* Reduce inner padding for mobile */
    border-radius: 0 !important;  /* Optional: remove rounded corners on mobile */
     border-top-left-radius: 10px !important;
     border-top-right-radius: 10px !important;
  }

  .footer-section .container-fluid {
    padding: 0 !important;        /* Removes default Bootstrap horizontal padding */
  }

  .footer-section .row {
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-section .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hello-class{
    padding-left: 0.5px !important;
}
}



