    
        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }
        
        a{
            text-decoration: none;
        }
        
        .navbar {
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.95);
        }
        .navbar-dark .navbar-nav .nav-link {
            color: #333;
        }
        .navbar-dark .navbar-brand {
            color: #333;
        }
        .navbar-dark .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .navbar-dark .navbar-toggler {
            border-color: rgba(0, 0, 0, 0.5);
        }
        
        .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('img/hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
        }
        .section-padding {
            padding: 80px 0;
        }
        .card-price {
            transition: transform 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .card-price:hover {
            transform: translateY(-10px);
        }
        .service-card {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 40px 0;
        }
        .btn-primary {
            background: #ff4b5c;
            border: none;
        }
        .btn-primary:hover {
            background: #e43a4b;
        }
        @media (max-width: 991.98px) {
            .navbar-collapse {
                text-align: right;
            }
            .navbar-nav {
                align-items: flex-end;
            }
        }
        
        /* Service Cards */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Icon Styling */
.service-card i {
    color: #007bff;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    display: inline-block;
}

/* Text Styling */
.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Cheerful Hover Effect */
.service-card:hover {
    background-color: #ffe066; /* Cheerful yellow */
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover i,
.service-card:hover h4,
.service-card:hover p {
    color: #1f1f1f; /* Dark text on light background */
}

/* Optional: subtle background animation */
.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, #fff176 0%, #ffe066 100%);
    z-index: 0;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}
        
        /* Parallax base styles */
        .parallax {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Individual parallax sections with placeholder images */
        .parallax-1 {
            background-image: url('../img/aerial.jpg');
        }

        .parallax-2 {
            background-image: url('');
        }

        /* Content section styles */
        .content-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        /* Overlay for better text readability */
        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .parallax-content {
            position: relative;
            z-index: 2;
        }

        /* Adjust for smaller screens */
        @media (max-width: 768px) {
            .parallax {
                height: 80vh;
            }
        }

        /* Ensure text is readable */
        .parallax h1 {
            font-size: 3.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .parallax p {
            font-size: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 576px) {
            .parallax h1 {
                font-size: 2.5rem;
            }
            .parallax p {
                font-size: 1.2rem;
            }
        }
        
        /* Container to hold both buttons */
        .load-buttons {
            display: flex;
            /* Use flexbox to align buttons horizontally */
            justify-content: center;
            /* Align buttons to the center */
            gap: 10px;
            /* Space between the buttons (adjust as needed) */
            margin-top: 20px;
            /* Space above the buttons */
        }

        /* Styling for both buttons */
        .load-more,
        .load-less {
            background-color: #fe4d05;
            /* Set the background color */
            color: #fff !important;
            /* Text color */
            font-size: 24px;
            /* Font size for the icon */
            text-align: center;
            /* Center the text */
            cursor: pointer;
            /* Pointer cursor for interactivity */
            display: inline-flex;
            /* Flexbox for centering the symbol */
            justify-content: center;
            /* Center content horizontally */
            align-items: center;
            /* Center content vertically */
            width: 40px;
            /* Set width of the button */
            height: 40px;
            /* Set height of the button */
            border-radius: 50%;
            /* Make it round */
            transition: background-color 0.3s ease;
            /* Smooth transition on hover */
        }

        .load-more {
            background-color: #fe4d05;
            /* Orange for Load More */
        }

        .load-less {
            background-color: green;
            /* Green for Load Less */
        }

        /* Hover effect for both buttons */
        .load-more:hover {
            background-color: #000000;
            /* Darker orange for Load More */
        }

        .load-less:hover {
            background-color: #000000;
            /* Darker green for Load Less */
        }


        .maher {
            display: none;
        }
        
        /* Back to Top Button Styling */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px; /* Equal width and height for perfect circle */
            height: 60px;
            background-color: #28a745; /* Green color, adjust to match your theme */
            color: #fff;
            border-radius: 50%; /* Fully rounded */
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
            transition: background-color 0.3s ease, transform 0.2s ease;
            padding: 0; /* Ensure no padding distorts the circle */
            line-height: 60px; /* Align icon vertically */
        }

        .back-to-top a:hover {
            background-color: #218838; /* Darker green on hover */
            transform: scale(1.1); /* Slight scale effect on hover */
        }

        .back-to-top a i {
            font-size: 24px; /* Larger icon for better visibility */
        }
        
                .testimonial-card {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }
        
        .stats-section {
            background-color: var(--secondary-color);
            color: white;
            padding: 60px 0;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .contact-section {
            background-color: #f8f9fa;
        }
        
        footer {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .social-icon {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .social-icon:hover {
            color: var(--primary-color);
        }
        
        .car-gallery img {
            transition: transform 0.3s;
            cursor: pointer;
        }
        
        .car-gallery img:hover {
            transform: scale(1.05);
        }
        
        /********* Footer CSS **********/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #212529;
    color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #f4b621;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #f4b621;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 60px;
    transition: .3s;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #f4b621;
    border-color: #f4b621;
}

.footer .footer-social a:hover i {
    color: #030f27;
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer .newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #f4b621;
    background: #121518;
    border-radius: 0;
    border: 2px solid #f4b621;
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #121518;
    background: #f4b621;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: #f4b621;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #f4b621;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {

    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}
        
        @media (max-width: 1000px) {
    #getintouch {
        margin-left: 0px !important;
    }

    #footerx {
        text-align: center;
    }

    .footer h2 {
        position: relative; /* Required for absolute positioning of ::after */
    }

    .footer h2::after {
        position: absolute;
        content: "";
        width: 60px;
        height: 2px;
        left: 50%; /* Center horizontally */
        bottom: 0;
        background: #f4b621;
        transform: translateX(-50%); /* Adjust to align center */
    } 
} 
        
/* Section Title */
#process .section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

#process .lead {
    color: #666;
}

/* Process Card Styling */
#process .card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

#process .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #fef9e7;
}

