/* Fixed Container */
    .floating-contact-right {
position: fixed;
        right: 2px;
        top: 50%;
        transform: translateY(-50%); /* Centered vertically on the right edge */
        display: flex;
        flex-direction: column; /* Stacks icons vertically */
        gap: 10px;
        z-index: 10000;
        background: transparent; /* Subtle dark background */
        padding: 15px 10px;
        border-radius: 30px 0 0 30px; /* Rounded on the left side only */
        backdrop-filter: blur(8px);
        border: 1px solid var(--gold);
        border-right: none; /* Merges with the edge of the screen */
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }

    /* Base Button Style */
    .float-btn {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-decoration: none;
    }

    .float-btn:hover { transform: translateY(-5px) scale(1.05); }

    /* Brand Colors */
    .instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
    .whatsapp { background-color: #25D366; }
    .call { background-color: var(--gold); } /* Uses your predefined Gold variable */

    .float-btn img, .float-btn svg { width: 30px; height: 30px; }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .float-btn { width: 48px; height: 48px; }
        .float-btn img, .float-btn svg { width: 25px; height: 25px; }
        .floating-contact { bottom: 15px; right: 15px; gap: 8px; }
    }
   :root {
            --gold: #D4AF37;
            --black: #0a0a0a;
            --white: #ffffff;
            --gray: #f4f4f4;
        }

        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            background-color: var(--white);
            color: var(--black);
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            background: var(--black);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--gold);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            margin-left: 2rem;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        /* 1. Flexbox container to align logo and text */
    .brand-identity {
        display: flex;
        align-items: center;
        text-decoration: none;
        gap: 15px; /* Space between the image and the text */
    }

    /* 2. Style for the logo image */
    .nav-logo {
        height: 70px; /* Adjust based on your logo proportions */
        width: auto;
        display: block;
    }

    /* 3. Style for the title text on the right */
    .nav-title {
        font-family: 'Playfair Display', serif;
        color: var(--gold);
        font-size: 1.4rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 700;
        /* Ensures text doesn't wrap awkwardly on small screens */
        white-space: nowrap;
    }

    /* 4. Mobile Responsiveness */
    @media (max-width: 768px) {
        nav {
            flex-direction: column;
            padding: 1rem;
        }
        .nav-links {
            margin-top: 15px;
        }
        .nav-title {
            font-size: 1.1rem;
        }
        .nav-logo {
            height: 40px;
        }
    }

        /* Hero Carousel Section */
        .hero {
            height: 80vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('your-alphard-exterior.jpg'); /* Replace with your image */
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }
        /* Carousel Start */
        .carousel-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
        display: flex;
        gap: 10px;
    }
    .dot {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }
    .dot.active {
        background: var(--gold);
        transform: scale(1.2);
    }
    .carousel-container {
    position: relative;
    width: 100%;
    height: 85vh; /* Takes up most of the screen for impact */
    overflow: hidden;
    background-color: var(--black);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The active slide becomes visible and starts a slow zoom */
.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    animation: zoomEffect 8s infinite alternate;
}

