@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  vertical-align: baseline;
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden],
template {
  display: none;
}

a {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0);
  color: var(--text-black);
  cursor: pointer;
}

:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --text-black: #1e1e1e;
  --mid-black-color: #443737;
  --orange-color: #f2ad3f;
  --mint-green-color: #7fb800;
  --dark-green-color: #295135;
  --footer-green: #22432d;
  --red-shade: #cd1717;
  --font-family-poppins: "Poppins", sans-serif;
  --font-family-plus: "Plus Jakarta Sans", sans-serif;
}
svg.hidden {
  display: block;
}
sup,
.sup,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
}

sup,
.sup {
  font-size: 12px;
  font-weight: 800;
}

h1 {
  font-size: 68px;
  font-weight: 400;
}

h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.4;
}

h3 {
  font-size: 52px;
  font-weight: 400;
}

h4 {
  font-size: 38px;
  font-weight: 400;
}

h5 {
  font-size: 24px;
  font-weight: 400;
}

h6 {
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 1400px) {
  h1 {
    font-size: 55px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 42px;
  }

  h4 {
    font-size: 34px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 36px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  color: var(--white-color);
  text-decoration: none;
  transition: all 0.6s;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

/* General Styles */
body {
  line-height: 1.6;
  background-color: #ffffff;
  color: var(--text-black);
  font-family: var(--font-family-poppins);
  margin: 0;
}

.body-wrapper {
  position: relative;
}

.body-content-wrapper {
  padding-top: 95px;
}
.img-fluid {
  width: 100%;
}
/* Header */

/* Navbar Styles */
.site-header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 99;
}
.site-header-menu {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.logo-container {
  display: flex;
  flex: 1;
  justify-content: center;
}
.logo-container img {
  height: 45px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-black);
  font-weight: 400;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}
.drop-arrows svg {
  width: 24px;
  height: 24px;
  stroke: #000000;
  transition: transform 0.3s ease;
}
.drop-arrows button {
  border: unset;
  background-color: unset;
  padding: 0;
  float: inline-end;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red-shade);
}
.nav-links .drop-arrows svg:hover {
  transition: transform 0.3s ease;
  stroke: var(--red-shade);
}

.nav-links .drop-arrows .drop-toggle.active .icon {
  transform: rotate(180deg);
  stroke: var(--red-shade);
}

.quote-btn {
  background: var(--text-black);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.quote-btn svg {
  width: 12px;
  height: 12px;
}
.quote-btn:hover {
  background-color: var(--red-shade);
}

/* Section Styles */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle .menu-bar {
  width: 30px;
  height: 3px;
  background: var(--text-black);
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar-1 {
  transform: rotate(45deg) translate(6px, 5px);
}

.menu-toggle.active .bar-2 {
  opacity: 0;
}

.menu-toggle.active .bar-3 {
  transform: rotate(-45deg) translate(6px, -5px);
}

.hide-contact {
  display: none;
}
.hide-quote {
  display: flex;
  flex: 1;
  justify-content: center;
}
.section-arrow {
  position: absolute;
  bottom: 50px;
  right: 0;
  background: var(--red-shade);
  width: 16%;
  height: 33px;
  color: white;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-arrow svg {
  width: 9px;
  height: 9px;
}
.section-arrow:hover {
  background: #a62323;
}

.section-img h6 {
  font-weight: 500;
}
.section-img-2 a:hover,
.section-img a:hover {
  color: red;
}

/* Default: hide both */
.section,
.small-s-menu {
  display: none;
}

/* Show desktop version */
@media (min-width: 768px) {
  .section.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }
}

/* Show mobile version */
@media (max-width: 767px) {
  .small-s-menu.active {
    display: block;
    padding-left: 20px;
    list-style: none;
  }
}

/* menu */

@media (min-width: 768px) {
  .body-content-wrapper {
    padding-top: 104px;
  }
  .section-img {
    width: 30%;
  }
  .section-img-2 {
    width: 30%;
  }
  .logo-container img {
    height: 73px;
  }
  .hide-quote .footer-social {
    display: none;
  }
  .section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 40px;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    max-height: 1000px;
    opacity: 1;
  }
  .section-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-img {
    position: relative;
  }
  .section-img-2 {
    position: relative;
  }
  .section img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
  }

  .section ul {
    list-style: none;
    width: 25%;
  }

  .section ul li {
    border-bottom: 1px dotted #ccc;
    padding: 15px 0;
    font-size: 20px;
  }
  .about-us-a a:hover,
  .what-we-do-a a:hover {
    color: var(--red-shade);
  }
  /* Hidden Section */
  .hidden {
    max-height: 0;
    opacity: 0;
    padding: 0 40px;
    pointer-events: none;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-container {
    justify-content: flex-start;
  }
  .site-header {
    padding: 10px;
  }
  .site-header-menu {
    flex-wrap: wrap;
  }
  .hide-contact {
    display: flex;
  }

  .hide-quote {
    display: none;
  }

  .hide-quote.active {
    display: flex;
    flex-direction: column; /* Adjust based on your design */
    gap: 10px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links div {
    border-bottom: 1px dashed #bebebe;
    width: 100%;
    font-size: 25px;
    padding: 12px 0;
  }
  .nav-links.active .hide-quote {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
    background: #fff;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }

  .nav-links a {
    margin: 20px 0;
    width: 100%;
    font-size: 22px;
  }

  .nav-links.active {
    display: flex;
    align-items: start;
  }

  .quote-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    padding: 14px;
    justify-content: center;
    font-size: 20px;
  }

  .section {
    display: none;
  }
  .small-s-menu {
    display: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
  }

  .small-s-menu li {
    padding: 8px 0;
    list-style: none;
  }
  .small-s-menu li a {
    font-size: 18px;
    color: grey;
  }

  .small-s-menu.show {
    display: flex;
  }
  .drop-arrows svg {
    transform: rotate(-90deg);
  }
  .nav-links .drop-arrows .drop-toggle.active .icon {
    transform: rotate(0deg);
    stroke: var(--red-shade);
  }
}
/* site footer */
.site-footer {
  background: #fff;
}

.footer-top {
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

.footer-form {
  display: block;
  width: 90%;
  margin-top: 10px;
}

.footer-form input {
  flex: 1;
  /* min-width: 220px; */
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.footer-form button {
  background: var(--red-shade);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
}
.footer-contact {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
}
.footer-contact h6 {
  font-weight: 500;
  margin-bottom: 10px;
}
.footer-links h6 {
  font-weight: 700;
  font-size: 18px;
}
.footer-links {
  padding: 20px;
}
.footer-contact p,
.footer-links ul li {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-black);
}
.footer-contact a,
.footer-contact p {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-family-poppins);
}
.footer-contact a svg,
.footer-contact p svg {
  background-color: var(--red-shade);
  width: 29px;
  height: 29px;
  padding: 6px;
  border-radius: 8px;
}
.footer-contact a:hover {
  color: var(--red-shade);
}
.footer-contact i {
  color: var(--red-shade);
  margin-right: 8px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: var(--text-black);
  text-decoration: none;
  font-size: 16px;
}

.footer-links ul li a:hover {
  color: var(--red-shade);
}

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

.footer-social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #f5f6fa;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
  transition: background 0.3s;
}
.footer-social svg {
  width: 20px;
  height: 20px;
}
.footer-social a:hover {
  background: var(--red-shade);
}
.footer-social a:hover svg {
  fill: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-black);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--red-shade);
}

