/*
 Theme Name: Astra Child
 Template: astra
 Description: Custom child theme for Raahidrives
 Author: Arun Chugh
 Version: 1.1
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f8f9fb;
  color: #222;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cm-page {
    width: 100%;
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 9999;
}
/* === FIX: Full-width Header & Menu === */
#rd-header, .rd-header {
  width: 100% !important;

  
}

#rd-header .rd-inner {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* make sure nav stretches properly */
#rd-header .rd-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

#rd-header .rd-menu {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}



*{margin:0;padding:0;box-sizing:border-box}
a{text-decoration:none;color:inherit}
ul{list-style:none}

.rd-header{
  position:sticky;top:0;z-index:999;
  background:#fff;
  font-family:'Montserrat',sans-serif;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}
.rd-inner{display:flex;align-items:center;justify-content:space-between;padding:8px 30px;}
.rd-logo img{height:50px}


/* NAV */
.rd-nav{flex:1;text-align:center;}
.rd-menu{display:inline-flex;align-items:center;gap:20px;}
.rd-menu>li{position:relative;}
ul.rd-menu {
    /* padding: 0; */
    margin: 0 10px 0;
}
.rd-menu>li>a{
  color:#024542;font-size:14px;text-transform:uppercase;font-weight:500; font-family: karla, 'Open Sans';
  padding:8px 6px;transition:all .3s ease;
}
.rd-menu>li>a:hover{color:#ff6b00;transform:translateY(-2px);}

/* SUBMENU */
.rd-submenu{
  position:absolute;top:100%;left:0;background:#fff;min-width:260px;
  border-radius:6px;box-shadow:0 6px 14px rgba(0,0,0,0.1);
  padding:6px 0;opacity:0;visibility:hidden;transform:translateY(10px);
  transition:all .25s ease;z-index:1000;
}
.rd-has-sub:hover>.rd-submenu{opacity:1;visibility:visible;transform:translateY(0);}
.rd-submenu li{display:flex;justify-content:space-between;align-items:center;padding:5px 10px;position:relative;}
.rd-submenu a{font-size:12px;color:#024542; font-family: karla, 'Open Sans';}
.rd-submenu a:hover{color:#ff6b00;}
.rd-submenu button{
  background:#024542;color:#fff;border:none;font-size:12px;
  padding:3px 6px;border-radius:4px;cursor:pointer;transition:background .3s;
}
.rd-submenu li > a {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 120px); /* leave space for button */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rd-submenu .menu-route-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999 !important;
  pointer-events: auto !important;
  background: #ff6b00;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
}
.rd-submenu button:hover{background:#ff6b00;}
.rd-nav .overlay, .rd-nav .some-overlay-class { 
  pointer-events: none; /* only if you have explicit overlay elements covering nav */
}

/* CONTACT */
.rd-contact{font-size:10px;color:#024542;display:flex;align-items:center;gap:4px;}
.rd-contact a:hover{color:#ff6b00;}

/* TOGGLE */
.rd-toggle{display:none;flex-direction:column;gap:3px;cursor:pointer;}
.rd-toggle span{width:22px;height:2px;background:#024542;}

/* HOVER PREVIEW */
.rd-preview{position:absolute;pointer-events:none;opacity:0;transition:opacity .3s ease,transform .3s ease;}
.rd-preview img{
  width:200px;height:200px;object-fit:cover;border-radius:8px;
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
}

/* RESPONSIVE 

@media(max-width:900px){
  .rd-toggle{display:flex;}
  .rd-menu{display:none;flex-direction:column;align-items:flex-start;background:#fff;width:100%;padding:10px 20px;}
  .rd-menu.open{display:flex;}
  .rd-submenu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;padding:0;}
  .rd-submenu li{padding-left:15px;}
  .rd-preview{display:none;}
}
*/
/* ===== RESPONSIVE + SIDEBAR NAVIGATION ===== */

/* --- Tablet range: keep one line, shrink spacing --- */
/* --- Tablet breakpoint (1030 → 901px) --- */
@media (max-width:1030px) and (min-width:901px){
  .rd-contact {
    display: none; /* hide phone for more space */
  }

  .rd-menu {
    gap: 12px;
  }

  .rd-menu > li > a {
    font-size: 11px;
    padding: 6px 4px;
  }
}

/* --- Mobile breakpoint (≤ 900px) --- */
/* === STICKY HEADER ON MOBILE === */
@media (max-width:900px) {
  #rd-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }

  body {
    padding-top: 60px; /* adjust for header height */
  }
}
@media (max-width:480px)
{
    ul.rd-menu {
    /* padding: 0; */
    margin: 0;
}
}
@media (max-width:900px) {

  /* HIDE PHONE + SHOW TOGGLE */
  .rd-contact {
    display: none !important;
  }

  .rd-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 40px;
    flex-direction: column;
    gap: 8px;
    z-index: 10001;
  }

  .rd-toggle span {
    width: 24px;
    height: 2px;
    background: #024542;
    border-radius: 2px;
    transition: all 0.4s ease;
  }

  /* Hamburger → X animation */
  body.menu-open .rd-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  body.menu-open .rd-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.menu-open .rd-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* SIDEBAR defaults hidden offscreen */
  .rd-menu {
    position: fixed;
    top: 0;
    left: -100%; /* fully hidden */
    width: 75%;
    height: 100vh;
    background: #024542;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: left 0.6s ease;
    z-index: 9999;
    margin: 0;
    box-sizing: border-box;
  }

  /* When open, slide in smoothly */
  body.menu-open .rd-menu {
    left: 0;
  }

  /* Push only main content and footer — header stays fixed */
  body.menu-open main,
  body.menu-open footer {
    transform: translateX(75%);
    transition: transform 0.6s ease;
  }

  /* Keep header in place */
  #rd-header {
    transform: none !important;
    transition: none !important;
    z-index: 10000;
  }

  /* MENU LINKS */
  .rd-menu > li > a {
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    width: 100%;
    display: block;
  }


  .rd-menu > li > a:hover {
    color: #ff6b00;
  }

  /* SUBMENU accordion */
  .rd-submenu {
    display: none;
    width: 100%;
    background: #033c39;
    margin: 4px 0;
    padding: 6px 10px;
    border-radius: 4px;
  }

  .rd-submenu li {
    padding: 4px 0;
  }

  .rd-submenu a {
    color: #fff;
    font-size: .7em;
  }

  .rd-submenu a:hover {
    color: #ff6b00;
  }

  .rd-submenu button {
   background: #ff6b00;
        color: #fff;
        padding: 6px 10px;
        font-size: 12px;
    }

  .rd-has-sub.open > .rd-submenu {
    display: block;
  }

  /* Hide preview image on mobile */
  .rd-preview {
    display: none;
  }

  /* Prevent scrollbars or leftover space */
  #rd-header,
  body {
    overflow-x: hidden !important;
  }
}


/* === BLUR + DIM BACKGROUND WHEN MENU IS OPEN === */
body.menu-open main,
body.menu-open footer {
  filter: blur(4px) brightness(0.8);
  transition: transform 0.6s ease, filter 0.4s ease;
}

/* Optional: fade effect for the overlay background if you like a soft dim */
body.menu-open::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 9998;
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* hide overlay when menu is closed */
body::after {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}




/*=====================packages region ======================*/


#packages-region {
  margin-top: 40px;
  margin-bottom: 60px;
}

.rd-regions-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Card Base */
.rd-region-card {
  position: relative;
  aspect-ratio: 2 / 1; /* Auto responsive height */
  border-radius: 14px;
  background-size: cover;
  background-position: center center;
  background-image: var(--bg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none !important;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Overlay */
.rd-region-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  transition: background .35s ease-in-out;
}

.rd-region-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.rd-region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85));
  transition: background 0.3s ease;
}
.rd-region-card:hover .rd-region-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.95));
}

