:root {
    /* Arrow sizes */
    --arrow-height: 20px;
    --arrow-width: 20px;

    /* Arrow color */
    --arrow-yellow: #FFB600;
    --arrow-hover-color: #003B96;

    /* Arrow transition duration */
    --arrow-transition: 0.3s ease;
}

/* Shared arrow base style */
.arrow-base {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transition: border-color var(--arrow-transition);
    transform: translate(-50%, -50%);
}
/*
 .testimonial-prev-arrow::before {

    composes: arrow-base; 

    border-top: calc(var(--arrow-height) / 2) solid transparent;
    border-bottom: calc(var(--arrow-height) / 2) solid transparent;
    border-right: var(--arrow-width) solid var(--arrow-yellow);
    transform: translate(-60%, -50%);
    transition: border-right-color var(--arrow-transition);
}

.testimonial-next-arrow::before {
    
    composes: arrow-base;

    border-top: calc(var(--arrow-height) / 2) solid transparent;
    border-bottom: calc(var(--arrow-height) / 2) solid transparent;
    border-left: var(--arrow-width) solid var(--arrow-yellow);
    transform: translate(-40%, -50%);
    transition: border-left-color var(--arrow-transition);
}

 Hover effects 
.testimonial-prev-arrow:hover::before {
    border-right-color: var(--arrow-hover-color);
}

.testimonial-next-arrow:hover::before {
    border-left-color: var(--arrow-hover-color);
}
 
  */
  /* Import Barlow font */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&display=swap');
  /* .testimonial-prev-arrow::before, */
/* .testimonial-next-arrow::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: border-color var(--arrow-transition);
}
.testimonial-prev-arrow::before {
    border-top: calc(var(--arrow-height) / 2) solid transparent;
    border-bottom: calc(var(--arrow-height) / 2) solid transparent;
    border-right: var(--arrow-width) solid var(--arrow-yellow);
    transform: translate(-60%, -50%);
    transition: border-right-color var(--arrow-transition);
}
.testimonial-next-arrow::before {
    border-top: calc(var(--arrow-height) / 2) solid transparent;
    border-bottom: calc(var(--arrow-height) / 2) solid transparent;
    border-left: var(--arrow-width) solid var(--arrow-yellow);
    transform: translate(-40%, -50%);
    transition: border-left-color var(--arrow-transition);
} */

  :root{
      --brand-orange: #ff8a00;
      --dark-bg: #111217;
      --muted: #9aa0a6;
    }
    body{
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
     
      color: #fff;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

    /* ===== Global Overflow Fix ===== */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Pixel-Perfect Navbar */
.precise-navbar {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1240px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 60px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 1;
  padding: 10px 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.precise-navbar .nav-link {
  color: #1e1e3c;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.precise-navbar .nav-link.active {
  color: #ff8a00 !important;
  font-weight: 600;
}

.precise-navbar .nav-link:hover {
  color: #ff8a00 !important;
  transform: translateY(-1px);
}

.precise-navbar .navbar-toggler {
  border: none;
}

.precise-navbar .navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile fix */
@media (max-width: 992px) {
  .precise-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    height: auto;
    padding: 10px 20px;
  }

  .precise-navbar .navbar-nav {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
  }
}

   
    /* --- HERO --- */
   /* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 120px 8% 80px; /* top padding keeps navbar clear */
  position: relative;
  overflow: hidden;
  background: 
    linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.55)),
    url('assets/hero-bg.webp') center center / cover no-repeat;
  background-attachment: fixed;
}

/* --- LEFT TEXT CONTENT --- */
.hero .left {
  max-width: 640px;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 54px;
  line-height: 120%;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 18px;
  animation: fadeInUp .7s both .15s;
}

.hero p.lead {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0;
  color: #c4c7cc;
  margin-bottom: 28px;
}

/* --- EYEBROW / SMALL HEADING --- */
.eyebrow {
  color: #ffb66b;
  font-family: 'Barlow', sans-serif;
  
  font-size: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* --- BUTTONS --- */
.hero .btn-warning {
  background-color: #ffb66b;
  color: #000;
  font-weight: 800;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.hero .btn-warning:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,182,107,0.6);
}

