 /* :root {
            --primary: #3498db;
            --secondary: #2c3e50;
            --accent: #e74c3c;
            --light: #ecf0f1;
             box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        } */



/* Navbar brand container */
.navbar-brand {
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo image */
#nav-logo {
  height: 8vh;          
  max-height: 60px;     
  width: auto;          
  object-fit: contain;  
  object-position: center;
  display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #nav-logo {
    height: 6vh;
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  #nav-logo {
    height: 5vh;
    max-height: 35px;
  }
}






/* Hero Section */
 /* #home{
  margin-top: -2px;
}  */
#hero {
  position: relative;               
  height: 100vh;
  width: 100%;
  background-image: url(/images/hero-bg-taxi.avif);
  background-size: cover;            
  background-position: center;       
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;                  
  padding: 0 1rem;                   
  z-index: 1;
}

#hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);    
  z-index: -1;                       
}


/* Buttons */
#hero button {
  border: 1px solid white;
  color: #f8f9fa;
  transition: all 0.3s ease;
  font-weight: 500;
}
#hero button:hover {
  /* background-color: rgba(255, 193, 7, 0.8);  */
  background-color: #c0392b;
  color: white;
  border: 1px solid #2c3e50;
}

#hero-call{
  background-color: rgba(44, 62, 80, 1);
  color: #f8f9fa;
}

#hero-book{
  background-color: rgba(52, 152, 219, 0.7);
  color: #f8f9fa;
}

/* Responsive Typography */
#hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);  
}
#hero h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}
#hero p {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
}

/* Small screens (phones) */
@media (max-width: 768px) {
  #hero {
    text-align: center;              
    padding: 2rem 1rem;
  }

  #hero .row {
    flex-direction: column;         
  }

  #hero button {
    margin: 0.5rem 0;                
    width: 80%;                     
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  #hero {
    height: auto;                   
    padding: 4rem 1rem;             
  }
}

/* Add to your hero section CSS */
.hero-content {
    animation: fadeInUp 2s ease-out;
}

.hero-content h1 {
    animation: slideInFromRight 1.2s ease-out 0.3s both;
}

.hero-content p {
    animation: slideInFromLeft 1.2s ease-out 0.6s both;
}

.hero-content .cta-button {
    animation: fadeIn 1s ease-out 0.9s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    #hero-call,#hero-book{
      min-width: 50vw;
    }
    #hero-book i{
      display: none;
    }
    #hero-best{
      margin-top: 5%;
    }
}

@media (max-width: 768px) {
    #hero-call,#hero-book{
      max-width: 40vw;
    }
}



/* About Section */
.about {
  background-color: whitesmoke;
}

/* Image Column */
#img-div {
  position: relative;
  border-radius: 20px;
  border: 0.5px solid gray;
  border-top: none;
  min-height: 300px; /* smaller devices */
  background-image: url("/images/taxi-why-choose.avif");
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  overflow: hidden;
}




/* Text Column */
#text-div {
  padding: 0 1rem;
}

#text {
  text-align: start;
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.3;
}

/* Cards */
.para {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px;
  transition: 0.3s ease-in-out;
}

.para:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Small Icon */
.sm-img {
  flex-shrink: 0;             
  min-width: 55px;            
  min-height: 55px;
  width: 12vw;                
  height: 12vw;
  max-width: 70px;            
  max-height: 70px;
  
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(22px, 5vw, 28px);
  background-color: rgba(52, 152, 219, 0.1);
}


/* Responsive Tweaks */
@media (min-width: 576px) {
  #img-div {
    min-height: 300px;
  }
  #text {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
     .lead{
      display: none;
    }
}

@media (min-width: 768px) {
  #img-div {
    min-height: 400px;
  }
  #text {
    font-size: 2.3rem;
  }
}


@media (max-width:768px) {
      .about .row {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      #text-div{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
      }
        #img-div{
           min-width: 80vw;
        }
      .para{
         min-width: 70vw;
         margin-top: 8%;
      }
}

@media (min-width: 992px) {
  #img-div {
    min-height: 500px;
  }
  #text {
    font-size: 2.6rem;
  }
}

@media (min-width: 1200px) {
  #img-div {
    min-height: 600px;
  }
  #text {
    font-size: 3rem;
  }
}


/* content */
.content, h2{
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}



        
 /* <!-- Outstation Taxi Service Section --> */
         .gradient-bg-outstation {
            background: linear-gradient(135deg, #2c3e50, #3498db);
        }

        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
        }
        
        .destination-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .destination-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .card-img-top {
          height: 200px;
          object-fit: cover;
        }
        
        .destination-icon {
            font-size: 24px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -25px auto 15px;
            position: relative;
            z-index: 1;
        }
        
        .btn-outstation {
            background-color: var(--primary);
            color: white;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s;
            margin-bottom: 2rem;
        }
        
        .btn-outstation:hover {
            background-color: var(--secondary);
            color: white;
        }

        .card-text{
          padding: 1rem 2rem ;
        }

        #btn-book{
          background-color: #3498db;
          transition: 0.2s ease-in;
        }

        #btn-book:hover{
          background-color: #2c3e50;
          transform: translateY(-4px);
        }




