﻿/* --- Global Contrast & Utility Colors --- */
:root {
    --primary-navy: #0B1C3A;
    --secondary-green: #28a745;
    --hover-green: #218838;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* --- Gradient & Shadow Utilities --- */
.text-glow {
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.drop-shadow-icon {
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.4));
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--secondary-green) 0%, #1e7e34 100%);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

.bg-navy-custom {
    background-color: var(--primary-navy);
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

/* --- Top Bar Styling --- */
.top-bar {
    background: linear-gradient(90deg, #0B1C3A 0%, #1a365d 100%);
    font-size: 0.9rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .social-link:hover {
        color: var(--secondary-green);
        transform: translateY(-2px);
    }

.pulse-icon {
    animation: pulse 2s infinite;
}

/* --- Navbar & Menu Styling --- */
.main-navbar {
    border-bottom: 3px solid var(--secondary-green);
}

.nav-link {
    color: var(--primary-navy) !important;
    font-weight: 600;
    margin: 0 5px;
    position: relative;
    transition: color 0.3s ease;
}

    .nav-link .menu-icon {
        color: var(--secondary-green);
        margin-right: 4px;
        transition: transform 0.3s ease;
    }

    /* Menu Hover Slide Underline Effect */
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        display: block;
        margin-top: 2px;
        right: 0;
        background: var(--secondary-green);
        transition: width 0.4s ease;
    }

    .nav-link:hover::after {
        width: 100%;
        left: 0;
    }

    .nav-link:hover .menu-icon {
        transform: scale(1.2);
    }

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.3s ease;
}

/* --- Buttons & Floating Chat --- */
.btn-enquiry {
    background: linear-gradient(45deg, var(--secondary-green), #34ce57);
    color: white !important;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
}

    .btn-enquiry:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
    }

.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: floatBounce 2.5s infinite;
    transition: all 0.3s ease;
}

    .floating-chat:hover {
        transform: scale(1.15);
        background-color: #128C7E;
        color: white;
    }

/* --- Hero Banner & Dividers --- */
.hero-banner {
    height: 70vh;
    min-height: 500px;
    background-color: var(--primary-navy);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(11,28,58,0.5) 0%, rgba(11,28,58,0.85) 100%);
    z-index: 1;
}

.hero-btn {
    transition: transform 0.3s, box-shadow 0.3s;
}

    .hero-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(255, 193, 7, 0.5) !important;
    }

