/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --gold-web-golden: #FACA14;
  --spanish-orange: #e65c00;
  --persian-green: #11978d;
  --granite-gray: #666666;
  --spring-green: #38ed7f;
  --ultramarine: #22559b;
  --blue-violet: #22559b;
  --smoky-black: #121212;
  --dark-orange: #a4a49d;
  --winter-sky: #6b6b6b;
  --cultured-1: #fafafa;
  --cultured-2: #f2f2f2;
  --cultured-3: #f0f0f0;
  --light-gray: #fafafa;
  --alice-blue: #e1f1fb;
  --white_50: #ffffff80;
  --white-1: #ffffff;
  --white-2: #fcfcfc;
  --black: #000000;

  /**
   * typography
   */

  --ff-spartan: 'League Spartan', sans-serif;

  --fs-1: 2.2rem;
  --fs-2: 2rem;
  --fs-3: 1.9rem;
  --fs-4: 1.7rem;
  --fs-5: 1.6rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-900: 900;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * box shadow
   */

  --shadow-1: 0 2px 25px hsla(0, 0%, 0%, 0.1);
  --shadow-2: 0 8px 14px hsla(0, 0%, 0%, 0.1);
  --shadow-3: 0 14px 30px hsla(0, 0%, 0%, 0.05);

  /**
   * border radius
   */

  --radius-6: 6px;
  --radius-12: 12px;

  /**
   * gradient
   */

  --gradient-1: linear-gradient(to right, var(--gold-web-golden), var(--gold-web-golden));
  --gradient-2: linear-gradient(to right, var(--ultramarine), var(--blue-violet));
  --gradient-3: linear-gradient(to right, var(--winter-sky), var(--dark-orange));
  --gradient-4: linear-gradient(to right, var(--ultramarine), var(--blue-violet));
  --gradient-5: linear-gradient(to right, var(--persian-green), var(--spring-green));
  --gradient-6: linear-gradient(to right, var(--gold-web-golden), var(--gold-web-golden));

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}

/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/


/* Preloader Container */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background-color: var(--fleet-black);*/
  overflow: hidden;
  transition: visibility 0.6s;
}

/* Content Layout */
.preloader-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

/* Truck Animation */
.loader-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: drive 2s ease-in-out infinite;
}

@keyframes drive {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }

  50% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(20px);
    opacity: 0;
  }
}

/* Progress Section */
#load-percentage {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffb703;
  margin-bottom: 10px;
  font-family: sans-serif;
}

.progress-container {
  width: 100%;
  height: 6px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: #ffb703;
  box-shadow: 0 0 15px #e2af2d;
  transition: width 0.2s ease-out;
}

