/* Styles copied from page-postuler.php for consistency */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    
    direction: rtl;
}
.work-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.work-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.work-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.work-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.work-hero .hero-content {
    color: white;
    text-align: center;
}
.work-hero .hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.work-hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 0;
}
.job-details-section .job-details-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.job-details-section .job-full-content {
    line-height: 1.8;
}
.application-form-section .form-title {
    color: #333;
    font-weight: bold;
    margin-bottom: 1rem;
}
.application-form-section .form-description {
    color: #666;
    margin-bottom: 2rem;
}
.application-form-section .application-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.application-form .form-control[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

/* Job Post Page Styles */
body, html {       
    direction: rtl;
}
#job-post-page {
    background: #f8f9fa;
}

/* Job Details Section */
.job-details {
    background: white;
    padding: 3rem 0;
}

.job-header {
    margin-bottom: 2rem;
}

.job-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003566;
    margin-bottom: 1rem;
}

.job-meta {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.job-meta span {
    margin-right: 1rem;
}

.job-meta i {
    color: #0077b6;
    margin-right: 0.5rem;
}

.job-salary {
    font-size: 1.2rem;
    font-weight: 600;
    color: #003566;
}

.job-description h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #003566;
    margin-bottom: 1rem;
}

.job-description p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Application Form Section */
.application-form-section {
    background: #f8f9fa;
}

.application-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 53, 102, 0.1);
}

.application-form .form-group {
    margin-bottom: 1.5rem;
}

.application-form label {
    font-weight: 600;
    color: #003566;
    margin-bottom: 0.5rem;
    display: block;
}

.application-form .form-control,
.application-form .form-control-file,
.application-form .form-control:focus {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 0.75rem;
    font-size: 1rem;
}

.application-form .form-control:focus {
    border-color: #0077b6;
    box-shadow: 0 0 5px rgba(0, 119, 182, 0.3);
}

.application-form .btn-primary {
    background: #0077b6;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.application-form .btn-primary:hover {
    background: #005a8d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 53, 102, 0.2);
}

