*{box-sizing:border-box;margin:0;padding:0}
body{font-family:Arial,Helvetica,sans-serif;color:#333;line-height:1.6}

.container{width:90%;max-width:1200px;margin:auto}

/* HEADER */
header{background:#111;color:#fff;position:sticky;top:0;z-index:999}
.nav{display:flex;justify-content:space-between;align-items:center;padding:15px 0}
.logo{font-size:22px;font-weight:bold}
nav a{color:#fff;margin-left:15px;text-decoration:none;font-weight:600}
nav a:hover{color:#fbc02d}
/* HERO */
.hero{
  height:85vh;
  background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
  url('../images/manali-taxi-booking.jpg') center/cover;
  display:flex;align-items:center;color:#fff;text-align:center
}
.hero-content h1{font-size:42px;margin-bottom:10px}
.hero-buttons{margin-top:20px}

/* BUTTONS */
.btn{padding:12px 25px;border-radius:5px;text-decoration:none;font-weight:bold;display:inline-block}
.primary{background:#fbc02d;color:#000}
.whatsapp{background:#25D366;color:#fff;margin-left:10px}

/* SECTIONS */
section{padding:30px 0}
.alt{background:#f5f5f5}
h2{text-align:center;margin-bottom:40px}

/* GRID */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px}
.card{background:#fff;padding:20px;border-radius:6px;border:1px solid #ddd;font-weight:600}

/* FORM */
form{max-width:500px;margin:auto}
form input,form textarea{
  width:100%;padding:12px;margin-bottom:10px;border:1px solid #ccc;border-radius:4px
}

/* FOOTER */
footer{background:#111;color:#fff;text-align:center;padding:20px}

/* FLOATING BUTTONS */
.float{
  position:fixed;right:20px;width:55px;height:55px;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:22px;color:#fff;text-decoration:none;z-index:999
}
.call{bottom:90px;background:#fbc02d;color:#000}
.whatsapp{bottom:20px;background:#25D366}

/* MOBILE */
@media(max-width:768px){
  .hero-content h1{font-size:32px}
}
.package-box {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.package-box h3 {
  padding: 15px 15px 5px;
  font-size: 18px;
  color: #0a3cff;
}

.package-box p {
  padding: 0 15px;
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}

.package-duration {
  display: inline-block;
  margin: 12px 15px 18px;
  font-size: 13px;
  font-weight: 600;
  background: #eef2ff;
  padding: 6px 10px;
  border-radius: 6px;
}

.package-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
/* FORCE 3 CARDS IN ONE ROW */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* TABLET */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}
.read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0a3cff, #0052ff);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #0036cc, #002bb8);
  transform: translateX(3px);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .packages-grid { grid-template-columns: 1fr; }
}

.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.35s;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.package-img {
  position: relative;
  height: 250px;
}
.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff7a00;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
}

.price-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #00a859;
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
}

.package-content {
  padding: 20px;
}
.package-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.package-content p {
  font-size: 14.5px;
  color: #555;
}
.package-duration {
  display: inline-block;
  margin: 10px 0;
  background: #eef2ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.package-actions {
  display: flex;
  gap: 12px;
}
.read-more-btn,
.whatsapp-btn {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 25px;
  text-decoration: none;
}
.read-more-btn {
  background: linear-gradient(135deg, #0a3cff, #0052ff);
  color: #fff;
}
.whatsapp-btn {
  background: #25d366;
  color: #fff;
}
.routes-premium {
  background: #f9fafb;
  padding: 50px 0;
}

.routes-slider {
  position: relative;
  overflow: hidden;
}

.routes-track {
  display: flex;
  transition: transform 0.6s ease;
}

.route-slide {
  min-width: 100%;
}

.route-card {
  display: flex;
  gap: 30px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.route-card img {
  width: 45%;
  object-fit: cover;
}

.route-content {
  padding: 30px;
  width: 55%;
}

.route-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.route-badge {
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ff4b2b;
}

.route-tag.snow { background:#e6f3ff; }
.route-tag.scenic { background:#e8f7ee; }
.route-tag.adventure { background:#fff2e6; }
.route-tag.extreme { background:#ffe6e6; }
.route-tag.transfer { background:#ede9fe; }

.route-card h3 { font-size: 22px; margin-bottom: 8px; }
.route-card p { color: #555; line-height: 1.6; }

/* Arrows */
.route-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 32px;
  padding: 10px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.route-arrow.prev { left: 10px; }
.route-arrow.next { right: 10px; }

/* Mobile */
@media (max-width: 900px) {
  .route-card {
    flex-direction: column;
  }
  .route-card img,
  .route-content { width: 100%; }
}
.routes-track {
  display: flex;
  transition: transform 0.8s ease-in-out; /* smooth auto-slide */
}
.routes-slider { position: relative; overflow: hidden; margin: 20px 0; }
.routes-track { display: flex; transition: transform 0.8s ease-in-out; }
.route-slide { min-width: 300px; margin-right: 20px; flex-shrink: 0; }
.route-card { background: #f7f7f7; padding: 15px; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.route-arrow { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2em; background: rgba(0,0,0,0.3); color: #fff; border: none; cursor: pointer; z-index: 10; padding: 5px 10px; border-radius: 5px; }
.route-arrow.prev { left: 10px; }
.route-arrow.next { right: 10px; }

/* Booking form */
form input, form textarea { display: block; width: 100%; margin-bottom: 10px; padding: 10px; border-radius: 5px; border: 1px solid #ccc; }
.btn { padding: 10px 20px; cursor: pointer; background: #007BFF; color: #fff; border: none; border-radius: 5px; }
.booking-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf7 100%);
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.booking-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-left, .booking-right {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.booking-left h2 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #333;
}

.booking-left p {
  margin-bottom: 25px;
  color: #555;
}

.booking-left input, 
.booking-left textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.booking-left button.whatsapp-btn {
  width: 100%;
  padding: 14px;
  background-color: #25D366;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.booking-left button.whatsapp-btn:hover {
  background-color: #1ebe57;
}

.booking-right h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #333;
}

.instagram-preview {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.instagram-preview a img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}

.instagram-preview a img:hover {
  transform: scale(1.1);
}

.booking-right .instagram-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #E1306C;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 10px;
}

.booking-right p {
  font-size: 14px;
  color: #555;
}
.instagram-feed {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.insta-card {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.insta-card:hover img {
  transform: scale(1.2);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.btn.instagram-btn {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}

.btn.instagram-btn:hover {
  transform: scale(1.05);
}
/* About Us Section */
.about-section {
  padding: 40px 0;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-left {
  flex: 1;
  min-width: 300px;
}

.about-left h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-left p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.about-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.about-features .feature span {
  font-size: 1.5rem;
}

.about-left .btn {
  margin-top: 10px;
}

.about-right {
  flex: 1;
  min-width: 300px;
}

.about-right img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-left, .about-right {
    min-width: 100%;
  }

  .about-features {
    justify-content: center;
  }
}
/* ===== ROHTANG TAXI & ATTRACTIONS SECTION ===== */
.taxi-attractions-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.taxi-attractions-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Column - Taxi Service Info */
.taxi-service-left {
  flex: 1 1 45%;
}

.taxi-service-left h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.taxi-service-left .section-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.taxi-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.taxi-features .feature {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.taxi-features .feature span {
  font-size: 1.5rem;
}

.taxi-service-left p:last-child {
  margin-bottom: 20px;
}

.taxi-service-left .btn.primary {
  background-color: #ff4b2b;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* Right Column - Rohtang Attractions */
.taxi-service-right {
  flex: 1 1 50%;
}

.taxi-service-right h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.taxi-service-right .section-desc {
  font-size: 1rem;
  margin-bottom: 20px;
}
/* Responsive */
@media screen and (max-width: 992px) {
  .taxi-attractions-section .container {
    flex-direction: column;
  }

}
.attraction-card {
  display: block;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  color: inherit;
}

.attraction-card:hover {
  transform: translateY(-5px);
}

.attraction-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.attraction-card h3 {
  margin: 10px 0 15px;
  font-size: 18px;
  color: #333;
}
 MENU
/* HEADER */
header {
  background: #111;
  position: sticky;
  top: 0;
  z-index: 10000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
}

/* DESKTOP MENU */
#nav-links {
  display: flex;
  gap: 28px;
}

#nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
}

#nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fbc02d;
  transition: width 0.3s ease;
}

#nav-links a:hover::after {
  width: 100%;
}

#nav-links a:hover {
  color: #fbc02d;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.35s ease;
}

.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  #nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding-top: 80px;
    transition: right 0.4s ease;
    z-index: 10000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
  }

  #nav-links a {
    color: #111;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 25px;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  #nav-links.active {
    right: 0;
  }

  #nav-links.active a {
    opacity: 1;
    transform: translateX(0);
  }
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 9999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

.services-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fbff, #ffffff);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.section-header p {
  color: #555;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 28px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

.service-card .icon {
 width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  background: #f5f5f5;
  border-radius: 50%;
}

.service-card h3 {
  font-size: 20px;
  margin: 18px 0 10px;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 22px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: #0f4c81;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #09345c;
}
.cta-center {
  text-align: center;
  margin-top: 25px;
}
.rohtang {
  height: 60vh;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .rohtang {
    height: 45vh;
  }
}
.rohtang {
  height: 60vh;        /* change from 85vh → 50–65vh */
  min-height: 400px;  /* optional: prevents too small height */
}
.rohtang {
  background-size: contain;   /* shows full image */
  background-repeat: no-repeat;
  background-position: center;
}
.rohtang-hero {
  height: 55vh;
}
/* Rohtang page hero image */
.rohtang-hero {
  background-image:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,-0.5)),
    url('../images/manali.jpg');
}
/* KULLU MANIKARAN HERO */
.kullu-manikaran-hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("../images/manikaran-sahib.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}
/* FOOTER */
.site-footer {
  background: #111;
  color: #ddd;
  padding: 50px 0 0;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.footer-box h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-box p {
  line-height: 1.6;
  color: #ccc;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #f4b400;
  padding-left: 5px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  background: #000;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  color: #aaa;
}
/* CONTACT LINKS IN FOOTER */
.contact-box p {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 15px;
}

.contact-link {
  color: #f4b400;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* WhatsApp Button Style */
.whatsapp-link {
  background: #25d366;
  color: #fff !important;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-left: 5px;
}

.whatsapp-link:hover {
  background: #1ebe5d;
}
/* SERVICES FOOTER */
.services-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-box ul li {
  margin-bottom: 10px;
}

.services-box ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.services-box ul li a:hover {
  color: #f4b400;
  transform: translateX(5px);
}
.shinkula-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,-0.5)); /* dark overlay for readability */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}


/* SERVICE HIGHLIGHTS – Manali to Sissu */
.services-section {
  padding: 60px 0;
  background: #f5f7fa;
}

.services-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 15px;
  color: #1e2a78;
}

.services-section .section-desc {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

.sissu-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card.sissu-card {
  background: linear-gradient(135deg, #3b59c3, #6c82ff);
  color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card.sissu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.service-card.sissu-card .icon-circle {
  font-size: 36px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto 15px auto;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}

.service-card.sissu-card:hover .icon-circle {
  background: rgba(255,255,255,0.35);
  transform: scale(1.2);
}

.service-card.sissu-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card.sissu-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sissu-services {
    grid-template-columns: 1fr;
  }
}


/* LOGO BASE */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #ffffff;
  letter-spacing: 0.8px;
}

/* ICON */
.logo-icon {
  font-size: 1.8rem;
  margin-right: 10px;
}

/* TEXT STYLING */
.logo-text strong {
  color: #ffcc00; /* Highlight Manali */
}

.logo a:hover {
  opacity: 0.9;
}

/* TABLET */
@media (max-width: 768px) {
  .logo a {
    font-size: 1.3rem;
  }

  .logo-icon {
    font-size: 1.5rem;
    margin-right: 8px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .logo a {
    font-size: 1.1rem;
    letter-spacing: 0.4px;
  }

  .logo-icon {
    font-size: 1.3rem;
    margin-right: 6px;
  }
}
test

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;

}

/* HERO */
.hero.sightseeing-hero {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("../images/manali-ban.jpg");
  background-size: cover;
  background-position: center;
  height: 55vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.hero-buttons .btn {
  display: inline-block;
  margin: 5px;
  padding: 12px 22px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.btn.primary { background: #ff7a00; }
.btn.whatsapp { background: #25d366; }

/* SECTION */
.section {
  padding: 30px 0;
}

.section h2 {
  font-size: 1.9rem;
  margin-bottom: 15px;
}

.section-desc {
	text-align: center;
	margin: 0 auto 40px;
  max-width: 900px;
  margin-bottom: 20px;
}

/* PLACES GRID */
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.place-box {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  background: #fafafa;
}

.place-box h3 {
  margin-top: 0;
  color: #ff7a00;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.feature {
  background: #bbb2b245;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
}

/* CTA */
.cta {
  background: #ff7a00;
  color: #fff;
  text-align: center;
  padding: 40px 15px;
}

.cta a {
  background: #fff;
  color: #ff7a00;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero.sightseeing-hero {
    height: 40vh;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .places-grid,
  .features {
    grid-template-columns: 1fr;
  }
}
test
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.place-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.place-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.place-box h3 {
  margin: 15px 15px 5px;
  color: #ff7a00;
  font-size: 1.2rem;
}

.place-box p {
  margin: 0 15px 18px;
  font-size: 0.95rem;
  color: #555;
}

/* TABLET */
@media (max-width: 992px) {
  .places-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .places-grid {
    grid-template-columns: 1fr;
  }

  .place-box img {
    height: 180px;
  }
}
test
.taxi-services-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.taxi-services-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

.side-layout {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* IMAGE */
.service-image {
  flex: 1;
  min-height: 100%;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.service-content {
  flex: 1.3;
  padding: 30px;
}

.service-content h3 {
  margin-bottom: 15px;
}

.service-desc {
  margin-bottom: 15px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.service-list li {
  margin-bottom: 8px;
}

.service-cta {
  margin-top: 20px;
}

.service-cta .btn {
  margin-right: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .side-layout {
    flex-direction: column;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 20px;
  }

  .service-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.why-us {
  padding: 30px 0;
  background: #f5f8fa;
}

.why-us h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #222;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.why-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-us h2 {
    font-size: 1.8rem;
    margin-bottom: 35px;
  }

  .why-card {
    padding: 20px;
  }

  .why-card h3 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }
}
test
/* VEHICLES – PREMIUM LOOK */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.vehicle-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}

.vehicle-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.vehicle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-img {
  transform: scale(1.1);
}

/* ICON */
.vehicle-icon {
  position: absolute;
  top: 4px;
  left: 7px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 2px 10px;
  border-radius: 36px;
  font-size: 18px;
}

/* BADGE */
.vehicle-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ff9800;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.vehicle-badge.snow { background: #2196f3; }
.vehicle-badge.group { background: #4caf50; }

.vehicle-text {
  padding: 18px;
  text-align: center;
}

.vehicle-text h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.vehicle-text .capacity {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .vehicle-img-wrapper {
    height: 210px;
  }
}


test
.seo-text {
  padding: 60px 20px;
  background-color: #f7f7f7; /* subtle background */
  text-align: left;
  line-height: 1.8;
  color: #333;
}

.seo-text h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #ff6b00; /* accent color */
  text-align: center;
}

.seo-text p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.seo-text strong {
  color: #222;
  font-weight: 600;
}

@media (max-width: 768px) {
  .seo-text h2 {
    font-size: 1.6rem;
  }

  .seo-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
why to book with Us
.why-choose-fancy {
  padding: 70px 15px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.why-choose-fancy .container {
  max-width: 1200px;
  margin: auto;
}

.why-choose-fancy h2 {
  text-align: center;
  font-size: 34px;
  color: #0f172a;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 16.5px;
  color: #475569;
  line-height: 1.7;
}

.fancy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.fancy-box {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fancy-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

.fancy-box .icon {
  font-size: 38px;
  display: inline-block;
  margin-bottom: 15px;
}

.fancy-box h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #0ea5e9;
}

.fancy-box p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.65;
}

.cta-area {
  text-align: center;
  margin-top: 55px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #ffffff;
  border-radius: 50px;
  font-size: 16.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(14, 165, 233, 0.4);
}
test

/* VEHICLES SECTION */
.vehicles-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.vehicles-section h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 700;
}

.vehicles-section .section-desc {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
  font-size: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* VEHICLES ROW */
.vehicles-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* VEHICLE CARD */
.vehicle-card {
  flex: 1 1 calc(25% - 20px); /* 4 cards in one row */
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* ICON BOX */
.vehicle-icon-box {
  width: 80px;
  height: 80px;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  transition: all 0.4s ease;
  position: relative;
}

/* HOVER GLOW EFFECT */
.vehicle-card:hover .vehicle-icon-box {
  transform: scale(1.4);
}

.vehicle-card:hover .vehicle-icon-box::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
  animation: glow 1s infinite alternate;
}

@keyframes glow {
  0% { box-shadow: 0 0 10px rgba(255,255,255,0.6); }
  100% { box-shadow: 0 0 20px rgba(255,255,255,0.9); }
}

/* GRADIENT COLORS */
.gradient-orange { background: linear-gradient(135deg, #ff9800, #ff5722); color: #fff; }
.gradient-yellow { background: linear-gradient(135deg, #ffeb3b, #ffc107); color: #333; }
.gradient-blue   { background: linear-gradient(135deg, #2196f3, #0d47a1); color: #fff; }
.gradient-green  { background: linear-gradient(135deg, #4caf50, #1b5e20); color: #fff; }

/* CARD TEXT */
.vehicle-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.vehicle-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .vehicle-card {
    flex: 1 1 calc(50% - 15px); /* 2 per row */
  }
}

@media (max-width: 768px) {
  .vehicle-card {
    flex: 1 1 100%; /* 1 per row */
  }
}
test

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 calc(25% - 20px); /* 4 per row on desktop */
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* BUTTON */
.service-card .btn.read-more {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #134c7f;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.service-card .btn.read-more:hover {
  background: #ff784e;
  transform: translateY(-2px);
}

/* ICON GLOW ON HOVER */
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  transition: text-shadow 0.3s;
}

.service-card:hover h3 {
  text-shadow: 0 0 10px #ff5722, 0 0 20px #ff7043;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 15px); /* 2 per row */
  }
}

@media (max-width: 768px) {
  .service-card {
    flex: 1 1 100%; /* 1 per row */
  }
}
instagram
.instagram-feed iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
}

.instagram-btn {
  display: inline-block;
  margin-top: 12px;
  background: #E1306C;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.instagram-btn:hover {
  background: #c91d5a;
}
local taxi in manali
.sightseeing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.sight-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.sight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sight-content {
  padding: 18px;
}

.sight-content h3 {
  margin-bottom: 10px;
}

.sight-info {
  margin-top: 10px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: #555;
}

.sight-info li {
  margin-bottom: 4px;
}

.sightseeing-cta {
  text-align: center;
  margin-top: 40px;
}
.sightseeing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 boxes per row */
  gap: 20px;
  margin-top: 30px;
}

.sight-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.sight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.sight-content {
  padding: 15px;
}

.sight-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1b2b4c;
}

.sight-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.sight-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Responsive: 2 per row on tablets */
@media (max-width: 992px) {
  .sightseeing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 per row on mobile */
@media (max-width: 600px) {
  .sightseeing-grid {
    grid-template-columns: 1fr;
  }
}
.sightseeing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* ===== VEHICLES SECTION MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .vehicles-grid {
    gap: 15px; /* Reduce spacing for tablets */
  }
}

@media (max-width: 768px) {
  .vehicles-grid {
    flex-direction: column; /* Stack vertically */
    align-items: center;
  }

  .vehicle-card {
    flex: 1 1 100%; /* Full width */
    max-width: 400px;
    padding: 20px;
  }

  .vehicles-section .section-header h2 {
    font-size: 2rem; /* Smaller heading */
  }

  .vehicles-section .section-header p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .vehicle-card h3 {
    font-size: 1.2rem;
  }

  .vehicle-card p {
    font-size: 0.95rem;
  }

  .vehicle-card .vehicle-icon {
    font-size: 2rem;
  }

  .vehicles-cta a.btn.primary {
    width: 100%; /* Full width button */
    padding: 15px 0;
    text-align: center;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .vehicles-section .section-header h2 {
    font-size: 1.8rem;
  }

  .vehicles-section .section-header p {
    font-size: 0.95rem;
  }

  .vehicle-card h3 {
    font-size: 1.1rem;
  }

  .vehicle-card p {
    font-size: 0.9rem;
  }

  .vehicle-card .vehicle-icon {
    font-size: 1.8rem;
  }
}
/* =========================
   MANALI SIGHTSEEING - MOBILE
========================= */
@media (max-width: 768px) {

  .sightseeing-section {
    padding: 40px 0;
  }

  .sightseeing-section .section-header h2 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .sightseeing-section .section-header p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
  }

  /* Grid → single column */
  .sightseeing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Card */
  .sight-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  }

  .sight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .sight-content {
    padding: 16px;
  }

  .sight-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .sight-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
  }

  .sight-info {
    display: flex;
    gap: 14px;
    font-size: 0.9rem;
    padding: 0;
    margin: 0;
    list-style: none;
    color: #777;
  }

  /* CTA */
  .sightseeing-cta {
    margin-top: 30px;
    text-align: center;
  }

  .sightseeing-cta .btn.primary {
    width: 100%;
    padding: 14px 0;
    font-size: 1.05rem;
    border-radius: 8px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {

  .sightseeing-section .section-header h2 {
    font-size: 1.7rem;
  }

  .sight-content h3 {
    font-size: 1.1rem;
  }

  .sight-card img {
    height: 180px;
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: #f7f7f7;
  padding: 20px 0;
}

.pricing-section .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
}

.pricing-section h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.pricing-section p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Table */
.pricing-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  max-width: 700px;
  margin: auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.price-table thead {
  background: #3182CE;
  color: #fff;
}

.price-table th,
.price-table td {
  padding: 16px 20px;
  text-align: left;
}

.price-table th {
  font-size: 1.05rem;
}

.price-table td {
  font-size: 1rem;
  border-bottom: 1px solid #eee;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: #fff6f2;
}

/* Note */
.pricing-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #777;
}

/* CTA */
.pricing-cta {
  text-align: center;
  margin-top: 30px;
}

.pricing-cta .btn.primary {
  padding: 14px 36px;
  font-size: 1.05rem;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-section h2 {
    font-size: 2rem;
  }

  .price-table th,
  .price-table td {
    padding: 14px;
  }

  .pricing-cta .btn.primary {
    width: 100%;
  }
}
why to chose TAXI
/* WHY CHOOSE US */
.why-choose-us {
  background: #ffffff;
  padding: 70px 0;
}

.about-intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin: 15px 0 20px;
}

.check-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.why-choose-us .btn.primary {
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 1.05rem;
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-right img {
    margin-top: 25px;
    max-width: 100%;
  }
}

/* ===== INTRO SECTION ===== */
/* 4x4 Taxi Rohtang Pass Section CSS */
.rohtang-4x4 {
  padding: 20px 20px;
  background: linear-gradient(135deg, #f7faff 0%, #e8f0ff 100%);
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
}

.rohtang-4x4 .container {
  max-width: 1000px;
  margin: 0 auto;
}

.rohtang-4x4 h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #0a3d62;
  margin-bottom: 25px;
}

.rohtang-4x4 p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.rohtang-4x4 .cta-btns {
  text-align: center;
  margin-top: 30px;
}

.rohtang-4x4 .btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 8px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.rohtang-4x4 .btn.primary {
  background-color: #ff4d00;
  color: #fff;
}

.rohtang-4x4 .btn.primary:hover {
  background-color: #e84300;
}

.rohtang-4x4 .btn.whatsapp {
  background-color: #25d366;
  color: #fff;
}

.rohtang-4x4 .btn.whatsapp:hover {
  background-color: #1ebe5d;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .rohtang-4x4 h2 {
    font-size: 1.8rem;
  }
  .rohtang-4x4 p {
    font-size: 1rem;
  }
  .rohtang-4x4 .btn {
    width: 90%;
    margin: 10px 0;
  }
}

/* Highlights Section CSS with Gradient & Animations */
.highlights-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #e0f7ff, #f0f8ff);
  font-family: 'Poppins', sans-serif;
}

.highlights-section .highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlights-section .highlight-box {
  background: linear-gradient(145deg, #ffffff, #f1f9ff);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.highlights-section .highlight-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  background: linear-gradient(145deg, #d0efff, #e8f7ff);
}

.highlights-section .highlight-box .icon {
  font-size: 3.2rem;
  display: inline-block;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.highlights-section .highlight-box:hover .icon {
  transform: scale(1.3) rotate(10deg);
}

.highlights-section .highlight-box h3 {
  font-size: 1.35rem;
  color: #0a3d62;
  margin-bottom: 12px;
  font-weight: 600;
}

.highlights-section .highlight-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .highlights-section {
    padding: 40px 15px;
  }
  .highlights-section .highlight-box {
    padding: 25px 15px;
  }
  .highlights-section .highlight-box h3 {
    font-size: 1.2rem;
  }
  .highlights-section .highlight-box p {
    font-size: 0.95rem;
  }
}


/* Trusted 4x4 Section: Two Columns */
.trusted-4x4-section {
  padding: 60px 15px;
  background: #f7f7f7;
}

.trusted-4x4-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Image */
.trusted-4x4-image {
  flex: 1 1 45%;
}

.trusted-4x4-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-4x4-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Text */
.trusted-4x4-text {
  flex: 1 1 50%;
}

.trusted-4x4-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #222;
}

.trusted-4x4-text .trusted-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.trusted-4x4-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

/* CTA Buttons */
.trusted-4x4-text .cta-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trusted-4x4-text .btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.trusted-4x4-text .btn.primary {
  background: #ff5722;
  color: #fff;
}

.trusted-4x4-text .btn.primary:hover {
  background: #ff784e;
  box-shadow: 0 8px 20px rgba(255,87,34,0.35);
}

.trusted-4x4-text .btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.trusted-4x4-text .btn.whatsapp:hover {
  background: #4ee184;
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .trusted-4x4-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }

  .trusted-4x4-image, .trusted-4x4-text {
    flex: 1 1 100%;
    text-align: center;
  }

  .trusted-4x4-text .cta-btns {
    justify-content: center;
  }
}
/* 4x4 Vehicles Section */

.vehicles-4x4 {
  padding: 60px 15px;
  background: #f7f7f7;
}

.vehicles-4x4 .vehicles-header {
  text-align: center;
  margin-bottom: 40px;
}

.vehicles-4x4 .vehicles-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.vehicles-4x4 .vehicles-header p {
  font-size: 16px;
  color: #555;
}

/* Vehicles Grid */
/* 4x4 Vehicles Section */
.vehicles-4x4 {
  padding: 60px 15px;
  background: #f7f7f7;
}

.vehicles-4x4 .vehicles-header {
  text-align: center;
  margin-bottom: 40px;
}

.vehicles-4x4 .vehicles-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.vehicles-4x4 .vehicles-header p {
  font-size: 16px;
  color: #555;
}

/* Vehicles Grid */
.vehicles-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.vehicle-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Vehicle Image with Glow on Hover */
.vehicle-card .vehicle-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Glow per vehicle */
.vehicle-card.innova:hover .vehicle-img {
  transform: scale(1.05);
  box-shadow: 0 0 20px 5px rgba(255, 152, 0, 0.6); /* Orange */
}

.vehicle-card.fortuner:hover .vehicle-img {
  transform: scale(1.05);
  box-shadow: 0 0 20px 5px rgba(33, 150, 243, 0.6); /* Blue */
}

.vehicle-card.scorpio:hover .vehicle-img {
  transform: scale(1.05);
  box-shadow: 0 0 20px 5px rgba(76, 175, 80, 0.6); /* Green */
}

.vehicle-card.xylo:hover .vehicle-img {
  transform: scale(1.05);
  box-shadow: 0 0 20px 5px rgba(156, 39, 176, 0.6); /* Purple */
}

/* Text */
.vehicle-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.vehicle-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Note */
.vehicles-note {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
  color: #444;
}

/* Responsive */
@media (max-width: 992px) {
  .vehicle-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .vehicle-card {
    flex: 1 1 100%;
  }
}
/* ROUTE INFO SECTION */
.route-info-section {
  padding: 60px 0;
  background: #f3f6f9;
  text-align: center;
}

.route-info-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.route-info-section .section-note {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/
/* ROUTE INFO SECTION */
.route-info-section {
  padding: 80px 0;
  background: #f9fafb;
  text-align: center;
}

.route-info-section h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.route-info-section .section-note {
  font-size: 16px;
  color: #555;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

test
/* ROUTE INFO SECTION */
.route-info-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.route-info-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 12px;
  color: #222;
  font-weight: 700;
}

.route-info-section .section-note {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.7;
}

/* ROUTE CARDS */
.route-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.route-card {
  flex: 0 0 23%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
}

.route-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* IMAGE & OVERLAY */
.route-image {
  position: relative;
  overflow: hidden;
}

.route-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.route-card:hover .route-image img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.route-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,87,34,0.15), rgba(255,87,34,0));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.route-card:hover .image-overlay {
  opacity: 1;
}

/* ROUTE INFO SECTION */
.route-info {
  padding: 60px 20px;
  background-color: #f5f6fa;
  font-family: 'Inter', sans-serif;
}

.route-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.route-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.route-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}


test
/* ROHTANG PRICING SECTION */
.rohtang-pricing {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.pricing-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.pricing-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* PRICING CARDS GRID */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards in one row */
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.pricing-card:hover h3 {
  color: #ff5722;
  text-shadow: 0 0 6px rgba(255,87,34,0.6);
}

.pricing-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #ff5722;
  margin-bottom: 10px;
}

.pricing-card .desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* NOTE */
.rohtang-pricing .note {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 25px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: 1fr; /* stack on tablets */
  }
}

/* WHY US SECTION */
.why-us {
  background-color: #f9f9f9;
  padding: 30px 20px;
  font-family: 'Inter', sans-serif;
}

.why-us-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.why-us-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.why-us-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* WHY US CARDS GRID */
.why-us-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 cards in one row on desktop */
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255,87,34,0.6);
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
  transition: color 0.3s ease;
}

.why-card:hover h3 {
  color: #ff5722;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .why-us-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .why-us-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-us-cards {
    grid-template-columns: 1fr;
  }
}

/* GRID */
.snow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.snow-card {
  position: relative;
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  transition: transform .45s ease, box-shadow .45s ease;
}

/* GLOW BORDER */
.snow-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg,#e0f7ff,#ffffff,#cfe9ff);
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  transition: opacity .45s ease;
}

.snow-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 80px rgba(173,216,230,0.55);
}

.snow-card:hover::before {
  opacity: 1;
}

/* IMAGE */
.snow-media {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.snow-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.snow-card:hover img {
  transform: scale(1.2);
}

/* ❄️ SNOW PARTICLES */
.snow-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 10%, white 99%, transparent),
    radial-gradient(2px 2px at 70% 30%, white 99%, transparent),
    radial-gradient(1.5px 1.5px at 40% 60%, white 99%, transparent),
    radial-gradient(2px 2px at 90% 80%, white 99%, transparent);
  background-size: 100% 100%;
  opacity: 0;
  animation: snow-fall 2.5s linear infinite;
}

.snow-card:hover .snow-media::after {
  opacity: 0.9;
}

/* SNOW ANIMATION */
@keyframes snow-fall {
  from { background-position: 0 -100px; }
  to   { background-position: 0 300px; }
}

/* CONTENT */
.snow-content {
  padding: 22px;
  text-align: center;
}

.snow-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
  transition: color .3s ease;
}

.snow-card:hover h3 {
  color: #1e88e5;
}

.snow-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.snow-meta {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #1e88e5;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .snow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .snow-grid {
    grid-template-columns: 1fr;
  }
}
.snow-grid {
  display: flex;
  gap: 22px;
  align-items: stretch;
}

/* Each card takes equal width */
.snow-card {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 1100px) {
  .snow-grid {
    flex-wrap: wrap;
  }

  .snow-card {
    flex: 0 0 calc(50% - 11px);
  }
}

@media (max-width: 700px) {
  .snow-card {
    flex: 0 0 100%;
  }
}
.snow-media {
  height: 190px;
}

test leh

/* ===============================
   ROUTE TIMELINE FIX
================================ */

.route-timeline {
  max-width: 900px;
  margin: 60px auto;
}

.timeline-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 35px;
}

/* Wrapper */
.timeline-wrapper {
  position: relative;
  padding-left: 40px;
}

/* Vertical Line */
.timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff5722, #ff9800);
  border-radius: 2px;
}