.loading-text {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Skip Button */
.skip-btn {
  margin-top: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.3s;
}

.skip-btn:hover {
  background: var(--fleet-yellow);
  color: var(--fleet-black);
  border-color: var(--fleet-yellow);
}

/* Exit Shutters */
.shutter {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: #22559b;
  transition: transform 0.8s cubic-bezier(0.87, 0, 0.13, 1);
  z-index: 5;
}

.shutter.top {
  top: 0;
}

.shutter.bottom {
  bottom: 0;
}

/* Exit Animation Class */
.preloader.loaded .shutter.top {
  transform: translateY(-100%);
}

.preloader.loaded .shutter.bottom {
  transform: translateY(100%);
}

.preloader.loaded .preloader-content {
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

.preloader.loaded {
  visibility: hidden;
}


/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
svg,
span,
input,
button,
strong,
ion-icon {
  display: block;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

html {
  font-family: var(--ff-spartan);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white-1);
  color: var(--granite-gray);
  font-size: 1.6rem;
}

:focus-visible {
  outline-offset: 4px;
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.section {
  padding-block: var(--section-padding);
}

.w-100 {
  width: 100%;
}

.h1,
.h2,
.h3 {
  color: var(--black);
  /*font-weight: var(--fw-900);*/
  line-height: 1.3;
}

.h1 {
  font-size: var(--fs-1);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
}

.section-text {
  line-height: 1.7;
}

.btn {
  min-height: 50px;
  color: var(--white-1);
  padding-inline: 25px;
  border-radius: var(--radius-6);
}

.btn-primary {
  background-image: var(--gradient-1);
}

.btn-secondary {
  background-image: var(--gradient-2);
}

.btn-link {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-1);
}

.btn-link:is(:hover, :focus) {
  letter-spacing: 0.3px;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  background-color: var(--white-1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 20px;
  z-index: 4;
}

.header.active {
  position: fixed;
  top: -75px;
  box-shadow: var(--shadow-1);
  animation: slide-in 0.5s var(--cubic-out) forwards;
}

@keyframes slide-in {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(75px);
  }
}

.header>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  color: var(--smoky-black);
  font-size: 1.5rem;
  /*font-weight: var(--fw-700);*/
  /*line-height: 1;*/
}

.nav-toggle-btn {
  font-size: 30px;
}

.nav-toggle-btn.active .menu-icon,
.nav-toggle-btn .close-icon {
  display: none;
}

.nav-toggle-btn .menu-icon,
.nav-toggle-btn.active .close-icon {
  display: block;
}

.navbar {
  position: absolute;

  top: 100%;
  left: 50%;
  width: calc(100% - 30px);
  transform: translateX(-50%);
  background-color: var(--white-1);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  visibility: hidden;
  max-height: 0;
  transition: 0.25s var(--cubic-out);
}

.navbar.active {
  visibility: visible;
  max-height: 300px;
  transition-duration: 0.35s;
}

.navbar-item:not(:last-child) {
  border-block-end: 1px solid var(--blue-violet);
}

.navbar-link {
  color: var(--black);
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  padding: 16px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
  color: var(--winter-sky);
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: calc(73px + var(--section-padding));
  background-color: var(--cultured-1);
}



.hero-title {
  margin-block: 15px 10px;
}

.hero-form {
  margin-block: 20px 30px;
}

.input-field {
  background-color: var(--cultured-3);
  padding: 20px 15px;
  border-radius: var(--radius-6);
  margin-block-end: 15px;
}

.input-field::placeholder {
  transition: var(--transition-1);
}

.input-field:focus::placeholder {
  opacity: 0;
}

.hero-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero-item {
  display: flex;
  align-items: center;
  gap: 5px;
}







/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service {
  background-color: var(--white-1);
}

.service :is(.section-title, .section-text) {
  text-align: center;
}

.service .section-text {
  margin-block: 10px 35px;
}

.service-list {
  display: grid;
  gap: 25px;
}

.service-card {
  border-radius: var(--radius-6);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.service-card .card-banner {
  background-color: var(--light-gray);
  aspect-ratio: 1 / 0.47;
}

.service-card .card-content {
  padding: 20px;
}

.service-card .card-title {
  transition: var(--transition-1);
}

.service-card .card-title:is(:hover, :focus) {
  color: var(--winter-sky);
}

.service-card .card-text {
  margin-block: 10px 20px;
  line-height: 1.4;
}

.service-card .btn-link {
  color: var(--ultramarine);
}





/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/

.features {
  background-color: var(--white-2);
}

.features .section-text {
  margin-block: 10px 15px;
}

.features-content {
  margin-block-end: 25px;
}

.features-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white-1);
  padding: 15px;
  box-shadow: var(--shadow-3);
  border-radius: var(--radius-6);
}

.features-item:not(:last-child) {
  margin-block-end: 15px;
}

.features-item .item-title {
  color: var(--black);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
}

.features-banner {
  max-width: max-content;
  background-color: var(--light-gray);
  border-radius: var(--radius-12);
  overflow: hidden;
}

.features-banner.one {
  aspect-ratio: 1 / 0.83;
  margin-block-end: 25px;
  border: 3px solid #22559b;
  border-radius: 12px;
  overflow: hidden;
}

.features-banner.two {
  /* Hide on mobile by default */
  display: none;

  margin-inline: auto;
  aspect-ratio: 1 / 0.71;
  border: 3px solid #22559b;
  border-radius: 12px;
  overflow: hidden;
}

/* Show on Desktop and Tablet (992px and up) */
@media (min-width: 992px) {
  .features-banner.two {
    display: block;
  }
}



/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  text-align: center;
}

