/* =========================
   GLOBAL VARIABLES
========================= */
:root {
  /* Colors */
  --primary: #194056;
  --light-bg: #f3f3f3;
  --text-dark: #1E1833;
  --text-muted: #6c757d;
  --white: #ffffff;

  /* Typography */
 --font-family: 'Raleway', sans-serif;
  --font-sm: 13px;

  /* Spacing */
  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;

  /* Layout */
  --section-padding: 60px;

  /* Radius */
  --radius-sm: 4px;
}

/* =========================
   GLOBAL RESET
========================= */
body {
  font-family: var(--font-family);
  color: var(--text-dark);
  margin: 0;
}

p{
  font-size: 18px;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  background: var(--light-bg);
  font-size: var(--font-sm);
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xs) 0;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

.top-bar-item i {
  font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
}
/* =========================
   MAIN HEADER (EXACT MATCH)
========================= */
.main-header {
  background: #fff;
  padding: 15px 0;
}

/* Logo */
.header-logo img {
  /*max-height: 90px;*/
  max-height: 130px;
  width: auto;
}

/* Tagline */
.header-tagline {
  font-size: 30px;
  font-weight: 500;
  color: #2f5d73;
  margin: 0;
  line-height: 1.2;
}

/* RIGHT WRAPPER */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

/* Language buttons */
.lang-switch {
  display: flex;
}

.lang-btn {
  font-size: 15px;
  padding: 5px 14px;
  border: 1px solid #566FB8;
  background: transparent;
  color: #566FB8;
  cursor: pointer;
  font-weight: 600;
}

.lang-btn-outline {
  background: transparent;
}

.lang-btn-filled {
  background: #566FB8;
  color: #fff;
}

/* Remove gap between buttons */
.lang-btn + .lang-btn {
  margin-left: -1px;
}

/* Subsidiary inline */
.subsidiary {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}

.subsidiary span {
  font-size: 13px;
  font-weight: 500;
  color: #545454;
  white-space: nowrap;
}

.subsidiary img {
  max-height: 75px;
  width: auto;
}

/* =========================
   RESPONSIVE (MATCH STYLE)
========================= */
@media (max-width: 991px) {
  .header-tagline {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .main-header .row {
    text-align: center;
  }

  .header-right {
    justify-content: center;
    margin-top: 10px;
  }

  .header-logo {
    text-align: center;
    margin-bottom: 10px;
  }
}
/* =========================
   NAVIGATION
========================= */
.main-nav {
  background: #e9e9e9;
  padding: 0;
}

/* Remove default bootstrap spacing */
.main-nav .navbar-nav {
  margin: 0;
  padding: 0;
}

/* Menu alignment */
.nav-menu {
  display: flex;
  align-items: center;
}

/* Menu items */
.nav-menu .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding: 14px 22px;
  display: block;
  transition: all 0.2s ease;
}

/* Hover */
.nav-menu .nav-link:hover {
  background: #dcdcdc;
  color: #000;
}

/* Active item (Home) */
.nav-menu .nav-link.active {
  background: #3a3a3a;
  color: #fff;
}

/* Remove rounded */
.nav-menu .nav-link {
  border-radius: 0;
}

/* =========================
   MOBILE
========================= */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu .nav-link {
    width: 100%;
    padding: 12px 15px;
  }
}
/* =========================
   HERO SLIDER
========================= */
.hero-slider {
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 600px;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  z-index: 1;
}

/* =========================
   JCBs (BACK LAYER)
========================= */
.hero-jcb {
  position: absolute;
  bottom: 0;
  z-index: 2;
  opacity: 0;
}

.hero-jcb-left {
  left: 2%;
  max-height: 420px;
  bottom: 50px;
  transform: translateX(-50px);
}

.hero-jcb-right {
  right: 2%;
  bottom: 50px;
  max-height: 420px;
  transform: translateX(50px);
}

/* =========================
   TRUCKS (FRONT LAYER)
========================= */
.hero-trucks {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  display: flex;
  align-items: flex-end;
  gap: 0px;
  z-index: 3;
  opacity: 0;
}

.truck {
  max-height: 260px;
}

.truck-center {
  max-height: 320px;
}

/* =========================
   ANIMATION TRIGGER
========================= */
.swiper-slide-active .hero-jcb {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s ease;
}

.swiper-slide-active .hero-trucks {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  transition: all 1s ease 0.4s;
}

