
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color: #444444;
}

a {
  color: #2487ce;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2487ce;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #3e9bdd;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ffc700;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #4b6043;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 20px 0;
  border-bottom: 1px solid #e6f2fb;
}
#header.header-scrolled {
  padding: 12px 0;
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
}
#header .logo a {
  color: #16507b;
}
#header .logo img {
  max-height: 60px;
}
@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
@media (min-width: 1200px){
.navbar {
  padding: 0;

}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 20px;
  color: #16507b;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.3s;
line-height: 29.26px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}
.navbar a i, .navbar a:focus i {
  font-size: 18px;
  line-height: 0;
  margin-left: 5px;
  
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #00AEEF;
  ;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: linear-gradient(180deg, #00AEEF 0%, #006489 100%);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 10px;
  color:#fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color:  #2487ce;
  background: #3194db;
}

.navbar .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #2487ce;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

.navbar .dropdown ul li {
    min-width: 200px;
  }

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #2487ce;;
  }

.navbar .dropdown ul a i {
    font-size: 12px;
  }

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #2487ce;;
  }

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

.navbar .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #124265;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #124265;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #2487ce;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  display: flex; /* Enables Flexbox */
  justify-content: center; /* Horizontally centers content */
  align-items: center; /* Vertically centers content */
  height: 100vh; /* Full viewport height */
  text-align: center; /* Centers inline content (text) */
  padding: 20px; /* Ensures spacing on small screens */
  box-sizing: border-box;
}

#hero .carousel-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  position: absolute;
  flex-direction: row;
  top: 30%;
  padding: 0 5%; 
}

#hero .content {
  flex: 1; /* Allow text container to take available space */
  max-width: 50%; /* Limit width for readability */
}

#hero h2 {
  color: #5e5e5e;
  margin: 0;
  font-size: 48px;
  font-weight: 900;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
  font-size: 20px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  line-height: 1;
  color: #fff;
  background: #262262;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #3194db;
}

@media (max-width: 992px) {
  .hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 30%;
    padding: 0 20px; /* Add padding for small screens */
  }

  #hero h2 {
    font-size: 30px; /* Reduce font size for h2 */
    line-height: 30px;
  }

  #hero p {
    font-size: 18px; /* Reduce font size for paragraph */
    line-height: 24px;
  }

  #hero .btn-get-started {
    font-size: 18px; /* Adjust button font size */
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    margin-top: 10vh;
    font-size: 30px; /* Further reduce font size */
    line-height: 24px;
  }

  #hero p {
    font-size: 20px;
    line-height: 18px;
  }

  #hero .btn-get-started {
    font-size: 20px;
    padding: 10px 20px; /* Smaller padding for buttons */
  }
}

@media (max-width: 480px) {
  #hero .carousel-container {
    top: 30%; /* Reduce top margin for small screens */
    padding: 0 10px;
    text-align: left;
  }

  #hero h2 {
    margin-top:5vh;
    font-size: 32px; /* Slightly smaller for better fit */
    line-height: 34px;
  }

  #hero p {
    font-size: 18px;
    line-height: 20px;
    
  
  }

  #hero .btn-get-started {
    font-size: 22px;
    padding: 6px 12px; /* Compact button padding */
    
    margin: 10px auto;
  }

  #hero img {
    max-width: 80%;
    height: auto;
    opacity: .1;
  }
}

/* Specific Landscape Adjustments */
@media screen and (max-width: <= 768px) and (orientation: landscape) {
  .hero {
    height: 95vh;
  }
  
  #hero .carousel-container {
    top: 10%; /* Minimize top spacing */
    padding: 0 5px; /* Even smaller padding */
  }

  #hero h2 {
    margin-top: 10vh;
    font-size: 16px; /* Smaller font to fit reduced height */
    line-height: 22px;
  }

  #hero p {
    font-size: 10px;
    line-height: 14px;
    margin-bottom: 5px; /* Reduce spacing below paragraph */
  }

  #hero .btn-get-started {
    font-size: 12px;
    padding: 5px 10px; /* Further reduce button size */
    margin-top: 3px;
  }

  #hero img {
    display: none; /* Optional: Hide images to prioritize text and buttons */
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: transparent;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #ffc700;
}