.about .section-text:first-of-type {
  margin-block: 5px 30px;
}

.about-list {
  display: grid;
  gap: 25px;
}

.about-card {
  color: var(--white-1);
  padding: 20px;
  border-radius: var(--radius-12);
}

.about-card-1 {
  background-image: var(--gradient-3);
}

.about-card-2 {
  background-image: var(--gradient-4);
}

.about-card-3 {
  background-image: var(--gradient-5);
}

.about-card-4 {
  background-image: var(--gradient-6);
}

.about-card .card-banner {
  min-width: 150px;
  height: 150px;
  aspect-ratio: 1 / 1;
  background-color: var(--white_50);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-inline: auto;
  transition: var(--transition-2);
}

.about-card:is(:hover, :focus-within) .card-banner {
  background-color: var(--white-1);
}

.about-card .card-title {
  color: var(--white-1);
  margin-block: 20px 10px;
}

.about-card .card-text {
  line-height: 1.4;
  margin-block-end: 15px;
}

.about .btn-link {
  justify-content: center;
}

.about .section-text:last-of-type {
  max-width: 50ch;
  margin-inline: auto;
  margin-block-start: 25px;
}

.about .section-text:last-of-type .btn-link {
  color: var(--blue-violet);
  display: inline-flex;
}

.about .section-text:last-of-type .btn-link:is(:hover, :focus) {
  color: var(--winter-sky);
  letter-spacing: 0;
}





/*-----------------------------------*\
  #SERVICE GRID SYSTEM
\*-----------------------------------*/

.custom-row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -15px;
  list-style: none;
  padding: 0;
}

.col-lg-4,
.col-md-6 {
  width: 100%;
  padding-inline: 15px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

/*-----------------------------------*\
  #CARD DESIGN
\*-----------------------------------*/

.service-card.overlay-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 340px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card .img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .img-cover {
  transform: scale(1.08);
}

/* The Dark Overlay for Readability */
.card-overlay-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #ffffff;
  z-index: 1;
}

/*
.card-overlay-content {
  position: absolute;
  inset: 0;
   Replaced black (0,0,0) with your brand blue (34, 85, 155) 
  background: linear-gradient(
    to top, 
    rgba(34, 85, 155, 0.95) 0%, 
    rgba(34, 85, 155, 0.5) 40%, 
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #ffffff;
  z-index: 1;
}
*/

.card-subtitle {
  color: #faca14;
  /* Urban Yellow */
  font-size: 1.5rem;
  /*font-weight: 800;*/
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 5px;
}

.card-title1 {
  color: #ffffff;
  font-size: 1.7rem;
  margin-bottom: 5px;
}

.card-text1 {
  font-size: 1.7rem;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #d1d1d1;
}

/*-----------------------------------*\
  #URBAN CUSTOM BUTTON
\*-----------------------------------*/

.btn-custom {
  display: inline-block;
  width: max-content;
  padding: 10px 22px;
  background-color: #22559b;
  /* Requested Blue */
  color: #ffffff;
  /*font-weight: 700;*/
  font-size: 1.4rem;
  text-transform: uppercase;
  border-radius: 8px;
  /* Requested Radius */
  border: 1.5px solid #faca14;
  /* Requested Yellow Border */
  transition: all 0.3s ease;
}

/*
.btn-custom:hover {
  background-color: #faca14;
  color: #22559b;
  border-color: #22559b;
}
*/



/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats {
  background-color: var(--cultured-2);
}

.stats-banner {
  max-width: max-content;
  margin-inline: auto;
  aspect-ratio: 1 / 0.78;
  margin-block-end: 25px;
}

.stats-list {
  display: grid;
  gap: 25px;
}

.stats-item {
  position: relative;
  padding-block: 5px;
  padding-inline-start: 15px;
}

.stats-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-radius: 5px;
}

.stats-item.purple::before {
  background-color: var(--blue-violet);
}

.stats-item.red::before {
  background-color: var(--winter-sky);
}

.stats-item.green::before {
  background-color: var(--spring-green);
}

.stats-item.yellow::before {
  background-color: var(--gold-web-golden);
}