/* Responsive */
@media (min-width: 768px) {
  .footer-social {
    justify-content: end;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-contact {
    justify-content: space-around;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .footer-contact .location-svg svg {
    width: 50px;
    height: 32px;
  }
}

/* home page */
.home-banner {
  position: relative;
  overflow: hidden;
}

/* .home-banner-slider {
  width: 100%;
} */

.home-banner-slide {
  min-height: calc(100vh - 104px);
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
  padding: 0 40px;
  transition: background-image 0.3s ease-in-out;
}

/* Prevent showing all slides before Slick initializes */
.home-banner-slider {
  visibility: hidden;
}
.home-banner-slider.slick-initialized {
  visibility: visible;
}


.home-banner-content {
  max-width: 600px;
  color: #fff;
  z-index: 1;
}

.home-banner-content h1 {
  font-size: 38px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 30px;
}

.banner-buttons {
  display: flex;
  width: 100%;
  gap: 15px;
}
.banner-buttons a {
  border-radius: 12px;
  padding: 12px 20px;
  border: 1px solid #fff;
  background: #aeaeae8a;
  color: white;
  display: flex;
  gap: 10px;
  align-items: center;
}
.banner-buttons a:hover {
  background-color: var(--red-shade);
}
.banner-buttons .btn-service {
  background: var(--red-shade);
  color: #fff;
  border: 1px solid #cd1717 !important;
  text-decoration: none;
}

.banner-buttons .btn svg {
  width: 12px;
  height: 12px;
}
/* Slick Dots Custom */
.home-banner .slick-dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  left: auto;
  width: auto;
  display: flex;
  gap: 16px;
}

.home-banner .slick-dots li {
  margin: 0;
  justify-items: center;
  width: 100%;
  display: inline-block;
}

.home-banner .slick-dots li button:before {
  font-size: 55px;
  color: #cfd3d7fc;
  opacity: 0.5;
  display: contents;
  bottom: 0;
}

.home-banner .slick-dots li.slick-active button:before {
  color: transparent;
  display: block;
  opacity: 1;
  width: 55px;
  height: 18px;
  background: var(--red-shade);
  border-radius: 50px;
  position: relative;
}

.home-banner.slick-dots li {
  width: unset;
  height: unset;
  margin: 0;
}
.home-banner .slick-dots li button {
  padding: 0;
  display: contents;
}
/* Responsive - min-width only */
@media (max-width: 568px) {
  .home-banner-slide {
    min-height: 75vh;
  }
}
@media (max-width: 768px) {
  .home-banner-content h1 {
    font-size: 48px;
  }

  .banner-buttons {
    gap: 20px;
    flex-wrap: wrap;
    width: 60%;
  }
  .banner-buttons a {
    width: 165px;
    height: 60px;
    justify-content: center;
  }
  .home-banner .slick-dots {
    left: 60px;
    right: auto;
  }
}

@media (min-width: 1200px) {
  .home-banner-content h1 {
    font-size: 60px;
  }
}

/* bread crumb */
.bread-crumb {
  padding: 15px 0;
  font-family: var(--font-family-poppins);
}

.bread-crumb .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.breadcrumb {
  font-size: 16px;
  gap: 8px;
  margin: 0;
}

.breadcrumb a {
  text-decoration: none;
  color: #7e8ab8;
  transition: color 0.3s;
  font-weight: 500;
}

/* home about section */
.home-about-section {
  padding: 20px 0;
}

.home-about-content {
  padding: 20px;
}
.home-about-badge {
  display: inline-block;
  background: #f6f6f6;
  border: 1px solid #f6f6f6;
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.home-about-badge:hover {
  background-color: transparent;
  border: 1px solid black;
}

.home-about-content h5 {
  font-weight: 500;
  margin: 20px 0;
}

.home-about-content p {
  margin-bottom: 20px;
}

.home-about-counters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-direction: column;
    padding: 0 20px;
}

.home-about-counter {
  position: relative;
}

.home-about-count {
  font-size: 64px;
  font-weight: 500;
}

.home-about-unit {
  font-size: 24px;
  color: var(--red-shade);
  position: relative;
  font-weight: 600;
  right: 0px;
  top: -30px;
}

.home-about-label {
  font-size: 18px;
  color: #777;
}
.home-about-content a {
  gap: 10px;
}
.home-about-btn {
  background-color: var(--red-shade);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
    margin-left: 15px;
  gap: 6px;
  font-size: 16px;
  transition: background 0.3s;
}

.home-about-btn:hover {
  background-color: #a62323;
}
.home-about-btn svg {
  width: 10px;
  height: 10px;
}
.home-about-img {
  padding: 20px;
}
.home-about-img img {
  width: 100%;
}

/* Responsive */
@media (min-width: 768px) {
  .home-about-section {
    padding: 60px 0;
  }
  .home-about-content {
    padding: 20px 90px 20px 20px;
  }
  .home-about-counters {
    flex-direction: row;
  }
}

/* home solution */
.home-solution {
  padding: 80px 0 60px 0;
}

.home-solution-label {
  text-align: center;
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.home-solution-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

.home-solution-tags {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.home-solution-tag {
  color: var(--text-black);
  border: 1px solid #ddd;
  padding: 8px 18px;
  border-radius: 999px;
  background: #f8f8f8;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.home-solution-tag:hover {
  background: var(--text-black);
  color: #fff;
}

.home-solution-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.home-solution-slider {
  width: 100%;
}
.home-solution-slider .slick-list {
  width: 80%;
  margin: 0 auto;
}
.home-solution-slider .slick-slide {
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.blur-slide {
  opacity: 0.4;
}
.home-solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px; 
}

.home-solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(
    1deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 1;
}
.home-solution-card > * {
  position: relative;
  z-index: 2;
}

.home-solution-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.home-solution-card img:hover {
  cursor: pointer;
}

.home-solution-card-info {
  position: absolute;
  bottom: 4px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.home-solution-card-info h6 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
}
.home-solution-card-btn {
  background: var(--red-shade);
  color: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.home-solution-card-btn:hover {
  background: #a62323;
}

.home-solution-card-btn svg {
  width: 10px;
  height: 10px;
}

.home-solution-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-solution-happy-box {
  display: flex;
  justify-content: space-between;
  background: var(--text-black);
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  font-size: 18px;
}
.home-solution-happy-box p {
  margin: unset;
}
.home-solution-happy-box span {
  display: block;
}
.home-solution-avatars {
  display: flex;
  margin-top: 10px;
}

.home-solution-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
/* .home-fleet-galary p,
.home-fleet-galary h2 {
  display: none;
} */
.slider {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  position: relative;
  background: #fff;
}

.landing-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
  animation-delay: 0s; /* ✅ ENSURES NO DELAY */
  animation-play-state: running;
  will-change: transform; /* ✅ smoothness hint */
}

.box {
  width: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.box-content img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%); /* ✅ start off screen right */
  }
  100% {
    transform: translateX(-100%); /* ✅ exit fully to the left */
  }
}
.home-solution-description {
  font-size: 20px;
  padding: 25px 5px;
  line-height: 1.6;
}

.home-solution-slider .slick-slide {
  padding: 0 10px;
}

.home-solution-slider .slick-prev,
.home-solution-slider .slick-next {
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--text-black);
  width: 40px;
  height: 40px;
  z-index: 10;
}