/* Number Circle */
#process .card .rounded-circle {
    background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    width: 70px;
    height: 70px;
    transition: background 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

#process .card:hover .rounded-circle {
    background: linear-gradient(135deg, #ffd700 0%, #ff6f00 100%);
    color: #fff;
}

/* Heading and Paragraph */
#process .card h4 {
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
    transition: color 0.3s ease;
}

#process .card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-top: 10px;
    transition: color 0.3s ease;
}

#process .card:hover h4,
#process .card:hover p {
    color: #111;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    #process .card {
        margin-bottom: 20px;
    }
}

/* Contact Section Base */
.contact-section {
    background-color: #f8f9fa;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-section .section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-section .lead {
    color: #666;
}

/* Cards */
.contact-section .card {
    border-radius: 15px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #fff;
}

.contact-section .card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

/* Form Elements */
.contact-section .form-control,
.contact-section .form-select {
    border-radius: 8px;
    border-color: #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.15);
}

/* Labels */
.contact-section label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

/* Button */
.contact-section .btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-section .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Contact Info Icons */
.contact-section .fa-2x {
    color: #007bff;
}

/* Social Icons */
.contact-section .social-icon {
    color: #fff;
    background-color: #007bff;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.contact-section .social-icon:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Optional: Style Socials Container */
.contact-section .card-body > .d-flex:last-of-type {
    gap: 10px;
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
}
    
        
/************grid*******************/
    /* Gallery Grid Container */
#grid {
    margin-top: 40px;
}

/* Gallery Item Styling */
#grid .maher {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#grid .maher:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
#grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    transition: transform 0.4s ease;
}

#grid .maher:hover img {
    transform: scale(1.05);
}

/* Fancybox Caption Styling */
.fancybox-caption__body {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 6px;
}

/* Optional: Add some spacing between images if needed */
#grid .maher {
    padding: 10px;
}

/* Responsive Tuning */
@media (max-width: 768px) {
    #grid .maher {
        padding: 5px;
    }
    .glow-text {
    
    font-size: 30px !important;
    
}
}

/***********************************/
        
/* Base link styles */
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.3s ease;
}

/* Hover color change */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
    color: #007bff; /* Change to match your brand color if needed */
}

/* Animated underline */
.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 50%;
    bottom: 0;
    background-color: #007bff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Expand underline on hover */
.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link:focus::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 70%;
}
        /* Hide the default dropdown arrow */
.navbar .dropdown-toggle::after {
    display: none;
}

/* Style the dropdown items */
.dropdown-item {
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Hover effect */
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #007bff; /* Or your theme color */
    color: #fff;
}
        
.glow-text {
    color: white;
    font-size: 70px;
    animation: breathing-glow 3s ease-in-out infinite;
    
}

/* More dramatic breathing glow animation */
@keyframes breathing-glow {
    0% {
        text-shadow:
            0 0 2px #ff9900,
            0 0 4px #ff9900,
            0 0 6px #ff6600;
    }
    50% {
        text-shadow:
            0 0 10px #ff9900,
            0 0 20px #ff9900,
            0 0 30px #ff6600,
            0 0 40px #ff3300;
    }
    100% {
        text-shadow:
            0 0 2px #ff9900,
            0 0 4px #ff9900,
            0 0 6px #ff6600;
    }
}
        
.service-btn {
padding: 6px 16px; /* Reduced padding */
font-size: 0.9rem; /* Slightly smaller text */
font-weight: bold;
border-radius: 20px;
transition: all 0.3s;
white-space: nowrap;
margin-right: 5px;
}


.btn-towing {
background-color: #e67e22;
border-color: #e67e22;
}

.btn-customs {
background-color: #3498db;
border-color: #3498db;
}

.btn-import {
background-color: #2ecc71;
border-color: #2ecc71;
}



@media (max-width: 768px) {
.quick-nav {

z-index: 100 !important; /* Lower than Bootstrap navbar dropdown */

top: 80px !important;

}
.quick-nav .container {
flex-direction: column !important;
align-items: center; /* Optional: center buttons horizontally */
}

.quick-nav .container a {
width: 100%; /* Make buttons full width (optional) */
margin-bottom: 5px; /* Space between buttons */
}
.btn-customs{margin-right: 0;}
.btn-towing {margin-right: 0;}

.navbar-collapse {
z-index: 1050;
position: relative; /* Required to apply z-index */

}

}


   
    
    
        body, html {
            margin: 0;
            padding: 0;
            
        }

        .hero-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .background-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-content {
            z-index: 1;
            padding: 20px;
            font-weight: 900;
        }
        .quick-nav {
    position: sticky !important;
    top: 70px; /* Adjust based on the height of your top navbar */
    z-index: 1030; /* Must be higher than other content */
}
   