.stats-item .item-title {
  color: var(--black);
  font-size: 3.5rem;
  font-weight: var(--fw-900);
  margin-block-end: 5px;
}

.stats-item .item-title .span {
  color: var(--granite-gray);
  font-weight: var(--fw-400);
  display: inline-block;
  font-size: var(--fs-4);
}





/*-----------------------------------*\
  #APP
\*-----------------------------------*/

.app-content {
  margin-block-end: 25px;
}

.app .section-text {
  margin-block: 5px 10px;
}

.app .btn-group {
  display: flex;
  gap: 15px;
}

.app .btn {
  min-height: auto;
  padding: 15px;
}

.app .btn img {
  margin-block-end: 10px;
}

.app .btn .strong {
  margin-block-start: 5px;
  font-weight: var(--fw-600);
}

.app-banner {
  max-width: max-content;
  margin-inline: auto;
  aspect-ratio: 1 / 0.72;
}





/*-----------------------------------*\
  #SUPPORT
\*-----------------------------------*/

.support {
  background-image: var(--gradient-2);
  color: var(--white-1);
}

.support .section-title {
  color: var(--white-1);
}

.support .section-text {
  margin-block: 10px 15px;
}

.support .btn {
  max-width: max-content;
  display: grid;
  place-items: center;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  background-color: var(--cultured-1);
}

.footer-top .container {
  display: grid;
  gap: 25px;
}

.footer .logo {
  margin-block-end: 25px;
}

.footer-img {
  max-width: max-content;
}

.footer-list-title {
  color: var(--black);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  margin-block-end: 20px;
}

.footer-list>li:not(:last-child) {
  margin-block-end: 15px;
}

.footer-link {
  position: relative;
  max-width: max-content;
  transition: var(--transition-1);
}

.footer-link::after {
  content: "";
  position: absolute;
  top: 6px;
  left: calc(100% + 10px);
  background-color: var(--ultramarine);
  width: 20px;
  height: 2px;
  transition: var(--transition-1);
  opacity: 0;
}

.footer-link:is(:hover, :focus) {
  color: var(--ultramarine);
}

.footer-link:is(:hover, :focus)::after {
  opacity: 1;
}

