:root {
    --primary-red: #ed1d24;
    --primary-blue: #192964;
    --accent-yellow: #ffc107;
    --accent-orange: #fd7e14;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --vibrant-purple: #6f42c1;
    --vibrant-teal: #20c997;
    --web-white: #ffffff;
    --footer-bg: #1a1a1a;
    --copyright-bg: #000000;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-red);
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s;
}

.top-bar a:hover {
    color: var(--accent-yellow);
}

.top-bar .email-container {
    display: flex;
    align-items: center;
}

.top-bar .social-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Navigation - USING BOOTSTRAP DEFAULT */
.navbar {
    background-color: var(--primary-blue) !important;
    padding: 0;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --bs-navbar-brand-padding-y: 0 !important;
}

.navbar-brand img {
    height: 72px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    padding: 15px 10px !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-yellow) !important;
}

.dropdown-menu {
    background-color: var(--primary-blue);
    border: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: white;
    padding: 10px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: var(--primary-red);
    color: white;
}

.btn-book-now {
    background-color: var(--primary-red);
    color: white;
    border-radius: 4px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-book-now:hover {
    background-color: #c2251e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-track {
    background-color: var(--primary-blue);
    color: white;
    border-radius: 4px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-track:hover {
    background-color: #0f245e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-info {
    color: white;
    font-size: 0.9rem;
}

.contact-info .phone {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-yellow);
}

.bg-vkhub-primary {
    background-color: var(--primary-blue) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    /* height: 85vh; */
    overflow: hidden;
    margin-bottom: 0;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    /* height: 100%; */
}

.hero-section .carousel-item img {
    width: 100%;
    min-height: 535px;
     
    /* height: 100%; */
    /* object-fit: cover;
    object-position: center center;  */
}
.text-primary{
    
    color: var(--primary-blue) !important;
}
.text-primary-pills{
    
    color: var(--light-gray) !important;
}


/* Snowfall */
#snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    color: white;
    opacity: 0.8;
    font-size: 1rem;
    z-index: 9999;
    pointer-events: none;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    /* width: 60px;
    height: 60px; */
     width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ed1d24, #ed1d24, #ed1d24);
    border-radius: 50%;
    top: 45%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: linear-gradient(135deg, #f24c51, #f24c51, #f24c51);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}
/* Hide carousel indicators */
.carousel-indicators {
    display: none !important;
}
/* Quick Booking Section - FIXED */
.quick-booking-section {
    position: relative;
    margin-top: -120px;
    z-index: 10;
    padding-bottom: 0;
}

.quick-booking-container {
    /* background: rgba(237, 29, 36, 0.95); 
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    max-width: 95%;*/
}

.quick-booking-container h3 {
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
}

/* Route Carousel - FIXED: 2 on desktop, 1 on mobile */
.route-carousel .carousel-inner {
    padding: 0 40px;
}

.route-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.route-card:hover {
    background: white;
    transform: translateY(2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.route-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.route-icon .arrow-small {
    font-size: 10px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.route-title {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1rem;
}

.route-desc {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.btn-route {
    background-color: var(--primary-blue);
    color: white;
    border-radius: 4px;
    padding: 5px 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.btn-route:hover {
    background-color: #0f245e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev.route-control,
.carousel-control-next.route-control {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 45%;
    transform: translateY(-50%);
    opacity: 0.8;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-prev.route-control:hover,
.carousel-control-next.route-control:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
}

.carousel-control-prev.route-control {
    left: -15px;
}

.carousel-control-next.route-control {
    right: -15px;
}

/* Sections */
.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary-blue);
    font-weight: 700;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--primary-red);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: white;
}

.founder-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.founder-img-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary-blue);
    flex-shrink: 0; /* Prevent shrinking */
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .founder-img-container {
        width: 120px;
        height: 120px;
        margin-right: 0;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .founder-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.founder-details h5 {
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.founder-details p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.service-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    margin-bottom: 30px;
    height: 100%;
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Reviews Section */
.reviews-section {
    background: white;
}

.customer-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.review-card {
    padding: 40px;
    height: 100%;
    margin-left: 30px;
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

.review-text:before {
    content: "";
    font-size: 4rem;
    color: var(--primary-red);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.review-author {
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.review-position {
    color: var(--primary-red);
    font-size: 0.95rem;
}

.quote-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-control,
.form-select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Shop in India */
.shop-india-section {
    padding: 60px 0;
    background: white;
}

.shop-india-section .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.shop-india-section .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 10px;
}

.two-col-list li {
    margin-bottom: 8px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    margin-bottom: 30px;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

/* Map Section */
.map-section {
    position: relative;
    height: 500px;
}

.map-contact {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 550px;
    background: transparent !important;
    z-index: 10;
}

.map-contact .contact-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    transition: 0.2s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.map-contact .contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.map-contact .title-card {
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    background: var(--primary-blue);
    color: white;
    padding: 80px 0;
}

/* Branches Section */
.branches-section {
    padding: 80px 0;
    background: white;
}

.branch-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    padding: 25px;
    background: white;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: white;
    padding: 80px 0 0;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: var(--primary-red);
}

.footer-post-title {
    color: #adb5bd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-post-title:hover {
    color: white;
    padding-left: 5px;
}

.footer-post {
    display: flex;
    margin-bottom: 20px;
}

.footer-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.footer-post-date {
    font-size: 0.85rem;
    color: #adb5bd;
}

.copyright {
    background: var(--copyright-bg);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    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.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Google Reviews - Desktop */
/* Google Reviews - Desktop */
.floating-reviews {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 15px;
    max-width: 550px; /* ADD THIS LINE */
    z-index: 1000;
    cursor: pointer;
}
/* For mobile, remove the max-width constraint */
@media (max-width: 768px) {
    .floating-reviews {
        max-width: 100%; /* Full width on mobile */
        display: none; /* Hide full box, show icon instead */
    }
}

.floating-reviews .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.floating-reviews .google-logo {
    color: #4285F4;
    font-size: 1.5rem;
    margin-right: 10px;
}

.floating-reviews .review-stars {
    color: #FFC107;
}

/* Google Reviews Icon - Mobile */
.floating-reviews-icon {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4285F4;
}

/* LEFT SLIDING PANEL */
/* .reviews-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    overflow-y: auto;
    z-index: 2000;
    transition: all 0.35s ease-in-out;
}

.reviews-panel.open {
    left: 0;
} */
 /* LEFT SLIDING PANEL */
.reviews-panel {
    position: fixed;
    top: 0;
    left: -550px; /* Desktop width */
    width: 550px; /* Desktop width */
    height: 100%;
    background: #fff;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    overflow-y: auto;
    z-index: 2000;
    transition: all 0.35s ease-in-out;
}

/* On mobile, make it full width */
@media (max-width: 768px) {
    .reviews-panel {
        width: 100%;
        left: -100%;
    }
}

.reviews-panel.open {
    left: 0;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
 .panel-header button {
            border: none;
            background: transparent;
            font-size: 1.4rem;
            cursor: pointer;
        }

.panel-header h4 {
    margin: 0;
    font-size: 1.5rem;
}

.google-review-card {
    background: #f8f8f8;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.google-review-user {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.google-review-user i {
    color: #4285F4;
    margin-right: 8px;
}

.google-review-stars {
    color: #FFC107;
    margin-bottom: 5px;
}

.load-more {
    width: 100%;
    padding: 10px 0;
    background: #4285F4;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 29, 36, 0.4);
}

.back-to-top:hover {
    background-color: #c2251e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(237, 29, 36, 0.6);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Adjust position on mobile */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Snowflake Animation */
@keyframes snowflakeFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ==================== MOBILE RESPONSIVE STYLES ==================== */
@media (max-width: 1200px) {
    .map-contact {
        width: 450px;
        top: 30px;
        right: 30px;
    }
}

/* Tablet Styles */
@media (max-width: 992px) {
    /* Top Bar */
    .top-bar .row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .top-bar .email-container span {
        font-size: 0.75rem;
    }
    
    /* Navigation */
    .navbar-brand img {
        height: 60px;
    }
    
    /* Hero Section */
    .hero-section {
        /* height: 60vh; */
    }
    
    /* Quick Booking - Now shows 1 item */
    .quick-booking-section {
        margin-top: -60px;
    }
    
    .route-carousel .carousel-inner {
        padding: 0 30px;
    }
    
    /* Force single column on mobile/tablet */
    .route-carousel .carousel-item .row {
        flex-wrap: nowrap;
        overflow: hidden;

    }
    
    .route-carousel .carousel-item .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hero-section .carousel-item img {
    width: 100%;
    min-height: auto;
     
    /* height: 100%; */
    /* object-fit: cover;
    object-position: center center;  */
}
    
    /* Map Section */
    .map-contact {
        position: static;
        width: 100%;
        padding: 20px 15px;
        margin-top: 30px;
    }
    
    .review-card {
        padding: 30px;
        margin-left: 0;
    }
    
    /* Shop India */
    .two-col-list {
        grid-template-columns: 1fr;
    }
    
    .shop-india-section .row {
        flex-direction: column;
    }
    
    .shop-india-section .col-lg-6:first-child {
        order: 2;
    }
    
    .shop-india-section .col-lg-6:last-child {
        order: 1;
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        padding: 6px 0;
    }
    
    .top-bar .email-container span {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .top-bar .social-container a {
        margin-left: 8px;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero-section {
        /* height: 50vh; */
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    .folder-title {
        display: table !important;
        margin: 0 auto;
        text-align: center;
    }
    /* Quick Booking */
    .quick-booking-section {
        margin-top: 0;
        padding-top: 30px;
        background: var(--primary-blue);
    }
    
    .quick-booking-container {
        background: transparent;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
        padding: 0 15px;
    }
    
    .quick-booking-container h3 {
        font-size: 1.3rem;
    }
    
    .route-carousel .carousel-inner {
        padding: 0 25px;
    }
    
    .route-card {
        height: 170px;
        padding: 12px;
        margin: 0 auto;
        max-width: 350px;
    }
    
    .carousel-control-prev.route-control,
    .carousel-control-next.route-control {
        width: 30px;
        height: 30px;
    }
    
    .carousel-control-prev.route-control {
        left: -10px;
    }
    
    .carousel-control-next.route-control {
        right: -10px;
    }
    
    /* Google Reviews - Icon only on mobile */
    .floating-reviews {
        display: none;
    }
    
    .floating-reviews-icon {
        display: flex;
    }
    
    /* Sections */
    .about-section,
    .services-section,
    .blog-section,
    .cta-section,
    .branches-section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .founder-info {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    /* CTA Section */
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0 !important;
    }
    
    /* Map Section */
    .map-section {
        height: auto;
    }
    
    .map-section #map {
        height: 300px;
    }
    
    /* Footer */
    .footer-logo {
        height: 50px;
    }
    
    /* Floating Elements */
    .floating-whatsapp {
        bottom: 20px;
        right: 15px;
    }
    
    .floating-reviews-icon {
        bottom: 20px;
        left: 15px;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    /* Top Bar */
    .top-bar .email-container span {
        font-size: 0.65rem;
        max-width: 150px;
    }
    
    /* Navigation */
    .navbar-brand img {
        height: 50px;
    }
    
    /* Hero Section */
    .hero-section {
        /* height: 40vh; */
    }
    
    /* Quick Booking */
    .route-card {
        max-width: 300px;
    }
    
    /* Footer */
    .footer-post {
        display: none;
    }
}

/* Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    /* Top Bar */
    .top-bar .email-container span {
        font-size: 0.6rem;
        max-width: 130px;
    }
    
    /* Navigation */
    .navbar-brand img {
        height: 45px;
    }
    
    /* Hero Section */
    .hero-section {
        /* height: 35vh; */
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    /* Quick Booking */
    .quick-booking-container h3 {
        font-size: 1.2rem;
    }
    
    .route-card {
        max-width: 280px;
    }
    
    /* Footer */
    .footer-logo {
        height: 40px;
    }
    
    /* Floating */
    .floating-whatsapp,
    .floating-reviews-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
.text-vkhub{
    color: var(--primary-blue) !important;
}

.refer-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}
/* Floating Button */
.refer-btn{
  --g1: #ff7a18; --g2: #af002d;
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  z-index:9999;
  padding:12px 26px;
  border-radius:50px;
  background:linear-gradient(90deg,var(--g1),var(--g2));
  color:#fff;
  font-weight:700;
  text-decoration:none;
  font-size:16px;
  letter-spacing:.3px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 20px rgba(0,0,0,.25);
  transition:.2s ease;
}

/* Hover Effect */
.refer-btn:hover{
  transform:translateX(-50%) translateY(-4px);
  box-shadow:0 10px 28px rgba(0,0,0,.3);
}

/* Sparkle Animation */
.refer-btn .spark{
  position:absolute;
  left:-50%;
  top:0;
  width:50%;
  height:100%;
  background:rgba(255,255,255,.15);
  transform:skewX(-18deg);
  animation:sweep 3s linear infinite;
  pointer-events:none;
}

@keyframes sweep{
  0%{ left:-60%; }
  50%{ left:120%; }
  100%{ left:-60%; }
}

/* Quick Booking Nav Link */
.nav-quickbook{
  --g1: #ff7a18; 
  --g2: #af002d;
  padding:10px 22px;
  border-radius:50px;
  background:linear-gradient(90deg,var(--g1),var(--g2));
  color:#fff !important;
  font-weight:700;
  text-decoration:none;
  font-size:15px;
  letter-spacing:.3px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,.25);
  transition:.2s ease;
  position:relative;
  overflow:hidden; /* needed for sparkle */
  margin-top: 5px;
}

/* Hover Effect */
.nav-quickbook:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(0,0,0,.3);
  color:#fff;
}

/* Sparkle Animation */
.nav-quickbook .spark{
  position:absolute;
  left:-50%;
  top:0;
  width:50%;
  height:100%;
  background:rgba(255,255,255,.15);
  transform:skewX(-18deg);
  animation:sweep 3s linear infinite;
  pointer-events:none;
}




.page-intro {
    background: linear-gradient(135deg, #192964 0%, #1a2f8c 100%);
    overflow: hidden;
}

/* .btn:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
} */

 .progress-steps {
            display: flex;
            align-items: center;
            width: 100%;
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            flex: 1;
        }

        .icon-circle {
            width: 40px;
            height: 40px;
            background-color: #ddd;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .progress-step.completed .icon-circle {
            background-color: #192964;
        }

        .progress-steps .svg-inline--fa {
            width: 20px;
            height: 20px;
            color: #fff;
        }

        .progress-steps .progress-label {
            margin-top: 5px;
            font-weight: bold;
            text-align: center;
            font-size: 1rem;
        }

        .line {
            position: absolute;
            top: 25%;
            left: 0%;
            transform: translateX(-50%);
            height: 4px;
            background-color: #ddd;
            width: calc(100% - 50px);
        }

        .progress-step.completed .line {
            background-color: #192964;
        }

        .progress-step:first-child .line {
            display: none;
        }

        @media (max-width: 768px) {
            .progress-steps {
                flex-direction: column;
            }

            .progress-step {
                margin-bottom: 15px;
            }

            .icon-circle {
                width: 45px;
                height: 45px;
            }

            .progress-steps .svg-inline--fa {
                width: 22px;
                height: 22px;
            }

            .progress-steps .progress-label {
                font-size: 14px;
                margin-top: 3px;
            }

            .line {
                display: none;
            }
        }

        .shipmentdetails ul {
            display: flex;
            /* Use flex layout */
            flex-wrap: wrap;
            /* Allow wrapping to the next line */
            list-style-type: none;
            /* Remove default list styling */
            padding: 0;
            /* Remove default padding */
        }

        .shipmentdetails ul {
            display: flex;
            /* Use flex layout */
            flex-wrap: wrap;
            /* Allow wrapping to the next line */
            list-style-type: none;
            /* Remove default list styling */
            padding: 0;
            /* Remove default padding */
        }

        .shipmentdetails li {
            flex: 1 0 calc(33.33% - 10px);
            /* Each item takes one third of the row */
            /*margin: 5px; /* Space between items */
            border: 1px solid #ccc;
            /* Optional: border for visual separation */
            padding: 10px;
            /* Optional: padding for better spacing */
            /*box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
            box-sizing: border-box;
            /* Include padding and border in the width */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .shipmentdetails li {
                flex: 1 0 calc(50% - 10px);
                /* Two items per row on medium screens */
            }
        }

        @media (max-width: 480px) {
            .shipmentdetails li {
                flex: 1 0 100%;
                /* One item per row on small screens */
            }
        }


      #trackingResults {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 3rem 0;
    margin-top: 2rem;
}

#trackingResults .container {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.05),
        0 2px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

/* Optional: Add a subtle pattern overlay */
#trackingResults .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #192964, #29aae1, #192964);
    z-index: 1;
}

/* Elevated card inside */
#trackingResults .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(25, 41, 100, 0.08);
    transition: transform 0.3s ease;
}

#trackingResults .card:hover {
    transform: translateY(-3px);
}

#trackingResults .card-header {
    background-color: #192964;
    border-bottom: none;
    padding: 1.5rem;
    position: relative;
}

#trackingResults .card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #29aae1, rgba(255, 255, 255, 0.3));
}

#trackingResults .card-body {
    padding: 2rem;
}

/* Status badges with elevation */
#trackingResults .badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Progress steps with shadow */
#trackingResults .icon-circle {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Shipment info cards with depth */
#trackingResults .shipmentdetails .card {
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

#trackingResults .shipmentdetails .card:hover {
    box-shadow: 0 6px 16px rgba(25, 41, 100, 0.12);
    border-color: #192964;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #trackingResults {
        padding: 1.5rem 0;
    }
    
    #trackingResults .container {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 12px;
    }
}
.bg-primary {
            background-color: #192964 !important;
        }

        .btn-primary {
            background-color: #192964 !important;
            border-color: #192964 !important;
        }

        .btn-primary:hover {
            background-color: #142155 !important;
            border-color: #142155 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(25, 41, 100, 0.2) !important;
        }

        /* Folder tab */
.folder-title {
    display: inline-block;
    background: rgb(25 41 100); /* Bootstrap primary */
    padding: 10px 25px;
    border-radius: 10px 10px 0 0;
    position: relative;
    top: 1px;
}

.folder-title h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* Folder body */
.folder-body {
    border: 1px solid #dee2e6;
    border-radius: 0 10px 10px 10px;
    padding: 20px;
    background: #ffffff;
}

.route-carousel{
  background: rgb(25 41 100); /* Bootstrap primary */





    padding:40px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
}


/* =========================================================
   COMPACT PROFESSIONAL QUOTE FORM
========================================================= */

.quote-section {
    padding: 60px 0;
}

.quote-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    /* padding: 30px; */
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Reduce section title dominance */
.quote-section .section-title h2 {
    /* font-size: 1.6rem; */
    margin-bottom: 5px;
}

.quote-section .section-title p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Compact form blocks */
.form-block {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Smaller block titles */
.block-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #192964;
}

/* Compact labels */
.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #555;
    text-transform: uppercase;
}

/* Inputs tighter */
.form-control,
.form-select {
    padding: 8px 10px;
    font-size: 0.9rem;
}

/* Reduce textarea height */
textarea.form-control {
    min-height: 70px;
}

/* Reduce vertical gaps between rows */
.row.g-3 {
    --bs-gutter-y: 0.75rem;
}

/* Input group button compact */
.input-group .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Submit section */
.form-note {
    font-size: 0.85rem;
    margin-top: 10px;
    color: #666;
}

/* =========================================================
   MOBILE OPTIMIZATION
========================================================= */
@media (max-width: 768px) {
    .quote-wrapper {
        padding: 20px;
    }

    .form-block {
        padding: 15px;
    }

    .block-title {
        font-size: 0.95rem;
    }
}
/* .form-block {
    border-left: 4px solid #192964;
} */

/* Floating Quote Icon - left of WhatsApp */
.floating-quote {
    position: fixed;
    bottom: 20px;
    right: 80px; /* 50px button width + 10px gap + 20px initial right */
    background-color: #007bff; /* Bootstrap primary blue */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.floating-quote:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}


@media (max-width: 1199.98px) {
    /* Show hamburger */
    .navbar-toggler {
        display: block !important;
    }
    
    /* Make navbar relative for absolute positioning of menu */
    .navbar {
        position: relative !important;
    }
    
    /* Fix mobile menu positioning - ABSOLUTE, NOT FIXED */
    .navbar-collapse {
        position: absolute !important;
        top: 100% !important; /* Positions directly below navbar */
        left: 0 !important;
        right: 0 !important;
        background: var(--primary-blue) !important;
        z-index: 1050 !important;
        padding: 20px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
        max-height: calc(100vh - 100px) !important;
        overflow-y: auto !important;
        margin-top: 0 !important;
    }
    
    /* Hide by default */
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    /* Show when toggled */
    .navbar-collapse.show {
        display: block !important;
    }
    
    /* Stack items vertically */
    .navbar-nav {
        flex-direction: column !important;
    }
    .hero-section .carousel-item img{
        min-height: auto;
    }
    .nav-quickbook{
        margin-bottom: 20px;
    }
}
#sectiongetquote {
    scroll-margin-top: 80px;
    padding-top: 80px;
    /* margin-top: -150px; */
}







