        a {
            text-decoration: none;
        }

        /* 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;
        }



        .parallax-2 {
            background-image: url('../img/aerialx.jpg');
        }

        /* 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.2);
            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;
            }
        }

        /* For links pointing to #contact */
        a[href="#contact"] {
            display: inline-block;
            /* Ensures margin applies correctly */
            margin-bottom: 10px;
            /* Adjust as needed */
            padding-bottom: 5px;
            /* Optional: Adds internal spacing */
        }

        /* For sections or elements with id="contact" */
        #contact {
            margin-bottom: 15px;
            /* Adjust as needed */
            padding-bottom: 10px;
            /* Optional: Adds internal spacing */
        }

        /* Mobile-specific adjustments */
        @media (max-width: 768px) {
            a[href="#contact"] {
                margin-bottom: 12px;
                /* Increase for mobile if needed */
                padding-bottom: 8px;
            }

            #contact {
                margin-bottom: 20px;
                /* Increase for mobile if needed */
                padding-bottom: 15px;
            }
        }



        /* 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 */
        }

        .wow {
            visibility: hidden;
        }



        .fixed-thumb {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 5px;
        }

        .media-item {
            transition: transform 0.2s;
        }

        .media-item:hover {
            transform: scale(1.02);
        }

        .ms-gallery {
            padding: 20px;
        }



        /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

        :root {
            --nav-color: #212529;
            --nav-hover-color: #ff5821;
            --nav-mobile-background-color: #ffffff;
            --nav-dropdown-background-color: #ffffff;
            --nav-dropdown-color: #212529;
            --nav-dropdown-hover-color: #ff5821;
        }

        .light-background {
            --background-color: #fffaf9;
            --surface-color: #ffffff;
        }

        .dark-background {
            --background-color: #1d1918;
            --default-color: #ffffff;
            --heading-color: #ffffff;
            --surface-color: #39312f;
            --contrast-color: #ffffff;
        }

        /* Smooth scroll */
        :root {
            scroll-behavior: smooth;
        }

        .hero {
            width: 100%;
            min-height: 100vh;
            padding: 80px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero img {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero:before {
            content: "";
            background: color-mix(in srgb, var(--background-color), transparent 60%);
            position: absolute;
            inset: 0;
            z-index: 2;
        }

        .hero .container {
            z-index: 3;
        }

        .hero .welcome h2 {
            margin: 0;
            font-size: 48px;
            font-weight: 700;
        }

        .hero .welcome p {
            font-size: 24px;
            margin: 0;
        }

        .hero .content {
            margin-top: 40px;
        }

        .hero .content .why-box {
            color: var(--contrast-color);
            background: var(--accent-color);
            padding: 30px;
            border-radius: 4px;
        }

        #whybox:hover {
            background-color: dimgray !important;
        }


        .hero .content .why-box h3 {
            color: var(--contrast-color);
            font-weight: 700;
            font-size: 34px;
            margin-bottom: 30px;
        }

        .hero .content .why-box p {
            margin-bottom: 30px;
        }

        .hero .content .why-box .more-btn {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--contrast-color), transparent 80%);
            display: inline-block;
            padding: 6px 30px 8px 30px;
            border-radius: 50px;
            transition: all ease-in-out 0.4s;
        }

        .hero .content .why-box .more-btn i {
            font-size: 14px;
        }

        .hero .content .why-box .more-btn:hover {
            background: var(--contrast-color);
            color: var(--accent-color);
            color: black !important;
        }

        .hero .content .icon-box {
            background: color-mix(in srgb, var(--surface-color), transparent 20%);
            text-align: center;
            border-radius: 10px;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            padding: 40px 30px;
            width: 100%;
        }

        .hero .content .icon-box:hover {
            background: #ff5821;

        }

        .hero .content .icon-box i {
            font-size: 40px;
            color: var(--accent-color);
        }

        .hero .content .icon-box h4 {
            font-size: 20px;
            font-weight: 700;
            margin: 10px 0 20px 0;
        }

        .hero .content .icon-box p {
            font-size: 15px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

        #info-bar {
            transition: top 0.3s ease;
            z-index: 1040;
            /* above navbar (default Bootstrap navbar is 1030) */
        }











        body.info-bar-hidden {
            padding-top: 40px;
            /* Only navbar height when info bar is hidden */
        }

        /* Quick Nav */
        .quick-nav {
            top: 88px;
            /* Default: below info bar + navbar */
            z-index: 1010;
            transition: top 0.3s ease;
            /* Smooth transition */
        }



        /* Responsive Adjustments */
        @media (max-width: 768px) {


            .quick-nav {
                top: 70px;
                /* Default: below info bar + navbar */
                z-index: 1010;
                transition: top 0.3s ease;
                /* Smooth transition */
            }


        }

        #towingx,
        #tradingx,
        #customsx {
            box-shadow:
                0 0 10px rgba(255, 255, 255, 0.2),
                0 0 20px rgba(255, 255, 255, 0.15),
                0 0 30px rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        @keyframes breathing-glow {
            0% {
                box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.3);
            }

            50% {
                box-shadow: 0 0 18px 6px rgba(255, 255, 255, 0.6);
            }

            100% {
                box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.3);
            }
        }

        #whybox {
            animation: breathing-glow 4s ease-in-out infinite;
            border-radius: 10px;
        }

        .glow-text {
            color: white;
            font-size: 50px;
            animation: breathing-glow 3s ease-in-out infinite;

        }




        @keyframes glowBreathe {

            0%,
            100% {
                text-shadow: 0 0 5px #ff4500, 0 0 10px #ff6347, 0 0 15px #ff4500;
                opacity: 1;
            }

            50% {
                text-shadow: 0 0 15px #ff4500, 0 0 25px #ff6347, 0 0 35px #ff4500;
                opacity: 0.85;
            }
        }

        .glow-breathe {
            animation: glowBreathe 2.5s ease-in-out infinite;
            display: inline-block;
        }