/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html, body {
  overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(90deg, #ff7a18, #0472c0, #0ca1ba, #28a745);
  color: #fff;
  font-size: 14px;
  padding: 8px 35px;
}

.top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.download-btn {
  align-items: center;
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  gap: 4px;
}

.download-btn:hover {
  background: rgb(255 255 255 / 45%);
}



.logo h3 {
  font-size: 18px;
  font-weight: bold;
margin-bottom: -4px;
  /* Gradient Text */
  background: linear-gradient(90deg, #ff7a18, #1fa2ff, #12d8fa, #28a745);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.logo span {
  font-size: 10px;
  color: #000;
  font-weight: 500;
}



.nav-menu a:hover {
  color: #ff7c00;
}

/* RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bell {
  background: #e6e6e6;
  padding: 8px;
  border-radius: 50%;
}

.signin-btn {
  background: #ff7a00;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}


/* NAVBAR STICKY */
.navbar {
  background: #f2f2f2;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* CONTAINER */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0 35px;
}

@media (max-width: 991px) {
  .nav-container {
    padding: 0 25px;
  }
}

@media (max-width: 767px) {
  .nav-container {
    padding: 0 20px;
  }
  
}

/* 3 SECTION LAYOUT (IMPORTANT FOR CENTER) */
.logo,
.nav-menu,
.hamburger {
  flex: 1;
}

/* LOGO LEFT */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 40px;
  border-radius: 50%;
}

/* CENTER MENU */
.nav-menu {
  display: flex;
  justify-content: end;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.nav-menu a:hover {
  color: #ff7c00;
}

/* HAMBURGER RIGHT */
.hamburger {
  display: none;
  text-align: right;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 767px) {
  /* Sticky navbar on mobile */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* Top bar mobile fixes */
  .top-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 12px;
  }

  .download-btn {
    font-size: 11px;
    padding: 4px 10px;
  }

  .hamburger {
    display: block;
    text-align: right;
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
  }

  /* Hide desktop nav-menu on mobile - use Bootstrap offcanvas instead */
  .nav-menu {
    display: none !important;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .logo h3 {
    font-size: 16px;
  }

  .logo span {
    font-size: 9px;
  }

  .logo img {
    width: 35px;
  }
}

/* Bootstrap Offcanvas Theme Styling */
.offcanvas {
  background: linear-gradient(180deg, #ff7a18, #1fa2ff);
  border-left: none;
}

.offcanvas-header {
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
}

.offcanvas-title {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.offcanvas .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.9;
}

.offcanvas-body {
  padding: 0;
}

.offcanvas .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 16px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding-left: 25px;
}

/* banner */

.hero {
  position: relative;
  width: 100%;
  height: 500px;
  background: url('../img/hero-train-CvrpsL3O.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 35px;
}

/* Overlay using ::before */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  color: #fff;
  max-width: 700px;
  z-index: 2;
  overflow: hidden;
  height: 100%;
  padding-top: 80px;
}

/* Tag */
.tag-1 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

/* Heading */
.hero-content h1 {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #ff8c00;
}

/* Paragraph */
.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
}

/* Tablet */
@media (max-width: 991px) {
  .hero {
    padding: 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

.hero-content p {
font-size: 16px;
}
}

/* Mobile */
@media (max-width: 576px) {
.hero {
padding: 20px;
height: 350px;
}
.top-bar{
  padding: 8px 15px;
}

.hero-content h1 {
font-size: 30px;
}

.tag {
font-size: 11px;
padding: 6px 12px;
}

  .hero-content p {
    font-size: 14px;
  }
}

/* Search Section - Feature Cards */
.search {
  padding: 40px 20px;
  background: #fdfbf8;
  padding-top: 65px;
}

.search-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #ff7c00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  color: #fff;
  width: 24px;
  height: 24px;
}

.feature-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 4px 0;
}

.feature-content p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

/* Responsive for Feature Cards */
@media (max-width: 992px) {
  .search-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .search-container {
    grid-template-columns: 1fr;
  }
}

/* Popular Trains */
/* SECTION */
.popular-trains {
  padding: 40px 20px;
  background: #fdfbf8;
}

/* HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.tag {
  font-size: 12px;
  color: #3b82f6;
  font-weight: 600;
}

.section-header h2 {
  font-size: 28px;
}

.view-all {
  color: #ff7c00;
  text-decoration: none;
  font-size: 14px;
}

/* GRID */
.train-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.train-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}
.train-card:hover{
    border: 1px solid #ff9100;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 20px 40px -32px;
}

/* TOP */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-top h3 {
  font-size: 16px;
}