.footer-item {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.footer-item .span {
  color: var(--black);
}

.footer-item-link {
  display: inline-block;
  color: var(--granite-gray);
  transition: var(--transition-1);
}

.footer-item-link:is(:hover, :focus) {
  color: var(--ultramarine);
}

.footer-bottom {
  padding-block: 25px;
  text-align: center;
  line-height: 1.3;
}

.copyright {
  margin-block-end: 15px;
}

.copyright .span {
  display: inline-block;
  color: var(--winter-sky);
  font-weight: var(--fw-500);
}

.copyright-link {
  display: inline-block;
  font-weight: var(--fw-600);
  background-image: var(--gradient-3);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.footer-bottom-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 20px;
}

.footer-bottom-link {
  transition: var(--transition-1);
}

.footer-bottom-link:is(:hover, :focus) {
  color: var(--ultramarine);
}





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

.back-top-btn {
  background-color: var(--white-1);
  color: var(--black);
  position: fixed;
  bottom: 10px;
  right: 20px;
  border: 1px solid var(--light-gray);
  font-size: 2.2rem;
  padding: 12px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
  z-index: 4;
}

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





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 480px screen
 */

@media (min-width: 480px) {

  /**
   * REUSED STYLE
   */

  .header .btn {
    display: block;
    margin-inline-start: auto;
    min-height: 40px;
    padding-inline: 15px;
  }

}





/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    margin-inline: auto;
  }



  /**
   * HERO
   */

  .hero-form {
    position: relative;
  }

  .hero-form .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }



  /**
   * SERVICE, ABOUT, STATS, FOOTER
   */

  .service-list,
  .about-list,
  .stats-list,
  .footer-top .container {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * ABOUT
   */

  .about-card {
    min-height: 100%;
  }



  /**
   * APP
   */

  .app .btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-inline: 25px;
  }

  .app .btn img {
    margin-block-end: 0;
  }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * RESET
   */

  body {
    font-size: 2rem;
  }



  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5rem;
    --fs-2: 3.5rem;
    --fs-3: 2.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }



  /**
   * HEADER
   */

  .header .btn {
    font-size: 1.7rem;
    font-weight: var(--fw-500);
    min-height: 45px;
    padding-inline: 25px;
  }



  /**
   * SERVICE
   */

  .service-card {
    --radius-6: 16px;
  }

  .service-card .card-content {
    padding: 30px;
  }



  /**
   * FEATURES
   */

  .features-item .item-title {
    --fs-5: 2rem;
  }

  .features-banner.two {
    margin-inline: auto 0;
    margin-block-start: -180px;
  }



  /**
   * STATS
   */

  .stats-list {
    padding-inline: 60px;
  }

  .stats-item {
    padding-inline-start: 20px;
  }

  .stats-item .item-title {
    font-size: 4rem;
  }



  /**
   * APP
   */

  .app .btn {
    padding: 20px 30px;
  }

  .app-content .span {
    font-size: 1.5rem;
  }

  .app-content .strong {
    font-size: 2rem;
  }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 4rem;
    --fs-3: 2.9rem;

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }

  :is(.service, .about, .app) .section-text {
    max-width: 55ch;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .nav-toggle-btn {
    display: none;
  }

  .navbar,
  .navbar.active {
    all: unset;
    margin-left: 14%;
  }

  .navbar-list {
    display: flex;
    gap: 5px;
  }

  .navbar-item:not(:last-child) {
    border-block-end: none;
  }

  .navbar-link {
    --fs-4: 2rem;
  }

  .header .btn {
    margin-inline-start: 0;
    min-height: 50px;
    padding-inline: 40px;
  }



  /**
   * HERO
   */

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }

  .hero-title {
    margin-block-start: 0;
  }



  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }



  /**
   * FEATURES
   */

  .features .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 25px;
  }

  .features-content {
    margin-block-end: 0;
  }

  .features-item {
    padding: 20px;
  }

  .features-item:not(:last-child) {
    margin-block-end: 20px;
  }

  .features-item .item-title {
    --fs-5: 2.4rem;
  }



  /**
   * ABOUT
   */

  .about-list {
    gap: 30px;
  }

  .about-card {
    padding: 40px;
  }



  /**
   * STATS
   */

  .stats .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }

  .stats-banner {
    margin-block-end: 0;
  }

  .stats-list {
    grid-template-columns: 1fr;
  }

  .stats-item:nth-child(even) {
    margin-inline-start: auto;
  }

  .stats-item .item-title {
    font-size: 4.5rem;
  }

  .stats-text {
    font-size: 2.2rem;
  }



  /**
   * APP
   */

  .app :is(.section-title, .section-text) {
    text-align: center;
  }

  .app .btn-group {
    justify-content: center;
  }



  /**
   * SUPPORT
   */

  .support .container {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    justify-items: self-end;
    align-items: center;
  }



  /**
   * FOOTER
   */

  .footer .container {
    grid-template-columns: 1fr 0.8fr 0.8fr 1fr;
  }

  .footer-list-title {
    margin-block-end: 30px;
  }

  .footer-list>li:not(:last-child) {
    margin-block-end: 25px;
  }

  .footer-bottom {
    padding-block: 30px;
  }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright {
    margin-block-end: 0;
  }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6rem;
    --fs-2: 5rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1140px;
  }



  /**
   * FEATURES
   */

  .features .container {
    grid-template-columns: 1fr max-content;
    gap: 70px;
  }



  /**
   * ABOUT
   */

  .about-card {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
  }

  .about-card .card-title {
    margin-block-start: 0;
  }

  .about .btn-link {
    justify-content: flex-start;
  }



  /**
   * APP
   */

  .app .container {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    align-items: center;
    gap: 25px;
  }

  .app-content {
    margin-block-end: 0;
  }

  .app :is(.section-title, .section-text) {
    text-align: left;
  }

  .app .section-title {
    --fs-2: 4rem;
  }

  .app .btn-group {
    justify-content: flex-start;
  }

}


/*HOW DO WE WORK*/

/*-----------------------------------*\
  #HOW WE WORK SECTION
\*-----------------------------------*/

.how-it-works {
  background-color: #ffffff;
  /*padding-block: var(--section-padding);*/
}