/* Hero Section */
.job-hero {
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 53, 102, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}


    body, html {       
        direction: rtl;
    }

    .category-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        color: #003566;
    }

    .card {
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .card-img-top {
        height: 200px;
        object-fit: cover;
    }

    .card-title {
        font-size: 1.2rem;
        font-weight: bold;
        color: #003566;
    }

    .card-text {
        font-size: 0.9rem;
        color: #555;
    }

    .btn-primary {
        background-color: #003566;
        border-color: #003566;
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #0056b3;
    }

    /* Parking Card */

    #why-choose-us, #statistics, #parking-list, #testimonials {
    padding: 50px 20px;
    text-align: center;
    }

    .parking-cards, .testimonial-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    }

    .parking-item, .testimonial-item {
    padding: 20px;
    border: 1px solid #ccc;
    }

    .parking-btn{
        background: #005f8a;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: background 0.3s ease;
    }

    .parking-btn i{
        display: inline-block;
        text-decoration: none;
        font-weight: 600;
        font-size: 2em;
    }

    .parking-btn:hover{
        background: #0077b6;
        color: white;
    }

    .parking-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        transition: transform 0.1s ease; /* Only apply transition to the card scaling */
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }


    /* Parking Image */
    .parking-image {
        width: 100%;
        height: 300px !important;
        object-fit: cover; /* Ensures all images have the same height and are cropped proportionally */
        transition: transform 0.3s ease;
    }


    /* Bottom Section (20% Primary Color with Always Visible Title) */
    .card-info-overlay {
        background-color: rgba(0, 53, 102, 0.4); /* Primary color with opacity */
        height: 20%; /* Covers 20% of the card */
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: background-color 0.3s ease;
    }

    .parking-card:hover  .card-info-overlay {
        opacity: 0;
    }

    .always-visible-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #fff; /* White text for the title */
        margin: 0;
    }

    /* Hover Content (Title, Description, and Buttons) */
    .hover-content {
        background-color: rgba(0, 53, 102, 0.6); /* Primary color with opacity */
        opacity: 0; /* Initially hidden */
        visibility: hidden; /* Prevent interaction when hidden */
        transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth fade-in */
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hover-content .btn{
        color: #fff;
        border: 2px solid #fff;
        padding: 10px 20px;
        border-radius: 5px;
        font: inherit;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .hover-content .hover-title {
        font-size: 2.2rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .hover-content p {
        font-size: 0.9rem;
        margin: 5px 0;
    }

    .parking-card:hover .hover-content {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile (width < 576px) */
    @media (max-width: 575px) {
        .parking-card {
            margin-bottom: 20px;
        }

        .service-buttons button {
            font-size: 0.7rem;
            padding: 4px 8px;
        }
    }

    /* Mobile (width < 576px) */
    @media (max-width: 575px) {
        .testimonial-card {
            max-width: 90%; /* Full width for mobile */
            margin: 20px;
        }
        .parking-card {
            max-width: 90%; /* Full width for mobile */
            margin: 20px;
        }
        .why-choose-video video {
        width: 100%;
        height: 450px; /* Adjust height as needed */
        display: block;

        object-fit: cover; /* Ensures video covers the container */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
        transition: transform 0.3s ease;
    }
    }





    

    * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            
            body {
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
                line-height: 1.6;
                color: #333;
                background-color: #f9f9f9; /* Light background for the page */
            }

            html {
                scroll-behavior: smooth;
            }

            /* Top Header */
            .top-header {
                background: linear-gradient(135deg, #003566 0%, #00509e 100%);
                color: #ffffff;
                padding: 10px 0;
                font-size: 0.875em;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .top-header-container {
                max-width: 1800px;
                margin: 0 auto;
                padding: 0 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
            }

            .top-header-left {
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .top-header-right {
                display: flex;
                gap: 20px;
                align-items: center;
                flex-wrap: wrap;
            }

            .contact-item {
                display: flex;
                align-items: center;
                gap: 6px;
                color: #ffffff;
                text-decoration: none;
                transition: color 0.3s ease, transform 0.3s ease;
            }

            .contact-item:hover {
                color: #ffd700; /* Gold accent */
                transform: translateY(-1px);
            }

            .contact-item i {
                font-size: 1em; /* Relative to parent font-size */
            }

            /* Main Header */
            .main-header {
                background: #ffffff;
                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
                position: sticky;
                top: 0;
                z-index: 1000;
                transition: box-shadow 0.3s ease;
            }
            
            .main-header.scrolled {
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
            }

            .header-container {
                max-width: 1800px;
                margin: 0 auto;
                padding: 0 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                height: 75px; /* Slightly adjusted height */
            }

            .logo a {
                display: inline-block; /* Ensures transform works correctly */
                transition: transform 0.3s ease;
            }
            
            .logo img, .custom-logo { /* Target both fallback and WP logo */
                height: 60px; /* Adjust as needed */
                width: auto;
                
                display: block;
            }

            .logo a:hover {
                transform: scale(1.03);
            }

            /* Navigation */
            .main-navigation {
                display: flex;
                align-items: center;
            }

            .main-navigation ul {
                list-style: none;
                display: flex;
                gap: 10px; /* Reduced gap for potentially more items */
                margin: 0;
                padding: 0;
            }

            .main-navigation ul li {
                position: relative;
            }

            .main-navigation ul li a {
                color: #2c3e50; /* Darker, more readable text */
                text-decoration: none;
                font-weight: 500;
                padding: 12px 18px; /* Slightly more padding */
                border-radius: 6px;
                transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
                display: block;
                position: relative;
                overflow: hidden;
            }
            
            .main-navigation ul li a:after { /* Underline effect */
                content: '';
                position: absolute;
                bottom: 6px; /* Position underline nicely */
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 2px;
                background-color: #00509e;
                transition: width 0.3s ease;
            }

            .main-navigation ul li a:hover,
            .main-navigation ul li.current-menu-item > a, /* Highlight current page */
            .main-navigation ul li.current-menu-ancestor > a { /* Highlight parent of current page */
                color: #00509e;
                background-color: rgba(0, 80, 158, 0.05); /* Very subtle background */
            }
            
            .main-navigation ul li a:hover:after,
            .main-navigation ul li.current-menu-item > a:after,
            .main-navigation ul li.current-menu-ancestor > a:after {
                width: 60%; /* Width of underline on hover/active */
            }


            /* Mobile Menu Toggle */
            .mobile-menu-toggle {
                display: none;
                cursor: pointer;
                padding: 10px;
                background: transparent;
                border: none;
                z-index: 1001; /* Above mobile menu */
            }

            /* Mobile Menu Toggle Icon Lines */
            .mobile-menu-toggle .line {
                display: block;
                width: 26px;
                height: 3px;
                background-color: #003566;
                margin: 5px 0;
                transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                border-radius: 1px;
            }

            .mobile-menu-toggle .sr-only { /* Keep this for accessibility */
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: -1px;
                overflow: hidden;
                clip: rect(0, 0, 0, 0);
                white-space: nowrap;
                border-width: 0;
            }

            .mobile-menu-toggle.active .line1 {
                transform: rotate(45deg) translate(6px, 6px);
            }

            .mobile-menu-toggle.active .line2 {
                opacity: 0;
                transform: translateX(-20px);
            }

            .mobile-menu-toggle.active .line3 {
                transform: rotate(-45deg) translate(6px, -6px); /* Adjusted for symmetry */
            }

            /* Mobile Styles */
            @media (max-width: 1100px) { /* Adjusted breakpoint for tablets */
                .header-container {
                    height: 70px;
                }
                .logo img, .custom-logo {
                    height: 55px;
                }
                .main-navigation {
                    position: fixed; /* Changed to fixed for full screen overlay feel */
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100vh;
                    background: rgba(255, 255, 255, 0.98); /* Slightly transparent white */
                    backdrop-filter: blur(5px);
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    transform: translateX(100%); /* Slide in from right */
                    opacity: 0;
                    visibility: hidden;
                    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, visibility 0.3s ease;
                    padding-top: 80px; /* Space for header */
                }

                .main-navigation.active {
                    transform: translateX(0);
                    opacity: 1;
                    visibility: visible;
                }

                .main-navigation ul {
                    flex-direction: column;
                    gap: 15px;
                    width: 80%;
                    max-width: 300px;
                    text-align: center;
                }

                .main-navigation ul li a {
                    font-size: 1.2em; /* Larger text for mobile menu */
                    padding: 15px 20px;
                    border-radius: 8px;
                    background-color: rgba(0, 80, 158, 0.03);
                }
                
                .main-navigation ul li a:hover,
                .main-navigation ul li.current-menu-item > a,
                .main-navigation ul li.current-menu-ancestor > a {
                    background-color: rgba(0, 80, 158, 0.1);
                    color: #003566;
                }
                
                .main-navigation ul li a:after { /* Remove underline for mobile items */
                    display: none;
                }

                .mobile-menu-toggle {
                    display: block; /* Changed from flex to block */
                }
            }

            @media (max-width: 767px) {
                .top-header-container {
                    flex-direction: column;
                    gap: 8px;
                    text-align: center;
                    padding: 10px 15px;
                }
                .top-header-right {
                    justify-content: center;
                    gap: 15px;
                }
                .header-container {
                    padding: 0 15px;
                    height: 65px;
                }
                .logo img, .custom-logo {
                    height: 45px;
                }
            }


            /*--------------------------------------------------------------

            /* Main Menu */
    .main-navigation .menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 20px;
    }

    .main-navigation .menu > li {
        position: relative;
    }

    .main-navigation .menu > li > a {
        text-decoration: none;
        color: #333;
        padding: 10px 15px;
        display: block;
        transition: color 0.3s ease;
    }



    /* Submenu */
    .main-navigation .sub-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 100%; /* Position below the parent menu item */
        left: 0;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none; /* Hide submenu by default */
        z-index: 1000;
    }

    .main-navigation .sub-menu li {
        position: relative;
    }

    .main-navigation .sub-menu li a {
        text-decoration: none;
        color: #333;
        padding: 10px 15px;
        display: block;
        white-space: nowrap; /* Prevent text wrapping */
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .main-navigation .sub-menu li a:hover {
        background-color:   rgba(0, 80, 158, 0.05); /* Primary color */
        color: #003566;
    }

    /* Show Submenu on Hover */
    .main-navigation .menu > li:hover > .sub-menu {
        display: block; /* Show submenu on hover */
    }



    /*--------------------------------------------------------------
            /* Language Switcher Styles */
            .language-switcher {
                margin-left: 20px;
            }

            .language-switcher select {
                padding: 8px 12px;
                border: 1px solid #00509e;
                border-radius: 4px;
                background-color: #ffffff;
                color: #00509e;
                font-size: 1em;
                transition: border-color 0.3s ease, background-color 0.3s ease;
            }

            .language-switcher select:hover,
            .language-switcher select:focus {
                border-color: #003566;
                background-color: rgba(0, 53, 102, 0.05);
                outline: none;
            }


            /*--------------------------------------------------------------



    /* Social Media Icons */
    .social-media-icons {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
        display: flex;
        gap: 15px; /* Gap between icons */
    }

    .social-media-icons li a {
        color: #adb5bd;
        font-size: 1.3em;
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border: 1px solid #495057; /* Darker grey border */
        border-radius: 50%;
        transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }

    .social-media-icons li a:hover {
        color: #002a4e; /* Icon color changes to footer background */
        background-color: #ffd700; /* Gold accent background */
        border-color: #ffd700;
        transform: translateY(-3px) scale(1.05);
    }

    /* Footer Contact Info */
    .footer-widget .contact-title {
        margin-top: 20px;
    }
    .footer-contact-info {
        font-size: 0.95em;
    }
    .footer-contact-info i {
        color: #ffd700; /* Gold accent for icons */
        margin-right: 8px;
        width: 15px; /* Align icons */
        text-align: center;
    }
    .footer-contact-info a {
        color: #adb5bd;
        text-decoration: none;
    }
    .footer-contact-info a:hover {
        color: #ffffff;
    }


    /* Site Info (Copyright) */
    .site-info {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #495057; /* Separator line */
        font-size: 0.85em;
    }

    .site-info p {
        margin: 0;
    }

    .site-info a {
        color: #adb5bd;
        text-decoration: none;
        font-weight: 500;
    }

    .site-info a:hover {
        color: #ffffff;
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 25px;
        right: 25px;
        display: none; /* Hidden by default, shown by JS */
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        background-color: #00509e; /* Header's secondary blue */
        color: #ffffff;
        border-radius: 50%;
        font-size: 1.1em;
        text-decoration: none;
        z-index: 999;
        transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .back-to-top:hover {
        background-color: #003566; /* Header's primary blue */
        transform: translateY(-3px);
    }

    .back-to-top.visible {
        display: block;
        opacity: 1;
        visibility: visible;
    }


    /* Responsive adjustments for footer */
    @media (max-width: 991px) {
        .footer-widget {
            min-width: calc(50% - 30px); /* Two columns on tablets */
        }
    }

    @media (max-width: 767px) {
        .footer-widgets-area {
            flex-direction: column; /* Stack widgets on mobile */
            gap: 40px; /* Increased gap when stacked */
        }
        .footer-widget {
            min-width: 100%;
            padding-left: 0;
            padding-right: 0;
            text-align: center; /* Center content on mobile */
        }
        .footer-widget .widget-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .social-media-icons {
            justify-content: center; /* Center social icons */
        }
        .footer-contact-info {
            text-align: center;
        }
        .footer-contact-info i {
            display: block; /* Icons on their own line for clarity */
            margin: 5px auto;
        }
    }
    /* Custom Slider Styles */
    .custom-slider-container {
        position: relative;
        width: 100%;
        max-width: 100vw;
        margin: 0 auto;
        overflow: hidden;
        background-color: #333;
    }

    .custom-slider {
        position: relative; /* Important for absolute positioning of children */
        height: 80vh;
        min-height: 400px;
        max-height: 700px;
    }

    .slider-item {
        position: absolute; /* Stack slides on top of each other */
        top: 0;
        left: 0;
        width: 100%; /* Make item take full width of parent */
        height: 100%; /* Make item take full height of parent */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
    }

    .slider-item.active {
        opacity: 1;
        visibility: visible;
        z-index: 1; /* Ensure active slide is on top of others */
    }

    .slider-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .slider-caption {
        position: absolute;
        top: 50%;
        left: 0;
        margin-left: 10%;
        width: 50%;
        height: auto;
        z-index: 2;
        color: #fff;
        text-align: left;           /* Align text to the left */
        padding: 20px 30px;
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        transform: translateY(-50%); /* Vertically center */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start; 
    }

    .slider-background{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0; /* Behind the image */
        background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    }

    .slider-caption h5 {
        font-size: 2.2em; /* Larger title */
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .slider-caption p {
        font-size: 1.1em;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .slider-cta-button {
        display: inline-block;
        background-color: #ffd700; /* Gold accent from your footer */
        color: #003566; /* Dark blue text */
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-transform: uppercase;
        font-size: 0.9em;
    }

    .slider-cta-button:hover {
        background-color: #e6c300; /* Darker gold */
        transform: translateY(-2px);
    }

    /* Slider Controls (Prev/Next Arrows) */
    .slider-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        background-color: rgba(0, 0, 0, 0.4);
        color: #fff;
        border: none;
        padding: 15px;
        cursor: pointer;
        font-size: 1.5em;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }

    .slider-control:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

    .slider-control.prev {
        left: 20px;
    }

    .slider-control.next {
        right: 20px;
    }

    /* Slider Indicators (Dots) */
    .slider-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        gap: 10px;
    }

    .indicator-dot {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .indicator-dot.active,
    .indicator-dot:hover {
        background-color: #fff;
        transform: scale(1.1);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .custom-slider {
            height: 50vh; /* Adjust height for tablets */
            min-height: 350px;
        }
        .slider-caption {
            bottom: 8%;
            padding: 15px 20px;
            width: 90%;
        }
        .slider-caption h5 {
            font-size: 1.8em;
        }
        .slider-caption p {
            font-size: 1em;
            margin-bottom: 15px;
        }
        .slider-cta-button {
            padding: 10px 20px;
            font-size: 0.85em;
        }
        .slider-control {
            padding: 10px;
            font-size: 1.2em;
            width: 40px;
            height: 40px;
        }
        .slider-control.prev { left: 10px; }
        .slider-control.next { right: 10px; }
        .indicator-dot { width: 10px; height: 10px; }
    }

    @media (max-width: 480px) {
        .custom-slider {
            height: 45vh; /* Adjust height for mobile */
            min-height: 300px;
        }
        .slider-caption h5 {
            font-size: 1.5em;
        }
        .slider-caption p {
            font-size: 0.9em;
            display: none; /* Optionally hide caption paragraph on very small screens */
        }
        .slider-cta-button {
            padding: 8px 15px;
            font-size: 0.8em;
        }
    }

    /* ...existing code... */

    /* Update existing slider styles */
    .slider-caption {
        position: absolute;
        top: 50%;
        left: 0;
        width: 45%; /* Reduced width to make space for form */
        margin-left: 5%;
        height: auto;
        z-index: 2;
        color: #fff;
        text-align: left;
        padding: 20px 30px;
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    /* New styles for content container and form */
    .slider-content-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        gap: 30px;
    }

    .slider-form {

        
        width: 45%;
        position: relative;
        top: 55%;
        left: 50%;
        transform: translate(13%, -90%);
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        padding: 25px 20px;
        box-shadow: 0 8px 32px rgba(0, 53, 102, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }





    /* Form Header */
    .form-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #003566;
        margin-bottom: 0.5rem;
    }

    .form-header p {
        font-size: 0.9rem;
        color: #6c757d;
        margin: 0;
    }

    /* Service Toggle Buttons */
    .service-toggle {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        background: #f8f9fa;
        padding: 0.3rem;
        border-radius: 12px;
        border: 1px solid #e9ecef;
    }

    .service-toggle input[type="radio"] {
        display: none;
    }

    .toggle-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.8rem 0.5rem;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        text-align: center;
    }

    .toggle-btn i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        color: #6c757d;
        transition: all 0.3s ease;
    }

    .toggle-btn span {
        font-size: 0.8rem;
        font-weight: 600;
        color: #6c757d;
        transition: all 0.3s ease;
    }

    .service-toggle input[type="radio"]:checked + .toggle-btn {
        background: linear-gradient(135deg, #0077b6, #00b4d8);
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(0, 119, 182, 0.3);
    }

    .service-toggle input[type="radio"]:checked + .toggle-btn i,
    .service-toggle input[type="radio"]:checked + .toggle-btn span {
        color: white;
    }

    /* Form Groups */
    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        background: #ffffff;
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #0077b6;
        box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
    }

    /* Input with Currency */
    .input-with-currency {
        position: relative;
    }

    .input-with-currency input {
        padding-right: 2.5rem;
    }

    .currency {
        position: absolute;
        right: 0.8rem;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 600;
        color: #0077b6;
        font-size: 0.9rem;
    }

    /* Dynamic Sections */
    .dynamic-section {
        transition: all 0.3s ease;
    }

    /* Submit Button */
    .submit-btn {
        width: 100%;
        background: linear-gradient(135deg, #0077b6, #00b4d8);
        color: white;
        border: none;
        padding: 1rem;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
    }

    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }




    .slider-form h3 {
        margin-bottom: 20px;
        color: #003566;
        font-size: 1.3em;
        font-weight: 700;
        text-align: center;
    }

    .slider-form input,
    .slider-form select {
        width: 100%;
        margin-bottom: 15px;
        padding: 12px 14px;
        border-radius: 6px;
        border: 1px solid #ddd;
        font-size: 0.95em;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        font-family: inherit;
        background: rgba(255, 255, 255, 0.9);
    }

    .slider-form input:focus,
    .slider-form select:focus {
        outline: none;
        border-color: #00509e;
        box-shadow: 0 0 0 2px rgba(0, 80, 158, 0.1);
    }

    .slider-form button {
        width: 100%;
        background: linear-gradient(135deg, #00509e 0%, #003566 100%);
        color: #ffffff;
        border: none;
        padding: 12px 16px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 1em;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .slider-form button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 53, 102, 0.3);
    }

    .slider-form button i {
        font-size: 0.9em;
    }














    #hero {
    padding: 100px 20px;
    background: #003566;
    color: #fff;
    text-align: center;
    }

    #hero form {
    margin-bottom: 20px;
    }

    #hero input {
    padding: 10px;
    margin: 5px;
    }

    #services {
    padding: 50px 20px;
    text-align: center;
    }

    #services .cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    }

    .card {
    padding: 20px;
    border: 1px solid #ccc;
    }

    #why-choose-us, #statistics, #parking-list, #testimonials {
    padding: 50px 20px;
    text-align: center;
    }

    .parking-cards, .testimonial-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    }

    .parking-item, .testimonial-item {
    padding: 20px;
    border: 1px solid #ccc;
    }

    .parking-btn{
        background: #005f8a;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: background 0.3s ease;
    }

    .parking-btn i{
        display: inline-block;
        text-decoration: none;
        font-weight: 600;
        font-size: 2em;
    }

    .parking-btn:hover{
        background: #0077b6;
        color: white;
    }





    /* Cards Section */
    .why-choose-cards {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end; /* Align cards to the right */
        background-color: #003566; /* Primary background color */
        padding: 20px 20px;
        
        margin-top: 0%;
        border-radius: 10px;
        
    }

    .why-choose-card {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: calc(25% - 20px); /* 4 cards per row */
        margin: 10px;
        padding: 20px;
        padding-top: 5px;
        padding-bottom: 5px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }

    .why-choose-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .card-icon {
        font-size: 2em;
        color: #ffd700; /* Accent color */
        margin-bottom: 10px;
    }

    .card-content h4 {
        font-size: 1.2em;
        color: #003566;
        margin-bottom: 8px;
    }

    .card-content p {
        font-size: 1em;
        color: #555;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .why-choose-card {
            width: calc(50% - 20px); /* 2 cards per row */
        }
    }

    @media (max-width: 767px) {
        .why-choose-card {
            width: calc(100% - 20px); /* 1 card per row */
        }
    }

    /* Statistics Section */
    .statistics-section {
        position: relative;
        width: 100%;
        color: #fff;
        overflow: hidden;
    }

    .statistics-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .statistics-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 53, 102, 0.6); /* Primary color with opacity */
        z-index: 2;
    }

    .statistics-section .container {
        position: relative;
        z-index: 3; /* Ensure content is above the overlay */
    }

    .statistics-section h2 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .statistic-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .stat-icon {
        color: #ffd700; /* Accent color for icons */
    }

    .stat-content h3 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .stat-content p {
        font-size: 1rem;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .statistics-section h2 {
            font-size: 2rem;
        }

        .stat-content h3 {
            font-size: 1.5rem;
        }

        .stat-content p {
            font-size: 0.9rem;
        }
    }



    /* Utilise le sélecteur .carousel pour assurer que ton style prend le pas sur Bootstrap */
    .carousel .carousel-control-prev,
    .carousel .carousel-control-next {
        
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        background-color: #003566 !important;
        color: #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    opacity: 1 !important;
        transition: background-color 0.3s ease !important;
        border: none !important;
    }

    /* Gap sur grand écran */
    @media (min-width: 992px) {
        .carousel .carousel-control-prev {
            left: -70px !important;
        }

        .carousel .carousel-control-next {
            right: -70px !important;
        }
    }


    /* Parking Card */
    .parking-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        transition: transform 0.1s ease; /* Only apply transition to the card scaling */
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .parking-card:hover {
        border-radius: 10px; /* Maintain border radius on hover */
    }

    /* Parking Image */
    .parking-image {
        width: 100%;
        height: 300px !important;
        object-fit: cover; /* Ensures all images have the same height and are cropped proportionally */
        transition: transform 0.3s ease;
    }


    /* Bottom Section (20% Primary Color with Always Visible Title) */
    .card-info-overlay {
        background-color: rgba(0, 53, 102, 0.4); /* Primary color with opacity */
        height: 20%; /* Covers 20% of the card */
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: background-color 0.3s ease;
    }

    .parking-card:hover  .card-info-overlay {
        opacity: 0;
    }

    .always-visible-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #fff; /* White text for the title */
        margin: 0;
    }

    /* Hover Content (Title, Description, and Buttons) */
    .hover-content {
        background-color: rgba(0, 53, 102, 0.6); /* Primary color with opacity */
        opacity: 0; /* Initially hidden */
        visibility: hidden; /* Prevent interaction when hidden */
        transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth fade-in */
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hover-content .btn{
        color: #fff;
        border: 2px solid #fff;
        padding: 10px 20px;
        border-radius: 5px;
        font: inherit;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .hover-content .hover-title {
        font-size: 2.2rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .hover-content p {
        font-size: 0.9rem;
        margin: 5px 0;
    }

    .parking-card:hover .hover-content {
        opacity: 1;
        visibility: visible;
    }

    /* Service Buttons (Always Visible) */
    .service-buttons {
        z-index: 3; /* Ensure buttons are above the overlay */
        opacity: 1; /* Always visible */
        transition: opacity 0.3s ease;
    }

    .service-buttons button {
        font-size: 0.8rem;
        padding: 5px 10px;
        border-radius: 5px;
    }

    /* Responsive Design */

    /* Mobile (width < 576px) */
    @media (max-width: 575px) {
        .parking-card {
            margin-bottom: 20px;
        }

        .service-buttons button {
            font-size: 0.7rem;
            padding: 4px 8px;
        }
    }
    /* End Parking cards */
    /* Hover */
    .carousel .carousel-control-prev:hover,
    .carousel .carousel-control-next:hover {
        background-color: #02204d !important;
        color: #ffc107 !important;
    }

    .card-info .btn.btn-primary {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem;
        font-weight: bold;
        border-radius: 5px;
    }

    .card-info .btn.btn-outline-primary {
        padding: 0.75rem;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        font-size: 1rem;
        align-items: center;
        justify-content: center;
        display: flex;
        border: 2px solid #003566;
        color: #003566!important;
        background: #fff!important;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .card-info .btn.btn-outline-primary:hover {
        background: #003566!important;
        color: #fff!important;
    }




    /* Testimonials and Form Styles */
    /* Testimonials Section */
    .testimonials-section {
        background-color: #f8f9fa; /* Light background for contrast */
    }

    .testimonial-card {
        max-width: 500px;
        border: 1px solid #e1e8ed;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        text-align: center;
        
    }

    .quote-icon {
        font-size: 2rem;
        color: #003566;
    }

    .testimonial-text {
        font-size: 1rem;
        color: #555;
        line-height: 1.5;
    }

    .testimonial-name {
        font-size: 1.2rem;
        color: #003566; /* Primary color */
    }

    .testimonial-stars i {
        font-size: 1rem;
    }

    .client-image {
        width: 60px;
        height: 60px;
        bottom: -10px;
        left: 10px;
        z-index: 2;
    }

    .client-image img {
        position: absolute;
        width: 100%;
        height: 100%;
        margin-left: -80px;
        margin-top: -20px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #fff;
    }



    /* Partenaires Form */
    /* Nos Clients et Partenaires de Confiance Section */
    .clients-partners-section {
        position: relative;
        background-color: #f8f9fa; /* Fallback color */
        overflow: hidden;
    }

    .clients-bg img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 1; /* Add transparency to the background image */
    }

    .clients-partners-section .container {
        position: relative;
        z-index: 2; /* Ensure content is above the background image */
    }

    .partner-logo {
        max-width: 100px; /* Limit the size of logos */
        height: auto;
        transition: transform 0.3s ease;
    }

    .partner-logo:hover {
        transform: scale(1.1); /* Slight zoom effect on hover */
    }

    /* Responsive Design */

    /* Mobile (width < 576px) */
    @media (max-width: 575px) {
        .partner-logo {
            max-width: 80px; /* Smaller logos on mobile */
        }
    }

    /* Tablet (576px <= width < 992px) */
    @media (min-width: 576px) and (max-width: 991px) {
        .partner-logo {
            max-width: 90px; /* Adjust logo size for tablets */
        }
    }

    /* Laptop and Larger (width >= 992px) */
    @media (min-width: 992px) {
        .partner-logo {
            max-width: 100px; /* Standard logo size for laptops and larger screens */
        }
    }

    /* Mobile (width < 576px) */
    @media (max-width: 575px) {
        .testimonial-card {
            max-width: 90%; /* Full width for mobile */
            margin: 20px;
        }
        .parking-card {
            max-width: 90%; /* Full width for mobile */
            margin: 20px;
        }
        .why-choose-video video {
        width: 100%;
        height: 450px; /* Adjust height as needed */
        display: block;

        object-fit: cover; /* Ensures video covers the container */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
        transition: transform 0.3s ease;
    }
    }

    /* Page Header Section */
    .page-header-section {
        position: relative;
        width: 100%;
        height: 150px; /* Adjust height as needed */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .page-header-section .background-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: 1;
    }

    .page-header-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4); /* Black with 0.4 opacity */
        z-index: 2;
    }

    .page-header-section .page-title {
        position: relative;
        z-index: 3;
    }

    .page-header-section .page-title h1 {
        font-size: 2.5rem; /* Adjust font size as needed */
        font-weight: bold;
        margin: 0;
        color: #fff; /* White text */
        text-transform: uppercase;
    }


    /* Testimonials Section */
    .testimonials-section {
        padding: 5rem 0;
    }

    .testimonials-slider {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .testimonial-card {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 53, 102, 0.1);
        transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
    }

    .testimonial-rating {
        color: #ffd700;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-style: italic;
        color: #495057;
        margin-bottom: 2rem;
        line-height: 1.6;
        font-size: 1.1rem;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .author-name {
        font-weight: 600;
        color: #003566;
        margin-bottom: 0.25rem;
    }

    .author-position {
        color: #6c757d;
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #003566 0%, #0077b6 100%);
        color: white;
    }

    .cta-content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 3rem;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cta-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 0;
    }

    .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .cta-actions .btn {
        background: rgba(255, 255, 255, 0.9);
        color: #003566;
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 15px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .cta-actions .btn:hover {
        background: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }

    .section-badge {
        display: inline-block;
        background: linear-gradient(45deg, #ffd700, #ff6b35);
        color: #003566;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #003566;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .section-description {
        font-size: 1.1rem;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }







    /* Service Toggle Buttons */
    .service-toggle {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1rem;
        background: #f8f9fa;
        padding: 0.3rem;
        border-radius: 12px;
        border: 1px solid #e9ecef;
    }

    .service-toggle input[type="radio"] {
        display: none;
    }

    .toggle-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.8rem 0.5rem;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        text-align: center;
    }

    .toggle-btn i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        color: #6c757d;
        transition: all 0.3s ease;
    }

    .toggle-btn span {
        font-size: 0.8rem;
        font-weight: 600;
        color: #6c757d;
        transition: all 0.3s ease;
    }

    .service-toggle input[type="radio"]:checked + .toggle-btn {
        background: linear-gradient(135deg, #0077b6, #00b4d8);
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(0, 119, 182, 0.3);
    }

    .service-toggle input[type="radio"]:checked + .toggle-btn i,
    .service-toggle input[type="radio"]:checked + .toggle-btn span {
        color: white;
    }

    /* Form Groups */
    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #003566;
        margin-bottom: 0.5rem;
        display: block;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        background: #ffffff;
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #0077b6;
        box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
    }

    /* Submit Button */
    .btn-block {
        width: 100%;
        background: linear-gradient(135deg, #0077b6, #00b4d8);
        color: white;
        border: none;
        padding: 0.8rem;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .btn-block:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
    }

    .btn-block:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }



    /* Hero Section */
    .job-hero {
        position: relative;
        min-height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        color: #fff;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 53, 102, 0.7);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        color: white;
        padding: 2rem;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }


    .category-title {
        font-size: 2.2rem;
        font-weight: 600;
        color: #003566;
        margin-bottom: 2rem;
        padding-bottom: 0.5rem;
        border-bottom: 3px solid #0077b6;
        display: inline-block;
    }
    /* End Parking cards */

    /* CSS */
    .no-parking-message {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh; /* Full viewport height */
        text-align: center;
        background-color: #f8f9fa; /* Light background color */
    }

    .no-parking-message p {
        font-size: 1.5rem; /* Larger font size */
        font-weight: bold;
        color: #6c757d; /* Neutral gray color */
        margin: 0;
    }


    .carousel-control-prev-ccp{
        margin-top: -80px;
        margin-right: 300px;
    }
    .carousel-control-next-ccp{
        margin-top: -80px;
        margin-left: 300px;
    }

    .carousel-control-prev{
        margin-top: -80px;
        margin-left: 90%!important;
    }
    .carousel-control-next{
        margin-top: -80px;
        margin-right: 10%!important;
    }

.carousel-control-prev{
    margin-left: 8% !important;
    z-index: 1 !important;
}
.carousel-control-next{
    margin-right: 92% !important;
    z-index: 1 !important;
}


.carousel-item-parking{
    height: 400px;
}
.carousel-control-next-single{
    margin-top: -50px;
    margin-right: 20%;
}
.carousel-control-prev-single{
    margin-top: 10px;
    margin-right: 70%;
}




/* Utilise le sélecteur .carousel pour assurer que ton style prend le pas sur Bootstrap */
.carousel .carousel-control-prev-single,
.carousel .carousel-control-next-single {
    
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: #003566 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    transition: background-color 0.3s ease !important;
    border: none !important;
}

/* Gap sur grand écran */
@media (min-width: 992px) {
    .carousel .carousel-control-prev-single {
        left: -70px !important;
    }

    .carousel .carousel-control-next-single {
        right: -70px !important;
    }
}