@charset "utf-8";
/* CSS Document */

/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* BODY */
body {
  margin: 0;
  padding: 0;
  background: #f8fbff;; /* default white background */
  color: #333;
  padding-top: 70px;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f172a;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-content img {
  width: 120px;
  animation: loaderPulse 1.5s infinite;
}

.loader-content h2 {
  font-size: 2.2rem;
  margin-top: 15px;
}

.loader-content p {
  color: #93c5fd;
  margin-top: 8px;
}

#preloader.hide-loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.reveal {
  opacity: 0;
  transition: all 0.6s cubic-bezier(.22,.61,.36,1);
}

.reveal.show {
  opacity: 1;
}

.slide-left {
  transform: translateX(-90px);
}

.slide-right {
  transform: translateX(90px);
}

.slide-up {
  transform: translateY(80px);
}

.zoom-in {
  transform: scale(0.85);
}

.fade-in {
  transform: none;
}

.reveal.show.slide-left,
.reveal.show.slide-right,
.reveal.show.slide-up,
.reveal.show.zoom-in {
  transform: translateX(0) translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }
.container {
  background-color: rgba(255, 255, 255, 0.15); /* white but slightly see-through */
  margin: 0%;
  padding: 0px;
  border-radius: 0px;
}

.menu-icon {
  display: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  margin-left: auto;
}

/* NAVBAR */
.upper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: #0f172a;
  justify-content: space-between;
  padding: 10px 15px 5px;
  border-radius: 0; /* remove rounded corners */
  width: 100%; /* full width */
  margin: 0; /* no margin */
}

header {
  font-family: 'Kaushan Script', cursive!important;
  font-style:normal;
  font-size: 15px;
  color: white;
  margin-right: 30px;
  letter-spacing: 1px;
}

.logo-text {
  display: flex;
  align-items: center;
  color: white;
  font-size: 2.1rem;
  font-weight: bold;
}

.logo-s {
  width: 95px;
  height: 55px;
  margin-right: -23px;
  object-fit: contain;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav ul {
  display: flex;
  gap: 10px;
  list-style: none;
  position: relative;
}

.nav-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(37,99,235,.25);
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37,99,235,.35);
}

.nav-link {
  position: relative;
  z-index: 2;
  padding: 10px 18px;
  border-radius: 25px;
  transition: color 0.3s ease;
}

.nav-link.active {
  color: white;
}

.nav-pill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 42px;
  width: 80px;
  background: #2563eb;
  border-radius: 25px;
  transform: translateY(-50%);
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  z-index: 1;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 100px 20px 100px;
  border-radius: 0;
  color: #fff;
  position: relative;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 0;
}

.hero-bg.active {
  opacity: 1;
}

.hero-bg-1 {
  background-image: url("audi (2).jpg");
}

.hero-bg-2 {
  background-image: url("audi (3).jpg");
}

.hero-content,
.search-box,
.hero-dots {
  position: relative;
  z-index: 2;
}


.hero-content {
  padding-left: 30%;
  text-align: left;
  animation: slideText 0.8s ease;
}

.hero-title1 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 30px;
  position: relative;
  top: 175px;
  right: 265px;
  text-shadow: 2px 2px 6px rgba(0,0,0,.99);
  background: rgba(0,0,0,.2);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 8px;
}

.hero-dots {
  position: absolute;
  right: 80px;
  top: 45%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 5;
}

.hero-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: red;
  border: 5px solid white;
  cursor: pointer;
}

.hero-dot.active {
  background: #0f172a;
}

@keyframes slideText {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* SEARCH BOX */
.search-box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid #fff;
  margin: 0px auto;
  border-radius: 10px;
  max-width: 1000px;
  padding: 100px 30px;
  position: relative;
  top: 160px; /* pushes search box downward */
  box-shadow: 0 8px 20px rgba(0,0,0,0.25); /* floating effect */
  text-align: left; /* align content to left */
  padding-bottom: 90px;
}

.search-box form {
  display: flex;
  flex-wrap: nowrap;       /* keep everything in one line */
  align-items: center;     /* vertical alignment */
  gap: 15px;               /* spacing between items */
  flex-direction: column;
}

.pickup-options {
  position: absolute;        /* position relative to search-box */
  top: 20px;               /* anchor near the bottom border */
  left: 50px;                /* align neatly to the left */
  display: flex;
  gap: 20px;               /* space between the two options */
  justify-content: flex-start;   /* align items to the left */
  align-items: center;
  width: 100%;                   /* take full width */
}