.home-solution-slider .slick-prev::before {
  content: "";
  display: block;
  height: 20px;
  background-image: url(../images/prev-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  filter: invert(1);
}
.home-solution-slider .slick-next::before {
  content: "";
  display: block;
  height: 20px;
  background-image: url(../images/next-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  filter: invert(1);
}
/* home service section */
.home-service-section {
  background: var(--text-black);
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  color: var(--white-color);
  padding: 60px 0;
  position: relative;
  border-radius: 20px;
  margin: 0 20px;
}

.home-service-badge {
  display: inline-block;
  background: #f6f6f6;
  border: 1px solid #f6f6f6;
  color: #000000;
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.home-service-badge:hover {
  background-color: transparent;
  border: 1px solid #ffffff;
}
.home-service-badge:hover a {
  color: #ffffff;
}
.home-service-content {
  padding: 20px 12px;
  align-items: center;
}
.home-service-slider .slick-slide {
  justify-items: center !important;
}
.home-service-slider {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.home-service-wrap {
  border-radius: 16px;
  text-align: center;
  margin: 0 10px;
  position: relative;
}
.home-service-wrap .what-we-card {
  text-align: start;
  padding: 0;
}
.home-service-card {
  justify-items: center;
}
.what-we-card a:hover {
  color: red;
}
.home-service-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.home-service-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 16px;
  background: #f4f4f4;
  padding: 5px 8px;
  border-radius: 8px;
}

.home-service-cta {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--red-shade);
  color: white;
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 12px;
}

.home-service-card p {
  margin-top: 8px;
  font-weight: 500;
}

.home-service-center {
  background: #232323;
  max-width: 80%;
  text-align: center;
  padding: 60px;
  gap: 20px;
  margin: 5% 0 2% 0;
  color: #fff;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-service-center h4 {
  margin-bottom: 10px;
}

.btn-red {
  background: var(--red-shade);
  border: 1px solid var(--red-shade);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  margin-bottom: 10px;
  display: inline-block;
  text-decoration: none;
}
.btn-red:hover {
  background-color: transparent;
  border: 1px solid #c62828;
  color: #c62828;
}
.home-service-center span {
  font-size: 20px;
}

/* Arrows */
.home-service-prev,
.home-service-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #fff;
  z-index: 10;
}
.home-service-prev svg,
.home-service-next svg {
  width: 9px;
  height: 24px;
    filter: contrast(0.5);
}
.home-service-prev {
  left: 30px;
}

.home-service-next {
  right: 30px;
}

/* Bottom Scroll Icon */
.home-service-scroll {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%); 
    /* box-shadow: 0 14px 12px rgba(0, 0, 0, 0.15); */
  background: var(--red-shade);
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 15px solid #ffffff;
}
.home-service-scroll:hover {
  background: #951b1b;
}
.home-service-scroll svg {
  height: 24px;
  width: 24px;
}
.home-service-section button {
  display: none !important;
}
/* Responsive */
@media (max-width: 992px) {
  .home-service-slider .slick-slide > div {
    margin: 0 8px;
  }
}