/* =========================
   OTHER SLIDES
========================= */
.hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .hero-slide {
    height: 450px;
  }

  .truck {
    max-height: 180px;
  }

  .truck-center {
    max-height: 220px;
  }

  .hero-jcb {
    max-height: 280px;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    height: 350px;
  }

  .hero-jcb {
    display: none;
  }

  .truck {
    max-height: 140px;
  }

  .truck-center {
    max-height: 170px;
  }
}
/* =========================
   ABOUT SECTION (UPDATED)
========================= */
.about-section {
  background: #1f4b5f;
  padding: 70px 0;
  color: #fff;
}

/* Reduce gap */
.about-section .row {
  align-items: center;
}

/* Content */
.about-content {
  max-width: 500px;
}

/* Heading */
.about-content h2 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Paragraph */
.about-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #d6e3ea;
}

/* Button */
.about-btn {
    display: inline-block;
    background: #4a8fb3;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: rgba(24, 24, 24, 0.7);
    color: #fff;
    text-decoration: none;
}

/* =========================
   SLIDER
========================= */
.about-slider {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

/* Images */
.about-slider img {
  width: 100%;
  height: 419px;
  display: block;
}

/* Arrows */
.about-prev,
.about-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  width: 35px;
  height: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

.about-prev {
  left: 0px;
}

.about-next {
  right: 0px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .about-content {
    margin-bottom: 30px;
    text-align: center;
    max-width: 100%;
  }

  .about-slider {
    margin: 0 auto;
  }
}
/* =========================
   GROUP COMPANIES
========================= */
.group-companies {
  background: #f2f2f2;
  padding: 70px 0;
}

/* Title */
.group-title {
  font-size: 38px;
  font-weight: 500;
  color: #2f5d73;
  margin-bottom: 50px;
}

/* Logos row */
.group-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Logos */
.group-logos img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

/* Optional subtle hover */
.group-logos img:hover {
  transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .group-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .group-logos {
    gap: 30px;
  }

  .group-logos img {
    max-height: 100px;
  }
}

@media (max-width: 576px) {
  .group-logos {
    gap: 20px;
  }

  .group-logos img {
    max-height: 80px;
  }
}

/* =========================
   FLEET SECTION
========================= */
.fleet-section {
  background: #f2f2f2;
  padding: 70px 0;
}

/* Title */
.fleet-title {
  font-size: 50px;
  font-weight: 500;
  color: #2f5d73;
  margin-bottom: 50px;
}

/* Row spacing */
.fleet-row {
  justify-content: center;
  gap: 20px 0;
}

/* Card */
.fleet-card {
  display: block;
  text-align: center;
  text-decoration: none;
}

/* Image */
.fleet-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Title */
.fleet-card h3 {
  margin-top: 15px;
  font-size: 25px;
  font-weight: 500;
  color: #2f5d73;
}

/* Hover (very subtle like original) */
.fleet-card:hover img {
  transform: scale(1.03);
  transition: 0.3s ease;
}

/* Bottom text */
.fleet-desc {
  text-align: center;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.fleet-desc p {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .fleet-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .fleet-section {
    padding: 50px 0;
  }

  .fleet-card img {
    max-width: 100%;
  }
}
/* =========================
   PARTNERS SECTION
========================= */
.partners-section {
  background: #1f4b5f;
  padding: 70px 0;
}

/* Title */
.partners-title {
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 50px;
}

/* Logos wrapper */
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Individual box */
.partner-item {
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 100px;
  overflow: hidden;
}

/* Logo */
.partner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .partners-title {
    font-size: 32px;
  }

  .partners-logos {
    gap: 20px;
  }

  .partner-item {
    min-width: 130px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .partner-item {
    min-width: 110px;
    height: 70px;
    padding: 10px 15px;
  }
}
/* =========================
   MAP SECTION
========================= */
.map-section {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .map-section {
    height: 300px;
  }
}
/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  background: #1f4b5f;
  padding: 80px 0;
  color: #fff;
}

/* LEFT */
.contact-left h2 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 18px;
  color: #d6e3ea;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  font-size: 18px;
}

.contact-info i {
  width: 35px;
  height: 35px;
  background: #2f5d73;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   FORM
========================= */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #8aa5b3;
  padding: 12px 15px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c8d8e0;
}

