
:root {
            --primary-yellow: #FFD700;
            --accent-black: #1a1a1a;
            --pure-white: #ffffff;
            --soft-gray: #f8f9fa;
            --success-green: #28a745;
            --text-dark: #333333;
        }

          body {
            font-family: "Inter", "Poppins", sans-serif;
            font-weight: 400;
            color: #1a1a1a;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: "Playfair Display", serif;
            font-weight: 700;
        }
        p {
            font-family: "Open Sans", sans-serif;
            font-weight: 400;
            line-height: 1.7;
        }

    button{
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;

    }

    

        .navbar-custom {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.85) 0%, rgba(33, 150, 83, 0.85) 100%);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            color: var(--primary-yellow) !important;
            font-weight: 700;
            display: flex;
            align-items: center;
            padding: 5px 0;
        }

        .navbar-brand img {
            max-height: 50px;
            width: auto;
            transition: all 0.3s ease;
        }

        /* Logo size adjustments for different screens */
        @media (min-width: 1400px) {
            .navbar-brand img {
                max-height: 70px;
            }
        }
        
        @media (max-width: 1199.98px) {
            .navbar-brand img {
                max-height: 45px;
            }
        }
        
        @media (max-width: 991.98px) {
            .navbar-brand img {
                max-height: 40px;
            }
        }
        
        @media (max-width: 575.98px) {
            .navbar-brand img {
                max-height: 55px;
            }
        }

        .nav-link {
            color: var(--pure-white) !important;
            font-weight: 500;
            padding: 10px 15px !important;
            margin: 0 2px !important;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95rem;
        }

        .nav-link:hover, .nav-link:focus {
            background-color: rgba(255, 215, 0, 0.15);
            color: var(--primary-yellow) !important;
            transform: translateY(-2px);
        }

        .nav-link i {
            margin-right: 6px;
            width: 18px;
            text-align: center;
        }

        /* Active link styling */
        .nav-link.active {
            background-color: rgba(255, 215, 0, 0.2);
            color: var(--primary-yellow) !important;
        }

        /* Dropdown styles */
        .dropdown-menu {
            background-color: var(--pure-white);
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 8px 0;
            margin-top: 8px;
            border-left: 3px solid var(--primary-yellow);
        }

        .dropdown-item {
            padding: 10px 16px;
            color: var(--text-dark);
            transition: all 0.2s ease;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .dropdown-item:hover, .dropdown-item:focus {
            background-color: var(--primary-yellow);
            color: var(--accent-black);
            padding-left: 20px;
        }

        .dropdown-item i {
            width: 18px;
            margin-right: 8px;
            color: var(--success-green);
        }

        /* Desktop hover dropdown */
        @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu {
                display: block;
                animation: fadeIn 0.3s ease;
            }
            
            @keyframes fadeIn {
                from { opacity: 0; transform: translateY(10px); }
                to { opacity: 1; transform: translateY(0); }
            }
        }

        /* Mobile specific styles */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: linear-gradient(135deg, rgba(40, 167, 69, 0.95) 0%, rgba(33, 150, 83, 0.95) 100%);
                padding: 15px;
                border-radius: 0 0 10px 10px;
                margin-top: 10px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .navbar-nav {
                padding: 10px 0;
            }
            
            .nav-link {
                padding: 12px 16px !important;
                margin: 2px 0;
                border-radius: 6px;
            }
            
            .dropdown-menu {
                margin-top: 5px;
                margin-bottom: 5px;
                box-shadow: none;
                border-radius: 6px;
                background-color: rgba(255, 255, 255, 0.1);
                border: none;
            }
            
            .dropdown-item {
                color: var(--pure-white);
                padding: 10px 20px 10px 40px;
                border-radius: 4px;
                margin: 2px 5px;
            }
            
            .dropdown-item:hover, .dropdown-item:focus {
                background-color: rgba(255, 215, 0, 0.25);
                color: var(--primary-yellow);
            }
            
            .dropdown-item i {
                color: var(--primary-yellow);
            }
        }

        .navbar-toggler {
            border: 1px solid var(--primary-yellow);
            padding: 6px 10px;
            transition: all 0.3s ease;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.5);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 215, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 1.2em;
            height: 1.2em;
        }

        /* Content for demonstration */
        .content-section {
            background-color: var(--pure-white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            margin-top: 30px;
        }

        .instructions {
            background-color: var(--soft-gray);
            border-left: 4px solid var(--success-green);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-top: 25px;
        }

        .highlight {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 500;
        }
        
        /* Fix for navbar height consistency */
        .navbar {
            min-height: 70px;
        }
        
        /* Ensure proper spacing on all screens */
        @media (max-width: 575.98px) {
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .navbar-brand {
                margin-left: 0;
            }
        }

    .navbar{
        padding: 0px !important;
    }
    
      
.card-gradient-2 {
    border: 3px solid transparent;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #ff9f43, #341f97) border-box;
    border-radius: 15px;
    padding: 20px;
}



 /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 10px;
            background: #25D366;
            color: var(--pure-white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            color: var(--pure-white);
        }







  /* Base for both floating buttons */
  .floating-btn {
    position: fixed;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-family: inherit;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    opacity: 0.98;
    -webkit-tap-highlight-color: transparent;
  }

  .floating-btn:active { transform: scale(.96); }

  

  /* Back-to-top button (left-bottom) */
  .floating-top {
    left: 10px;
    bottom: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFB300 100%);
    border: 3px solid rgba(255,255,255,0.12);
    display: none; /* shown by JS when scrolling */
  }

  /* Icon sizes */
  .floating-btn i {
    font-size: 1.15rem;
    pointer-events: none;
  }

  /* Extra label for call button on wider screens */
  .floating-call .btn-text {
    display: none; /* hidden by default - revealed on large screens */
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 6px;
  }

  /* Show text on hover and on larger screens */
  @media (min-width: 900px) {
    .floating-call {
      width: auto;
      padding: 0 16px;
      border-radius: 40px;
    }
    .floating-call .btn-text { display: inline-block; }
  }

  /* Accessible focus style */
  .floating-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(40,167,69,0.18); /* greenish ring for call */
  }

  /* Subtle breathing/pulse for call button */
  @keyframes pulse {
    0% { box-shadow: 0 6px 20px rgba(40,167,69,0.22); transform: translateY(0); }
    50% { box-shadow: 0 12px 30px rgba(40,167,69,0.28); transform: translateY(-3px); }
    100% { box-shadow: 0 6px 20px rgba(40,167,69,0.22); transform: translateY(0); }
  }
  .floating-call { animation: pulse 3.2s ease-in-out infinite; }

  /* Small-screen touch improvements */
  @media (max-width: 480px) {
    .floating-btn { width: 68px; height: 68px; }
    .floating-call { right: 14px; bottom: 14px; }
    .floating-top { left: 14px; bottom: 14px; }
  }




  .floating-call {
    position: fixed;
    right: 10px;
    bottom: 100px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

 /* Fare Calculator */
        .calculator-section {
            background: var(--pure-white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }
        
        .calculator-title {
            color: var(--accent-black);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
        }
        
        .btn-primary {
            background: var(--primary-yellow);
            border: none;
            color: var(--accent-black);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #e6c200;
            transform: translateY(-1px);
        }
        
        .fare-result {
            background: var(--soft-gray);
            border-radius: 15px;
            padding: 30px;
            margin-top: 2rem;
            text-align: center;
            display: none;
        }
        
        .fare-result.show {
            display: block;
            animation: fadeInUp 0.5s ease;
        }
        
        .fare-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        
        .fare-breakdown {
            text-align: left;
            margin-top: 1.5rem;
        }
        
        .fare-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #dee2e6;
        }
        
        .fare-item:last-child {
            border-bottom: none;
            font-weight: 600;
            color: var(--accent-black);
        }
.packages-section .package-card{
    max-height: 70vh !important;
}
.pricing-card{
    padding: 10px 0px !important;
}
.package-card{
    height: 83vh;
}

@media (max-width: 576px) {
    .floating-top{
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    #booking{
        margin-bottom: 0px;
    }
    .hero-subtitle{
        display: none;
    }
    .hero-content{
        margin-top: 10px;
    }
    .cta-section .btn{
        margin-top: 20px;
    }
    .cta-section{
        padding: 30px 0px;
    }
    .cta-section .cta-button{
        margin-top: 20px;
    }
    .vehicle-card, .card-gradient{
        height: 65vh;
    }
    .vehicle-card-body{
        padding-bottom: 0px;
    }
    .vehicle-img{
        height: 40vh;
    }
    .tempo-card{
        height: 75vh;
    }
    .tempo-card-body{
        padding-bottom: 0px !important;
    }
    .features-section{
        padding-top: 20px !important;
        padding-bottom: 0px !important;
    }
    .luxury-features{
        padding-bottom: 0px !important;
    }
    .destinations-section{
        padding-top: 10px !important;
        padding-bottom: 12px !important;
    }
    .destination-card{
        margin: 20px 0px 10px !important;
    }
    .bus-card{
        height: 75vh;
    }
    .use-cases-section{
        padding: 10px 0px !important;
    }
    .feature-item{
        margin-bottom: 10px;
        padding: 10px;
    }
    .feature-item .feature-icon{
        display: none;
    }
    #why{
        display: block;
    }
    #booking{
        margin-top: 10px;
        padding: 12px 20px;
    }
    #quickBookingForm .col-md-6{
        margin-top: 0px;
    }
    .service-card{
        padding-bottom: 5px;
    }
    .tempo-img{
        height: 280px;
    }
    .package-card{
        height: auto;
    }
}


.footer-bottom{
   display: flex;
   justify-content: center;
   align-items: center;
}

@media (max-width: 576px) {
    .footer-bottom{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}









@media (max-width: 1300px) {
        .navbar{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
            .navbar .container{
                margin: 10px 10px !important;
                padding: 0px !important;
            }
            .nav-link{
                margin: 10px 10px 15px 10px !important;
                padding: 10px 0px !important;
            }
        }

  