@media (min-width: 768px) {
  .home-solution-side {
    width: 27%;
  }

  .home-solution-title {
    font-size: 40px;
  }

  .home-solution-wrapper {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .home-solution-slider {
    max-width: 73%;
  }
  .home-service-section button {
    display: block !important;
  }
}

/* home testimonail */
.home-testimonial-badge {
  display: inline-block;
  background: #f8f9fa;
  border: 1px solid #f8f9fa;
  color: #000000;
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.home-testimonial-badge:hover {
  background-color: transparent;
  border: 1px solid black;
}
.home-tesimonial-content {
  padding: 20px 12px;
  align-items: center;
}
.home-testimonial {
  padding: 40px 0;
  background: #fff;
}

.home-testimonial-slider {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* Card Base Style */
.home-testimonial-card {
  overflow: hidden;
  border-radius: 26px;
  background: #f5f5f5;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex !important;
  flex-direction: column;
  height: 100%;
  width: 165px !important;
}

/* Active Card Layout */

.home-testimonial-slider .slick-track {
  display: flex;
  gap: 20px;
}

.home-testimonial-card.active .home-testimonial-img {
  position: relative;
  width: 310px;
  height: 100%;
  margin: 0 auto;
}

/* Image Style */
.home-testimonial-img img {
  width: 100%;
  height: 497px;
  object-fit: cover;
  border-radius: 25px;
}

/* Name & Company */
.home-testimonial-meta {
  display: none;
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.home-testimonial-meta h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.home-testimonial-meta p {
  font-size: 13px;
  margin: 4px 0 0;
}

/* Content Area */

.home-testimonial-content span svg {
  width: 107px;
  height: 97px;
}
.home-testimonial-content p {
  font-size: 20px;
  margin: 0;
}

/* Slick Overrides */

.home-testimonial-slider .slick-dots {
  text-align: justify;
  padding: 15px 0;
}
.home-testimonial-slider .slick-prev,
.home-testimonial-slider .slick-next {
  bottom: -40px;
  width: 45px;
  height: 45px;
  border: 1px solid black;
  top: unset;
}

.home-testimonial-slider .slick-prev {
  right: 60px;
  left: unset;
}

.home-testimonial-slider .slick-prev::before {
  content: "";
  display: flex;
  height: 20px;
  background-image: url(../images/prev-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  filter: invert(1);
}
.home-testimonial-slider .slick-next::before {
  content: "";
  display: block;
  height: 20px;
  background-image: url(../images/next-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  filter: invert(1);
}
.slick-arrow {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 10;
}

/* Responsive */
@media (min-width: 768px) {
  .home-testimonial-content {
    display: none;
  }
  .home-testimonial-card {
    transition: all 0.4s ease;
    opacity: 0.7;
    transform: scale(0.98);
  }
  .home-testimonial-card.active {
    width: 720px !important;
    flex-direction: row;
    opacity: 1;
    transform: scale(1);
  }
  /* .home-testimonial-card.active {
    background: #fff;
    flex-direction: row;
    width: 360px !important;
    border: 1px solid #cfd3d7fc;
  } */

  .home-testimonial-slider .slick-slide {
    display: flex !important;
    justify-content: end;
    transition: all 0.4s ease;
  }
  .home-testimonial-slider .slick-slide.slick-current {
    display: flex !important;
    min-width: 900px !important;
    justify-content: end;
  }
  .home-testimonial-content {
    transition: opacity 0.4s ease;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }

  .home-testimonial-card.active .home-testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    opacity: 1;
    max-height: 500px;
    padding: 30px 25px;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .home-testimonial-slider {
    flex-direction: column;
  }

  .home-testimonial-card {
    flex-direction: column;
    width: 100% !important;
  }

  .home-testimonial-card .home-testimonial-img,
  .home-testimonial-card .home-testimonial-content {
    width: 100%;
  }
  .home-testimonial-card .home-testimonial-content {
    padding: 20px;
  }

  .home-testimonial-meta {
    color: #000;
    text-shadow: none;
    display: none;
  }
}

.home-testimonial-card.active .home-testimonial-content {
  display: flex;
  flex-direction: column;
}

/* about-us page */
.pages-banners {
  height: 560px;
  /* background-position: 50%; */
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
}

/* .about-us-banner {
  background-image: url(../images/about-us-banner.png);
} */

@media (max-width: 768px) {
  .pages-banners {
    height: 300px;
    background-size: cover;
    background-position-x: center;
  }
  .pages-banners img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}
.about-snippet-1-section {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .sm-revers {
    flex-direction: column-reverse;
  }
  .about-snippet-1-section {
    padding: 20px 0;
  }
}
.about-1-head {
  width: 80%;
  margin-bottom: 20px;
  font-size: 48px;
}
.about-1-paragraph {
  padding: 10px 30px 10px 10px;
}
.about-1-paragraph p {
  font-size: 20px;
  margin-bottom: 20px;
}

.about-snippet-1-image-wrapper {
  padding: 20px;
}

.about-snippet-1-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Counter Row */
.about-1-counter {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 30px;
  flex-direction: column;
}
.about-snippet-1-counter {
  position: relative;
}

.about-snippet-1-count {
  font-size: 64px;
  font-weight: 500;
}

/* .about-snippet-1-unit {
  font-size: 24px;
  color: var(--red-shade);
  position: relative;
  font-weight: 600;
  right: 0px;
  top: -30px;
} */
.about-snippet-1-unit {
  font-size: 30px;
  color: var(--red-shade);
  position: relative;
  font-weight: 600;
  right: 0px;
  top: -12px;
}
.about-1-counter p {
  margin-bottom: 20px;
}
.about-snippet-2-section {
  background: var(--red-shade);
  color: #fff;
  padding: 60px 0;
}

.about-snippet-2-image {
  padding: 20px 0;
  border-radius: 12px;
}

.about-snippet-2-image img {
  width: 100%;
}

.about-snippet-2-content {
  padding-top: 30px;
}
.about-snippet-2-content h3 {
  margin-bottom: 20px;
}

.about-snippet-2-paragraph {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #fff;
}

.about-snippet-2-link {
  margin: 45px 0;
  display: block;
}

.about-snippet-2-link a {
  border: 1px solid white;
  border-radius: 12px;
  padding: 16px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.about-snippet-2-link svg {
  width: 14px;
  height: 14px;
}

/* Tag Buttons */
.about-snippet-2-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.about-snippet-2-tags::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.about-snippet-2-tags .tag {
  display: flex;
  /* background: #ff2323; */
  border: 1px solid #ff2323;
  color: #ffffff;
  font-weight: 500;
  padding: 12px 30px;
  /* border-radius: 12px; */
  white-space: nowrap;
  transition: 0.3s;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0; /* Prevent shrinking in scroll */
}

.about-snippet-2-tags .tag:hover {
  background: transparent;
  border: 1px solid #ff2323;
}

.about-snippet-2-tags svg {
  width: 37px;
  height: 24px;
}
.about-snippet-3-section {
  padding: 60px 0;
}

.about-snippet-3-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.about-snippet-3-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}

.about-snippet-3-desc {
  max-width: 500px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.about-snippet-3-section {
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.about-snippet-3-container {
  max-width: 1100px;
  margin: auto;
}

.about-snippet-3-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}

.about-snippet-3-right p {
  max-width: 500px;
  font-size: 20px;
}

.about-snippet-3-filters {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}
.about-snippet-3-filters p {
  padding: 0 10px;
  margin: 0;
  font-size: 18px;
}
.filter-btn-first {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.filter-btn-last {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.filter-btn {
  width: 188px;
  height: 64px;
  background: #f8f9fa;
  border: none;
  border: 1px solid #cfd3d7fc;
  cursor: pointer;
  color: #7e8ab8;
  transition: 0.3s;
}

.filter-btn.active {
  background: var(--red-shade);
  color: #fff;
}

.about-snippet-3-timeline {
  position: relative;
  border-left: 2px solid var(--red-shade);
  margin-left: 100px;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-date {
  position: absolute;
  left: -140px;
  font-size: 13px;
  color: #7e8ab8;
  width: 130px;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: -7px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--red-shade);
  border: 3px solid white;
  border-radius: 50%;
  z-index: 2;
}

.timeline-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-direction: column;
  margin-left: 40px;
}

.content-text {
  max-width: 90%;
}

.content-text h4 {
  font-weight: 700;
  margin-bottom: 30px;
}

.content-image {
  width: 100%;
}
.content-image img {
  width: 100%;
  border-radius: 6px;
}

.about-snippet-3-btn {
  margin-top: 40px;
  text-align: center;
}

.about-snippet-3-btn button {
  background: var(--red-shade);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Responsive: min-width approach */
@media (min-width: 768px) {
  .about-snippet-2-tags {
    flex-wrap: wrap;
    overflow-x: unset;
    justify-content: flex-start;
  }
  .about-snippet-2-tags {
    flex-wrap: wrap;
    overflow-x: unset;
  }
  .timeline-content {
    flex-direction: row;
  }
  .content-text {
    max-width: 55%;
  }
  .about-snippet-2-content h3 {
    max-width: 600px;
  }
  .about-snippet-2-content {
    max-width: 85%;
  }
  .about-1-counter {
    flex-direction: row;
  }
}

/* certificate page */
.certificate-page {
  background-image: url(../images/certificate-banner.png);
}
.certificate-grid {
  display: grid;
}
.certificate-wrapper {
  padding: 5px;
  margin: 5px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  border-radius: 10px;
  box-shadow: 0 0px 16px rgba(0, 4, 45, 0.15);
}
.certificate-section {
  padding: 40px 0;
  background-color: #fff;
}

.certificate-section .container {
  max-width: 1200px;
  margin: auto;
}

.certificate-header,
.blog-p-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  align-items: center;
}

.certificate-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 0 0 transparent;
  margin-bottom: 15px;
}

.certificate-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.certificate-image {
  width: fit-content;
}
.certificate-image img {
  width: 100%;
  height: 277px;
  border-radius: 8px;
  display: block;
}

.certificate-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}
.certificate-bottom h6 {
  font-weight: 600;
  margin: 0;
}

.certificate-icon {
  background: var(--red-shade);
  color: #fff;
  min-width: 40px;

  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.certificate-icon svg {
  width: 9px;
  height: 9px;
}
.certificate-icon:hover {
  background: #a82323;
}
@media (min-width: 768px) {
  .certificate-header {
    flex-direction: row;
    justify-content: space-between;
  }
  .certificate-header p {
    width: 50%;
  }
  .blog-p-header {
    flex-direction: row;
  }
  .certificate-header h2,
  .blog-p-header h2 {
    max-width: 400px;
  }
}
/* Gallery Popup Styles */
.gallery-popup {
  position: fixed;
  inset: 0;
  background: var(--white-color);
  color: var(--black-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gallery-popup.hidden {
  display: none;
}

.gallery-close {
  background: var(--black-color);
  color: var(--white-color);
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  margin: 0 20px 0 0;
  float: left;
  position: relative;
  z-index: 999;
}
/* .home-fleet-galary .gallery-close {
  margin: 0;
} */
/* div#galleryPopup .container {
    overflow-y: auto;
} */
.gallery-image-wrapper {
  position: relative;
  text-align: center;
  width: 95%;
  margin: auto;
}

.gallery-image-wrapper img {
  max-width: 100%;
  border-radius: 8px;
  height: auto;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background: rgba(255, 255, 255, 0.2); */
  border: none;
  font-size: 28px;
  /* color: #fff; */
  padding: 10px;
  width: 50px;
  display: flex;
  border: 1px solid var(--black-color);
  cursor: pointer;
  border-radius: 50%;
  height: 50px;
  justify-content: center;
  align-items: center;
}
.gallery-arrow svg {
  width: 10px;
  height: 20px;
    filter: brightness(0.5);
}
.gallery-arrow.left {
  left: -6px;
}

.gallery-arrow.right {
  right: -6px;
}

.gallery-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--black-color);
}
@media (min-width: 768px) {
  .gallery-close {
    margin: 15px 20px 0 0;
  }
  .gallery-image-wrapper img {
    max-width: 66%;
  }
  .gallery-arrow.left {
    left: -20px;
  }

  .gallery-arrow.right {
    right: -20px;
  }
}
/* blog page */
.blog-page {
  background-image: url(../images/blog-banner.png);
}
.blog-p-header {
  margin-top: 40px;
  display: flex;
  gap: 25%;
}
.blog-p-filters {
  margin-bottom: 20px;
  display: flex;
  font-family: var(--font-family-plus);
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.blog-p-filter-btn {
  padding: 6px 14px;
  border: 1px solid #f8f9fa;
  background: #f8f9fa;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;

  color: #7e8ab8;
}

.blog-p-filter-btn.active {
  background: var(--text-black);
  color: white;
  border-color: var(--text-black);
}
.blog-card {
  padding: 40px 0;
}
.blog-p-card {
  margin-bottom: 25px;
  transition: transform 0.2s ease;
  font-family: var(--font-family-plus);
}

.blog-p-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.blog-p-card h5 {
  font-weight: 500;
}
.blog-p-card h5:hover {
  color: var(--red-shade);
}
.blog-p-meta {
  font-size: 14px;
  color: #7e8ab8;
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  gap: 15px;
}
.blog-p-meta span {
  border: 1px solid #f8f9fa;
  font-weight: 500;
  padding: 4px 20px;
  border-radius: 25px;
  background-color: #f8f9fa;
  font-size: 16px;
}

/* faq page */
/* .faq-page {
  background-image: url(../images/faq-banner.png);
} */
.faq-snippit-section {
  padding: 60px 0;
}

.faq-snippit-container {
  max-width: 900px;
  margin: auto;
}

.faq-snippit-header h2 {
  margin-bottom: 25px;
}

.faq-snippit-header p {
  margin-bottom: 30px;
}

.faq-snippit-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.faq-snippit-filter {
  border: none;
  padding: 4px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  color: #7e8ab8;
  background: #f8f9fa;
  font-family: var(--font-family-plus);
  cursor: pointer;
  transition: 0.3s;
}

.faq-snippit-filter.active {
  background: var(--text-black);
  color: #fff;
}

.faq-snippit-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-snippit-item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #f9f9f9;
  transition: 0.3s;
}

.faq-snippit-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-family-plus);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-snippit-answer {
  display: none;
  padding: 0 16px 16px;
  font-size: 16px;
  font-family: var(--font-family-plus);
}

.faq-snippit-item.active .faq-snippit-answer {
  display: block;
}

.faq-snippit-item.active .faq-snippit-icon {
  transform: rotate(180deg);
}
.faq-snippit-icon {
  transition: transform 0.3s ease;
}
.faq-snippit-icon svg {
  width: 14px;
  height: 7px;
  transition: transform 0.3s ease;
}

.faq-snippit-more {
  margin-top: 20px;
}

.faq-snippit-more-btn {
  padding: 6px 30px;
  border: none;
  background: #dbdce2;
  border: 1px solid #f5f6fa;
  border-radius: 25px;
  font-family: var(--font-family-plus);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-snippit-more-btn:hover {
  background: transparent;
  border: 1px solid #f5f6fa;
}

/* blog detail page */
/* .blog-detail-page {
  background-image: url(../images/blog-detail-banner.png);
} */
.blog-detail-wrapper {
  max-width: 750px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111;
}

.blog-detail-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #7a84b7;
  align-items: center;
}

.blog-detail-category {
  background-color: #f6f7f9;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
}

.blog-detail-title {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.blog-detail-author {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.blog-detail-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.blog-detail-content h3 {
  font-size: 20px;
  margin: 30px 0 10px;
  font-weight: 600;
  color: #222;
}

.blog-detail-share {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}
.blog-detail-icons {
  display: flex;
  gap: 10px;
}
.blog-detail-icons a {
  display: inline-flex;
  background: #000000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.blog-detail-icons svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.blog-detail-icons a:hover {
  background: var(--red-shade);
}

/* testimonail page */
.testimonial-page {
  background-image: url(../images/testimonail-banner.png);
}
.testimonial-p-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  margin-top: 40px;
  align-items: center;
}
.testimonial-p-slider .slick-slide {
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.testimonial-p-slider {
  position: relative;
  margin-bottom: 20px;
}
.testimonial-p-slider .slick-dots {
  text-align: justify;
  bottom: 0 !important;
}
.testimonial-p-slide {
  padding: 20px 0;
}

.testimonial-p-card {
  display: flex;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 33px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  align-items: stretch;
}

.testimonial-p-img img {
  height: auto;
  object-fit: cover;
}

.testimonial-p-text {
  padding: 30px;
  flex: 1;
  position: relative;
}
.footer-bottom a:hover {
  color: var(--red-shade);
}
.testimonial-p-text span svg {
  width: 107px;
  height: 97px;
}

.testimonial-p-company {
  font-size: 20px;

  color: #7a84b7;
  text-decoration: none;
}
.testmonial-slider-wrap {
  position: relative;
}
/* Arrows */
.testimonial-p-nav {
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
}

.testimonial-p-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--text-black);
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  margin: 0 5px;
}
.testimonial-p-arrow svg {
  width: 9px;
  height: 24px;
  filter: invert(1);
}

.testimonial-p-arrow:hover {
  background-color: #eee;
}

/* Thumbnails */
.testimonial-p-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.testimonial-p-thumbs .slick-list {
  padding: 20px 0;
}

.testimonial-p-thumbs img {
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
}

.testimonial-p-thumbs img:hover {
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .testimonial-p-header {
    flex-direction: row;
  }
  .testimonial-p-header h2 {
    min-width: 40%;
  }
  .testimonial-p-header p {
    min-width: 60%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-p-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-p-img img {
    width: 100%;
    max-width: 250px;
  }

  .testimonial-p-text {
    padding: 20px;
  }

  .testimonial-p-header {
    flex-direction: column;
    gap: 10px;
  }
}

/* what we do page */
/* Base styles */
/* .what-we-banner {
  background-image: url(../images/what-we-banner.png);
} */
.what-we-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.what-we-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  justify-content: space-between;
}

.what-we-title {
  font-size: 28px;
  font-weight: bold;
}

.what-we-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.what-we-card {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  color: var(--black-color);
  padding: 25px;
  position: relative;
}
.what-we-card span {
  display: block;
  color: var(--text-black);
  /* margin-bottom: 10px; */
}
.what-we-image {
  position: relative;
  margin-bottom: 12px;
}

.what-we-image img {
  width: 100%;
  display: block;
}
.what-we-icon {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 20%;
  height: 20%;
  align-items: center;
  justify-content: center;
}
.what-we-icon svg {
  width: 40px;
  height: 25px;
}
.what-we-grid .what-we-arrow {
  width: 42px;
  height: 27px;
}
.home-service-card-info-2{
  width: 100% !important;
}
.home-service-card-info {
    display: flex;
    width: 95%;
    justify-content: space-between;
    align-items: center;
}
.home-service-card-info .what-we-arrow {
      width: 55px;
    height: 34px;
}

.what-we-arrow {
  /* position: absolute; */
  bottom: 0;
  right: 0;
  background: var(--red-shade);
  width: 15%;
  height: 11%;
  color: white;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-we-arrow:hover {
  background: #a62323;
}
.what-we-arrow svg {
  width: 9px;
  height: 9px;
}
.what-we-label {
  font-size: 20px;
  color: var(--white-color); 
}
.what-we-label:hover {
  color: var(--red-shade);
}
.home-service-head {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .what-we-header {
    flex-direction: row;
  }
  .what-we-header .waht-we-p {
    width: 50%;
  }
  .what-we-header h3 {
    width: 40%;
  }
  .what-we-grid .what-we-arrow {
    width: 74px;
    height: 40px;
  }
  .what-we-title {
    flex: 1;
  }

  .what-we-description {
    flex: 1;
    max-width: 600px;
  }

  .what-we-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .what-we-label {
    font-size: 24px; 
  }
}

@media (min-width: 1024px) {
  .what-we-grid {
    gap: 30px;
  }
}

/* stie forms */
.site-form-section {
  background-color: #f5f6fa;
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.site-form-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 513px;
  background: url("../images/form-bg.png") no-repeat right top;
  background-size: cover;
  border-bottom-left-radius: 15%;
  border-bottom-right-radius: 15%; /* 👈 curve bottom left corner */
  z-index: -1;
}

.site-form-header {
  max-width: 700px;
  margin: auto;
  text-align: center;
  padding: 20px 0 30px;
}

.site-form-header h3 {
  color: #fff;
  margin-bottom: 15px;
}

.site-form-header p {
  font-size: 15px;
  color: #ffeaea;
}

.site-form-box {
  background: #fff;
  border-radius: 20px;
  max-width: 850px;
  margin: auto;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-form-form {
  width: 100%;
}

.site-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 20px;
}

.site-form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
}

.site-form-group input,
.site-form-group select,
.site-form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
}

.site-form-group textarea {
  height: 100px;
  resize: vertical;
}
.site-form-group .preselected-display {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
}
.site-form-full {
  grid-column: 1 / -1;
}

.site-form-note {
  font-size: 12px;
  color: #555;
  margin-top: 20px;
}
.site-form-note a {
  font-weight: 600;
}
.site-form-note a:hover {
  color: var(--red-shade);
}

.site-form-submit {
  text-align: left;
  margin-top: 20px;
}

.site-form-submit button {
  background-color: var(--red-shade);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-form-submit svg {
  width: 12px;
  height: 12px;
}
.site-form-submit button:hover {
  background-color: var(--red-shade);
}

@media (max-width: 600px) {
  .site-form-header h2 {
    font-size: 22px;
  }
  .site-form-box {
    padding: 20px;
  }
}

/* staff page */
.staff-page-banner {
  background-image: url(../images/staff-banner.png);
}
.staff-snippit-1-section {
  padding: 60px 0;
}
.staff-content-left {
  padding: 20px 40px;
}
.staff-content-left h3 {
  margin-bottom: 20px;
}
.staff-content-left p {
  margin-bottom: 40px;
}
.staff-snippit-1-btn {
  background: var(--red-shade);
  color: #fff;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 12px;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.staff-snippit-1-btn svg {
  width: 10px;
  height: 10px;
}

.staff-snippit-1-btn:hover {
  background: #a92323;
}
.staff-snippit-1-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.staff-snippit-1-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  transition: 0.3s ease;
  display: grid;
}

.staff-snippit-1-icon img {
  display: flex;
  width: 60px;
  height: 60px;
  margin-bottom: 17px;
}
/* .staff-snippit-1-icon svg {
  width: 45px;
  height: 45px;
} */

.staff-snippit-1-card h6 {
  margin-bottom: 10px;
}
.staff-snippit-1-card p {
  margin-bottom: 10px;
}
.what-bottom-slider-section {
  padding: 60px 0;
  overflow: hidden;
}

.what-bottom-slider .what-bottom-slide {
  position: relative;
  padding: 10px;
}
.what-bottom-slider .slick-slide {
  padding: 10px;
}
.what-bottom-slider .what-bottom-slide img {
  border-radius: 20px;
  display: block;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.what-bottom-slide img:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .what-bottom-slider .what-bottom-slide img {
    height: auto;
  }
  .staff-snippit-1-feature-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .staff-snippit-1-section {
    padding: 30px 0;
  }
}
.what-bottom-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(
    1deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border-radius: 25px;
  z-index: 1;
}
.what-bottom-slide > * {
  position: relative;
  z-index: 2;
}
/* Slick arrows */
.what-bottom-slider .slick-prev,
.what-bottom-slider .slick-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  border: 2px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.what-bottom-slider .slick-prev {
  left: 30px;
}

.what-bottom-slider .slick-next {
  right: 30px;
}

.what-bottom-slider .slick-prev::before {
  content: "";
  display: block;
  height: 20px;
  background-image: url(../images/prev-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.what-bottom-slider .slick-next::before {
  content: "";
  display: block;
  height: 20px;
  background-image: url(../images/next-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
/* Responsive */

.staff-snippet-2-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.staff-snippet-2-item {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid #eee;
  padding: 20px;
  align-items: center;
  justify-content: center;
}
.staff-snippet-2-item img {
  width: 45px;
  height: 45px;
}
.staff-snippet-2-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-top: 4px;
}

.staff-snippet-2-content h6 {
  margin-bottom: 10px;
  font-weight: 500;
}

.staff-snippet-2-content p {
  margin-bottom: 6px;
}
.staff-snippet-2-align {
  align-items: center;
}
.staff-snippet-2-image {
  width: 100%;
  border-radius: 20px 20px 20px 60px; /* Fancy corner cut */
  object-fit: cover;
}
.staff-left-wrapper {
  justify-self: center;
  margin-bottom: 15px;
}
/* Responsive using min-width */
@media (min-width: 768px) {
  .staff-left-wrapper {
    width: 70%;
    margin-bottom: unset;
  }
  .staff-snippet-2-content h6 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
  }
  .what-bottom-slider .slick-prev {
    left: 90px;
  }

  .what-bottom-slider .slick-next {
    right: 90px;
  }
}
@media (max-width: 767px) {
  .staff-snippet-2-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
}

/* continuous loop slider */
.slider {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  position: relative;
  background: #fff;
}

.slider-track {
  display: flex;
  width: fit-content;
  /* animation: scroll 40s linear infinite; */
  transform: translateX(100%);
}

.landing-wrapper {
  display: flex;
  gap: 40px;
  min-width: 100vw;
}

.box {
  width: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.box-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* ✅ Keyframe immediately moves left */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.school-page-banner {
  background-image: url(../images/school-banner.png);
}
.guest-page-banner {
  background-image: url(../images/guest-banner.png);
}
.bus-page-banner {
  background-image: url(../images/bus-banner.png);
}

/* fleet page */
.fleet-page-banner {
  background-image: url(../images/fleet-banner.png);
}

/* Base styles */

.fleet-wrapper {
  padding: 40px 0;
  text-align: center;
}

/* Title */
.fleet-title {
  margin-bottom: 20px;
}

/* Filters */
.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.fleet-filter {
  background: #f2f2f2;
  border: none;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fleet-filter.active,
.fleet-filter:hover {
  background: var(--text-black);
  color: #fff;
}
/* .home-solution-tag.active, */

.home-solution-tag:hover {
  background: var(--text-black);
  color: #fff;
}
/* Card Styles */
.fleet-card {
  overflow: hidden;
  text-align: left;
  transition: 0.3s ease;
  position: relative;
  margin-bottom: 15px;
}
.fleet-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.fleet-card img:hover {
  cursor: pointer;
}
.fleet-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.fleet-button {
  background: var(--red-shade);
  color: white;
  margin: 0 5px;
  min-width: 45px;
  height: 37px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.fleet-button svg {
  width: 12px;
  height: 12px;
}
.fleet-info {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fleet-info h6 {
  margin-bottom: 5px;
  font-weight: 600;
}

.fleet-info p {
  margin: 0;
}

/*  terms page */
.terms-page-banner {
  background-image: url(../images/terms-condition-banner.png);
}
/* Terms & Conditions Section */
.terms-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Arial", sans-serif;
  background-color: #fff;
}

.terms-title {
  margin-bottom: 25px;
}

.terms-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 30px 0;
}

.terms-text {
  margin-bottom: 20px;
}

/* Optional: Responsive for readability */
@media (min-width: 768px) {
  .terms-subtitle {
    font-size: 20px;
  }
}

/* contact-us page */
.contact-us-banner {
  background-image: url(../images/contact-us-banner.png);
}

.contact-snippet-1 {
  padding: 20px 0;
  text-align: center;
}
.contact-snippet-1-header {
  padding: 20px 0;
}
.contact-snippet-1-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: var(--font-family-plus);
}

.contact-snippet-1-desc {
  font-size: 20px;
  margin: 4px 0;
}

.contact-snippet-1-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 30px 0;
}

/* Icons */
.contact-snippet-1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 6px;
  border: 2px dashed #6f6c6c;
}
.contact-snippet-1-icon svg {
  width: 40px;
  height: 40px;
}

.contact-snippet-1-item h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-snippet-1-item p {
  margin-bottom: 10px;
}

.contact-snippet-1-item a {
  color: var(--red-shade);
  font-weight: 700;
  text-decoration: none;
}
.contact-snippet-1-item a:hover {
  text-decoration: underline;
}
.contant-us-form {
  padding: 40px 0;
}
.contact-map-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.contact-map-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}

/* for error 404 page */
.container-set {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}
.header-middle {
  border-bottom: 0.1rem solid #f4f4f4;
}
.error-content {
  color: #777;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.025em;
  padding-top: 8.5rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 480px;
  background-color: #fdfdfd;
}
.error-title {
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.error-content p {
  margin-bottom: 2.5rem;
}
.btn.btn-minwidth-lg {
  min-width: 218px;
}
.btn i:last-child {
  margin-left: 1rem;
}
.btn-outline-primary-2 {
  color: #d92429;
  background-color: transparent;
  background-image: none;
  border-color: #d92429;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.85rem 1.5rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  min-width: 100px;
  border-radius: 8px;
  white-space: normal;
  transition: all 0.3s;
}
.icon-long-arrow-right:before {
  content: "\f274";
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "molla";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn-outline-primary-2:hover,
.btn-outline-primary-2:focus {
  color: #fff;
  background-color: #d92429;
  border-color: #d92429;
  box-shadow: none;
}
@media (min-width: 768px) {
  .contact-snippet-1-item {
    justify-content: space-between;
    height: 100%;
    margin: 10px 0;
  }
  .contact-snippet-1-icon {
    margin: 0;
  }
  .contact-snippet-1-item h6 {
    margin: 0;
  }
  .contact-snippet-1-item p {
    margin: 0;
  }
  .contact-snippet-1-title {
    font-size: 56px;
  }
}