/* Button */
.contact-form button {
  width: 100%;
  background: #d9d9d9;
  color: #333;
  padding: 12px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .contact-left {
    margin-bottom: 40px;
    text-align: left;
  }

  .contact-info li {
    justify-content: left;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .header-right{
   flex-direction: column;
  }
}
/* =========================
   FOOTER
========================= */
.footer-bottom {
  background: #e9e9e9;
  padding: 15px 0;
}

/* Text */
.footer-bottom p {
  margin: 2px 0;
  font-size: 16px;
  color: #555;
}
.navbar-collapse .navbar-nav .nav-item{
  border-right: 1px solid #CACACA;
}
.navbar-expand-lg .navbar-nav .nav-link{
   padding-right: 1.2rem;
   padding-left: 1.2rem;
   font-weight: 500;
}
.navbar-collapse .navbar-nav .nav-item:last-child{
  border-right: 0px;
}
/* =========================
   ABOUT HERO
========================= */
.about-hero {
  width: 100%;
}

/* Row */
.about-hero-row {
  display: flex;
  min-height: 600px;
}

/* LEFT IMAGE (PARALLAX) */
/*.about-hero-image {*/
/*  width: 50%;*/
/*  background: url('../img/inner-abt-sec.jpg');*/
/*  background-attachment: fixed;*/
/*  background-repeat: no-repeat;*/
/*    background-size: 50%;*/
/*    background-position: bottom left;*/
/*}*/

.about-hero-image {
  width: 50%;
  background-image: url('../img/inner-abt-sec.jpg');
  background-attachment: fixed;
  /*background-position: center;*/
  background-repeat: no-repeat;
  /*background-size: cover;  */
  min-height: 400px; 
}

/* RIGHT CONTENT */
.about-hero-content {
  width: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
}

/* Inner content */
.content-inner {
  max-width: 700px;
  padding: 60px 100px;
}

/* Heading */
.content-inner h2 {
  font-size: 50px;
  font-weight: 400;
  color: #2f5d73;
  margin-bottom: 25px;
}

/* Paragraph */
.content-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .about-hero-row {
    flex-direction: column;
  }

  .about-hero-image {
    width: 100%;
    height: 300px;
    background-attachment: scroll;
    background-size: cover;
  }

  .about-hero-content {
    width: 100%;
  }

  .content-inner {
    padding: 40px 20px;
    text-align: center;
  }

  .content-inner h2 {
    font-size: 32px;
  }
}
/* =========================
   MISSION VISION SECTION
========================= */
.mv-section {
  background: #1f4b5f;
  padding: 80px 0;
  position: relative;
}

/* Box */
.mv-box {
  background: #f2f2f2;
  padding: 50px 60px;
  max-width: 950px;
  margin: 0 auto;
}

/* Heading */
.mv-box h2 {
  font-size: 36px;
  font-weight: 400;
  color: #2f5d73;
  margin-bottom: 20px;
}

/* Text */
.mv-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* =========================
   ARROWS
========================= */
.mv-prev,
.mv-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.mv-prev {
  left: 40px;
}

.mv-next {
  right: 40px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .mv-box {
    padding: 40px 30px;
  }

  .mv-box h2 {
    font-size: 30px;
  }

  .mv-prev,
  .mv-next {
    display: none;
  }
}
.mv-prev, .mv-next {
  cursor: pointer;
  z-index: 10;
}
/* =========================
   CORE VALUES
========================= */
.core-section {
  background: #f2f2f2;
  padding: 70px 0;
}

/* Title */
.core-title {
  font-size: 38px;
  font-weight: 400;
  color: #2f5d73;
  margin-bottom: 50px;
}

/* Row spacing */
.core-row {
  row-gap: 30px;
}

/* Card */
.core-card {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
}

/* Heading */
.core-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

/* Text */
.core-card p {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .core-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .core-section {
    padding: 50px 0;
  }
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
  background: #f2f2f2;
  padding: 70px 0;
}

/* Title */
.services-title {
  font-size: 38px;
  font-weight: 400;
  color: #2f5d73;
  margin-bottom: 50px;
}

/* Card */
.service-card {
  text-align: center;
  margin-bottom: 60px;
}

/* Title */
.service-card h3 {
  font-size: 19px;
  margin-bottom: 15px;
  color: #333;
}

/* Image wrapper */
.service-img {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
}

/* Image */
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =========================
   OVERLAY
========================= */
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  
  opacity: 0;
  transition: 0.4s ease;
}

