*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body{
    font-family: 'Poppins',sans-serif;
    color:#1f2933;
    line-height: 1.6;
    
}
a{
    text-decoration: none;
    color: inherit;
}
.container{
    width:90%;
    max-width: 1200px;
    margin:auto;
    
}
.header{
    background: #65B3D6;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}
.logo img{
    height: 45px;
    width: auto;
}
/* navbar */
.nav {
  display: none;
  flex-direction: column;   
  gap: 10px;
  margin-top: 12px;
}
.nav.active {
  display: flex;
}
.nav-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  display: block;
}
.nav-link{
  padding: 12px 14px;
  border-radius: 6px;
  color: #fff;
}
.nav-link:hover{
  color:#f4c27a ;
}
.nav-link:active{
  color:#f4c27a ;
}

/* Hero */
.hero{
    position: relative;
    min-height: 80vh;
    background: url(../images/Hero.png) center/cover no-repeat;
    display: flex;
    align-items: center;
}
.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.hero-content{
    position: relative;
    color: #ffffff;
    max-width: 600px;
}
.hero h1{
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.hero p {
    margin-bottom: 25px;
}
.btn{
    display: inline-block;
    background: #f59e0b;
    color: #000;
    padding:12px 28px;
    border-radius: 6px;
    font-weight: 600;
}
.services{
    padding: 70px 0;
    background:#f9fafb; 
}
.services h2{
    text-align: center;
    margin-bottom: 40px;
}
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 35px; /* THIS is the spacing */
}
.service-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-content {
  padding: 20px;
}

.service-content h3 {
  margin-bottom: 10px;
}
/* reviews */

.testimonials {
  padding: 60px 16px;
  background: #fafafa;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 24px;
  font-size: 24px;
}

.testimonial-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}

.testimonial-card {
  position: relative;
  width: 320px;
  height: 260px;
  background: #65B3D6;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  display: none;
  flex-direction: column;
}

.testimonial-card.active {
  display: flex;
}
.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.testimonial-card span {
  font-weight: 600;
  font-size: 13px;
}

.testimonial-card .source {
  font-size: 12px;
  color: #ffb703;
  font-weight: 600;
}
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #abaaa9;
  border-radius: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-meta {
  text-align: left;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  display: block;
}

.testimonial-country {
  font-size: 12px;
  color: #000;
}
.testimonial-message {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  padding: 10px;
}
.testimonial-verified {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 12px;
  color: #ffeb99;
}

.testimonial-verified .source {
  color: #ffb703;
  font-weight: 600;
}
.testimonial-controls {
  margin-top: 14px;
}

.testimonial-controls button {
  border: none;
  background: #ffb703;
  color: #fff;
  padding: 4px 14px;
  margin: 0 6px;
  border-radius: 20%;
  cursor: pointer;
  font-size: 10px;
}
/* ===== Animation ===== */
@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column; 
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-logo {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;

}
.footer-social a:hover {
  background: #f4c27a;
  color: #000;
  transform: translateY(-2px);
}

.footer h4 {
  color: #fff;
  margin-bottom: 12px;
}

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #f59e0b;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8rem;
  border-top: 1px solid #222;
  padding-top: 15px;
  color: #777;
}
.footer-logo-img {
  height: 55px;
  margin-bottom: 10px;
}
/* Whatsapp */
.whatsapp-float{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color:  #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.55);
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 55px;
  
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

#scrollTopBtn{
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #f59e0b;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: #f59e0b;
}

/* About us page */

.about-hero {
    position: relative;
    min-height: 80vh;
    background: url(../images/Aboutus_hero.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
}

.about-hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-one {
  padding: 60px 0;
}

.about-split-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.about-split-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.about-split-content {
  padding: 30px;
}

.about-block + .about-block {
  margin-top: 25px;
}

.about-block h2 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  color: #111;
}