.section-heading {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 60px;
}

/* Process Grid */
.process-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid transparent;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-yellow);
}

.card-icon {
  position: relative;
  width: 70px;
  height: 70px;
  background: #fff9e6;
  /* light yellow tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--primary-yellow);
  margin-bottom: 25px;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--industrial-black);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Premium Partnership Banner */
.premium-partnership {
  background: var(--industrial-black);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.4);
}

@media (min-width: 992px) {
  .premium-partnership {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.premium-content {
  padding: 50px;
}

.premium-badge {
  display: inline-block;
  background: var(--primary-yellow);
  color: var(--industrial-black);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 15px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.premium-title {
  color: var(--white);
  margin-bottom: 20px;
}

.premium-text {
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.8;
}

.premium-text strong {
  color: var(--primary-yellow);
}

.premium-image {
  height: 100%;
  min-height: 300px;
}

.premium-image img {
  height: 100%;
  object-fit: cover;
}

/* Base Reveal Animation Classes (Triggered by JS) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



/*WhatsApp*/


/* Container for the whole button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1000;
}

/* The "Contact us" white label */
.whatsapp-label {
  background-color: white;
  color: #333;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  margin-right: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
}

/* The little triangle on the label pointing to the icon */
.whatsapp-label::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid white;
}



/* The circular blue icon button */
.whatsapp-icon {
  width: 60px;
  height: 60px;
  background-color: #64cd47;
  /* Your primary theme color */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.1);
  background-color: #67bc4f;
}

/* Hide label on very small screens if needed */
@media (max-width: 480px) {
  .whatsapp-label {
    display: none;
  }
}



/*testim*/

:root {
  --fleet-bg: #ffffff;
  /* Main white background */
  --fleet-card-bg: #f8f9fa;
  /* Light industrial grey for cards */
  --fleet-accent: #22559b;
  /* Industrial Yellow/Orange */
  --fleet-text: #212529;
  /* Dark grey for primary text */
  --fleet-text-muted: #6c757d;
  /* Medium grey for secondary text */
  --transition-speed: 0.4s;
}

.fleet-testimonials {
  background-color: var(--fleet-bg);
  padding: 80px 0;
  color: var(--fleet-text);
  overflow: hidden;
}

.section-title-wrapper {
  margin-bottom: 50px;
}

.section-title {
  color: var(--fleet-text);
}

.section-subtitle {
  color: var(--fleet-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
  /*font-weight: 700;*/
}

.testimonial-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform var(--transition-speed) ease-in-out;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background-color: var(--fleet-card-bg);
  padding: 40px 30px;
  border-radius: 8px;
  border-bottom: 4px solid var(--fleet-accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  /* Softer shadow for light theme */
  position: relative;
  box-sizing: border-box;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 60px;
  color: rgba(255, 183, 3, 0.2);
  /* Slightly darker accent for visibility on white */
  line-height: 1;
  font-family: serif;
}

.stars {
  color: var(--fleet-accent);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 30px;
  font-style: italic;
  color: var(--fleet-text);
  min-height: 100px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--fleet-accent);
}

.client-name {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fleet-text);
  /* Changed to dark text */
}

.client-role {
  margin: 0;
  font-size: 1.4rem;
  color: var(--fleet-text-muted);
}

/* Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
}

.carousel-btn {
  background-color: transparent;
  border: 2px solid var(--fleet-text-muted);
  color: var(--fleet-text-muted);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: var(--fleet-accent);
  border-color: var(--fleet-accent);
  color: #fff;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #dee2e6;
  /* Light grey dots */
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--fleet-accent);
  transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .testimonial-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
  }
}

/*About US*/

:root {
  --industrial-yellow: #22559b;
  --coal-black: #1a1a1a;
  --soft-grey: #f4f4f4;
  --text-main: #333333;
  --text-muted: #666666;
}

.about-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Banner Styling */
.about-banner {
  position: relative;
}

.img-holder {
  position: relative;
  padding-bottom: 50px;
}

.main-img {
  width: 90%;
  border-radius: 8px;
  box-shadow: 20px 20px 0px var(--soft-grey);
}