/* ===============================
   ROUTE TIMELINE (FIXED)
================================ */

.route-timeline {
  max-width: 900px;
  margin: 0 auto 70px;
}

.timeline-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 35px;
  font-weight: 700;
}

/* Vertical timeline */
.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 3px solid #ff5722;
}

/* Item */
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 35px;
  position: relative;
}

/* Icon */
.timeline-icon {
  font-size: 26px;
  width: 42px;
  height: 42px;
  background: #ff5722;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -52px;
  top: 0;
}

/* Content */
.timeline-content {
  background: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  width: 100%;
}

.timeline-content h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline {
    padding-left: 20px;
  }

  .timeline-icon {
    left: -42px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .timeline-title {
    font-size: 22px;
  }
}
test leh page


/* =============================== 
   MODERN ROUTE FLOW TIMELINE
================================ */
.route-flow {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.route-flow-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
  padding: 20px 15px;
  border-radius: 18px;
  background: none; /* No background */
  position: static; /* Scrolls normally */
}

/* Remove hover effect from header */
.route-flow-header:hover {
  background: none;
  box-shadow: none;
  transform: none;
}

.route-flow-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.route-flow-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* GRID */
.route-flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ROUTE CARD */
.route-stop {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.35s ease;
}

.route-stop:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* FLOW CONNECTOR */
.route-stop::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 28px;
  height: 2px;
  background: linear-gradient(to right, #c7d2fe, transparent);
}