/* Title Text */
.rd-region-title {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-weight: 600;
  font-size: 17px;
  padding: 14px 16px;
  text-align: center;
  line-height: 1.3;
}

/* Hover Lift */

/* Tooltip */
.rd-region-card::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, bottom .25s ease;
}

.rd-region-card:hover::after {
  opacity: 1;
  bottom: 130%;
}

/* -------------------------- */
/* ✅ RESPONSIVE BEHAVIOR */
/* -------------------------- */

/* Tablets */
@media (max-width: 768px) {
  .rd-region-title {
    font-size: 16px;
    padding: 12px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .rd-regions-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rd-region-card {
    border-radius: 12px;
  }

  .rd-region-title {
    font-size: 15px;
    padding: 12px;
  }

  /* Tooltip turns off on small screen (for touch usability) */
  .rd-region-card:hover::after {
    opacity: 0;
  }
}



/* ================== FOOTER ================== */
.raahi-footer {
  background: #024542;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Saol Display', sans-serif;
}


/* ================== HERO SECTION ================== */
/* ================== MAIN SECTION ================== */
.raahi-main {
  width: 100%;
  overflow-x: hidden;  /* Prevent horizontal scroll */
  margin: 0 auto;
  padding: 0;
  display: block;
 background: #ffffff !important;
  margin-top: 12vh;
}

/* ================== HERO SECTION ================== */
/* ========================================
   HERO + BOOKING SECTION
======================================== */
/* =============== HERO BOOKING SECTION =============== */
.hero-booking-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  padding: 1.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(2, 69, 66, 0.05), transparent 70%);
  animation: pulseBg 6s infinite ease-in-out;
  z-index: 0;
}

@keyframes pulseBg {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 1.5s ease-out;
}

.hero-title {
font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    color: #024542;
    margin-bottom: 10px;
    letter-spacing: -1px;
    font-weight: 500;
}

.hero-title span {
  color: #ff6b00;
}

.hero-subtitle {
  font-family: 'Karla', sans-serif;
    font-size: 1em;
    color: #555;
   
    letter-spacing: 0.5px;
    font-weight: 400;
}

.booking-wrapper {
  /*background: #fff;
  padding: 1.8rem;
  border-radius: 16px; */
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  animation: fadeIn 1.5s ease-out;
 
}

.city-routes {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-family: 'Karla', sans-serif;
  color: #024542;
  font-size: 0.9em;
  opacity: 0;
  animation: fadeInUp 2s ease forwards;
  animation-delay: 1.5s;
}

.city-routes span {
  position: relative;
  padding-left: 1.2rem;
}

.city-routes span::before {
  content: "⟶";
  position: absolute;
  left: 0;
  color: #ff6b00;
  font-weight: bold;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============== RESPONSIVE =============== */
@media (max-width: 768px) {
    
    .hero-booking-section {
    height: auto;
    padding: 80px 0;
  }
  .hero-booking-content h1 {
    font-size: 1.5rem;
  }
  .hero-booking-form {
    padding: 20px;
  }
  .route-line {
    white-space: normal;
    animation: none;
  }
  .hero-title {
    font-size: 1.6em;
  }
  .hero-subtitle {
    font-size: 1em;
  }
  .booking-wrapper {
    padding: 1.2rem;
  }
  .city-routes {
    flex-direction: column;
    gap: 0.8rem;
  }
}





/* ========================
   Responsive
======================== */
@media (max-width: 1024px) {
  .hero-booking-content h1 {
    font-size: 1.8rem;
  }
  .route-line {
    font-size: 0.9rem;
  }
}


/*==================================about us ================================*/

/*==================================about us ================================*/

/* Hide mobile section by default (only desktop/tablet visible) */
.about-us-section-mobile {
  display: none;
}

/* Section container - Desktop */
.about-us-section {
  background-color: #f8f9fb;
  margin-top: -20px;
}

/* Columns layout */
.about-columns {
  display: flex;
  gap: 10px;
  justify-content: space-between;
 
  padding-top: 20px;
}

/* Column styling */
.column {
  flex: 1;
  padding: 0 20px 20px 20px;
  position: relative;
}

/* First Column (Image) */
.column.left {
  padding-right: 0px;
}

.column-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 1pc;
}
.content-image {
    width: 100%;
    height: 98%;
    margin-top: 10px;
}

.content {
  width: 100%;
}

/* Second Column */
.column.middle {
  height: 100%;
  padding-right: 30px;
  border-right: 1px solid #ededed;
}

.rowmiddle {
  font-family: 'karla', sans-serif;
  margin-bottom: 20px;
}

.rowmiddle p {
  font-family: 'karla', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  text-align: justify;
}