.pickup-options label {
  display: flex;
  align-items: center;
  gap: 8px;                /* space between circle and text */
  font-size: 17.5px;
  font-weight: normal;
  color: #454242;
  cursor: pointer;
}

.pickup-options input[type="radio"] {
  accent-color: #0f172a;   /* makes the radio circle blue */
  width: 25px;
  height: 25px;
}

.Kaduna-pickup {
	margin-left: 460px;
}


.form-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;                /* spacing between items in row */
  position: absolute;        /* position inside search-box */
  bottom: 30px;              /* adjust this value to move it down */
  left: 50px;                /* align neatly to the left */
}

/* New wrapper for labels + joined box */
.location-block {
  display: flex;
  flex-direction: column;  /* stack labels above the joined box */
  gap: 5px;
}

.location-group {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #010101;
  overflow: hidden;
  background: #fff;
  width: 450px;
}

.location-group::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;                       /* center line between selects */
  width: 0.5px;
  background: black;                /* line color */
  z-index: 0;                      /* behind everything */
}

.location-group select {
  flex: 1;
  padding: 12px;
  border: none;              /* remove inner borders */
  outline: none;
}

.location-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* two equal columns */
  width: 450px;   /* same width as .location-group */
  margin-bottom: 5px;
}

.select-wrapper {
  position: relative;
  flex: 1;                  /* each select takes equal space */
}

.location-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #D05759;           /* icon color */
  font-size: 20px;
  pointer-events: none;     /* don’t block clicks */
}

.select-wrapper select {
  width: 100%;
  padding: 12px 12px 12px 35px; /* extra left padding for icon */
  border: none;
  outline: none;
  background: none;
}

.date-wrapper {
  position: relative;
  display: inline-block;
}

.date-wrapper input[type="date"] {
  width: 225px;
  padding: 13px 10px; 
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  border-color: black;
  color: #1E1D1D;

  /* push text away from right edge so icon can sit there */
  padding-right: 8.5px;
  margin-left: 20px;
}

.calendar-icon {
  position: absolute;
  right: 12px;              /* same spot as native icon */
  top: 50%;
  transform: translateY(-50%);
  color: #9A9696;
  font-size: 18px;
  background: #fff;         /* covers native icon visually */
  pointer-events: none;     /* input still clickable */
}



.location-labels label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-align: left;             /* centers each label above its select */
 padding-left: 5px;  /* small nudge inward */
}

.location-labels select {
  width: 200px;
  padding: 12px;
  border: 1px solid #010101;
  border-radius: 6px;
  outline: none;
}
.divider {
  display: flex;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  width: 35px;
  background: #f9f9f9;       /* subtle contrast */
  border: 1px solid #010101;
  padding: 5px 0px;
  z-index: 1; /* sits above the line */
}


/* Remove default arrow for Location & Destination only */
#location,
#destination {
  appearance: none;          /* modern browsers */
  -webkit-appearance: none;  /* Safari/Chrome */
  -moz-appearance: none;     /* Firefox */
  background: none;          /* remove default background */
  padding-right: 20px;       /* keep spacing */
}

.swap-icon {
  font-size: 17px;
  color: #9A9696;       /* matches your theme */
  transition: transform 0.3s ease, color 0.3s ease;
}

.divider:hover .swap-icon {
  transform: rotate(180deg);   /* rotate smoothly */
  color: #2563eb;              /* shift to blue */
}


select {
  width: 200px;
  padding: 12px;
  margin-right: 20px;
  border-radius: 6px;
  align-items: flex-start;
  border: 1px solid #010101;
  font-size: 17.5px;
  color: #454242;
}

.pickup {
	border-radius: 20px;
	width: 150px;
}

.search-box input{
padding:12px;
border-radius:6px;
width:180px;
border: 1px solid #010101; 
}

.search-box button{
padding:15px 40px;
background:#0f172a;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:bold;
color: white;
margin-left: 50px;   /* don’t push away from the edge */

}

.search-box button:hover{
background:#16a34a;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  background: rgba(10, 18, 35, 0.45);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: white;
  color: #111827;
  width: 90%;
  max-width: 420px;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  position: relative;
}

.modal-content h2 {
  margin-bottom: 15px;
  color: #0f172a;
}

#bookingDetails {
  margin-bottom: 25px;
  line-height: 1.8;
  color: #444;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  cursor: pointer;
  transition: .3s;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.modal-content .close-btn {
    color: #0f172a;
    background: #f1f5f9;
}