.scooty-divider-container {
    width: 100%;
    height: 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.road-dashed {
    position: absolute;
    bottom: 5px;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(90deg, #ccc 0, #ccc 20px, transparent 20px, transparent 40px);
}

.scooty-runner {
    position: absolute;
    bottom: 6px;
    left: -60px;
    animation: runScooty 8s linear infinite;
}

/* --- Sections Typography & Cards --- */
.tracking-wide {
    letter-spacing: 2px;
}

.heading-underline {
    height: 4px;
    width: 60px;
    background-color: var(--secondary-green);
    border-radius: 2px;
    margin-top: 10px;
}

.facility-box {
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}

    .facility-box:hover {
        background: rgba(255,255,255,0.1);
        transform: translateY(-5px);
        border-color: var(--secondary-green) !important;
    }

.floating-icon {
    animation: floatIcon 3s ease-in-out infinite;
}

.card-img-wrapper {
    border-bottom: 2px solid #eee;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .product-card:hover {
        transform: scale(1.03);
        border: 1px solid var(--secondary-green) !important;
    }

/* --- Welcome Pop-up Modal --- */
.promo-modal-bg {
    background: linear-gradient(135deg, #0B1C3A 0%, #1a365d 100%);
    border-radius: 15px;
    overflow: hidden;
}

.modal-decorative-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40,167,69,0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.popup-btn {
    animation: pulseGlow 2s infinite;
}

.popup-scooter-container {
    width: 100%;
}

.popup-scooter {
    display: inline-block;
    animation: scootyWiggle 2s ease-in-out infinite;
}

.popup-road {
    height: 4px;
    width: 80%;
    margin: 0 auto;
    background: repeating-linear-gradient(90deg, #fff 0, #fff 10px, transparent 10px, transparent 20px);
    opacity: 0.7;
    border-radius: 2px;
}

/* --- Footer --- */
.custom-footer {
    background-color: var(--primary-navy);
    position: relative;
    border-top: 5px solid var(--secondary-green);
}

.text-light-gray {
    color: #cbd5e1;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
}

    .footer-links a:hover {
        color: var(--secondary-green);
        padding-left: 5px;
    }

/* --- Keyframe Animations --- */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes runScooty {
    0% {
        left: -10%;
        transform: rotate(-2deg);
    }

    50% {
        transform: translateY(-3px) rotate(2deg);
    }

    100% {
        left: 110%;
        transform: rotate(-2deg);
    }
}

@keyframes scootyWiggle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-5px) rotate(-3deg);
    }

    75% {
        transform: translateY(-2px) rotate(3deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Naya Lighter Overlay */
.slider-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Bahut halka black tint taaki button clear dikhe, par image na chhupe */
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* Ensure background image is positioned nicely */
.bg-image-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}

/* Naya Lighter Overlay */
.slider-overlay-light {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Bahut halka black tint taaki button clear dikhe, par image na chhupe */
    background: rgba(0, 0, 0, 0.15); 
    z-index: 1;
}

/* Ensure background image is positioned nicely */
.bg-image-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}


/* --- Premium Swiper Slider Styles --- */
.premium-hero-section {
    height: 75vh;
    min-height: 500px;
    width: 100%;
    position: relative;
    background-color: var(--primary-navy);
}

.bg-image-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(11,28,58,0.4) 0%, rgba(11,28,58,0.85) 100%);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

/* --- Slide Content Initial State (Hidden for Animation) --- */
.slide-badge, .slide-title, .slide-text, .slide-btn {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Trigger Animations only on Active Slide --- */
.swiper-slide-active .slide-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.swiper-slide-active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.swiper-slide-active .slide-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.swiper-slide-active .slide-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.slide-btn:hover {
    transform: scale(1.05) translateY(0);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3) !important;
}

/* --- Custom Swiper Navigation & Pagination --- */
.custom-swiper-nav {
    color: var(--secondary-green) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

    .custom-swiper-nav:hover {
        background: var(--secondary-green);
        color: white !important;
    }

    .custom-swiper-nav::after {
        font-size: 20px !important;
        font-weight: bold;
    }



.slider-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05); /* Halka shadow button highlight karne ke liye */
    z-index: 1;
}

/* Pagination aur Arrows ko thoda upar shift karne ke liye (Optional) */
.custom-swiper-pagination {
    bottom: 10px !important;
}

/* --- Premium Swiper Slider Styles --- */


/* Swiper container needs auto height when using direct images */
.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

/* Make sure button sits above the image */
.z-index-3 {
    z-index: 3 !important;
}

/* Custom Arrows */
.custom-swiper-nav {
    color: var(--secondary-green) !important;
    background: rgba(255, 255, 255, 0.4);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

    .custom-swiper-nav:hover {
        background: var(--secondary-green);
        color: white !important;
    }

    .custom-swiper-nav::after {
        font-size: 20px !important;
        font-weight: bold;
    }

/* Custom Pagination Dots */
.custom-swiper-pagination {
    bottom: 15px !important;
    z-index: 10;
}

   
 
    .custom-swiper-pagination .swiper-pagination-bullet {
        background: white;
        opacity: 0.5;
        width: 12px;
        height: 12px;
        transition: all 0.3s ease;
    }

    .custom-swiper-pagination .swiper-pagination-bullet-active {
        background: var(--secondary-green);
        opacity: 1;
        width: 25px;
        border-radius: 10px;
    }
/* =========================================
   📖 ABOUT US PAGE STYLES
   ========================================= */

/* Inner Page Hero Banner */
.inner-hero-section {
    height: 40vh;
    min-height: 250px;
    background-color: var(--primary-navy);
    overflow: hidden;
}

.object-fit-cover {
    object-fit: cover;
}

.opacity-75 {
    opacity: 0.75 !important;
}

/* Custom Hover Card for Mission/Vision */
.custom-hover-card {
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent !important;
}

    .custom-hover-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        border-bottom-color: var(--secondary-green) !important;
    }

        .custom-hover-card:hover .icon-box {
            background-color: var(--secondary-green) !important;
            color: white !important;
            transform: scale(1.1);
        }

/* Light Icon Backgrounds */
.bg-success-light {
    background-color: rgba(40, 167, 69, 0.1);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.1);
}

.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
}

.icon-box {
    transition: all 0.3s ease;
}

.text-navy-custom {
    color: var(--primary-navy);
}

.opacity-10 {
    opacity: 0.1 !important;
}



/* =========================================
   👔 EXECUTIVE BOARD STYLES
   ========================================= */