.about-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.about-section h2 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.about-section p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.about-list {
  list-style: none;
  padding-left: 0;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
/* STATS SECTION */

.stats {
  background: #2A3A53;
  padding: 70px 0;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-card h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-card h3::after {
  content: "+";
}

.stat-card p {
  font-size: 0.9rem;
  color: #bbb;
}
.stats-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.stats-header p {
  font-size: 0.95rem;
  color: #bbb;
}

/* contact us page */
.contact-hero {
    position: relative;
    min-height: 80vh;
    background: url(../images/Contact_hero.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
}

.contact-hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
/* CONTACT SECTION */
.contact-section {
  padding: 70px 0;
  background: #f9fafb;
}

.contact-wrapper {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* LEFT SIDE */
.contact-left {
  background: #65B3D6;
  color: #fff;
  padding: 35px 30px;
}

.contact-left h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.contact-left ul {
  list-style: none;
  padding: 0;
}

.contact-left li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.contact-left i {
  font-size: 18px;
  margin-top: 4px;
  color: #f4c27a;
}

.contact-left a {
  color: #fff;
  text-decoration: none;
}

.contact-left a:hover {
  text-decoration: underline;
}

/* RIGHT SIDE */
.contact-right {
  padding: 35px 30px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #f9fafb;
}

.contact-right textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-right input:focus,
.contact-right textarea:focus {
  outline: none;
  border-color: #65B3D6;
  background: #fff;
}

/* BUTTON */
.contact-right button {
  align-self: flex-start;
  background: #f59e0b;
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-right button:hover {
  background: #f4c27a;
  transform: translateY(-2px);
}
.form-message {
  margin-top: 15px;
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  color: #16a34a;
}

.form-message.error {
  color: #dc2626;
}

/* LOCATIONS PAGE */
.page-hero{
    position: relative;
    min-height: 80vh;
    background: url(../images/locations_hro.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
}
.locations {
  padding: 60px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.location-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.location-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.location-content {
  padding: 20px;
}

.location-content h3 {
  margin-bottom: 8px;
}

/* CTA */
.cta {
  background: #65B3D6;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}
.form-message {
  margin-top: 15px;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  color: #16a34a;
}

.form-message.error {
  color: #dc2626;
}

/* Request Page */

.request-hero {
    position: relative;
    min-height: 80vh;
    background: url(../images/Hero_Request.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
}

.request-hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.form-outside{
  background: #2A3A53; 
  padding: 60px 20px;
  border-top: 1px solid #e5e7eb;
}
.date-group {
  display: grid;
  gap: 1rem;
}

.date-field {
  display: flex;
  flex-direction: column;
}

.date-field label {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.4rem;
}

.date-field input[type="date"] {
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Force calendar icon to the right (WebKit browsers) */
.date-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.field-group {
  display: grid;
  gap: 1rem;
}
.scroll-to-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #ffb703;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
}
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.confirm-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 320px;
  text-align: center;
}

.confirm-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.confirm-actions button {
  width: 45%;
  padding: 8px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#confirmYes {
  background: #25d366;
  color: #fff;
}

#confirmNo {
  background: #ccc;
}


#ride-form {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px 25px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
#ride-form input,
#ride-form select,
#ride-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  outline: none;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

#ride-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Focus state */
#ride-form input:focus,
#ride-form select:focus,
#ride-form textarea:focus {
  border-color: #f59e0b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
}
#ride-form button {
  width: 100%;
  margin-top: 10px;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: #f59e0b;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

#ride-form button:hover {
  background: #f4c27a;
  transform: translateY(-1px);
}
#ride-form > * {
  margin-bottom: 15px;
}

#ride-form > *:last-child {
  margin-bottom: 0;
}
#ride-message {
  max-width: 600px;
  margin: 15px auto 60px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
  text-align: center;
}

#ride-message.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

#ride-message.error {
  background: #fee2e2;
  color: #7f1d1d;
  border: 1px solid #fca5a5;
}
/* =========================
   MODAL OVERLAY
   ========================= */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;            /* controlled via JS */
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 12px;            /* prevents edge cut on small screens */
}

/* =========================
   MODAL BOX
   ========================= */
.wa-modal {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 380px;          /* smaller width */
  max-height: 85vh;          /* KEY FIX */
  overflow-y: auto;
  border-radius: 12px;
  padding: 18px 18px 22px; 
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: modalFade 0.25s ease;
}

/* =========================
   CLOSE BUTTON
   ========================= */
.wa-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}

.wa-close:hover {
  color: #000;
}

/* =========================
   HEADING
   ========================= */
.wa-modal h3 {
  margin-bottom: 12px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
}

/* =========================
   FORM ELEMENTS
   ========================= */
#wa-form {
  display: flex;
  flex-direction: column;
}

/* Labels */
#wa-form label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #222;
  font-weight: 500;
}

/* Inputs / Select / Textarea */
#wa-form input,
#wa-form select,
#wa-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background-color: #fff;
}

/* Touch-friendly */
#wa-form input,
#wa-form select,
#wa-form textarea,
#wa-form button {
  min-height: 48px;
}

/* Focus */
#wa-form input:focus,
#wa-form select:focus,
#wa-form textarea:focus {
  outline: none;
  border-color: #25d366;
}

/* Textarea */
#wa-form textarea {
  resize: vertical;
}

/* =========================
   SUBMIT BUTTON
   ========================= */
#wa-form button {
  margin-top: 6px;
  padding: 14px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

#wa-form button:hover {
  background: #1ebe5d;
}

/* =========================
   ANIMATION
   ========================= */
@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DESKTOP */
@media (min-width: 768px) {

    .top-bar-flex {
    flex-direction: row;
    justify-content: space-between;
  }

  .header-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .service-card {
    flex-direction: row;
    height: 220px;
  }

  .service-card img {
    width: 40%;
    height: 100%;
  }

  .service-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
   .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    flex: 1;
  }
  .nav {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 0;
  }
  .nav-toggle {
    display: none; 
  }
   .nav-link {
    width: 100%;
  }
  .about-split-card {
    flex-direction: row;
  }

  .about-split-image,
  .about-split-content {
    flex: 1;
  }

  .about-split-image img {
    height: 100%;
  }

  .about-split-content {
    padding: 50px;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-card h3 {
    font-size: 2.6rem;
  }
  .contact-wrapper {
    flex-direction: row;
  }

  .contact-left,
  .contact-right {
    width: 50%;
  }

  .field-group {
    grid-template-columns: 1fr 1fr;
  }
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wa-modal {
    padding: 26px 24px 28px;
  }
  .testimonials {
    padding: 24px 32px;     /* Less vertical padding */
  }

  .testimonials h2 {
    margin-bottom: 12px;    /* Tight title spacing */
  }

  .testimonial-slider {
    padding: 0 40px; /* section breathing space */
  }

  .testimonial-card {
    width: 100%;
    max-width: none;
    height: 280px;

    padding: 20px 28px; /* less vertical, more horizontal */
  }
  .testimonial-message {
    font-size: 15px;
  }

  .testimonial-controls {
    margin-top: 8px;        /* Pull controls closer */
  }
  
}