.route-stop.end::after {
  display: none;
}

/* ICON */
.stop-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.35s ease;
}

.route-stop:hover .stop-icon {
  transform: scale(1.25);
}

/* HEADINGS */
.route-stop h4 {
  font-size: 18px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 6px;
}

/* TEXT */
.route-stop p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
}

/* ALTITUDE */
.altitude {
  display: inline-block;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px;
}

/* TAG */
.tag {
  display: inline-block;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px;
}

/* START & END */
.route-stop.start {
  border-top: 4px solid #2563eb;
}

.route-stop.end {
  border-top: 4px solid #f97316;
}

/* HIGHLIGHT */
.route-stop.highlight {
  background: #f0fdf4;
  border: 1px solid #86efac;
}

.route-stop.highlight:hover {
  box-shadow: 0 22px 45px rgba(34,197,94,0.25);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .route-flow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .route-flow-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .route-stop {
    padding: 22px 15px;
  }

  .stop-icon {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .route-flow-header h3 {
    font-size: 24px;
  }

  .route-flow-header p {
    font-size: 15px;
  }
}


/* ===============================
   ROUTE MAP SECTION
================================= */
.route-map-section {
  padding: 60px 20px;
  background: #f8fafc;
  text-align: center; /* ensures everything inside is centered */
  font-family: 'Inter', sans-serif;
}

.route-map-section .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  text-align: center; /* explicitly center */
}