.board-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .board-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
    }

    .board-card .image-wrapper {
        position: relative;
        height: 320px;
        overflow: hidden;
        background-color: #e9ecef;
    }

/* Specific height for Featured Director */
.featured-director .image-wrapper {
    height: 400px;
}

.board-card img {
    height: 100%;
    transition: transform 0.6s ease;
}

/* Zoom effect on hover */
.board-card:hover img {
    transform: scale(1.08);
}

.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    z-index: 1;
}

.badge-wrapper {
    z-index: 2;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .board-card .image-wrapper {
        height: 280px;
    }

    .featured-director .image-wrapper {
        height: 300px;
    }
}

/* =========================================
   🤝 OUR CLIENTS PAGE STYLES
   ========================================= */

/* Pulse Button Animation for Partner CTA */
.pulse-btn {
    animation: pulseWhite 2s infinite;
    transition: transform 0.3s ease;
}

    .pulse-btn:hover {
        transform: scale(1.05);
    }

@keyframes pulseWhite {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* --- Infinite Client Logo Slider (Pure CSS) --- */
.logo-slider {
    height: 120px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

    /* Fading edges effect for the slider */
    .logo-slider::before,
    .logo-slider::after {
        background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        content: "";
        height: 120px;
        position: absolute;
        width: 150px;
        z-index: 2;
    }

    .logo-slider::before {
        left: 0;
        top: 0;
    }

    .logo-slider::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
    }

.logo-slide-track {
    animation: scrollLogos 25s linear infinite;
    display: flex;
    width: calc(250px * 12); /* Based on 6 logos duplicated (12 total) */
}

/* Pause animation on hover */
.logo-slider:hover .logo-slide-track {
    animation-play-state: paused;
}

.slide-logo {
    height: 100px;
    width: 250px;
    padding: 10px 20px;
}

/* Demo Logo Styling (Remove this once you put actual <img> tags) */
.demo-logo {
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    filter: grayscale(100%); /* Keeps logos black & white initially */
    opacity: 0.6;
}

.slide-logo:hover .demo-logo {
    filter: grayscale(0%); /* Full color on hover */
    opacity: 1;
    border-color: var(--secondary-green) !important;
    color: var(--secondary-green) !important;
    transform: scale(1.05);
}

/* Keyframes for sliding */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
    /* Shift by exactly half the track */
}

/* --- Testimonial Cards --- */
.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 4px solid transparent !important;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
        border-bottom-color: var(--secondary-green) !important;
    }

.quote-icon {
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    border: 3px solid #fff;
}

/* =========================================
   🤝 OUR CLIENTS PAGE (UNIQUE & PREMIUM)
   ========================================= */

/* Hero Banner */
.client-pg-hero {
    height: 40vh;
    min-height: 250px;
    background: linear-gradient(135deg, rgba(11,28,58,0.9) 0%, rgba(26,54,93,0.9) 100%), url('../Images/Banner1.jpg') center/cover no-repeat;
    background-color: #0B1C3A; /* Fallback */
    border-bottom: 5px solid var(--secondary-green);
}