.rowmiddle2 {
  background: linear-gradient(135deg, #e7e7e7 50%, #02454224 50%);
  padding: 15px;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  margin-bottom: 15px;
  color: #555;
  border-radius: 1pc;
}
.rowmiddle2 p {
  font-family: 'karla', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  text-align: justify;
}

.highlight-text {
  color: #02a19b;
}

/* Third Column (About Us) */
.column.right {
  height: 100%;
}

.section-heading {
  animation: fadeInUp 1s ease-out;
  letter-spacing: -1px;
  font-size: 1.4em;
  font-weight: 500;
  margin: 0 0 10px !important;
  color: #024542;
  font-family: 'Montserrat', sans-serif;
}

.about-us-text {
  font-family: 'karla', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  text-align: justify;
}

/* Call-to-Action Button */
.cta-aboutbutton {
  text-align: center;
  margin-top: 20px;
}

.cta-aboutbutton .btn {
  padding: 10px 25px;
  background-color: #ff6b00;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.5s ease 0s;
}

.cta-aboutbutton .btn:hover {
  background-color: #024542;
  color: #ffffff;
}

/* Mobile & Tablet Adjustments for Desktop Section */
@media (max-width: 480px) {
  #booking .container {
    padding: 15px 20px 20px 20px;
  }
  .content-image {
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .about-columns {
    flex-direction: column;
  }
  .column .content {
    left: 0;
  }
  #about-us .container {
    padding: 0px;
    margin: 0 auto;
  }
  .about-us-section {
    padding: 0px;
  }
  .column.middle {
    padding-right: 0px;
  }
  .content-image {
    margin-top: 20px;
  }
  .column {
    flex: 1;
    padding: 0 20px 0px 20px;
    position: relative;
  }
  .rowmiddle {
    margin-bottom: 0px;
  }
  .rowmiddle p {
    padding-right: 20px;
  }
  .rowmiddle2 {
    margin-right: 20px;
  }
  .column.right {
    height: 100%;
    padding-bottom: 20px;
  }
}

/*==================================about us mobile===========================*/

/* Mobile Section Container */
.about-us-section-mobile {
  background-color: #f8f9fb;
  margin-top: -20px;
}

/* Mobile Columns */
.about-columns-mobile {
  display: block;
  gap: 10px;
  justify-content: space-between;
  height: 100%;
}

.column-mobile {
  flex: 1;
  padding: 0 20px 20px 20px;
  position: relative;
}

.column-mobile.left-mobile {
  padding-right: 0px;
}

.column-image-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 1pc;
  margin-top:-28px;
}

.content-image-mobile {
  width: 100%;
  height: 70%;
  margin-top: 50px;
  
}

.content-mobile {
  width: 100%;
}

/* Mobile Middle Column */
.column-mobile.middle-mobile {
  height: 100%;
  padding-right: 30px;
  border-right: 1px solid #ededed;
}

.rowmiddle-mobile {
  font-family: 'karla', sans-serif;
  margin-bottom: 20px;
}

.rowmiddle-mobile p {
  font-family: 'karla', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  text-align: justify;
}

/* Mobile Highlight Box */
.rowmiddle2-mobile {
  background: linear-gradient(135deg, #e7e7e7 50%, #02454224 50%);
  padding: 15px;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  margin-bottom: 15px;
  color: #555;
  border-radius: 1pc;
}

.rowmiddle2-mobile p {
  font-family: 'karla', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  text-align: justify;
}

.highlight-text-mobile {
  color: #02a19b;
}

/* Mobile Right Column */
.column-mobile.right-mobile {
  height: 100%;
}

.section-heading-mobile {
  animation: fadeInUp 1s ease-out;
  letter-spacing: -1px;
  font-size: 1.4em;
  font-weight: 500;
  margin: 15px 0 10px !important;
  color: #024542;
  font-family: 'Montserrat', sans-serif;
}

.about-us-text-mobile {
  font-family: 'karla', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  text-align: justify;
}


  .cta-aboutbutton-mobile {
    text-align: center;
    margin-top: 20px;
    padding: 10px 10px;
    background: #ff6b00;
    border-radius: 50px;
}


.cta-aboutbutton-mobile .btn-mobile {
  padding: 10px 25px;
  background-color: #ff6b00;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.5s ease 0s;
}

.cta-aboutbutton-mobile .btn-mobile:hover {
  background-color: #024542;
  color: #ffffff;
}

/* Mobile Visibility Settings */
@media (max-width: 768px) {
  /* Hide desktop section */
  .about-us-section {
    display: none;
  }
  /* Show mobile section */
  .about-us-section-mobile {
    display: block;
  }
}
@media (max-width: 480px)
{
    .rowmiddle-mobile {
    font-family: 'karla', sans-serif;
    margin-bottom: 15px;
}
 .cta-aboutbutton-mobile {
    text-align: center;
    margin-top: 20px;
    padding: 10px 10px;
    background: #ff6b00;
    border-radius: 8px;
    height: 45px;
    line-height: 25px;
    color:#fff;
}
.cta-aboutbutton-mobile:hover {
    text-align: center;
    margin-top: 20px;
    padding: 10px 10px;
    background: #024542;
    border-radius: 8px;
    height: 45px;
    line-height: 25px;
}
.column.right-mobile {
    padding-bottom: 20px;
}
/*============offer section responsive =============*/
.offers-description {
    
    margin-bottom: 15px;
   
}
.offer-card p {
   
    margin-bottom: 20px;
}
/*------------------testimonial ============*/
.testimonial-img {
       
        display: none;
    }
    
    .prev, .next {
        top: 170px;
        font-size: 1.5rem;
    }
}

/*===================================offers new code ==================================*/

/* Special Offers Section */
.special-offers-section {
  padding: 20px 0;
background: linear-gradient(360deg, #e7e7e7 50%, #2575fc17 50%);
  text-align: center;
}

/* Heading */
.special-offers-section .section-heading {
  animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
    font-size: 1.4em;
    font-weight: 500;
    margin: 0 0 5px !important;
    color: #024542;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* Description Text */
.offers-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  font-family: 'Karla', sans-serif;
}

/* Offers Cards Layout */
.offers-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Individual Offer Card */
.offer-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  width: 22%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Raleway', sans-serif;
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
}

.offer-card h3 {
  font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    animation: fadeInUp 1s ease-out;
    color: #024542;
    letter-spacing: .2px;
    margin-bottom: 15px;
  
    /* text-transform: uppercase; */
    text-align: center;
}

.offer-card p {
font-family: 'karla', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    text-align: justify;
}

.offer-card .btn {
  padding: 10px 20px;
  background-color: #ff6b00;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Karla', sans-serif;
}

.offer-card .btn:hover {
  background-color: #024542;
}

/* Specific Colors for Each Discount */
.offer-card.student {
  border-left: 5px solid #00bcd4;
  border-right: 5px solid #00bcd4;
}

.offer-card.army {
  border-left: 5px solid #3f51b5;
  border-right: 5px solid #3f51b5;
}

.offer-card.doctor {
  border-left: 5px solid #4caf50;
  border-right: 5px solid #4caf50;
}

.offer-card.senior {
  border-left: 5px solid #930000;
    border-right: 5px solid #930000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .offers-cards {
    flex-direction: column;
    gap: 20px;
  }

  .offer-card {
    width: 100%;
  }
}


/*==============================SLIDER SECTION ==============================*/



.slider {
  position: relative;
  
  max-width:100%;
  height: 400px;
  margin: auto;
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  border-radius: 15px 15px 0 0;
}