.modal-content .close-btn:hover {
    background: #e2e8f0;
}

#confirmBtn {
  padding: 12px 30px;
  border: none;
  background: #2563eb;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: .3s;
}

#confirmBtn:hover {
  background: #3b82f6;
}

.ride-options-content {
  width: 92%;
  max-width: 760px;
  max-height: 85vh;
  overflow-y: auto;

  padding: 35px;

  border-radius: 24px;

  background: rgba(15,23,42,.78);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,.15);

  color: white;

  position: relative;

  box-shadow: 0 35px 80px rgba(0,0,0,.45);
}

.ride-options-content h2{
    color:white;
    text-align:center;
    font-size:2rem;
    margin-bottom:8px;
}

.ride-modal-subtitle{
    text-align:center;
    color:#cbd5e1;
    margin-bottom:30px;
}

.ride-options-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.card{

    display:grid;
    grid-template-columns: 1.5fr 1fr auto;

    align-items:center;

    gap:20px;

    padding:20px 24px;

    margin:0;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(14px);

    transition:.35s;
}

.card:hover{

    transform:translateY(-5px);

    border-color:#3b82f6;

}

.card-top{

    display:flex;

    align-items:center;

    gap:16px;

    margin:0;
}

.ride-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:rgba(37,99,235,.28);

    color:#60a5fa;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;
}

.card h3{

    margin:0 0 5px;

    color:white;

    font-size:1.25rem;
}

.ride-status{

    background:none;

    color:#4ade80;

    padding:0;

    font-size:14px;

    font-weight:600;
}

.ride-status::before{

    content:"● ";

}

.ride-info{

    margin:0;
}

.ride-info p{

    margin:6px 0;

    color:#e5e7eb;

    font-size:15px;
}

.ride-info i{

    color:#60a5fa;

    margin-right:8px;
}

.book-btn{

    padding:13px 24px;

    border:none;

    border-radius:12px;

    background:#2563eb;

    color:white;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

    white-space:nowrap;
}

.book-btn:hover{

    background:#3b82f6;

    transform:translateY(-2px);
}

@media(max-width:768px){

	.ride-options-content{

		width:94%;

		padding:22px;

	}

	.card{

		grid-template-columns:1fr;

		text-align:left;

	}

	.book-btn{

		width:100%;

	}

}

footer{
    background:transparent;
    color:#333;
    padding:60px 20px;
}

.about-section {
  padding: 150px 20px 30px 20px;
  background: #f8fbff;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left h2 {
  font-size: 3.2rem;
  color: #0f172a;
  margin: 25px 0 20px;
  line-height: 1.1;
}

.about-intro {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.about-mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.about-mini-card {
  background: #f8fbff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.about-mini-card i {
  width: 60px;
  height: 60px;
  background: #e8efff;
  color: #2563eb;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.about-mini-card h3 {
  color: #0f172a;
  margin-bottom: 10px;
}

.about-mini-card p {
  color: #4b5563;
  line-height: 1.6;
}

.about-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-stat {
  background: #0f172a;
  color: white;
  padding: 25px 45px;
  border-radius: 14px;
  text-align: center;
}

.about-stat h3 {
  font-size: 2.5rem;
  color: #60a5fa;
}

.about-bottom ul {
  list-style: none;
}

.about-bottom li {
  margin-bottom: 12px;
  color: #374151;
}

.about-bottom i {
  color: #22c55e;
  margin-right: 8px;
}

.about-right {
  position: relative;
  min-height: 520px;
}

.about-image-main {
  width: 95%;
  height: 700px;
  transform: translateY(-60px);
  background: url("about-car.jpg") center 105%/cover no-repeat;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.about-image-small {
  position: absolute;
  right: -15px;
  bottom:-50px;
  width: 90%;
  height: 300px;
  background: url("about-road.png") center/cover no-repeat;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
  border: 2px solid white;
}

.swiftride-features {
  text-align: center;
  margin-top: 100px;
  letter-spacing: 0.5px;
  background: #FFFFFF;
  padding: 50px 20px 50px;
}

.swiftride-features h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.swiftride-features p {
  color: #555;
  margin-bottom: 40px;
}

.header-features {
  text-align: center;
  margin-bottom: 40px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e8efff;
  color: #0f172a;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 22px;
}

.header-features h2 {
  font-size: 4rem;
  color: #0f172a;
  margin-bottom: 20px;
}

.header-features h2 span {
  color: #2563eb;
}

.header-features p {
  max-width: 850px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.7;
}

.features-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.features-left,
.features-right {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 320px;
}

.feature-item {
  position: relative;
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  text-align: left;
  letter-spacing: 0.5px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  font-size: 24px;
}

.feature-item h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  color: #0f172a;
}

.feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.feature-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 85px;
  height: 4px;
  border-radius: 0 10px 10px 0;
}