.client-pg-text-glow {
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Call to Action Box */
.client-pg-cta-section {
    margin-top: -50px; /* Pulls it up over the hero section slightly */
    position: relative;
    z-index: 5;
}

.client-pg-cta-box {
    background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
}

.client-pg-cta-bg-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.client-pg-pulse-btn {
    animation: clientPgPulse 2s infinite;
    transition: transform 0.3s ease;
}

    .client-pg-pulse-btn:hover {
        transform: scale(1.05);
    }

@keyframes clientPgPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Common Utilities */
.client-pg-heading-underline {
    height: 4px;
    width: 60px;
    background-color: var(--secondary-green);
    border-radius: 2px;
    margin-top: 10px;
}

/* --- Infinite Client Logo Slider (Fixed Flexbox Issue) --- */
.client-pg-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
    /* White fading edges */
    .client-pg-marquee-wrapper::before,
    .client-pg-marquee-wrapper::after {
        background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        content: "";
        height: 100%;
        position: absolute;
        width: 15%;
        z-index: 2;
        top: 0;
    }

    .client-pg-marquee-wrapper::before {
        left: 0;
    }

    .client-pg-marquee-wrapper::after {
        right: 0;
        transform: rotateZ(180deg);
    }

/* The Track - FORCING HORIZONTAL LAYOUT */
.client-pg-marquee-track {
    display: flex !important;
    flex-direction: row !important;
    width: calc(250px * 12); /* 6 logos duplicated = 12 */
    animation: scrollLogosUnique 25s linear infinite;
}

.client-pg-marquee-wrapper:hover .client-pg-marquee-track {
    animation-play-state: paused;
}

/* Individual Items - FORCING THEM NOT TO SHRINK OR STACK */
.client-pg-marquee-item {
    width: 250px !important;
    flex-shrink: 0 !important; /* This prevents vertical stacking */
    padding: 0 15px;
}

/* Logo Box Design */
.client-pg-logo-box {
    width: 100%;
    height: 100px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.client-pg-marquee-item:hover .client-pg-logo-box {
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--secondary-green);
    color: var(--secondary-green);
    transform: scale(1.05);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@keyframes scrollLogosUnique {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
    /* Move exactly 6 logos to loop seamlessly */
}

/* --- Premium Testimonial Cards --- */
.client-pg-testimonial-card {
    transition: transform 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
    border-top: 5px solid transparent !important;
}

    .client-pg-testimonial-card:hover {
        transform: translateY(-8px);
        border-top-color: var(--secondary-green) !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    }

/* =========================================
   🏍️ UNIQUE PRODUCTS PAGE STYLES 
   ========================================= */

/* Hero Section with Custom Gradient & Glow */
.prod-pg-hero {
    height: 35vh;
    min-height: 250px;
    background: linear-gradient(135deg, #0B1C3A 0%, #102a5c 100%);
}

.prod-pg-animated-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40,167,69,0.15) 10%, transparent 20%), radial-gradient(circle, rgba(40,167,69,0.1) 10%, transparent 20%);
    background-size: 50px 50px;
    animation: prodPgMoveBg 20s linear infinite;
    z-index: 1;
}

@keyframes prodPgMoveBg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.prod-pg-text-glow {
    text-shadow: 0 0 15px rgba(40, 167, 69, 0.6);
}

/* Category Filter Buttons */
.prod-pg-filter-btn {
    border: 2px solid var(--secondary-green);
    color: var(--primary-navy);
    font-weight: bold;
    border-radius: 30px;
    padding: 8px 25px;
    background: white;
    transition: all 0.3s ease;
}

    .prod-pg-filter-btn:hover,
    .prod-pg-filter-btn.active {
        background: var(--secondary-green);
        color: white;
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    }

/* --- Premium Product Cards --- */
.prod-pg-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05) !important;
    overflow: hidden;
}

    /* Glowing Border Effect on Hover */
    .prod-pg-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 2px solid transparent;
        border-radius: 1rem;
        transition: border-color 0.4s ease;
        pointer-events: none;
        z-index: 5;
    }

    .prod-pg-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
    }

        .prod-pg-card:hover::before {
            border-color: var(--secondary-green);
            box-shadow: inset 0 0 20px rgba(40, 167, 69, 0.1);
        }

/* Image & Icon Area */
.prod-pg-img-wrapper {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prod-pg-product-img {
    max-height: 100%;
    transition: transform 0.5s ease;
}

.prod-pg-card:hover .prod-pg-product-img {
    transform: scale(1.1) rotate(2deg); /* Smooth slight tilt zoom */
}

/* Specifications List */
.prod-pg-specs li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

    .prod-pg-specs li:last-child {
        border-bottom: none;
    }

/* Enquiry Glowing Button */
.prod-pg-enquiry-btn {
    background: var(--primary-navy);
    color: white !important;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .prod-pg-enquiry-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-25deg);
        transition: all 0.5s ease;
    }

.prod-pg-card:hover .prod-pg-enquiry-btn {
    background: var(--secondary-green);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.5);
}

    .prod-pg-card:hover .prod-pg-enquiry-btn::after {
        left: 200%; /* Shiny sweep effect on card hover */
    }

/* =========================================
   🚀 SMART ANIMATED FALLBACK ICON
   ========================================= */
.prod-pg-fallback-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.prod-pg-drive-anim {
    color: #cbd5e1;
    animation: driveScooterBounce 1.5s ease-in-out infinite alternate;
    text-shadow: 0 10px 10px rgba(0,0,0,0.1);
}

/* Driving Bounce & Move Animation */
@keyframes driveScooterBounce {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg) scale(1.05);
        color: var(--secondary-green);
    }

    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}
/* =========================================
   🏙️ PRODUCTS PAGE - ANIMATED FOOTER ROAD
   ========================================= */