.slide {
  min-width: 100%;
  height: 100%;
  width:100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

.slide.active {
  pointer-events: auto;
}

.bottom-center {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  background: #fff;
  padding: 15px 20px;
  padding-bottom: 0;
  text-align: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
  overflow: visible;
  border-radius: 20px 20px 0 0;
  transition:all 0.3s ease-in-out;
}

/* Outer radius using pseudo-elements */
.bottom-center::before,
.bottom-center::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 40px;
  background: #fff;
  border-radius: 0;
  z-index: -1;
}

.bottom-center::before {
  left: -30px;
  bottom: -10px;
  mask: radial-gradient(30px at top left, #0000 98%, #000);
}

.bottom-center::after {
  right: -30px;
  bottom: -10px;
  mask: radial-gradient(30px at top right, #0000 98%, #000);
}

.bottom-center h3 {
  margin: 5px 0;
  font-size: 18px;
  color: #333;
}

.bottom-center p {
  margin: 5px 0 10px;
  color: #666;
  font-size: 14px;
}

.luxury-heading {
  font-family: "Gloock", serif;
  font-weight: 700;
  font-size: 2.9rem;
  color: #2c2a29; /* deep charcoal */
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
  text-transform: capitalize;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.luxury-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #6b5b3b; /* warm gold-brown */
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 0;
  opacity: 0.85;
}

.buttons {
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: center;
}

.btn {
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin: 0 10px;
  user-select: none;
  margin-bottom:10px;
}

.btn.primary {
  background-color: #ffc727;
  color: #222;
  box-shadow: 0 4px 12px rgba(255, 199, 39, 0.4);
}

.btn.primary:hover {
  background-color: #ffb400;
  box-shadow: 0 6px 16px rgba(255, 180, 0, 0.5);
  transform: translateY(-2px);
}

.btn.secondary {
  background-color: transparent;
  color: #ffc727;
  border: 2px solid #ffc727;
}

.btn.secondary:hover {
  background-color: #fff8e1;
  color: #222;
  border-color: #ffb400;
  transform: translateY(-2px);
}

.indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}


@media(max-width:768px){
  .slider {
    width:95%;
    height:400px;
  }
  .slider{
    border-radius:10px;
  }
  .btn{
    margin:5px;
  }
  .bottom-center {
    width: 80%;
    border-radius:10px;
  }
  .bottom-center::before {
  left: -20px;
  bottom: -20px;
  mask: radial-gradient(20px at top left, #0000 98%, #000);
}

.bottom-center::after {
  right: -20px;
  bottom: -20px;
  mask: radial-gradient(20px at top right, #0000 98%, #000);
}
}

@media(max-width:414px){
  .bottom-center{
    border-radius:10px 10px 0 0;
  }
   .btn{
    width:100%;
    margin:5px 0;
  }
   .bottom-center::before,.bottom-center::after {
    display:none;
}

}





/*===============================Testimonials==============================*/

/* Testimonial Section */
.customer-revs {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  padding: 1.5rem 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  width: 75%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}


.slideshow-container h1 {
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
    font-size: 1.4em;
    font-weight: 500;
    margin: 0 0 5px !important;
    color: #024542;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.mySlides {
  display: none;
  padding: 1rem 5rem;
  text-align: center;
  transition: transform 0.5s ease-in-out;
}

.mySlidesContainer {
 min-height: 5rem;
    padding: 3.5rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: relative;
 
}


.overlay { 
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  border-radius: 8px;
  z-index: 0; /* Ensure overlay stays behind the text */
}
.testimonial-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  
  max-width: 400px;
    z-index: 1;
    background: url(https://raahidrives.com/wp-content/uploads/2025/10/cab-services-in-chandigarh-raahidrives-scaled.jpg);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
  
}





.testimonial-text q {
  font-family: 'Karla', 'Open Sans';
  font-size: 18px;
  line-height: 1.5;
  color: #fff; /* Ensure the text is visible on top of the overlay */
  text-align: justify;
  z-index: 1; /* Ensure the text is on top of the overlay */
  position: relative;
  font-size:.9em;
}
.author {
font-size: 1rem;
    color: #ffffff;
    background: #ff6b0078;
    font-family: 'karla', open-sans;
    position: relative;
    z-index: 1;
}


.star-rating {
  margin-top: 10px;
  color: #ffcc00;
  font-size: 1.2rem;
  z-index: 1; /* Ensure the star rating is on top of the overlay */
}
/* Next/prev buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 1rem;
  color: #232323;
  font-weight: bold;
  font-size: 2rem;
  border-radius: 3px;
  user-select: none;
  transition: 0.4s;
  z-index: 2;
  transform: translateY(-50%); /* Vertically center the arrows */
}

/* Position the left arrow */
.prev {
  left: 0px; /* Move it outside the container */
  cursor: pointer;
}

/* Position the right arrow */
.next {
  right: 0px; /* Move it outside the container */
  cursor: pointer;
}



.prev:hover, .next:hover {
  background-color:#ff6b00;
  color: #024542;
  cursor: pointer;
}

.dot-container {
text-align: center;
    /* padding: 1rem; */
    top: -80px;
    position: relative;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #ff6b00;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.active {
  background-color: #024542;
}

/* Adjust layout on small screens */
@media (max-width: 768px) {
  .slideshow-container {
    width: 90%;
  }

  .testimonial-img {
    width: 50px;
    height: 50px;
  }

  .testimonial-text q {
    font-size: 1rem;
  }

  .prev, .next {
    font-size: 1.5rem;
  }
   .mySlides
  {
      padding: 0px;
  }
  .customer-revs
  {
      padding: 1rem 0;
  }
   .slideshow-container h1
  {
      padding-bottom: 1rem;
  }
    .mySlidesContainer
  {
      padding:1rem 2.2rem;
  }
}

@media (max-width: 480px) {
  .slideshow-container {
    width: 100%;
  }
  .mySlides
  {
      padding: 0px;
  }
  .customer-revs
  {
      padding: 1rem 0;
  }
  .slideshow-container h1
  {
      padding-bottom: 1rem;
  }
  .dot-container
  {
      display:none;
  }
  .mySlidesContainer
  {
      padding:1rem 2.2rem;
  }
  .prev, .next {
        font-size: 1.5rem;
        top: 170px;
    }
}

@media (max-width: 480px) {
.cm-offer { font-weight: 500; font-size: 15px; padding:0; }
.cm-topbar-info { display: block; font-size: 15px; display:none; }
.cm-logo img { height: 44px; display: block; width: 150px; }
.cm-logo { padding: 0; }
.cm-topbar-inner { flex-direction: column; gap: 2px; text-align: center; }
.cm-container { padding-left: 16px; padding-right: 16px; padding-bottom: 0px; }
.cm-topbar {
    padding: 10px 0;
}
}


/*==========================Booking Section ===========================*/
#booking {
 
  background-color: #f8f9fb; /* A light background for contrast */
}

#booking .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 5px;
   background: url(https://raahidrives.com/wp-content/themes/astra-child/assets/images/cab-services-in-chandigarh.jpg);
   background-size: cover;
    overflow: hidden;
}

#booking .container h3
{
 animation: fadeInUp 1s ease-out;
 letter-spacing: -1px;
 font-size: 1.4em;
font-weight: 500;
margin: 0 0 5px !important;
color: #024542;
text-align: center;
font-family: 'Montserrat', sans-serif;
color: #fff;
}
.booking-section .cta-button,
.booking-section .cta-secondary {
  margin-top: 20px;
}


/* ================== RESPONSIVE ================== */
/* Responsive */
@media (max-width: 768px) {
  .raahi-header .header-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo, .header-phone, .header-book {
    justify-content: center;
    margin-top: 10px;
  }
}



/* ===========================================
   OUR SERVICES - Modern Premium Glass Design
=========================================== */
#our-services {
  background: #ffffff; /* neutral modern */
  padding: 20px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

#our-services h3 {
  animation: fadeInUp 1s ease-out;
    font-size: 1.4em;
    font-weight: 500;
    margin: 0 0 15px !important;
    color: #024542;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* Container for services */
#our-services .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Card */
.card {
background: #fafafa73;
    border-radius: 16px;
    width: 260px;
    padding: 30px 20px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
  
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
   
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Icon circle background */
.card .service-icon {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background:#ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #024542;
  margin-bottom: 20px;
  transition: all 0.35s ease;
  
}

.card:hover .service-icon {
  background: #fff;
  color: #fe8c65;
  border-radius: 10px;
  -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
    border:1px solid #024542;
}

/* Service Title */
#our-services .card h3 {
   font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    animation: fadeInUp 1s 
ease-out;
    color: #024542;
    letter-spacing: .2px;
    margin-bottom: 15px;
    margin-top: 15px;
    /* text-transform: uppercase; */
    text-align: center;
}
/* Service Description */
.card .service-description {
font-size: 12px;
    color: #aba7a7;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 85px;
    font-family: Montserrat;
    font-weight: 400;
    /* text-transform: uppercase; */
    letter-spacing: 0.9px;
    word-spacing: .9px;
    text-align: justify;
}

/* Pill Button */
.pill-btn-services {
  display: inline-block;
    padding: 2px 18px;
    border-radius: 50px;
    font-weight: 400;
    color: #024542;
    background: #fe8c65;
    text-decoration: none;
    transition: all 0.35s ease;
    font-family: 'Karla';
}

.pill-btn-services:hover {
  background: #024542;
  color: #fe8c65;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  #our-services .container {
    justify-content: center;
    padding:0px;
  }

  .card {
    width: 48%;
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .card {
    width: 100%;
    margin-bottom: 0px;
  }

  #our-services h3 {
    font-size: 1.8rem;
  }

  .card .service-description {
    font-size: 13px;
    min-height: 80px;
    margin-bottom: 0;
  }
}









