/* =========================================
   NAVBAR - CLEAN & RESPONSIVE VERSION
========================================= */

:root {
    --primary-color: #FFC107;
    --primary-dark: #FFA000;
    --secondary-color: #212121;
}

/* ================= NAVBAR BASE ================= */

.navbar {
    background: transparent;
    padding: 4px 0;
    transition: 0.3s ease;
    z-index: 1030;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 0px;
}

/* ================= BRAND LOGO ================= */

.brand-logo img {
    height: 85px;
    width: auto;
    transition: 0.3s ease;
}

.navbar.scrolled .brand-logo img {
    height: 85px;
    transform: scale(1.3);
}
.navbar.scrolled .navbar-brand{
    padding: 0px;
}

/* ================= NAV LINKS ================= */

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 50px;
    transition: 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--secondary-color) !important;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 193, 7, 0.15);
    color: var(--primary-color) !important;
}

/* ================= BOOK BUTTON ================= */

.btn-book-now {
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    padding: 8px 22px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
}

.btn-book-now:hover {
    background: var(--primary-dark);
}

/* ================= TOGGLER ================= */

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: relative;
    display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #fff;
    left: 0;
}

.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }

.navbar.scrolled .navbar-toggler-icon,
.navbar.scrolled .navbar-toggler-icon::before,
.navbar.scrolled .navbar-toggler-icon::after {
    background-color: var(--secondary-color);
}

/* ================= MOBILE MENU ================= */

@media (max-width: 991px) {

    .navbar-collapse {
        background: var(--secondary-color);
        padding: 20px;
        border-radius: 0 0 15px 15px;
        margin-top: 10px;
    }

    .navbar.scrolled .navbar-collapse {
        background: #fff;
    }

    .nav-link {
        display: block;
        text-align: center;
        margin: 6px 0;
    }

    .btn-book-now {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .brand-logo img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .navbar img{
        transform: scale(1.5);
    }

    .about-content .btn-primary{
        display: block;
        margin: auto;
        width: 80vw;
    }
  
}

/* Extra small devices */

@media (max-width: 480px) {
    .brand-logo img {
        height: 42px;
    }
}




























/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--primary-color);
}

.taxi-icon {
    animation: bounce 1s infinite;
    margin-bottom: 20px;
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    animation: loading 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}



/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1) rotate(5deg);
    color: white;
    box-shadow: var(--shadow-xl);
}


/* Calling Button */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    z-index: 9999;
}

/* Hover Effect */
.floating-call:hover {
    background-color: #218838;
    transform: scale(1.1);
    color: #fff;
}

/* Optional Pulse Animation */
.floating-call::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #28a745;
    opacity: 0.4;
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}














/* Mobile phone styling */
.mobile-phone {
    font-weight: 600;
    font-size: 16px;
}

.mobile-phone .phone-link {
    text-decoration: none;
    color: var(--primary-color); /* Change as per your theme */
}

/* Add border to navbar toggler */
.custom-toggler {
    border: 2px solid #000;  /* Change color */
    padding: 5px 8px;
    border-radius: 6px;
}

.custom-toggler:focus {
    box-shadow: none;
}