.prod-pg-animated-footer {
    height: 250px;
    background: linear-gradient(to bottom, #0B1C3A 0%, #1a365d 60%, #2c3e50 100%);
    position: relative;
    border-top: 5px solid var(--secondary-green);
    margin-top: 2rem;
}

/* Creating a City Skyline using pure CSS box-shadows */
.prod-pg-city-skyline {
    position: absolute;
    bottom: 50px; /* Sits right above the road */
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(to bottom, transparent 30%, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.05) 40%, transparent 40%), linear-gradient(to right, transparent 20%, rgba(255,255,255,0.05) 20%, rgba(255,255,255,0.05) 40%, transparent 40%);
    background-size: 20px 20px, 40px 100%;
    /* The buildings */
    box-shadow: 100px 20px 0 -10px #1a252f, 150px 40px 0 -20px #2c3e50, 220px 10px 0 0 #1a252f, 300px 50px 0 -30px #34495e, 380px 30px 0 -10px #1a252f, 450px 10px 0 -5px #2c3e50, 550px 40px 0 -20px #1a252f, 650px 20px 0 -10px #34495e,
    /* Duplicated for smooth scrolling */
    1100px 20px 0 -10px #1a252f, 1150px 40px 0 -20px #2c3e50, 1220px 10px 0 0 #1a252f, 1300px 50px 0 -30px #34495e, 1380px 30px 0 -10px #1a252f, 1450px 10px 0 -5px #2c3e50, 1550px 40px 0 -20px #1a252f, 1650px 20px 0 -10px #34495e;
    animation: prodPgCityScroll 40s linear infinite;
    z-index: 1;
}

/* The Road */
.prod-pg-road-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #333;
    border-top: 3px solid #555;
    z-index: 2;
}

/* The moving white dashed lines on the road */
.prod-pg-road-stripes {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200%;
    height: 4px;
    background: repeating-linear-gradient(90deg, #fff 0, #fff 30px, transparent 30px, transparent 60px);
    animation: prodPgRoadScroll 1s linear infinite;
}

/* The Scooter */
.prod-pg-driving-scooter {
    position: absolute;
    bottom: 15px; /* Sits on the road */
    left: -100px; /* Starts off-screen */
    animation: prodPgScooterDriveBy 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 3;
}

/* Wind effect behind the scooter */
.prod-pg-wind-effect {
    position: absolute;
    right: 60px;
    top: 20px;
    font-size: 1.5rem;
    animation: prodPgWindBlow 0.5s linear infinite;
}

/* Animations */
@keyframes prodPgCityScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1000px);
    }
}

@keyframes prodPgRoadScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-60px);
    }
    /* Match the stripe pattern length */
}

@keyframes prodPgScooterDriveBy {
    0% {
        left: -100px;
        transform: rotate(-2deg) translateY(0);
    }

    20% {
        transform: rotate(1deg) translateY(-2px);
    }

    40% {
        transform: rotate(-1deg) translateY(2px);
    }

    60% {
        transform: rotate(2deg) translateY(-1px);
    }

    80% {
        transform: rotate(-2deg) translateY(1px);
    }

    100% {
        left: 110%;
        transform: rotate(0deg) translateY(0);
    }
    /* Drives completely off the right side */
}

@keyframes prodPgWindBlow {
    0% {
        transform: translateX(0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translateX(-20px) scale(0.5);
        opacity: 0;
    }
}
/* =========================================
   📅 EVENTS & GALLERY PAGE STYLES
   ========================================= */

/* Inner Hero Section */
.evt-pg-hero {
    height: 35vh;
    min-height: 250px;
    background: linear-gradient(135deg, rgba(11,28,58,0.85) 0%, rgba(40,167,69,0.7) 100%), url('../Images/Banner1.jpg') center/cover no-repeat;
    background-color: #0B1C3A; /* Fallback */
    border-bottom: 5px solid var(--secondary-green);
}

.evt-pg-text-glow {
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.evt-pg-heading-underline {
    height: 4px;
    width: 60px;
    background-color: var(--secondary-green);
    border-radius: 2px;
    margin-top: 10px;
}

/* --- Upcoming Event Cards --- */
.evt-pg-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 4px solid transparent !important;
}

    .evt-pg-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
        border-bottom-color: var(--secondary-green) !important;
    }

.evt-pg-img-wrapper {
    height: 240px;
    overflow: hidden;
    background-color: #f1f3f5;
}

.evt-pg-img {
    transition: transform 0.6s ease;
}

.evt-pg-card:hover .evt-pg-img {
    transform: scale(1.08); /* Smooth Zoom on hover */
}

