* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: Arial, sans-serif;
}


.hero {
  position: relative;
  height: 100vh;         /* Viewport height */
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}

.slider img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slider img.active {
  opacity: 1;
  z-index: 1;
}


/* Transparent overlay over images */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45); /* semi-transparent dark layer */
  z-index: 1; /* sits above slider images */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: rgb(255, 255, 255);
  padding: 80px 50px;
  max-width: 700px;
  margin-top:10px;
  margin-left:110px;
  letter-spacing: 2px;
  
}

.hero-content h1 {
font-family: "Poiret One", sans-serif;
  
  font-size:3.5rem;
  line-height: 1.4;
letter-spacing:3px;
  
}

.hero-content h1 .highlight {
  color: #ff5f2e;
}

.hero-content p .highlight {
  color: #ff5f2e;
}



.hero-content p {
font-family: "Poiret One", sans-serif;
  
  margin-top: 20px;
  font-size:2.2rem;
  line-height: 1.5;
  color: #ffffff;
  font-weight:600;
  margin-top: 20px;

}

.cta {
  margin-top: 30px;
}

.cta a  {
  position: relative;
  display: inline-block;
  background-color: #ff5f2e;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: -20px;
  font-family: "Poiret One", sans-serif;
  
}

/* Click pop effect */
.cta a:active, .contact-button:active {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 95, 46, 0.5);
}

/* Shine animation layer */
.cta a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
}

/* Trigger shine on hover */
.cta a:hover::before,
.contact-button:hover::before {
  left: 130%;
  transition: left 0.8s ease-in-out;
}

/* Optional color invert on hover */
.cta a:hover,
.contact-button:hover {
  background-color: #ff5f2e;
  color: #ffffff;
}


@media(max-width: 768px) {
  .hero-content {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}


.booking-form {
  background: white;
  width: 90%;
  max-width: 1100px;
  margin: -45px auto 40px auto;
  
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
font-family: "Poiret One", sans-serif;
  letter-spacing: 2px;
font-weight: 600;
}

.booking-form form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  font-size:1rem;
}

.form-group input,
.form-group select {
  padding:20px 12px;
  border: 1px solid #ddd;
    font-family: "Cinzel", serif;
  border-radius: 8px;
  font-size:1rem;
  outline: none;
}

.submit-btn {
  grid-column: span 3;
  text-align: right;
}

.submit-btn button {
  background-color: #ff5f2e;
  color: white;
  padding: 12px 30px;
  border: none;
  font-family: "Poiret One", sans-serif;
  letter-spacing:3px;
  border-radius: 25px;
  font-weight: bold;
  font-size:1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn button:hover {
  background-color: #e8511f;
}



.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
  background-color: #fff;
  gap: 50px;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  min-width: 320px;
}

.about-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Typography */
.about-subtitle {
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: #FF5F2E;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Poiret One", sans-serif;
}

.about-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  margin-bottom: 15px;
  font-family: "Poiret One", sans-serif;
}

.highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  background-color: #FF5F2E;
  z-index: -1;
}

.about-description {
  margin: 20px 0;
  font-size: 1.15rem;
  color: #444;
  line-height: 1.6;
  font-family: "Cinzel", serif;
}

/* Features Grid */
.features-grid {
  display: flex;
  gap: 40px;
  margin: 24px 0;
}

.features-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-grid li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Button */
.more-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #FF5F2E;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.more-btn:hover {
  background-color: #e14e1a;
}
.why-choose-us {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  
}

.why-choose-us h2 {
  font-size:6rem;
  margin-bottom: 10px;
font-family: "Poiret One", sans-serif;
font-weight: 300;
}

.why-choose-us p {
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: "Cinzel", serif;
  color: #bbb;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 16px;
  max-width: 340px;
  min-width: 280px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(255, 95, 46, 0.15);
  transition: transform 0.3s ease;
  font-family: "Poiret One", sans-serif;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-icon img {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}

.stat-info {
  flex: 1;
}

.stat-info .counter {
  font-size: 2rem;
  font-weight: bold;
  color: #d28f7b;
  display: inline-block;
}

.stat-info .plus {
  font-size: 1.5rem;
  font-weight: bold;
   color: #d28f7b;
  margin-left: 4px;
}

.stat-info p {
  margin-top: 5px;
  font-size: 1rem;
  color: #000000;
}

.our-services-section {
  background-color: #000;
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.section-heading h2 {
  font-size:5.5rem;
  margin-bottom: 10px;
    font-family: "Poiret One", sans-serif;
  font-weight:400;
}

.section-heading p {
  font-size:2rem;
  color: #ccc;
  margin-bottom: 40px;
  font-family: "Cinzel", serif;
}

.services-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:70px;
  margin-bottom:90px;
}

.service-card {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  transition: background 0.3s, transform 0.3s;
}

.service-card:hover {
  background-color: #e0926d;
  transform: translateY(-5px);
}

.orange-card {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

.orange-card:hover {
  background-color: #e0926d;
  transform: none;
}

.card-icon img {
  width: 40px;
  height: 40px;
}

.card-content h3 {
  font-size:2rem;
  margin-bottom: 8px;
  font-family: "Poiret One", sans-serif;
  text-align: left;
  letter-spacing: 2px;
font-weight: 300;
}

.card-content p {
  font-size:1.4rem;
  color: #272525;
  font-family: "Cinzel", serif;
  text-align: left;
}

.raised-card {
  transform: translateY(-20px);
}

.lower-card {
  transform: translateY(20px);
}


.bus-collection {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.bus-heading {
  
  position: relative;
}

.bus-heading h2 {
    font-family: "Poiret One", sans-serif;
  font-size:4rem;
  font-weight:400;
}

.bus-heading h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.bus-heading h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #ff5e14;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.bus-heading p {
  font-size:2rem ;
  color: #777;
  margin-top:10px;
    font-family: "Cinzel", serif;
    margin-bottom: 20px;
}

.all-vehicles-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ff5e14;
  padding: 10px 20px;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  font-family: "Poiret One", sans-serif;
  letter-spacing: 2px;
}

.bus-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.bus-card {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
  width: 320px;
  text-align: left;
  transition: transform 0.3s;
}

.bus-card:hover {
  transform: translateY(-10px);
}

.bus-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bus-info {
  padding: 20px;
}

.bus-info h3 {
  font-size:2rem;
  margin-bottom: 10px;
  font-family: "Poiret One", sans-serif;
  letter-spacing: 2px;
  font-weight:600;
}

.price {
  font-size:1.5rem;
  font-weight:600;
  letter-spacing: 2px;
  font-family: "Cinzel", serif;
  color: #ff5e14;
}

.price span {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  
}

.features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #555;
  font-size:1rem;
    font-family: "Cinzel", serif;
    font-weight:600;
}