.section-title h3 {
  text-align: start;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #2487ce;
}
.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services{
  background-color: #262260;
  background-size: cover;
  padding: 60px 0;

}
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: transparent;
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
  color: #ffff;
}

.featured-services .service-item .icon i {
  color: white;
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.featured-services .service-item h4 a {
  color: white;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-primary-rgb), 0.1);
}

.featured-services .service-item:hover h4 a {
  color: white;
}






/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 25px 0;
}

.clients .swiper {
  padding: 10px 0;
}


.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
  height:12vh; 
  width: 30vh;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
  
  
}
.testimonials .testimonial-item .testimonial-img {
  width: 30vh;
  border-radius: 50%;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #262260;
  
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  font-weight: 400;
  color: #00AEEF;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c9e3f5;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
 
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #f3f9fd;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  height: 80vh;
  align-items:stretch;
}
.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2487ce;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2487ce;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.alert {
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  font-size: 14px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.d-flex {
  display: flex;
  align-items: stretch; /* Ensures cards are of equal height */
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background-color: transparent;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50vh;
}

.cta .img{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .btn a {
  position: relative;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 10px;
  transition: 0.5s;
  margin-top: 30vh;
  margin-left: 30vh;
  border: 2px solid #262261;
  background: #262262;

  color: #fff;
}

.cta .btn:hover a {
  background: #ffc700;
  color: #2487ce;
}

.stats {
  position: relative;
  padding: 120px 0;
}



.stats:before {
  content: "";
  
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color:  #ffc700;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.src p{
  font-family: 'Montserrat', sans-serif; 
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.src h3 {
    margin-top: 2vh;
    font-size: 20px;
    display: block;
    color: #262260;
    font-weight: 700;
}

.rm {

  background: #262260;
  color: #fff;
  border-color: black;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.r {
  font-family: Source Sans 3;
  font-size: 18px;
  font-weight: 600;
 
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #262260;
  background-color: #fff;
  border: 2px solid #00AEEF;
}






/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #ffc700;
  min-height: 40px;
  margin-top: 72px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #1a5e90;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
   
}

.card-image {
    width: 100%;
    object-fit: cover;
}

.card-content {
    padding: 10px;
    text-align: left;
}

.card-content h2 {
    font-size: 1.5rem;
    color: #070606;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 1rem;
    color: #070606;
    ;
    line-height: 1.6;
}

.crd {
  display: flex;
  gap: 20px; /* Adds space between the cards */
  padding: 20px;
  background-color: #fff; /* Light background for the container */
}

.card-tracking {
  flex: 3; /* Takes 3 parts of the available space */
  min-width: 60%; /* Ensures it's at least 60% of the container */
}

/* Driver management card - smaller width */
.card-driver {
  flex: 2; /* Takes 2 parts of the available space */
  min-width: 40%; /* Ensures it's at least 40% of the container */
}


/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stacks the cards vertically */
  }
  .card {
    flex: 1; /* Each card takes equal width when stacked */
    min-width: 250px; /* Full width on smaller screens */
  }
}

@media (max-width: 992px) {
  .col-md-6 {
    flex: 0 0 50%; /* Cards take up 50% width on medium screens */
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .col-md-6 {
    flex: 0 0 100%; /* Cards take full width on small screens */
    max-width: 100%;
  }
}

.gps {
  font-family: Montserrat;
  font-weight: 700;
  line-height: 25.6px;
  text-align: start;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding: 4px;
  margin: 1vh;

}

.gps h3{
  font-size: 21px; 
  font-weight: 700;
 
}

.gps p{
  font-size: 16px; 
  font-weight: 400;
  margin: 1vh;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #262260;
  font-size: 14px;
  background: #ffc700;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #262260;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  color: #ffc700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2487ce;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #2487ce;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #3194db;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2487ce;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #3194db;
  color: #fff;
  text-decoration: none;
}