/* Calendar Date Badge */
.evt-pg-date-badge {
    min-width: 70px;
    border: 2px solid #fff;
    z-index: 2;
}

/* Pulsing Status Badge */
.evt-pg-status-badge {
    z-index: 2;
}

.pulse-anim {
    animation: evtPgPulse 2s infinite;
}

@keyframes evtPgPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Event Card Button */
.evt-pg-btn {
    transition: all 0.3s ease;
}

.evt-pg-card:hover .evt-pg-btn {
    background-color: var(--secondary-green);
    color: #fff;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* --- Past Events Gallery --- */
.evt-pg-gallery-item {
    height: 280px;
    cursor: pointer;
}

    .evt-pg-gallery-item img {
        transition: transform 0.6s ease;
    }

.evt-pg-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11,28,58,0.9) 0%, rgba(11,28,58,0.2) 50%, transparent 100%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* Hover effect for gallery */
.evt-pg-gallery-item:hover img {
    transform: scale(1.1);
}

.evt-pg-gallery-item:hover .evt-pg-gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(11,28,58,0.95) 0%, rgba(40,167,69,0.5) 60%, transparent 100%);
}

.evt-pg-gallery-overlay h5 {
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.evt-pg-gallery-item:hover .evt-pg-gallery-overlay h5 {
    transform: translateY(0); /* Text slides up slightly on hover */
}

/* =========================================
   📍 CONTACT US PAGE (LUCKNOW THEME)
   ========================================= */

/* Hero Banner & Background */
.contact-pg-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(11,28,58,0.9) 0%, rgba(40,167,69,0.7) 100%), url('../Images/Banner1.jpg') center/cover no-repeat;
    background-color: #0B1C3A; /* Fallback */
    border-bottom: 5px solid var(--secondary-green);
    margin-bottom: 80px; /* Space for floating cards */
}

.contact-pg-text-glow {
    text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

/* Simulated Lucknow Skyline Graphic in CSS */
.contact-pg-lucknow-skyline {
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,100 L0,80 Q20,80 30,60 T60,60 T70,80 L150,80 Q160,80 170,40 T210,40 T220,80 L300,80 Q320,80 350,20 T400,20 T430,80 L550,80 Q570,80 600,50 T650,50 T680,80 L800,80 Q820,80 850,30 T900,30 T930,80 L1000,80 L1000,100 Z" fill="%23ffffff" opacity="0.1"/></svg>') bottom center repeat-x;
    background-size: auto 100%;
}

/* Floating Info Cards */
.contact-pg-info-section {
    margin-top: -120px; /* Pulls the cards up into the hero banner */
}

.contact-pg-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 4px solid transparent !important;
}

    .contact-pg-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
        border-bottom-color: var(--secondary-green) !important;
    }

.contact-pg-icon-box {
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
}

.contact-pg-card:hover .contact-pg-icon-box {
    background-color: var(--secondary-green) !important;
    color: white !important;
    transform: rotate(10deg) scale(1.1);
}

/* Social Buttons */
.contact-pg-social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .contact-pg-social-btn:hover {
        transform: translateY(-5px);
        background-color: var(--secondary-green) !important;
        color: white !important;
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    }

/* Premium Form Styling */
.contact-pg-floating-input .form-control,
.contact-pg-floating-input .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

    .contact-pg-floating-input .form-control:focus,
    .contact-pg-floating-input .form-select:focus {
        border-color: var(--secondary-green);
        background-color: #f8fff9;
    }

.contact-pg-floating-input label {
    color: #6c757d;
    font-weight: 500;
}

.contact-pg-floating-input .form-control:focus ~ label {
    color: var(--secondary-green);
    font-weight: bold;
}

/* Submit Button Glow Animation */
.contact-pg-submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, var(--secondary-green), #1e7e34);
    border: none;
}

    .contact-pg-submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-25deg);
        transition: all 0.6s ease;
    }

    .contact-pg-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(40, 167, 69, 0.5) !important;
    }

        .contact-pg-submit-btn:hover::before {
            left: 200%;
        }
/* =========================================
   📝 ENQUIRY PAGE STYLES (SPLIT LAYOUT)
   ========================================= */

.enq-pg-bg {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23f8f9fa" width="100" height="100"/><circle cx="50" cy="50" r="2" fill="%2328a745" opacity="0.2"/></svg>') repeat;
}

.enq-pg-heading-underline {
    height: 4px;
    width: 60px;
    background-color: var(--secondary-green);
    border-radius: 2px;
    margin-top: 10px;
}