/* =======================================
   Why Choose Us - Modern Glassmorphism Design
======================================= */
.chooseus-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(240, 240, 240, 0.2));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 20px;
  text-align: center;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* Title styling */
.chooseus-section h3 {
   position: relative;
    z-index: 2;
    font-size: 32px;
    font-size: 1.4em;
    font-weight: 500;
    margin: 0 0 20px !important;
    color: #024542;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInUp 1s ease-out;
}

/* Container for list */
.ag-format-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* List layout */
.ag-offer_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Card Container */
.ag-offer_item {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 30px;
  color: #222;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  animation: fadeUp 0.7s ease forwards;
  cursor: pointer;
}

/* Hover glow and lift */
.ag-offer_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Icon inside card */
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #02454224;
  color: #ff6b00;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #024542;
  font-size: 40px;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.ag-offer_item:hover .service-icon {
  background: rgba(255, 255, 255, 0.25);
  color: #fe8c65;
  transform: scale(1.1);
  border-radius: 10px;
  -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
    border:1px solid #024542;
}

/* Title inside card */
.ag-offer_title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.ag-offer_title h4 {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #024542;
  letter-spacing: .2px;
  margin-bottom: 15px;
  margin-top: 15px;
  text-align: center;
}

/* Hidden description (revealed on hover) */
.ag-offer_hidden-item {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.ag-offer_item:hover .ag-offer_hidden-item {
  max-height: 200px;
  opacity: 1;
  margin-top: 15px;
}

.ag-offer_text {
  font-size: 12px;
  color: #aba7a7;
  line-height: 1.6;
  min-height: 85px;
  font-family: Montserrat;
  font-weight: 400;
  letter-spacing: 0.9px;
  word-spacing: .9px;
  text-align: justify;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Animation for card appearance */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accent highlight on hover */
.ag-offer_item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 18px;
}

.ag-offer_item:hover::before {
  opacity: 1;
}

/* Responsive design adjustments */
@media (max-width: 992px) {
  .chooseus-section {
    padding: 20px 20px;
  }
  .ag-offer_list {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .chooseus-section h3 {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

  .ag-offer_item {
    padding: 25px;
  }

  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .ag-offer_title {
    font-size: 1.1rem;
  }

  .ag-offer_text {
    font-size: 0.9rem;
  }
}



/*====================Fleet Section===========================*/

 :root{
    --accent:#0b63d6;
    --accent-2: linear-gradient(90deg,#0b63d6,#0065a3);
    --muted:#6b7280;
    --card-radius:16px;
    --shadow: 0 10px 30px rgba(10,20,40,0.08);
    --glass: rgba(255,255,255,0.6);
    font-family: 'Montserrat', sans-serif;
  }
  
  
 /* Fleet Section wrapper + heading */
#fleet-overview {
  background-color: #ffffff;
  padding: 20px 20px;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

.fleet-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.fleet-section h3 {
 position: relative;
    z-index: 2;
    font-size: 32px;
    font-size: 1.4em;
    font-weight: 500;
    margin: 0 0 20px !important;
    color: #024542;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInUp 1s ease-out;
   }





/* Counter Section Styling */
.counter-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: #fff;
  padding: 20px 0;
  overflow: hidden;
}

.counter-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.counter-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.counter-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 15px;
  padding: 10px 20px;
  transition: transform 0.4s ease, background 0.4s ease;
  cursor: default;
}

.counter-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.counter-box i {
  font-size: 40px;
  margin-bottom: 15px;
 color: #f16334;
}

.counter-box h3 {
 font-size: 42px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fe5a21;
}

.counter-box p {
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-section
  {
      padding:20px 0;
  }
}

@media (max-width: 600px) {
  .counter-grid {
    grid-template-columns: 1fr;
  }
}


/* Subtle flicker during count */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.7;
  }
}