.card-top span {
  font-size: 12px;
  color: #ffffff;
}

/* BADGE */
.badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
}

.orange { background: #ffe7d6; color: #ff7c00; }
.green { background: #258b49; color: #16a34a; }
.blue { background: #dbeafe; color: #2563eb; }
.deepgreen{ background: #f7fee7; color: #5ea500; }
.red{ background: #fff1f2; color: #ff2056; }
.sky{ background: #f0f9ff; color: #00a6f4; }
.teal{  background: #f0fdfa; color: #00bba7; }
.violet{  background: #f5f3ff; color: #8e51ff;}
.orange{  background: #fffbeb; color: #fe9a00; }
/* ROUTE */
.service-card.deepgreen .icon {
    background: #5ea500;
    color: #fff;
}
.service-card.red .icon {
    background: #ff2056;
    color: #fff;
}
.service-card.sky .icon {
    background: #00a6f4;
    color: #fff;
}
.service-card.teal .icon {
    background: #00bba7;
    color: #fff;
}
.service-card.violet .icon {
    background: #8e51ff;
    color: #fff;
}
.service-card.orange .icon {
    background: #fe9a00;
    color: #fff;
}
.route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
}

.route strong {
  font-size: 14px;
}

.route small {
  display: block;
  font-size: 11px;
  color: #888;
}

.line {
  flex: 1;
  height: 1px;
  background: #ddd;
  margin: 0 10px;
  position: relative;
}

/* train dot */
.line::after {
  content: "🚆";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* BOTTOM */
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  border-width: 1px 0px 0px 0px;
  padding-top: 20px;
}

.depart {
  font-size: 11px;
  color: #888;
}

.card-bottom p {
  font-size: 14px;
  font-weight: 600;
}

/* BUTTON */
.book-btn {
  background: #22c55e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
}
#train-id{
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .train-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .train-grid {
    grid-template-columns: 1fr;
  }
}

/* treain */

/* SECTION */
.services {
  padding: 40px 35px;
  background: #fdfbf8;
  padding-top: 25px;
}

/* HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.tag {
  font-size: 12px;
  color: #f97316;
  font-weight: 600;
}

.section-header h2 {
  font-size: 32px;
  margin-top: 10px;
}

.view-all {
  color: #ff7c00;
  text-decoration: none;
  font-size: 14px;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* CARD BASE */

/* CARD BASE */
.service-card {
  padding: 25px;
  border-radius: 20px;
  transition: all 0.3s ease; /* smooth animation */
  height: 180px;
  overflow-y: hidden;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-8px); /* upar uth jayega */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* shadow bhi add */
}

/* ICON */
.icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
}

/* TEXT */
.service-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  margin-top: 30px;
}

.service-card p {
  font-size: 14px;
  color: #555;
}

/* COLORS */
.service-card.blue {
  background: #e7eef6;
}
.service-card.blue .icon {
  background: #1d4ed8;
  color: #fff;
}

.service-card.orange {
  background: #f5e6d7;
}
.service-card.orange .icon {
  background: #f97316;
  color: #fff;
}

.service-card.green {
  background: #e3f0ea;
}
.service-card.green .icon {
  background: #16a34a;
  color: #fff;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER STYLES */
.footer {
  background: #f5f0e8;
  padding: 50px 0 0;
  font-family: sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

/* Column 1 - Logo and Description */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  
  /* Gradient Text */
  background: linear-gradient(90deg, #ff7a18, #1fa2ff, #12d8fa, #28a745);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-logo span {
  font-size: 11px;
  color: #000;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
  max-width: 300px;
}

.social-section h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon {
  background: transparent;
  color: #adadad;
  border: 1px solid #ddd;
  
}
/* 
.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-icon.twitter {
  background: #1da1f2;
  color: white;
}

.social-icon.youtube {
  background: #ff0000;
  color: white;
}

.social-icon.linkedin {
  background: #0077b5;
  color: white;
} */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.contact-item svg {
  flex-shrink: 0;
  color: #888;
}

/* Columns 2, 3, 4 - Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ff7c00;
}

/* Footer Divider */
.footer-divider {
  height: 4px;
  background: linear-gradient(90deg, #ff7a18, #1fa2ff, #12d8fa, #28a745);
  margin: 40px 0;
   margin-bottom: 10px;
  border-radius: 2px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  /* border-top: 1px solid #e0d5c7; */
}

.footer-bottom-left p,
.footer-bottom-right p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.footer-bottom-right p {
  color: #ff7c00;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-column:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 0 0;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-column {
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: flex-start;
  }
}

/* Advertisement Section */
.advertisement {
  padding: 40px 20px;
  background: #fdfbf8;
}

.ad-banner {
  max-width: 1400px;
  margin: 0 auto 40px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 230px;
  background-image: url(../img/ad-travel-2-unT2YLhM.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}
#ad-banner-1{
  background-image: url(../img/ad-travel-1-D0q36D1n.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#ad-banner-2{
  background-image: url(../img/ad-travel-3-D6KarrTn.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Overlay */
.ad-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* darkness control */
  z-index: 1;
}

/* Content ko overlay ke upar lana */
.ad-banner > * {
  position: relative;
  z-index: 2;
}
/* 
.ad-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723a9ce6890?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
  opacity: 0.7;
} */

.ad-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 40px;
  z-index: 2;
}

.ad-label {
  position: absolute;
  top: 20px;
  left: 40px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.ad-text {
  flex: 1;
  color: #fff;
  max-width: 500px;
}

.ad-text h2 {
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.1;
}

.ad-text p {
  font-size: 16px;
  margin: 0 0 10px 0;
  opacity: 0.9;
}
.advertisement2 {
    margin: 0px 20px;
}

.grab-deals-btn {
  background: #ff6b35;
  color: #fff;
  border: none;
  padding: 6px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.grab-deals-btn:hover {
  background: #ff5722;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.travel-deal-overlay {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  text-align: center;
}

.travel-deal-text {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
}

/* Statistics Container */
.stats-container {
  max-width: 1400px;
  margin: 0 auto;
 
  gap: 30px;
}

.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* .stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
} */

.stat-card .stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 12px;
}

/* .stat-card .stat-item:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
} */

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.stat-icon.orange { background: #ff6b35; }
.stat-icon.blue { background: #4a90e2; }
.stat-icon.green { background: #27ae60; }
.stat-icon.purple { background: #8e44ad; }

.stat-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 5px 0;
}

.stat-content p {
  font-size: 12px;
  color: #7f8c8d;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive Design for Advertisement */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-card {
    flex-direction: column;
    gap: 20px;
    padding: 30px;
  }
  
  .ad-banner {
    height: 250px;
  }
  
  .ad-text h2 {
    font-size: 32px;
  }
  
  .travel-deal-text {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .advertisement {
    padding: 20px 15px;
  }
  
  .ad-banner {
    height: 200px;
    margin-bottom: 30px;
  }
  
  .ad-content {
    padding: 20px;
  }
  
  .ad-label {
    top: 15px;
    left: 20px;
    font-size: 10px;
  }
  
  .ad-text h2 {
    font-size: 24px;
  }
  
  .ad-text p {
    font-size: 14px;
  }
  
  .grab-deals-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .travel-deal-overlay {
    right: 20px;
  }
  
  .travel-deal-text {
    font-size: 24px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card {
    
    gap: 15px;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card .stat-item {
    padding: 15px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
  }
  
  .stat-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .stat-content h3 {
    font-size: 16px;
  }
}

/* Partners Section */
.partners {
  padding: 60px 20px;
  background: #f5f0e8;
}

.partners-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.partner-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.partner-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f1e3;
}

.partner-icon svg {
  width: 20px;
  height: 20px;
  /* color: #000; */
}

.partner-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* Partner Icon Colors */
/* .partner-icon.irctc { background: #ff6b35; }
.partner-icon.paytm { background: #0066ff; }
.partner-icon.phonepe { background: #5a2d82; }
.partner-icon.hdfc { background: #0066ff; }
.partner-icon.makemytrip { background: #ff6b35; }
.partner-icon.oyo { background: #27ae60; }
.partner-icon.redbus { background: #ff6b35; }
.partner-icon.visa { background: #0066ff; } */

/* Responsive Design for Partners */
@media (max-width: 992px) {
  .partners-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
  }
  
  .partner-card {
    padding: 20px 12px;
  }
  
  .partner-icon {
    width: 48px;
    height: 48px;
  }
  
  .partner-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .partner-name {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .partners {
    padding: 40px 15px;
  }
  
  .partners-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .partner-card {
    padding: 16px 8px;
  }
  
  .partner-icon {
    width: 44px;
    height: 44px;
  }
  
  .partner-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .partner-name {
    font-size: 12px;
  }
}

/* Footer Responsive Design */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-column:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 20px 0;
  }
  
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
  }
  
  .footer-column {
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: flex-start;
  }
}
.Travellers-text{
  text-align: center;
  width: 100%;
  margin: 30px 0px;
}

#icon-box {
    background-color: #f9f1e3;
    border-radius: 50%;
}

#white {
  background: #fff;
  border: 1px solid #e0e0e0;
}

/* Loved Across India Section */
.across-India {
  padding: 60px 20px;
  background: #fdfbf8;
}

.across-india-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header Section */
.across-india-header {
  text-align: center;
  margin-bottom: 50px;
}

.header-content .tag {
  color: #ff7c00;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.title-rating h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.rating-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.rating-section .stars {
  display: flex;
  gap: 2px;
}

.rating-section .star {
  color: #fbbf24;
  font-size: 23px;
}

.rating-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.rating-number {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.rating-total {
  font-size: 16px;
  color: #6b7280;
}

.reviews-count {
  font-size: 14px;
  color: #6b7280;
 
}

/* Testimonial Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 0px;
}

/* Testimonial Cards */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f3f4f6;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 48px;
  color: #e5e7eb;
  font-family: Georgia, serif;
  font-weight: 300;
  line-height: 1;
}

.testimonial-content .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-content .star {
  color: #fbbf24;
  font-size: 23px;
}
.testimonial-content {
    border: 1px solid #ddd;
    border-width: 0px 0px 1px 0px;
    margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffedd4;
  color: #fe7902;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 4px 0;
}

.author-info span {
  font-size: 14px;
  color: #6b7280;
}

/* Responsive Design */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .title-rating h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .across-India {
    padding: 40px 15px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .title-rating h2 {
    font-size: 28px;
  }
  
  .rating-section {
    flex-direction: column;
    gap: 10px;
  }
  
  .quote-icon {
    font-size: 36px;
  }
}
/* booking */
.container {
  max-width: 1400px;
  margin: 40px auto;
  text-align: center;
}

h1 {
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
}

/* Layout */
.card-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Card */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Header */
.card-header {
  padding: 20px;
  color: #fff;
  text-align: left;
}

.card-header h3 {
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.card-header p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #fff;
}
#leftcard{
  border-radius: 25px;
}
#card-headerbox{
  padding: 20px !important;
  border-bottom: 0px !important;
}
#Timings{
  max-width: 1400px;
}

/* Colors */
.orange {
  background: linear-gradient(to right, #ff8a00, #ff6a00);
}

.blue {
  background: linear-gradient(to right, #1e73d8, #1565c0);
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #f1f1f1;
}

th, td {
  padding: 12px;
  text-align: left;
  font-size: 14px;
}

tbody tr:nth-child(even) {
  background: #fafafa;
}

.highlight {
  color: #ff6a00;
  font-weight: bold;
}

/* Note */
.note {
  padding: 12px;
  font-size: 12px;
  color: #666;
  background: #fff8f0;
  text-align: left;
  border-top: 1px solid #ddd;
}

/* Booking List */
.booking-list {
  padding: 10px 0;
}

.bookingbox{
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.bookingbox b {
  color: #000;
}

/* FAQ Section Styles */
.faq {
  padding: 60px 20px;
  background: #fdfbf8;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header .tag {
  color: #ff7c00;
  font-size: 12px;
  font-weight: 600;

  display: inline-block;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.faq-content {
  background: #fff;
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f3f4f6;
}

.faq-item {
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #ff7c00;
}

.faq-question span {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  flex: 1;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #ff7c00;
}

.faq-item.active .faq-question span {
  color: #ff7c00;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 40px 15px;
  }
  
  .faq-header h2 {
    font-size: 28px;
  }
  
  .faq-content {
    padding: 20px;
  }
  
  .faq-question {
    padding: 15px 0;
  }
  
  .faq-question span {
    font-size: 15px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
}

/* CSS Variables for Tailwind-like classes */
:root {
  --background: #ffffff;
  --foreground: #1a1a1a;
  --primary: #ff6a00;
  --primary-foreground: #ffffff;
  --secondary: #f8f8f8;
  --muted-foreground: #666666;
  --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Get Travelling App Section */
.getTravellingapp {
  padding: 50px 20px;
  background: linear-gradient(135deg, #ff8a00 0%, #ff6a00 50%, #ff4500 100%);
  position: relative;
  overflow: hidden;
}

.app-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.app-content {
  color: #fff;
}

.app-info h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
  background: #ede38c4a;
  padding: 2px;
  width: 47%;
  border-radius: 36px;
  display: flex;
  justify-content: center;
}

.rating .stars {
  display: flex;
  gap: 2px;
}

.rating .star {
  color: #ffeb3b;
  font-size: 20px;
}

.rating-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.app-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.download-btn-apple,
.download-btn-google {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  max-width: 280px;
}

.download-btn-apple:hover,
.download-btn-google:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
}

.btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.btn-large {
  font-size: 16px;
  font-weight: 600;
}

/* Phone Mockup - New Tailwind-inspired Styles */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup .relative {
  position: relative;
}

.phone-mockup .absolute {
  position: absolute;
}

.phone-mockup .inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.phone-mockup .bg-white\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.phone-mockup .blur-2xl {
  filter: blur(40px);
}

.phone-mockup .rounded-full {
  border-radius: 9999px;
}

.phone-mockup .w-64 {
  width: 16rem;
}

.phone-mockup .h-\[480px\] {
  height: 480px;
}

.phone-mockup .rounded-\[2\.5rem\] {
  border-radius: 2.5rem;
}

.phone-mockup .bg-background {
  background-color: var(--background);
}

.phone-mockup .border-\[10px\] {
  border-width: 10px;
}

.phone-mockup .border-foreground\/90 {
  border-color: rgba(26, 26, 26, 0.9);
}

.phone-mockup .shadow-card {
  box-shadow: var(--card-shadow);
}

.phone-mockup .overflow-hidden {
  overflow: hidden;
  border: 5px solid;
}

.phone-mockup .bg-gradient-primary {
  background: linear-gradient(135deg, #ff8a00, #ff6a00);
}

.phone-mockup .text-primary-foreground {
  color: var(--primary-foreground);
}

.phone-mockup .p-5 {
  padding: 1.25rem;
}

.phone-mockup .flex {
  display: flex;
}

.phone-mockup .items-center {
  align-items: center;
}

.phone-mockup .gap-2 {
  gap: 0.5rem;
}

.phone-mockup .h-9 {
  height: 2.25rem;
}

.phone-mockup .w-9 {
  width: 2.25rem;
}

.phone-mockup .rounded-lg {
  border-radius: 0.5rem;
}

.phone-mockup .font-bold {
  font-weight: 700;
}

.phone-mockup .text-sm {
  font-size: 0.875rem;
}

.phone-mockup .leading-tight {
  line-height: 1.25;
}

.phone-mockup .text-\[10px\] {
  font-size: 10px;
}

.phone-mockup .opacity-90 {
  opacity: 0.9;
}

.phone-mockup .p-4 {
  padding: 1rem;
}

.phone-mockup .space-y-3 > * + * {
  margin-top: 0.75rem;
}

.phone-mockup .rounded-xl {
  border-radius: 0.75rem;
}

.phone-mockup .bg-secondary {
  background-color: var(--secondary);
}

.phone-mockup .p-3 {
  padding: 0.75rem;
}

.phone-mockup .text-\[9px\] {
  font-size: 9px;
}

.phone-mockup .uppercase {
  text-transform: uppercase;
}

.phone-mockup .text-muted-foreground {
  color: var(--muted-foreground);
}

.phone-mockup .text-center {
  text-align: center;
}

.phone-mockup .grid {
  display: grid;
}

.phone-mockup .grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.phone-mockup .gap-2 {
  gap: 0.5rem;
}

.phone-mockup .pt-2 {
  padding-top: 0.5rem;
}

.phone-mockup .aspect-square {
  aspect-ratio: 1 / 1;
}

.phone-mockup .bg-blue-100 {
  background-color: #dbeafe;
}

.phone-mockup .bg-orange-100 {
  background-color: #fed7aa;
}

.phone-mockup .bg-green-100 {
  background-color: #dcfce7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .app-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .app-info h2 {
    font-size: 36px;
  }
  
  .download-buttons {
    align-items: center;
  }
  
  .phone-mockup {
    order: -1;
  }
}

@media (max-width: 576px) {
  .getTravellingapp {
    padding: 60px 15px;
  }
  
  .app-info h2 {
    font-size: 28px;
  }
  
  .app-description {
    font-size: 16px;
  }
  
  .phone-frame {
    width: 240px;
    height: 480px;
  }
}
.delhi{
  background-color: #f9f1e3;
}
.download-btnapp {
  align-items: center;
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  color: #ff5700;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  gap: 8px;
  width: 32%;
  justify-content: center;
}

.download-btnapp svg {
  width: 20px;
  height: 20px;
  stroke: #ff5700;
  flex-shrink: 0;
}

.download-btnapp:hover {
  background: rgb(255 255 255 255);
}
@media (max-width: 600px){
#leftcard{
  width: 100%;
   margin-bottom: 20px;
}
.card-wrapper{
  display: block;
 
}
.rating{
  width: 100%;
}
.rating-text{
  font-size: 14px;
}
.download-btnapp{
  width: 60%;
}
.Travellers-text{
  margin: 0px;
}
.section-header{
  margin: 0px;
  align-items: start;
}
.hero-content{
  padding-top: 50px;
}
}