/* Card Wrapper */
.enq-pg-wrapper {
    min-height: 600px;
}

/* Left Panel - Dark Gradient with Animated Shapes */
.enq-pg-left-panel {
    background: linear-gradient(135deg, #0B1C3A 0%, #102a5c 100%);
    border-right: 5px solid var(--secondary-green);
}

.enq-pg-text-glow {
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

/* Background Animated Circles */
.enq-pg-circle-1, .enq-pg-circle-2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40,167,69,0.2) 0%, transparent 70%);
    animation: enqPgFloatBg 15s infinite alternate;
}

.enq-pg-circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -100px;
}

.enq-pg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -150px;
    animation-delay: 2s;
}

@keyframes enqPgFloatBg {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.2);
    }
}

/* Floating Scooter Icon Animation */
.enq-pg-floating-icon {
    animation: enqPgFloatIcon 3s ease-in-out infinite;
}

@keyframes enqPgFloatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-3deg);
    }
}

/* Icon Box List */
.enq-pg-feature-list li {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

    .enq-pg-feature-list li:hover {
        transform: translateX(10px);
        color: var(--secondary-green);
    }

.enq-pg-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Premium Form Styling */
.enq-pg-floating-input .form-control,
.enq-pg-floating-input .form-select {
    border: none;
    border-bottom: 2px solid #e9ecef;
    border-radius: 0;
    padding-left: 0;
    transition: all 0.3s ease;
    background-color: transparent;
    box-shadow: none !important;
}

    .enq-pg-floating-input .form-control:focus,
    .enq-pg-floating-input .form-select:focus {
        border-color: var(--secondary-green);
    }

.enq-pg-floating-input label {
    padding-left: 0;
    color: #6c757d;
    transition: all 0.3s ease;
}

.enq-pg-floating-input .form-control:focus ~ label,
.enq-pg-floating-input .form-select:focus ~ label {
    color: var(--secondary-green);
    font-weight: bold;
    transform: translateY(-5px); /* Extra lift */
}

/* Glowing Submit Button */
.enq-pg-submit-btn {
    background: linear-gradient(45deg, var(--secondary-green), #1e7e34);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .enq-pg-submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-25deg);
        transition: all 0.6s ease;
    }

    .enq-pg-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4) !important;
    }

        .enq-pg-submit-btn:hover::before {
            left: 200%;
        }

/* Responsive adjustments */
@media (max-width: 991px) {
    .enq-pg-left-panel {
        border-right: none;
        border-bottom: 5px solid var(--secondary-green);
        padding: 3rem 2rem !important;
    }
}

/* =========================================
   🌟 MASTER PAGE STYLES (HEADER, FOOTER, WIDGETS)
   ========================================= */

/* --- Top Bar --- */
.master-pg-top-bar {
    background: linear-gradient(90deg, #051024 0%, #0B1C3A 100%);
    font-size: 0.85rem;
}

.hover-green:hover {
    color: var(--secondary-green) !important;
    transition: color 0.3s;
}

.master-pg-pulse-icon {
    animation: masterPgPulse 2s infinite;
}

@keyframes masterPgPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.master-pg-social-link {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

    .master-pg-social-link:hover {
        color: var(--secondary-green);
        transform: translateY(-3px);
    }

/* --- Navigation Menu --- */
.master-pg-main-navbar {
    border-bottom: 3px solid var(--secondary-green);
}

.master-pg-brand-logo {
    transition: transform 0.3s;
}

    .master-pg-brand-logo:hover {
        transform: scale(1.05);
    }

.master-pg-nav-link {
    color: var(--primary-navy) !important;
    margin: 0 8px;
    position: relative;
    transition: color 0.3s ease;
}

    .master-pg-nav-link .master-pg-menu-icon {
        color: var(--secondary-green);
        transition: transform 0.3s ease;
    }
    /* Slide underline effect */
    .master-pg-nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background: var(--secondary-green);
        transition: width 0.3s ease;
    }

    .master-pg-nav-link:hover::after {
        width: 100%;
    }

    .master-pg-nav-link:hover .master-pg-menu-icon {
        transform: translateY(-2px);
    }

/* Enquiry Button */
.master-pg-btn-enquiry {
    background: linear-gradient(45deg, var(--secondary-green), #1e7e34);
    border: none;
    transition: all 0.3s ease;
}

    .master-pg-btn-enquiry:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4) !important;
        background: linear-gradient(45deg, #1e7e34, var(--secondary-green));
    }

/* --- Floating Social Sidebar (Right) --- */
.master-pg-social-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
}