.feature-center {
  position: relative;
}

.feature-center::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(59,130,246,0.12) 0%,
    rgba(59,130,246,0) 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.feature-center img {
  width: 350px;
  height: auto;
  transition: transform 0.4s ease;
  animation: floatLogo 4s ease-in-out infinite;
  position: relative;
  top: 20px;
}

@keyframes floatLogo {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

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

.feature-center img:hover {
  filter: brightness(1.05);
}

.blue-card .feature-icon {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.blue-card::after {
  background: #2563eb;
}

.green-card .feature-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.green-card::after {
  background: #22c55e;
}

.purple-card .feature-icon {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}

.purple-card::after {
  background: #7c3aed;
}

.orange-card .feature-icon {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.orange-card::after {
  background: #f97316;
}

.popular-routes {
  padding: 70px 20px;
  background: #f8fbff;
  text-align: center;
}

.routes-header {
  margin-bottom: 50px;
}

.routes-header h2 {
  font-size: 3rem;
  color: #0f172a;
  margin: 20px 0 15px;
}

.routes-header h2 span {
  color: #2563eb;
}

.routes-header p {
  color: #4b5563;
  font-size: 1rem;
}

.routes-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.route-card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
}

.route-card h3 {
  color: #0f172a;
  margin-bottom: 8px;
}

.route-card p {
  color: #6b7280;
  font-size: 0.95rem;
}

.route-card span {
  background: #e8efff;
  color: #2563eb;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.stats-section {
  padding: 80px 20px;
  background: #0f172a;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
  font-size: 2rem;
  color: #60a5fa;
  margin-bottom: 15px;
}

.stat-box h2 {
  font-size: 3rem;
  color: #60a5fa;
  margin-bottom: 10px;
}

.stat-box p {
  color: #d1d5db;
  font-size: 1rem;
}

.counter-finished {
  animation: counterGlow 0.6s ease;
}

@keyframes counterGlow {
  0% {
    transform: scale(1);
    text-shadow: none;
  }

  50% {
    transform: scale(1.15);
    text-shadow: 0 0 18px rgba(96,165,250,0.8);
  }

  100% {
    transform: scale(1);
    text-shadow: none;
  }
}

.testimonials-section {
  padding: 90px 20px;
  background: #f8fbff;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 50px;
}

.testimonials-header h2 {
  font-size: 3rem;
  color: #0f172a;
  margin: 20px 0 15px;
}

.testimonials-header h2 span {
  color: #2563eb;
}

.testimonials-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #4b5563;
  line-height: 1.6;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: white;
  padding: 35px 25px;
  border-radius: 22px;
  text-align: left;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

.stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-card h3 {
  color: #0f172a;
  margin-bottom: 4px;
}

.testimonial-card span {
  color: #2563eb;
  font-weight: bold;
}

.driver-section {
  padding: 50px 20px;
  background: #ffffff;
}

.driver-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.driver-text {
  flex: 1;
}

.driver-text h2 {
  font-size: 3.5rem;
  color: #0f172a;
  margin: 25px 0 20px;
}

.driver-text h2 span {
  color: #2563eb;
}

.driver-text p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.driver-text ul {
  list-style: none;
  margin-bottom: 30px;
}

.driver-text li {
  margin-bottom: 14px;
  color: #374151;
}

.driver-text i {
  color: #22c55e;
  margin-right: 8px;
}

.driver-btn {
  background: #0f172a;
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.driver-btn:hover {
  background: #0f172a;
  transform: translateY(-3px);
}

.driver-card {
  flex: 1;
  background: #0f172a;
  color: white;
  padding: 45px;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
}

.driver-card h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.driver-card p {
  margin-bottom: 20px;
  color: #d1d5db;
}

.driver-card i {
  color: #60a5fa;
  margin-right: 10px;
}

.driver-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.driver-form input {
  padding: 13px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
}

.driver-form button {
  padding: 13px;
  border: none;
  background: #2563eb;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.driver-form button:hover {
  background: #0f172a;
}

.cta-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(
    135deg,
    #0f172a,
    #1e3a8a
  );
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dbeafe;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.primary-btn {
  background: #2563eb;
  color: white;
}

.secondary-btn {
  background: white;
  color: #0f172a;
}

.cta-btn:hover {
  transform: translateY(-4px);
}

#rideForm {
  scroll-margin-top: 500px;
}
/* FOOTER */
.main-footer {
  background: #020b1c;
  color: white;
  padding: 80px 20px 25px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-col h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.footer-col p,
.footer-col a {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: white;
}

.footer-col i {
  margin-right: 10px;
}

.subscribe-box {
  margin-top: 25px;
  background: white;
  padding: 6px;
  border-radius: 50px;
  display: flex;
  max-width: 420px;
}

.subscribe-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 1rem;
}

.subscribe-box button {
  border: none;
  background: #2563eb;
  color: white;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons i {
  width: 45px;
  height: 45px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
}

#backToTop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #2563eb;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(37,99,235,0.35);
  transition: all 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-5px);
  background: #0f172a;
}

@media (max-width: 768px) {

	.upper {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	  }

	.upper {
		flex-direction: row;
  		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.logo-text{
		font-size: 1.5rem;
	}
	
	.menu-icon {
	  display: block;
	}

	  nav {
		display: none;
		width: 100%;
		order: 3;
		margin-top: 18px;
	  }

	  nav.active {
		display: block;
	  }

	  nav ul {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 0;
		width: 100%;
		padding: 0;
		margin: 15px 0 0;
	  }

	  nav ul a {
		font-size: 0.8rem;
		padding: 6px 2px;
		flex: 1;
		text-align: center;
	  }

	  .nav-pill {
		display: none !important;
	  }

	  .nav-link.active{
		background:#2563eb;
		color:#fff;
		border-radius:25px;
		box-shadow:0 8px 20px rgba(37,99,235,.35);
	  }
	
	    .nav-btn{
			padding: 8px 12px;
			font-size: 0.8rem;
		}
	
	  .hero {
		padding: 55px 15px 10px;
		overflow: visible;
	  }

	.hero-bg {
		background-size: 120% auto;
		background-position: center top;
	  }

	  .hero-dots {
		right: 4px;
		top: 52%;
		gap: 12px;
		z-index: 5;
	  }

	  .hero-dot {
		width: 18px;
		height: 18px;
		border: 4px solid white;
	  }
	
	.hero-content{
    	padding-left: 50px;
	}
	
  .hero-title1{
    position: relative;
    right: 30px;
    top: 50px;
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .results {
  	  padding: 20px 15px;
	}

  .transport-container {
  	   margin-top: 20px;
	}
	
  .search-box {
    position: static;
    top: auto;
    width: 100%;
    max-width: 360px;
    padding: 25px 25px 0;
    margin: 25px auto auto;
  }

  .pickup-options {
    position: static;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }

  .Kaduna-pickup {
    margin-left: 0;
  }

  .form-row {
    position: static;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 15px;
  }

  .location-group,
  .location-labels {
    width: 100%;
  }

  .date-wrapper input[type="date"] {
    width: 100%;
    margin-left: 0;
  }

  .search-box button {
    width: 100%;
    margin-left: 0;
  }
	
  .about-section {
    padding: 45px 20px 60px;
  }

  .about-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .about-left h2 {
    font-size: 2.3rem;
  }

  .about-mini-cards {
    grid-template-columns: 1fr;
  }

  .about-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

 .about-right {
  position: relative;
  width: 100%;
  height: 420px;
  min-height: 0;
  margin-top: 0;
}

.about-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 300px;
  transform: none;
  background: url("about-car.jpg") center 80% / cover no-repeat;
  border-radius: 22px;
}

.about-image-small {
  position: absolute;
  right: 0;
  top: 240px;
  bottom: auto;
  width: 78%;
  height: 220px;
  margin-top: 0;
  background: url("about-road.png") center / cover no-repeat;
  border-radius: 22px;
  border: 2px solid white;
}

	.swiftride-features {
       margin-top: 30px;
	}
	
  .features-layout,
  .driver-container,
  .footer-container,
  .testimonials-container,
  .stats-container,
  .routes-container {
    display: flex;
    flex-direction: column;
  }

  .features-left,
  .features-right {
    width: 100%;
  }
  
  .feature-center {
   margin: -50px 0 -50px;
   padding: 0;
  }
	
  .feature-center img {
    width: 260px;
  }

  .footer-container {
    align-items: flex-start;
    text-align: left;
  }

  .subscribe-box {
    flex-direction: column;
    border-radius: 20px;
  }

  .subscribe-box button {
    border-radius: 15px;
  }
}