.hero .btn-outline-light {
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero .btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

/* --- LOGOS --- */
.logos img {
  margin-right: 18px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.logos img:hover {
  opacity: 1;
}

/* --- ANIMATION --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 140px 6% 60px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 120%;
  }

  .hero p.lead {
    font-size: 18px;
  }

  .logos img {
    width: 90px;
    margin-right: 12px;
  }
}


/* === Responsive === */
@media (max-width: 768px) {
  .trusted-logos {
    gap: 40px;
  }

  .stats-wrapper {
    flex-direction: column;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid #e6e8f0;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat h3 {
    font-size: 32px;
  }
}


/* Container */
.tripkartz-section {
  width: 100%;
  display: grid;
  justify-content: center;
 
  gap: 20px;
  padding: 40px;
  background: #fff;
  box-sizing: border-box;
}

/* Section title */
.section-title {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Barlow", sans-serif;

  font-size: 40px;
  color: #25256B;
}

/* Card container */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Image */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay text */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
  color: #fff;
}

/* Title (h3) styling */
.overlay h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  margin: 0 0 6px 0;
}

/* Description (p) styling */
.overlay p {
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 120%;
  margin: 0;
  opacity: 0.95;
}

/* Grid placement */
.image-1 {
  grid-column: 1 / 2;
  grid-row: 2 / span 2;
  width: 455px;
  height: 520px;
}

.image-2 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  width: 455px;
  height: 250px;
}

.image-3 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  width: 298px;
  height: 250px;
}

.image-4 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  width: 298px;
  height: 250px;
}

.image-5 {
  grid-column: 2 / span 2;
  grid-row: 3 / 4;
  width: 455px;
  height: 250px;
  justify-self: end;
}

/* Hover effect */
.card:hover img {
  transform: scale(1.03);
  transition: transform 0.4s ease;
}

/* Responsive */
@media (max-width: 1000px) {
  .tripkartz-section {
    grid-template-columns: 1fr;
  }

  .image-1, .image-2, .image-3, .image-4, .image-5 {
    width: 100%;
    height: auto;
  }
}

.mobility-section {
  width: 100%;
  background: #fff;
  padding: 60px 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Title and Button Stack */
.mobility-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.mobility-header h2 {
  font-family: "Barlow", sans-serif;

  font-size: 40px;
  line-height: 110%;
  color: #003B96;
  margin: 0 0 16px 0; /* space between title and button */
}

/* Button below title */
.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  color: #003B96;
  border: 1.5px solid #003B96;
  
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #003B96;
  color: #fff;
}