/* Glow pulse once finished */
.glow-pulse {
  animation: glowPulse 1.5s ease-in-out 2, flicker 2s linear infinite;
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 5px rgba(251,191,36,0.6), 0 0 10px rgba(251,191,36,0.4); transform: scale(1); }
  50% { text-shadow: 0 0 20px rgba(251,191,36,0.8), 0 0 40px rgba(251,191,36,0.5); transform: scale(1.08); }
  100% { text-shadow: 0 0 10px rgba(251,191,36,0.6), 0 0 25px rgba(251,191,36,0.4); transform: scale(1); }
}





/* ------------------ AREA WE COVER SECTION ------------------ */
/* Main Section Styling */
.area-cover-section {
  position: relative;
  padding: 20px 20px; /* Reduced padding */
  background: #f9f9f9; /* Lighter background */
  color: #333;
  overflow: hidden;
  font-family: 'Raleway', sans-serif; /* Body font */
}

/* Section Heading */
.area-cover-section h3 {
 position: relative;
    z-index: 2;
    font-size: 32px;
    font-size: 1.4em;
    font-weight: 500;
    margin: 0 0 20px !important;
    color: #024542;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInUp 1s ease-out;
}
.overlayarea {
 
  inset: 0;
 background: #024542c7;

}
/* Grid Layout for Route Cards */
.area-cover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* Reduced gap */
  max-width: 1100px; /* Reduced max width */
  margin: 0 auto;
}

/* Route Cards Styling */
.route-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px; /* Slightly reduced border radius */
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); /* Smaller shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover Effect on Cards */
.route-card:hover {
  transform: translateY(-6px) scale(1.02); /* Reduced scale */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Smaller shadow on hover */
}

/* Route Image Styling */
.route-image {
  width: 100%;
  height: 180px; /* Reduced image height */
  overflow: hidden;
  border-bottom: 1px solid #ddd; /* Lighter separation line */
}

.route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.route-card:hover .route-image img {
  transform: scale(1.05); /* Slightly reduced scale on hover */
}

/* Route Info (Text) */
.route-info {
  padding: 15px;
  text-align: center;
  color: #333;
  display: grid;
}

.route-name {
  font-size: .9rem; /* Smaller font size */
  font-weight: 600;
  color: #024542;
  text-transform: uppercase;
}