.master-pg-sidebar-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px 0 0 5px;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

    .master-pg-sidebar-icon.fb {
        background-color: #3b5998;
    }

    .master-pg-sidebar-icon.insta {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .master-pg-sidebar-icon.yt {
        background-color: #ff0000;
    }

    .master-pg-sidebar-icon:hover {
        transform: translateX(-10px); /* Slides out when hovered */
        color: white;
    }

/* --- Highly Animated WhatsApp Icon (Bottom Left) --- */
.master-pg-floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Shifted to Left */
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}
/* Glowing Pulse Rings */
.master-pg-wa-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: masterPgWaPulseAnim 2s infinite;
}

@keyframes masterPgWaPulseAnim {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.master-pg-floating-whatsapp:hover {
    color: white;
}

    .master-pg-floating-whatsapp:hover .fab {
        animation: masterPgWaShake 0.5s ease-in-out infinite;
    }

@keyframes masterPgWaShake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* --- Polished Footer --- */
.master-pg-custom-footer {
    background-color: #051024;
    position: relative;
}

.text-light-gray {
    color: #a0aec0;
}

.master-pg-footer-links li {
    margin-bottom: 12px;
}

.master-pg-footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

    .master-pg-footer-links a:hover {
        color: var(--secondary-green);
        transform: translateX(8px); /* Slide arrow effect */
    }

/* Footer Animated Scooter */
.master-pg-road-line {
    position: absolute;
    bottom: 5px;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--secondary-green) 0, var(--secondary-green) 20px, transparent 20px, transparent 40px);
}

.master-pg-animated-scooter {
    position: absolute;
    bottom: 8px;
    left: -50px;
    animation: masterPgFooterDrive 12s linear infinite;
}

@keyframes masterPgFooterDrive {
    0% {
        left: -50px;
        transform: rotate(-2deg);
    }

    50% {
        transform: translateY(-2px) rotate(2deg);
    }

    100% {
        left: 110%;
        transform: rotate(-2deg);
    }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .master-pg-top-bar {
        text-align: center;
    }

    .master-pg-contact-info {
        justify-content: center;
        margin-bottom: 5px;
    }

    .master-pg-floating-whatsapp {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
}
/* =========================================
   🌈 COLORFUL TOP BAR STYLES
   ========================================= */

/* Colorful round icon backgrounds for Phone/Email */
.topbar-icon-box {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    animation: pulseIcon 2s infinite;
}

/* Colorful Social Buttons in Top Bar */
.topbar-social-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

    .topbar-social-btn.fb {
        background-color: #3b5998;
    }

    .topbar-social-btn.insta {
        background: linear-gradient(45deg, #f09433, #dc2743);
    }

    .topbar-social-btn.yt {
        background-color: #ff0000;
    }

    .topbar-social-btn:hover {
        transform: scale(1.15);
        color: white;
    }

.topbar-link {
    transition: color 0.3s ease;
}

    .topbar-link:hover {
        color: var(--secondary-green) !important;
    }

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* =========================================
   📱 MOBILE VIEW ULTIMATE FIXES (Max Width 768px) 
   ========================================= */
@media (max-width: 768px) {

    /* --- 1. Top Bar Mobile Fixes --- */
    .master-pg-top-bar {
        padding: 12px 0 !important;
    }

    .small-on-mobile {
        font-size: 0.85rem;
    }

    .border-top-mobile {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 8px;
    }

    /* --- 2. Hero Banner Mobile Fixes (Removes gap & fixes overlaps) --- */

    /* Remove the huge dark gap below the banner image */
    .premium-hero-section,
    .swiper {
        height: auto !important;
        min-height: auto !important;
    }

    .swiper-slide {
        height: auto !important;
    }

        /* Ensure image fits perfectly without cropping height */
        .swiper-slide img {
            height: auto !important;
            width: 100% !important;
            object-fit: contain !important;
        }

    /* Shrink the giant button on mobile */
    .slide-btn {
        padding: 6px 16px !important;
        font-size: 0.9rem !important;
        margin-bottom: 25px !important; /* Push it slightly up so dots don't overlap */
    }

    /* Hide the giant left/right arrows on mobile (swipe is natural on phones) */
    .custom-swiper-nav {
        display: none !important;
    }

    /* Adjust the dots to fit inside the image nicely */
    .custom-swiper-pagination {
        bottom: 5px !important;
    }
}