.small-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  border: 8px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  top: 40px;
  left: -20px;
  background-color: var(--industrial-yellow);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.exp-number {
  display: block;
  font-size: 2.7rem;
  font-weight: 700;
  color: #ffb703;
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

/* Content Styling */
.section-subtitle {
  color: var(--industrial-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  /*font-weight: 800;*/
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.6rem;
  color: var(--coal-black);
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.7rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.about-item {
  display: flex;
  gap: 10px;
  /*margin-bottom: 20px;*/
}

.icon-box {
  background-color: #ffb703;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.item-title {
  font-weight: 700;
  margin-bottom: 5px;
}

.item-text {
  font-size: 1.4rem;
  color: #fff;
}

/* Stats Styling */
.about-stats {
  display: flex;
  justify-content: space-between;
  background-color: var(--coal-black);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  color: #fff;
}

.stat-item {
  text-align: center;
}

.stat-number {
  color: var(--industrial-yellow);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.btn-primary:hover {
  background-color: var(--coal-black);
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .about-banner {
    max-width: 500px;
    margin: 0 auto;
  }
}


/*Learn More About Us*/

:root {
  --fleet-yellow: #22559b;
  --fleet-black: #1a1a1a;
  --fleet-grey: #f8f9fa;
  --fleet-white: #ffffff;
}

.learn-more-detail {
  padding: 80px 0;
  background-color: var(--fleet-white);
  font-family: 'Inter', sans-serif;
}



/* Detailed Features Grid */
.features-detailed {
  margin-bottom: 100px;
}

.detail-header {
  margin-bottom: 60px;
}

.divider {
  width: 80px;
  height: 4px;
  background: var(--fleet-yellow);
  margin: 20px auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2px;
  /* For the "grid-line" look */
  background-color: #eee;
  border: 1px solid #eee;
}

.feature-box {
  background: var(--fleet-white);
  padding: 50px 40px;
  transition: all 0.3s ease;
}



.feature-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--fleet-yellow);
  margin-bottom: 15px;
}

.feature-box:hover .feature-number {
  color: var(--fleet-black);
  opacity: 0.5;
}

.feature-box h4 {
  font-size: 1.7rem;
  margin-bottom: 15px;
}

/* CEO Quote Section */
.ceo-message {
  background: var(--fleet-grey);
  padding: 60px;
  border-left: 8px solid var(--fleet-yellow);
  border-radius: 0 12px 12px 0;
  max-width: 900px;
  margin: 0 auto;
}

.big-quote {
  font-family: serif;
  font-size: 5rem;
  line-height: 0;
  display: block;
  color: var(--fleet-yellow);
  margin-bottom: 30px;
}

.quote-content p {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--fleet-black);
  margin-bottom: 25px;
}

.ceo-info strong {
  display: block;
  font-size: 1.4rem;
}

.ceo-info span {
  color: var(--fleet-yellow);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .ceo-message {
    padding: 30px;
  }

  .quote-content p {
    font-size: 1.1rem;
  }
}

/*sponser*/
:root {

  --bg-white: #ffffff;
}

.sponsor-section {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.logo-slider {
  margin-top: 40px;
  overflow: hidden;
  /* Hides logos outside the container */
  padding: 20px 0;
  position: relative;
  width: 100%;
}

/* Gradient Fades for a "Smooth" entry/exit effect */
.logo-slider::before,
.logo-slider::after {
  content: "";
  height: 100%;
  position: absolute;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  top: 0;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider::after {
  right: 0;
  top: 0;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-track {
  display: flex;
  width: calc(250px * 12);
  /* Adjust based on logo count and width */
  animation: scroll 30s linear infinite;
  /* Right to Left movement */
}

.logo-track:hover {
  animation-play-state: paused;
  /* Stops moving when user hovers */
}

.slide {
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.slide img {
  width: 100%;
  max-width: 160px;
  /*filter: grayscale(100%);*/
  opacity: 0.6;
  transition: all 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* The Animation Logic */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 6));
  }

  /* Moves by half the total track width */
}

/* Responsive speed */
@media (max-width: 768px) {
  .logo-track {
    animation: scroll 20s linear infinite;
  }
}