/* Subtle dark overlay to make your Gold/White text pop */
.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}
/* services Start */
    :root { --gold: #D4AF37; --black: #0a0a0a; --white: #ffffff; }
        
        body { margin: 0; font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); }

        /* Navigation */
        nav { 
            background: var(--black); 
            padding: 1rem 5%; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            border-bottom: 2px solid var(--gold);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.2rem; text-transform: uppercase; text-decoration: none; letter-spacing: 2px; }
        .nav-links a { color: var(--white); text-decoration: none; margin-left: 1.5rem; font-size: 0.9rem; font-weight: 600; }

        /* Header */
        .services-header {
            background: var(--black);
            color: var(--white);
            padding: 4rem 10%;
            text-align: center;
        }
        .services-header h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); margin: 0; }

        /* Category Grid */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            padding: 4rem 5%;
        }

        .category-card {
            background: var(--white);
            border: 1px solid #eee;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .category-card:hover { transform: translateY(-5px); border-color: var(--gold); }

        /* Moving Carousel Styling */
        .mini-carousel {
            position: relative;
            height: 300px;
            width: 100%;
            overflow: hidden;
            background: #000;
        }
        .m-slide {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }
        .m-slide.active { opacity: 1; }

        .card-text { padding: 1.5rem; }
        .card-text h3 { font-family: 'Playfair Display', serif; color: var(--black); margin-bottom: 0.5rem; }
        .card-text p { font-size: 0.95rem; color: #555; line-height: 1.5; }

        /* Fleet Features */
        .features-section {
            background: var(--black);
            color: var(--white);
            padding: 4rem 10%;
            text-align: center;
        }
        .features-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        .feature-item {
            border: 1px solid var(--gold);
            padding: 10px 20px;
            color: var(--gold);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        footer { background: #000; color: #666; padding: 2rem; text-align: center; font-size: 0.8rem; }
/* services End */
/* testimonials Start */
/* Testimonial Specific Styles */
    .testimonial-slider {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .t-slide {
        position: absolute;
        width: 100%;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        visibility: hidden;
    }

    .t-slide.active {
        opacity: 1;
        visibility: visible;
    }

    .quote-text {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .client-name {
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .t-dots {
        position: absolute;
        bottom: -40px;
        display: flex;
        gap: 10px;
    }

    .t-dot {
        width: 10px;
        height: 10px;
        border: 1px solid var(--gold);
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }

    .t-dot.active {
        background: var(--gold);
        transform: scale(1.2);
    }
/* testimonials End */

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 0 10%;
    max-width: 1000px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem); /* Responsive font sizing */
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Zoom animation for that high-end cinematic look */
@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Navigation Dots Styling */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    background: var(--gold);
    width: 30px; /* Stretches the active dot for a modern look */
    border-radius: 10px;
}
        /* Carousel End*/

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            max-width: 800px;
        }

        .cta-button {
            background-color: var(--gold);
            color: var(--black);
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 2px;
            transition: transform 0.3s;
        }

        .cta-button:hover {
            transform: scale(1.05);
        }

        /* Sections */
        section {
            padding: 5rem 10%;
        }

        .section-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--gold);
            margin: 10px auto;
        }

        /* Safety Standards Grid */
        .standards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .standard-card {
            background: var(--black);
            color: var(--white);
            padding: 2rem;
            border-top: 4px solid var(--gold);
            text-align: center;
        }

        .standard-card h3 {
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .service-item {
            border: 1px solid #ddd;
            padding: 1rem;
            transition: 0.3s;
        }

        .service-item:hover {
            border-color: var(--gold);
        }

        /* Testimonials */
        .testimonials {
            background: var(--gray);
            text-align: center;
        }

        .quote {
            font-style: italic;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Footer */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 3rem 10%;
            text-align: center;
            border-top: 2px solid var(--gold);
        }
        /* Services Start */
                :root { --gold: #D4AF37; --black: #0a0a0a; --white: #ffffff; }
        body { margin: 0; font-family: 'Inter', sans-serif; }
        nav { background: var(--black); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--gold); }
        .logo { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.2rem; text-transform: uppercase; text-decoration: none; }
        .nav-links a { color: var(--white); text-decoration: none; margin-left: 1.5rem; font-size: 0.9rem; }

        .service-header { background: var(--black); color: var(--white); padding: 5rem 5%; text-align: center; }
        .service-header h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin: 0; }

        .fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 0; background: var(--white); }
        .service-card { position: relative; height: 400px; overflow: hidden; border: 1px solid #eee; }
        .service-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .service-card:hover img { transform: scale(1.1); }
        .service-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.8); color: white; padding: 1.5rem; }
        .service-overlay h3 { color: var(--gold); margin: 0 0 5px 0; font-family: 'Playfair Display', serif; }

        .features-section { background: var(--black); color: var(--white); padding: 4rem 10%; text-align: center; }
        .feature-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2rem; }
        .feature-item { border: 1px solid var(--gold); padding: 10px 20px; color: var(--gold); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

        @media (max-width: 600px) { .fleet-grid { grid-template-columns: 1fr; } }
        /* Services End */
        /* About Start */
        :root { --gold: #D4AF37; --black: #0a0a0a; --white: #ffffff; }
        body { margin: 0; font-family: 'Inter', sans-serif; color: var(--black); line-height: 1.8; }
        nav { background: var(--black); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--gold); }
        .logo { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.2rem; text-transform: uppercase; text-decoration: none; }
        .nav-links a { color: var(--white); text-decoration: none; margin-left: 1.5rem; font-size: 0.9rem; }
        
        .header-banner { background: var(--black); color: var(--white); padding: 6rem 5%; text-align: center; }
        .header-banner h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); margin: 0; }

        .content-section { padding: 4rem 10%; max-width: 900px; margin: 0 auto; }
        .mission-box { background: var(--black); color: var(--white); padding: 3rem; text-align: center; border-left: 5px solid var(--gold); margin: 3rem 0; }
        .mission-box h2 { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-top: 0; }
        
        .vision-footer { text-align: center; padding: 4rem 5%; background: #f9f9f9; }
        .vision-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: bold; font-style: italic; }
        
        footer { background: var(--black); color: #666; padding: 2rem; text-align: center; font-size: 0.8rem; }
        /* About End */
        /* Mobile Optimization */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            nav { flex-direction: column; text-align: center; }
            .nav-links { margin-top: 1rem; }
            .nav-links a { margin: 0 10px; }
        }