.route-map-section .section-subtitle {
  font-size: 16px;
  color: #475569;
  margin-bottom: 25px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-align: center; /* explicitly center */
}

.route-map-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 20px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-map-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

.route-map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Map Note */
.map-note {
  font-size: 14px;
  color: #64748b;
  max-width: 700px;
  margin: 10px auto 0;
  text-align: center; /* center text */
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .route-map-wrapper iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .route-map-section .section-title {
    font-size: 24px;
  }

  .route-map-section .section-subtitle {
    font-size: 15px;
  }

  .route-map-wrapper iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .route-map-section .section-title {
    font-size: 22px;
  }

  .route-map-section .section-subtitle {
    font-size: 14px;
  }

  .route-map-wrapper iframe {
    height: 280px;
  }
}

.altitude {
  display: inline-block;
  margin-bottom: 8px;
  background: #0ea5e9;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
test
/* ===============================
   PAGESPEED + CLS OPTIMIZED
================================= */

.journey-safety {
  padding: 72px 16px;
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* AMS SECTION */
.ams-wrapper {
  max-width: 1100px;
  margin: 0 auto 72px;
  text-align: center;
}

.ams-wrapper h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.ams-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* AMS GRID */
.ams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ams-item {
  min-height: 72px; /* CLS FIX */
  background: #f8fafc;
  padding: 18px 16px;
  border-radius: 14px;
  font-size: 15px;
  color: #334155;
  border-left: 4px solid #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.25s ease;
}

.ams-item:hover {
  transform: translateY(-4px);
}

/* STATS */
.stats-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  min-height: 160px; /* CLS FIX */
  background: #0ea5e9;
  color: #ffffff;
  padding: 30px 16px;
  border-radius: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 14px;
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ams-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ams-grid,
  .stats-wrapper {
    grid-template-columns: 1fr;
  }

  .ams-wrapper h2 {
    font-size: 24px;
  }
}
<!-- WHY CHOOSE For 4 by 4 for Rohtang Pass-->
/* SECTION */
.why-4x4 {
  padding: 70px 0;
  background: #f8f9fa; /* light gray background for contrast */
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.why-header {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.why-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.4;
  display: inline-block;
  position: relative;
}

.why-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff4d00;
  margin: 12px auto 0;
  border-radius: 2px;
}

.why-header p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* BOX */
.why-box {
  background: #fff;
  padding: 28px 22px 30px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-box:hover {
  border-color: #ff4d00;
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.08);
}

/* ICON */
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ff4d00;
}