/* List */
.service-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.service-overlay li {
  color: #fff;
  font-size: 14px;
  margin: 5px 0;
}

/* Hover effect */
.service-img:hover .service-overlay {
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .services-title {
    font-size: 30px;
  }
}

/* =========================
   TRAILERS SECTION
========================= */
.trailers-section {
  background: #f2f2f2;
  padding: 70px 0;
}

/* Title */
.trailers-title {
  font-size: 38px;
  font-weight: 400;
  color: #2f5d73;
  margin-bottom: 40px;
}

/* Slider width control */
.trailers-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Card */
.trailer-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Image */
.trailer-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   ARROWS
========================= */
.trailers-prev,
.trailers-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.trailers-prev {
  left: -50px;
}

.trailers-next {
  right: -50px;
}

/* =========================
   DOTS
========================= */
.swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #2f5d73;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .trailers-prev,
  .trailers-next {
    display: none;
  }
}
.veh-card{
   width: 100%;
   font-size: 1.3rem;
   font-weight: 500;
   padding: 15px 0px;
}

.trailer-card-img{
  width: 100%;
  height: 260px;
}
.trailer-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* =========================
   CONTACT PAGE
========================= */
.contact-page {
  background: #f2f2f2;
  padding: 70px 0;
}

/* Map */
.contact-map {
  width: 100%;
  height: 800px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Right side */
.contact-right h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
}

.contact-right p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Contact info */
.contact-info.light li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: #333;
}

.contact-info.light i {
  color: #dcecf4;
}

/* =========================
   FORM
========================= */
.contact-form-light input,
.contact-form-light textarea {
  width: 100%;
  border: 1px solid #999;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  background: transparent;
}

/* textarea */
.contact-form-light textarea {
  height: 140px;
  resize: none;
}

/* Button */
.contact-form-light button {
  width: 100%;
  background: #1f4b5f;
  color: #fff;
  padding: 12px;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .contact-map {
    margin-bottom: 30px;
    height: 350px;
  }

  .contact-right {
    text-align: center;
  }

  .contact-info.light li {
    justify-content: left;
  }
}

/* Dropdown styling */
.main-nav .dropdown-menu {
  border-radius: 0;
  border: none;
  background: #e9e9e9;
  padding: 0;
  margin-top: 0;
  width: 100%!important;
}

/* Dropdown items */
.main-nav .dropdown-item {
  width: 100%!important;
  font-size: 14px;
  padding: 10px 18px;
  color: #333;
  border-bottom: 1px solid #dcdcdc;
}
.main-nav .dropdown-item:last-child{
  border-bottom: 0px;
}
.main-nav .dropdown-item:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Remove default arrow spacing issue */
.navbar-nav .dropdown-toggle::after {
  margin-left: 6px;
}

/* =========================
   DESKTOP HOVER (optional)
========================= */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .navbar-collapse .navbar-nav .nav-item{
    border-right: 0px;
  }
  .main-nav{
    padding: 15px;
  }
  .mv-box{
    min-height: 639px;
  }
}

[data-aos="wipe-right"] {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  /* AOS handles the transition duration and easing automatically! */
  transition-property: clip-path;
}


[data-aos="wipe-right"].aos-animate {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}



.fleet-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(25 64 86 / 80%); 
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}


.fleet-card .overlay span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  transform: translateY(15px);
  transition: transform 0.3s ease-in-out;
}

.fleet-card:hover .overlay {
  opacity: 1;
}

.fleet-card:hover .overlay span {
  transform: translateY(0);
}

.fleet-card .img-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 320px;
}

.fleet-card .img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.fleet-card {
    display: flex; 
    flex-direction: column;
    align-items: center;
}

.mv-slider .swiper-slide {
  transform-origin: left bottom;
}


.swiper-slide .wipe-text {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  opacity: 0;
}


.swiper-slide-active .wipe-text {
  animation: swiperWipeRight 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}


.swiper-slide-active .wipe-text:nth-of-type(1) { animation-delay: 0.3s; }
.swiper-slide-active .wipe-text:nth-of-type(2) { animation-delay: 0.5s; }
.swiper-slide-active .wipe-text:nth-of-type(3) { animation-delay: 0.7s; }


@keyframes swiperWipeRight {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}


.goog-te-banner-frame.skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}


body {
    top: 0px !important; 
}


#goog-gt-tt, 
.goog-te-balloon-frame {
    display: none !important;
}


.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}