.features li img {
  width: 18px;
  margin-right: 10px;
}

.btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.book-btn {
  background-color: #ff5e14;
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
font-family: "Poiret One", sans-serif;
letter-spacing: 2px;

}

.view-link {
  color: #000;
  font-weight:600;
  text-decoration: none;
  font-family: "Poiret One", sans-serif;
letter-spacing: 2px;
  margin-left: 10px;
}



/* Testimonial Section */
/* Testimonial Section */
.testimonials-section {
  position: relative;
  font-family: "Poiret One", sans-serif;
  margin-top:140px;
}

.testimonial-bg {
  position: relative;
  background: url('../photos/test.png') no-repeat center center/cover;
  padding: 150px 30px;
  text-align: center;
  color: white;
}

/* Transparent overlay on background image */
.testimonial-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
  z-index: 1;
}

.testimonial-header {
  position: relative;
  z-index: 2;
}

.testimonial-header span {
  color: #ff5f2e;
  font-weight: 600;
  font-size: 2.0rem;
  display: block;
  margin-bottom: 10px;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  margin: 10px 0;
  font-weight: bold;
}

.testimonial-header p {
  font-size: 1.4rem;
  color: #eee;
  font-family: "Cinzel", serif;
}

/* Testimonial Cards */
.testimonial-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 30px;
  transform: translateY(-80px); /* overlap effect */
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  width: 300px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.stars {
  color: #fbbc04;
  font-size: 18px;
  margin: 15px 0;
}

.client {
  display: flex;
  align-items: center;
  font-family: "Poiret One", sans-serif;
  font-weight: 600;
  gap: 12px;
  margin-top: 15px;
}

.client img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/* White gap */
.white-gap {
  height: 80px;
  background: #fff;
}





/* ===========================
   HERO SECTION RESPONSIVENESS
   =========================== */
@media(max-width: 1024px) {
  .hero-content {
    margin-left: 50px;
    max-width: 600px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size:1.8rem;
  }
}

@media(max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    margin: 0;
    padding: 40px 20px;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size:1.3rem;
  }

  .cta a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media(max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


/* ===========================
   BOOKING FORM RESPONSIVENESS
   =========================== */
@media(max-width: 1024px) {
  .booking-form form {
    grid-template-columns: repeat(2, 1fr);
  }

  .submit-btn {
    grid-column: span 2;
    text-align: center;
  }
}

@media(max-width: 768px) {
  .booking-form {
    padding: 20px;
    margin: -20px auto 30px auto;
  }

  .booking-form form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .submit-btn {
    grid-column: span 1;
    text-align: center;
  }

  .submit-btn button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .booking-form {
    padding: 15px;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select {
    padding: 14px 10px;
    font-size: 0.9rem;
  }

  .submit-btn button {
    font-size: 0.9rem;
    padding: 12px;
  }
}

/* ===========================
   ABOUT SECTION RESPONSIVENESS
   =========================== */

/* Tablets & small desktops */
@media (max-width: 1024px) {
  .about-section {
    padding: 60px;
    gap: 30px;
  }

  .about-subtitle {
    font-size: 1.8rem;
  }

  .about-heading {
    font-size: 1.6rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .features-grid {
    gap: 20px;
  }
}

/* Tablets / Large mobiles */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column; /* stack image + text */
    text-align: center;
    padding: 50px 25px;
  }

  .about-left,
  .about-right {
    min-width: 100%;
    flex: unset;
  }

  .about-subtitle {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .about-heading {
    font-size: 1.4rem;
  }

  .about-description {
    font-size: 0.95rem;
  }

  .features-grid {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .features-grid li {
    font-size: 0.95rem;
  }

  .image-wrapper {
    max-width: 100%;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .about-section {
    padding: 40px 20px;
  }

  .about-subtitle {
    font-size: 1.4rem;
  }

  .about-heading {
    font-size: 1.2rem;
  }

  .about-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .more-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
}