/* BOX HEADINGS */
.why-box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.why-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* FOOTNOTE */
.why-note {
  max-width: 820px;
  margin: 40px auto 0;
  text-align: center;
}

.why-note p {
  font-size: 0.95rem;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 1.7rem;
  }

  .why-header p {
    font-size: 0.95rem;
  }

  .why-box h3 {
    font-size: 1rem;
  }

  .why-box p {
    font-size: 0.9rem;
  }
}
final FAQ

/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: 55px 0;
  background: #ffffff;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #1a1a1a;
}

/* FAQ Item */
.faq-item {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Question */
.faq-item h3 {
  font-size: 1.15rem;
  color: #ff4d00;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Answer */
.faq-item p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

/* FAQ SECTION for Rohtang Pass */
.faq-section {
  padding: 60px 0;
  background: #f9fafb;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

/* FAQ CARD – LIGHTER */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 16px;
  border-left: 3px solid #ff4d00;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ICON – SOFTER */
.faq-question .icon {
  width: 32px;
  height: 32px;
  background: #ff4d00;
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 22px 18px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
}

/* ACTIVE */
.faq-item.active {
  border-left-color: #1a1a1a;
}

.faq-item.active .faq-answer {
  max-height: 320px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
  background: #1a1a1a;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-section {
    padding: 45px 0;
  }

  .faq-section h2 {
    font-size: 1.7rem;
    margin-bottom: 28px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 16px 18px;
  }

  .faq-answer p {
    padding: 0 18px 16px;
    font-size: 0.9rem;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr; /* single column on mobile */
  }
}
/* ACTIVE */
.faq-card.active .faq-answer {
  max-height: 200px; /* sufficient for content */
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

main FAQ For Website
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.faq-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border: 2px solid #00bfff;
}

.faq-question {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  background: #f9f9f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 18px;
}

.faq-answer p {
  margin: 10px 0 14px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* ACTIVE */
.faq-card.active .faq-answer {
  max-height: 200px; /* sufficient for content */
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   OUR OWN CABS SECTION
================================= */

.own-cabs {
  padding: 30px 20px;
  background: #f8fafc;
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.own-cabs-header {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.own-cabs-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.own-cabs-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* GRID */
.cab-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

/* CARD */
.cab-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

.cab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ICON */
.cab-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.35s ease;
}

.cab-card:hover .cab-icon {
  transform: scale(1.3);
}

/* TITLE */
.cab-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 10px;
}

/* TEXT */
.cab-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
}

/* HIGHLIGHT CARD */
.cab-card.highlight {
  background: #eff6ff;
  border: 1px solid #93c5fd;
}

.cab-card.highlight:hover {
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.25);
}

/* STANDARDS LIST */
.cab-standards {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.standards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 30px;
}

.standards-list li {
  font-size: 15px;
  color: #0f172a;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cab-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .own-cabs {
    padding: 60px 15px;
  }

  .own-cabs-header h2 {
    font-size: 26px;
  }

  .cab-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .standards-list {
    grid-template-columns: 1fr;
  }

  .cab-card {
    padding: 26px 20px;
  }
}

/* Compact Instagram Profile */
.instagram-profile.compact {
  background: #f9fafb;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.instagram-profile.compact h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.instagram-profile.compact p {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.instagram-embed-wrapper.small {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.instagram-btn.small {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 22px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
  text-decoration: none;
}