/*Faq Section*/
 #faq {
  background-color: white;
}

#faq-grid {
  border: none;
  width: 90%;
  height: auto;
}

@media (max-width: 576px) {
  .faq-grid-item {
  border: none;
  padding: 15px;
  margin: 10px auto;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: whitesmoke;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.2s ease-in;
}
}

.faq-grid-item {
  /* border: none;
  padding: 15px;
  margin: 10px auto;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: whitesmoke;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); */
  transition: 0.2s ease-in;
}
.faq-grid-item:hover{
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
#grid-image{
  height: 3.2rem;
  width: 3rem;
  font-size: 13px;
  border-radius: 20px;
  background-color: rgba(52, 152, 219, 0.1);
  text-align: center;
  transform: translateY(-20px);
}

.g-content h4 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}

.g-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.sm-image{
  font-size: 20px;
  text-align: center;
  color: #c0392b;
}

/* Optional: Adjust font and spacing for small screens */
@media (max-width: 576px) {
  .faq-grid-item {
    flex-direction: column !important;
    text-align: center;
  }
  .g-content {
    text-align: center;
  }
}
@media (max-width: 576px) {
  #grid-image {
    display: none !important;
  }
  .sm-image {
    display: none;
  }
  .g-content {
    margin-top: -10px;
    text-align: center;
  }
}



      /* Dehradun Taxi Service Section */
        .gradient-bg-delhi {
            background: linear-gradient(135deg, #2c3e50, #3498db);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
        }
        
        .taxi-card {
            border-bottom: 0.1px solid gray;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            background: white;
        }
        
        .taxi-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .btn-taxi {
            background-color: var(--primary);
            color: white;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s;
            width: 100%;
            margin-top: 15px;
        }
        
        .btn-taxi:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        .call-now {
            background-color: #3498db;
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
            margin-top: 20px;
            transition: all 0.3s;
        }
        
        .call-now:hover {
            background-color: #c0392b;
            color: white;
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 20px;
        }
        
        .highlight-text {
            color: #2c3e50;
            font-weight: 600;
        }

        #cards-text{
          text-align: left;
          padding-left: 0px;
        }
        
        #cards-img{
          height: 200px;
          object-fit: cover;
        }

        #card-title-text{
          border-left: 5px solid #3498db;
          padding-left: 5px;
          border-radius: 5px;
        }
        





/* 
        Local City Taxi Routes Section */
        .gradient-bg-local {
            background: linear-gradient(135deg, #2c3e50, #3498db);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
        }
        
        .route-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            background: white;
            padding: 20px;
            display: flex;
            align-items: center;
        }
        
        .route-card:hover {
            /* transform: translateY(-5px); */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            background-color: #f8f9fa;
        }
        
        .route-icon {
            font-size: 24px;
            color: var(--primary);
            margin-right: 15px;
            flex-shrink: 1;
            width: 40px;
            text-align: center;
        }
        
        .route-content {
            flex-grow: 1;
        }
        
        .route-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .route-action {
            color: var(--accent);
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-block;
            margin-top: 5px;
        }
        
        .route-action:hover {
            text-decoration: underline;
        }
        
        .btn-call {
            background-color: #3498db;
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
            margin-top: 30px;
            transition: all 0.3s;
        }
        
        .btn-call:hover {
            background-color: #c0392b;
            color: white;
            transform: scale(1.05);
        }
        
        .btn-view-more {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            margin: 30px auto;
            display: block;
            transition: all 0.3s;
        }
        
        .btn-view-more:hover {
            background-color: var(--secondary);
            transform: scale(1.05);
        }
        
        .mobile-hidden {
            display: block;
        }
        
       




    /* Floating action buttons */
    .floating-buttons {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .floating-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .floating-btn::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        top: 0;
        left: 0;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        border-radius: 50%;
    }
    
    .floating-btn:hover::after {
        transform: translateY(0);
    }
    
    .floating-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
    }
    
    .call-btn {
        background-color: var(--accent);
    }
    
    .whatsapp-btn {
        background-color: #25D366;
    }
    
    .btn-text {
        position: absolute;
        right: 70px;
        background: white;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        white-space: nowrap;
    }
    
    .floating-btn:hover .btn-text {
        opacity: 1;
        right: 75px;
    }
    
    /* For mobile devices */
    @media (max-width: 768px) {
        .floating-buttons {
            bottom: 20px;
            right: 20px;
        }
        
        .floating-btn {
            width: 55px;
            height: 55px;
            font-size: 22px;
        }
        
        .btn-text {
            font-size: 12px;
            padding: 6px 12px;
        }
        
        .floating-btn:hover .btn-text {
            right: 65px;
        }
    }
    
    /* Pulse animation */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
        }
        70% {
            box-shadow: 0 0 0 12px rgba(231, 76, 60, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
        }
    }
    
    .call-btn {
        animation: pulse 2s infinite;
    }





   