/* Cards Row */
.mobility-cards {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.mobility-card {
  position: relative;
  flex: 1;
  min-width: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.mobility-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mobility-card:hover img {
  transform: scale(1.05);
}

.mobility-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
  box-sizing: border-box;
}

/* Responsive */
@media (max-width: 900px) {
  .mobility-section {
    padding: 40px 20px;
  }

  .mobility-cards {
    flex-direction: column;
  }

  .mobility-card {
    width: 100%;
  }
}
/* --- Fleet Section --- */


.fleet-row-top .fleet-card:nth-child(1) { animation-delay: 0.1s; }
.fleet-row-top .fleet-card:nth-child(2) { animation-delay: 0.2s; }
.fleet-row-bottom .fleet-card:nth-child(1) { animation-delay: 0.3s; }
.fleet-row-bottom .fleet-card:nth-child(2) { animation-delay: 0.4s; }
.fleet-row-bottom .fleet-card:nth-child(3) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .fleet-container {
        grid-template-columns: 1fr;
        gap: 50px 0;
    }

    .fleet-text {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .explore-btn {
        margin: 0 auto;
    }

    .fleet-row-top {
        grid-column: 1;
        grid-row: 2;
    }

    .fleet-row-bottom {
        grid-column: 1;
        grid-row: 3;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet-section {
        padding: 60px 20px;
    }

    .fleet-text h2 {
        font-size: 36px;
    }

    .fleet-row-top,
    .fleet-row-bottom {
        grid-template-columns: 1fr;
    }

    .fleet-card {
        padding: 30px 20px 20px;
    }

    .fleet-card-image {
        height: 140px;
    }
}

@media (max-width: 576px) {
    .fleet-text h2 {
        font-size: 32px;
    }

    .fleet-text p {
        font-size: 14px;
    }

    .fleet-card-title {
        font-size: 18px;
    }
}

.trust-section {
  background-color: #FFB600;
  padding: 80px 0;
  
  color: #fff;
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.trust-image {
  position: relative;
  flex: 1;
  max-width: 450px;
}

.trust-image .image-bg {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 12px;
  z-index: 1;
}

.trust-image img {
  position: relative;
  width: 100%;
  border-radius: 12px;
  z-index: 2;
}

.trust-text {
  flex: 1.2;
  margin-top: -100px;
}

.trust-text h2 {
  font-size: 36px;
  
  color: #003B96;
  margin-bottom: 20px;
  line-height: 1.2;
}

.trust-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #003B96;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .trust-content {
    flex-direction: column;
    text-align: center;
  }

  .trust-image {
    max-width: 350px;
  }

  .trust-text h2 {
    font-size: 28px;
  }

  .trust-text p {
    font-size: 15px;
  }
}









  /* --- Section Layout --- */
.testimonial-section {
  position: relative;
  background: #fff;
  padding: 100px 0 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  color: #1e1b4b;
  
  font-size: 42px;
 
 
}

/* --- Yellow background (half section bottom) --- */
.testimonial-bg {
  background: #f7941e;
  width: 100%;
  height: 280px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

/* --- Testimonial Card --- */
.testimonial-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  background: #eef0ff;
  border-radius: 20px;
  margin: 0 auto;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 60px 50px;
  gap: 50px;
  margin-bottom: 200px;

  /* Make card overlap white and yellow halves */
  transform: translateY(50px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-wrapper.active {
  display: flex;
}

.testimonial-content {
  flex: 1.2;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #1e1b4b;
  margin-bottom: 25px;
}

.testimonial-author {
  font-weight: 600;
  color: #1e1b4b;
}

.testimonial-image {
  position: relative;
  flex: 1;
  max-width: 380px;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.testimonial-image .image-outline {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 100%;
  height: 100%;
  border: 2px solid #1e1b4b;
  border-radius: 12px;
  z-index: 1;
}

/* --- Slider Controls (inside orange area) --- */
.slider-controls {
     position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    top: 120px;
    padding: 40px 550px 50px 0px;
}

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

.arrow-btn {
  width: 45px;
  height: 45px;
  border: 2px solid white;
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}



.progress-fill {
  height: 100%;
  background: #1e40af;
  width: 20%;
  transition: width 0.4s ease;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .testimonial-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 25px;
    transform: translateY(40px);
  }

  .testimonial-image {
    max-width: 320px;
  }

  .section-title {
    margin-bottom: 80px;
    font-size: 1.8rem;
  }

  .slider-controls {
    padding: 0 30px;
  }
}

@media (max-width: 576px) {
  .testimonial-wrapper {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .arrow-btn {
    width: 40px;
    height: 40px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .slider-controls {
    padding: 0 20px;
  }

  .arrows-group {
    gap: 10px;
  }
}

.footer-section {
    background: linear-gradient(135deg, #d5dce8 0%, #c8d3e5 100%);
    padding: 60px 0 0 0;
    color: #1a1d4d;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo .logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
}

.social-connect {
    margin-top: 20px;
}

.connect-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1d4d;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1d4d;
   
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1d4d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.heading-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #1a1d4d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #1a1d4d;
    margin-bottom: 25px;
}

.footer-contact {
    margin-top: 20px;
}

.contact-numbers {
    font-size: 0.9rem;
    color: #1a1d4d;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(26, 29, 77, 0.2);
    margin-top: 40px;
    padding: 25px 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: #1a1d4d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff6b35;
}

.separator {
    color: #1a1d4d;
    font-weight: 300;
}

.copyright {
    font-size: 0.9rem;
    color: #1a1d4d;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.heart-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        margin-bottom: 15px;
    }

    .copyright {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-heading {
        font-size: 0.95rem;
    }

    .footer-links a,
    .footer-address,
    .contact-numbers {
        font-size: 0.85rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .copyright {
        flex-wrap: wrap;
        font-size: 0.85rem;
    }
}

:root {
  --enquire-primary: #25256B;
  --enquire-secondary: #F39519;
  --enquire-radius: 50px;
  --enquire-font: "Barlow", sans-serif;
  --enquire-speed: 0.45s;
}
.enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 14px;
  border: 1.5px solid var(--enquire-primary);
  border-radius: var(--enquire-radius);
  background: var(--enquire-bg);
  font-family: var(--enquire-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--enquire-primary);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.enquire-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.enquire-btn:hover::after {
  left: 100%;
}

.enquire-btn:hover {
  background: var(--enquire-primary);
  color: var(--enquire-bg);
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.enquire-icon {
  transition: transform 0.3s ease;
}

.enquire-btn:hover .enquire-icon {
  transform: rotate(45deg) scale(1.1);
}