.route-distance,
.route-fare {
  font-size: 14px; /* Reduced font size */
  color: #555;
  font-family: karla,'open-sans';
}
/* Book Now Button */
.book-route-btn {
  background: #ff6b00; /* New background color */
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.book-route-btn:hover {
  background: #024542; /* New hover color */
  transform: translateY(-2px);
}

/* Explore Other Routes Button */
.explore-routes-btn {
  display: inline-block;
  background: #024542;
    color: #fff;
    border: none;
    padding: 2px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    width: 100%;
    text-align: center;
   
  
}

.explore-routes-btn:hover {
  background: #ff6b00; /* New hover color */
  transform: translateY(-2px);
  color:#ffffff;
}


/* Book Now Button */


/* Explore Other Routes Button */
.explore-routes-cta {
  text-align: center;
  margin-top: 10px; /* Reduced margin */
  text-align: end;
}



/* Responsive Design */
@media (max-width: 1200px) {
  .area-cover-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .area-cover-grid { grid-template-columns: repeat(2, 1fr); }
  
  .explore-routes-cta {
    text-align: right;
    margin-top: 10px;
    position: relative;
    left: 30%;
}
.rd-cta-dark 
{
    margin-top:20px;
}
}

@media (max-width: 576px) {
  .area-cover-grid { grid-template-columns: 1fr; }
}
@media (max-width:480px)
{
    .explore-routes-cta {
       
        left: -20%;
    }
    .route-name
    {
        font-size:.9em;
    }
}
/* ---------- RAANHI HOMEPAGE BLOCKS (How It Works, Testimonials, CTA) ---------- */
/* Shared variables */
:root{
  --rd-accent: #ff6b00;
  --rd-dark: #0b1220;
  --rd-soft: #f7f8fb;
  --rd-glass-alpha: 0.14;
  --rd-radius: 14px;
  --rd-container-w: 1200px;
  --rd-font: 'Montserrat', sans-serif;
}

/* Generic section wrapper */
.rd-section { padding: 20px 20px; font-family: var(--rd-font); }
.rd-container { max-width: var(--rd-container-w); margin: 0 auto; position: relative; }

.rd-section-title {
animation: fadeInUp 1s ease-out;
 letter-spacing: -1px;
 font-size: 1.4em;
font-weight: 500;
margin: 0 0 5px !important;
color: #024542;
text-align: center;
font-family: 'Montserrat', sans-serif;
}
.rd-subtitle {
  color: #5b6770;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
 margin-bottom: 10px;
    font-size: .8em;
}


/* ---------------- How It Works (light) ---------------- */
.rd-how { background: var(--rd-soft); }
.rd-how .rd-steps { display:flex; gap:18px; align-items:stretch; justify-content:space-between; flex-wrap:wrap; margin-top:20px; }
.rd-step { background: #fff; border-radius: 12px; padding:20px; flex:1 1 220px; text-align:center; box-shadow: 0 8px 24px rgba(16,24,40,0.06); transition: transform .36s ease, box-shadow .36s ease; }
.rd-step:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(16,24,40,0.09); -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s; }
.rd-step:hover .rd-step-icon {  background: #fff;
  border-radius: 10px;
  border:1px solid #024542;
   -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s; }
.rd-step-icon { width:64px; height:64px; border-radius:50%; margin:0 auto 12px; display:flex; align-items:center; justify-content:center; font-weight:700; color: #024542; background: #ff6b00; box-shadow: 0 6px 20px rgba(255,107,0,0.18); font-size:20px; }
.rd-step h3 {   margin: 6px 0 8px;
    font-size: 15px;
    color: #0b1220;
    font-family: 'Montserrat', 'Open Sans';
    font-weight: 500;}
.rd-step p { color:#6b7378; font-size:14px; line-height:1.45; }

/* CTA row below steps */
.rd-works-cta { display:flex; gap:16px; justify-content:center; margin-top:28px; }
.rd-btn { display:inline-block; padding:5px 20px; border-radius:999px; text-decoration:none; font-weight:600; transition: transform .18s ease, box-shadow .18s ease; font-size:14px; }
.rd-btn-primary { background:var(--rd-accent); color:#fff; box-shadow: 0 10px 24px rgba(255,107,0,0.12);border-radius: 8px }
.rd-btn-primary:hover { background:#024542; color:#ffffff}
.rd-btn-outline { background: #024542;
    color: #fff;
    border: 1px solid rgba(11, 18, 32, 0.06); border-radius: 8px }
.rd-btn-outline:hover {  color:#ffffff; background:#ff6b00}










/* ---------------- CTA Dark (premium) ---------------- */
.rd-cta-dark { background: linear-gradient(120deg,#071326 0%, #081827 40%, #071726 100%); color:#fff; padding:20px 20px; }
.rd-cta-grid { display:grid; grid-template-columns: 1fr 420px; gap:28px; align-items:center; }
.rd-cta-left h2 { font-size: 32px; 
   
    font-size: 1.4em;
    font-weight: 500;
    margin: 0 0 5px !important;
    color: #ffffff;
    /* text-align: center; */
    font-family: 'Montserrat', sans-serif;
    animation: fadeInUp 1s ease-out; }
.rd-cta-left p { color: rgba(255,255,255,0.85); margin-bottom:16px; }
.rd-cta-actions { display:flex; gap:12px; align-items:center; }
.rd-btn-cta { display: inline-block;
    padding: 2px 30px;
    border-radius: 50px;
    font-weight: 400;
    color: #024542;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    transition: all 0.35s ease;
    font-family: 'Karla'; }
.rd-btn-ghost { background: transparent; border:1px solid #ff6b00; color:#fff;  padding: 2px 30px;  border-radius: 50px; }
.rd-btn-ghost:hover {  background: #ff6b00; color:#024542; border:1px solid rgba(255,255,255,0.12); }

/* CTA right image and line */
.rd-cta-img { width:100%; border-radius:12px; box-shadow: 0 8px 30px rgba(0,0,0,0.3); display:block; }
.rd-cta-line { position: absolute; right:calc(50% - 70px); bottom: 8px; width: 220px; opacity: 0.95; filter: drop-shadow(0 6px 14px rgba(255,138,0,0.14)); }

/* ---------- Animations / small utilities ---------- */
@media (max-width: 1024px) {
  .rd-steps { gap:14px; }
  .rd-test-list { gap:12px; }
      .rd-cta-grid {
        grid-template-columns: none;
        display: flex;
      }
  .rd-cta-line { display:none; }
}

@media (max-width: 720px) {
  .rd-steps { flex-direction:column; }
  .rd-test-list { flex-wrap:nowrap; overflow-x:auto; padding-bottom:8px; }
  .rd-test-card { min-width: 86%; flex: 0 0 86%; }
}

/* subtle fade-in on scroll utility */
.rd-animate { opacity:0; transform: translateY(10px); transition: all .6s cubic-bezier(.2,.9,.3,1); }
.rd-animate.rd-in { opacity:1; transform: translateY(0); }


@media (max-width: 767px) {

  .rd-subtitle {
    font-size: 1em;
  }
}
@media (max-width:480px)
{
    .rd-cta-grid
    {
  display: grid;
    
}
.rd-cta-left {
    text-align: center;
}
.rd-cta-left p 
{
    font-size: 14px;
}

}









        :root {
            --primary_text-very-dark-desaturated-blue: hsl(238, 29%, 16%);
            --primary_text-soft-red: hsl(14, 88%, 65%);
            --primary_bg-soft-violet: hsl(273, 75%, 66%);
            --primary_bg-soft-blue: hsl(240, 73%, 65%);
            --neutral_text-very-dark-grayish-blue: hsl(237, 12%, 33%);
            --neutral_text-dark-grayish-blue: hsl(240, 6%, 50%);
            --dividers_light-grayish-blue: hsl(240, 5%, 91%);
        }
      
        .faq {width: 100%;
    min-height: 600px;
    height: auto;
    background: white;
    border-radius: 10px;
  
    top: 50%;
    left: 50%;
    
    display: flex;
    flex-direction: row;
    align-items: center;
}

        .faq .faq-left-desktop {width: 50%;height: 440px;display: none;}
        .faq .faq-left-desktop > img {
          
          position: absolute;
    top: 87.6%;
    left: 3%;
        }
        .faq .faq-left-desktop .faq-left-image-desktop {width: 100%;height: 100%;position: relative;overflow: hidden;}
        .faq .faq-left-desktop .faq-left-image-desktop img:nth-of-type(1) {
           position: absolute;
    top: 40%;
    left: 10%;
    width: 80%;
    transform: translateY(-50%);
        }
        .faq .faq-left-desktop .faq-left-image-desktop::after {
            content: "";
            width: 100%;
            height: 100%;
            background: url(https://rvs-faq-accordion-card.netlify.app/images/bg-pattern-desktop.svg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            transform: scale(2);
            position: absolute;
            top: -53px;
            left: -280px;
            z-index: -1;
        }

        .faq .faq-left-mobile {width: 85%;height: 140px;}
        .faq .faq-left-mobile > img {
            position: absolute;
            top: 32%;
            left: -18%;
            width: 30%;
        }
        .faq .faq-left-mobile .faq-left-image-mobile {width: 100%;height: 100%;position: relative;}
        .faq .faq-left-mobile .faq-left-image-mobile img:nth-of-type(1) {
            position: absolute;
            top: -6%;
            left: 44%;
            width: 100%;
            transform: translate(-50%, -50%);
        }
        .faq .faq-left-mobile .faq-left-image-mobile::after {
            content: "";
            width: 100%;
            height: 100%;
            background: url(https://rvs-faq-accordion-card.netlify.app/images/bg-pattern-mobile.svg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            transform: scale(.9);
            position: absolute;
            top: -15px;
            left: 0px;
        }

        .faq .faq-right {width: 50%;
            height: 100%;
            padding: 50px 60px 50px 0px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .faq .faq-right .faq-title {position: relative;
    z-index: 2;
   
    font-size: 1.4em;
    font-weight: 500;
   
    color: #024542;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInUp 1s 
ease-out;margin-bottom: 25px;}
        .faq .faq-right .faq-body {position: relative;}
        .faq .faq-right .faq-body ::marker {content: "";}
        .faq .faq-right .faq-body details {border-bottom: 1px;border-bottom-style: solid;border-bottom-color: var(--dividers_light-grayish-blue);margin-bottom: 20px;cursor: pointer;}
        .faq .faq-right .faq-body details:not([open]) {padding-bottom: 15px; transition: all 0.4s ease !important;}
        .faq .faq-right .faq-body details:not([open]) summary:hover {color: var(--primary_text-soft-red); transition: all 0.4s ease !important;}
        .faq .faq-right .faq-body details summary {color: var(--neutral_text-very-dark-grayish-blue);font-weight: 600; transition: all 0.4s ease!important font-size: .9em;;
    display: block;
    position: relative;
    font-family: montserrat, 'Open Sans';}
        .faq .faq-right .faq-body details summary::after {content: "";position: absolute;right: 0;background: url(https://rvs-faq-accordion-card.netlify.app/images/icon-arrow-down.svg);width: 10px;height: 10px;background-repeat: no-repeat;background-size: contain;background-position: center;transform: rotate(0deg); transition: all 0.4s ease!important;}
        .faq .faq-right .faq-body details[open] summary::after {transform: rotate(180deg); transition: all 0.4s ease !important;}
        .faq .faq-right .faq-body details p {color: var(--neutral_text-dark-grayish-blue);line-height: 18px;padding-right: 25px;font-weight: 400;font-size: 12px;transition: all 0.4s 
ease !important;}

        
        @media (min-width: 375px) {
            .faq .faq-left-desktop {
                display: block;
            }
            .faq .faq-left-mobile {
                display: none;
            }
        }
        @media (max-width: 375px) {
            body {
                height: auto;
            }
            section {
                padding: 160px 0px 80px;
            }
            .faq {
                width: 90%;
                height: auto;
                margin: 0px auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                position: unset;
                top: unset;
                left: unset;
                transform: unset;
            }
            .faq .faq-right {
                width: 100%;
                padding: 25px;
                align-items: center;
            }
            .faq .faq-right .faq-title {
                margin-bottom: 35px;
            }
            .faq .faq-right .faq-body {
                width: 100%;
            }
        }
        @media(max-width:480px)
        {
            .faq .faq-right .faq-title
            {
font-size:1.4em;
margin-bottom: 0;
            }
        }
        
          @media (max-width: 900px) 
          {
              .faq .faq-right
              {
                  width:100%;
              }
              .faq .faq-right 
              {
                  padding:20px;
              }
                  .faq .faq-left-desktop {
        display: none;
    }
          }
        html, body {
  overflow-x: hidden !important;
}

/* ==============================
   RAAHI DRIVES - PACKAGE LAYOUT
   ============================== */
 .rd-package-wrapper {
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
  font-family:Karla, sans-serif;
}

.rd-package-hero {
  width:100%;
  height:360px;
  background-size:cover;
  background-position:center;
  border-radius:0 0 14px 14px;
}

.rd-package-top {
  margin-bottom:30px;
}

.rd-title {
  font-family:Montserrat, sans-serif;
  font-size:28px;
  margin-bottom:6px;
  color:#024542;
  font-weight:700;
}

.rd-subtitle {
  margin-top:10px;
  color:#444;
}

.rd-package-layout {
  display:flex;
  gap:40px;
}

.rd-left-days {
  width:28%;
}

.rd-days-list {
  border:1px solid #ddd;
  border-radius:6px;
  overflow:hidden;
}

.rd-day-tab {
  padding:12px 15px;
  border-bottom:1px solid #eee;
  cursor:pointer;
  transition:.2s;
}

.rd-day-tab.active {
  background:#ff6b00;
  color:#fff;
  font-weight:600;
}

.rd-right-info {
  width:72%;
}

.rd-info-tabs {
  display:flex;
  gap:22px;
  border-bottom:1px solid #ddd;
  margin-bottom:16px;
}

.rd-info-tab {
  padding-bottom:8px;
  cursor:pointer;
  border-bottom:2px solid transparent;
  transition:.2s;
}

.rd-info-tab.active {
  border-bottom-color:#ff6b00;
  color:#ff6b00;
  font-weight:600;
}

.rd-car-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:18px;
}

.rd-car-box {
  border:1px solid #ddd;
  background:#fff;
  border-radius:6px;
  padding:16px;
  transition:.2s;
}

.rd-car-box:hover {
  border-color:#ff6b00;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}
/* FIX MAIN LAYOUT ALIGNMENT */
.rd-package-layout {
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

/* Make sure hero is full width above container */
.rd-package-hero {
  width: 100%;
  height: 380px;
  background-size: cover !important;
  background-position: center center !important;
  border-radius: 0 0 18px 18px;
  margin-bottom: 35px;
}

/* Itinerary left panel */
.rd-left-days {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 14px;
  position: sticky;
  top: 90px;
}

/* Info Content Panel (Right Side) */
.rd-right-info {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #ddd;
}


/* -----------------------------------------
   GLOBAL BRAND STYLING
----------------------------------------- */


/* -----------------------------------------
   PACKAGE WRAPPER SPACING
----------------------------------------- */
.rd-package-wrapper {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
}

/* -----------------------------------------
   IMAGE GALLERY ROW
----------------------------------------- */
.rd-gallery {
    display: flow;
    /* grid-template-columns: 420px 1fr; */
    /* gap: 22px; */
    /* margin-bottom: 40px; */
}

.rd-gallery-thumbs {
    display: flex;
    /* grid-template-columns: repeat(6, 1fr); */
    /* gap: 10px; */
    margin-top: 12px
}

.rd-thumb-img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  transition: .25s;
}

.rd-thumb-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  border: 2px solid var(--rd-primary);
}

.rd-gallery-preview img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* -----------------------------------------
   TITLE + PRICE
----------------------------------------- */
.rd-package-top {
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.rd-title {
  font-size: 32px;
  color: var(--rd-dark);
  margin-bottom: 12px;
}

.rd-price-box {
  font-size: 20px;
  font-weight: 600;
  color: var(--rd-primary);
  margin-bottom: 10px;
}

.rd-subtitle p {
  font-size: 16px;
  color: #555;
}

/* -----------------------------------------
   3-COLUMN LAYOUT
----------------------------------------- */
.rd-main-layout {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: 40px;
}

/* LEFT COLUMN (DAY LIST) */
.rd-itinerary-col {
  border-right: 1px solid #ddd;
  padding-right: 18px;
}

.rd-days-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rd-day-tab {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s;
  font-size: 15px;
}

.rd-day-tab:hover {
  border-color: var(--rd-primary);
}

.rd-day-tab.active {
  background: var(--rd-dark);
  color: #fff;
}

/* CENTER COLUMN (TABS) */
.rd-info-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.rd-info-tab {
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.25s;
}

.rd-info-tab:hover {
  background: #f3f3f3;
}

.rd-info-tab.active {
  background: var(--rd-primary);
  color: #fff;
}

.rd-tab-block {
  font-size: 16px;
  line-height: 1.6;
}

/* CARS GRID */
.rd-car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
  gap: 14px;
}

.rd-car-box {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
}

/* RIGHT COLUMN (STICKY PRICE CARD) */
.rd-sticky-col {
  position: sticky;
  top: 120px;
}

.rd-sticky-box {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.rd-book-btn {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  background: var(--rd-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
}

.rd-book-btn:hover {
  background: #e35c00;
}

/* -----------------------------------------
   RESPONSIVE
----------------------------------------- */
@media(max-width: 991px){
  .rd-main-layout {
    grid-template-columns: 1fr;
  }
  .rd-sticky-col { position: static; }
}
