
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Manrope&display=swap');
:root {
    --background-color: #ffffff;
    --default-color: #000000;
    --heading-color: #2d465e;
    --accent-color: #0092d8;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

/* Nav Menu Colors  */
:root {
    --nav-color: #000000;
    --nav-mobile-background-color: #ffffff;

}

body {
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    overflow-x: hidden;
    background-color: rgb(0, 0, 0);



}    @media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
        /* Smaller heading on mobile */
    }

    .hero-text p {
        font-size: 1rem;
        /* Smaller paragraph text on mobile */
    }

    .home-services-card {
        width: 100%;
        /* Full width on small screens */
    }

    .header-container {
        align-items: center;
        padding: 10px;
    }

    .navmenu {
        margin-top: 15px;

    }

    .video-container {
        width: 50%;
        height: auto;
        /* Video takes full width and auto height */
    }

    .btn {
        font-size: 0.9rem;
        /* Adjust button size */
    }
}

/* Larger Screens Adjustments */
@media (min-width: 1200px) {
    .home-services-card {
        width: 200px;

        /* Adjust card size for larger screens */
    }
}


/* Header Styles */
.header {
    background-color: #000;
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 1000;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}
/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    /* Reduce max-width for better layout */
    width: 100%;
    padding: 0 80px;
    box-sizing: border-box;
}

/* Logo Styling */
.header .logo img {
    max-height: 100px;
    margin-left: -10px;
    margin-right: 50px;
    /* Reduce logo size for better fit */
}

.navmenu {
    text-align: center;
    margin-left: 20px;
    margin-right: 30px;
    /* Reduce space between logos and menu */


}

.navmenu ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;

    margin: 0;
}

.navmenu li {
    margin: 0 25px;
    /* Reduce spacing */
}

/* Navigation Links */
.navmenu a {

    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    /* Reduce font size for better fit */
    font-weight: bold;
    transition: color 0.3s ease-in-out;

}

/* Arabic Button Styling */
.language-toggle {
    color: #d60000 !important;
    font-weight: bold;
}

.navmenu a:hover {
    color: red;
}

/* Mobile Menu Styles */
.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    display: none;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}


.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-menu li {
    padding: 8px 0px;
    width: 100%;
}

.mobile-menu a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    display: block;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .navmenu {
        display: none;
        padding: 0 30px;
    }

    .menu-toggle {
        display: block;
        padding-left: 10px;
        padding-right: 40px;

    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
        width: 100%;
        text-align: left;
    }

    .mobile-menu a {
        color: white;
        font-size: 16px;
        text-decoration: none;
        display: block;
    }


    .mobile-menu a:hover {
        color: red;
    }


    .header-container {
        padding: 0 30px;
        max-width: 100%;
    }

    .header .logo img {
        max-height: 60px;
        margin: 10px;
    }
}

/* Prevent Horizontal Scrollbar */
html,
body {
    overflow-x: hidden;
}


.container{

    padding: 60px 0;
}

.car-selection {
    display: flex;
    justify-content: flex-start;
    color: #000;
    background-color: #000;
}

.car-option {
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 10px;
    text-align: center;
    position: relative;
    width: 400px;
    height: auto;

    overflow: hidden;

}


.car-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
    border: 3px solid transparent;
}

/* Media query for smaller screens (mobile) */
@media (max-width: 767px) {
    .car-option {
        width: 100%;
        /* Make it take full width on mobile */
        max-width: 400px;
        /* Optional: Set a maximum width */
        height: auto;
        /* Adjust height automatically */
        margin: 0 auto;
        /* Center the car option */
    }


}

.car-option p {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    padding: 5px 10px;
    border-radius: 5px;
    width: auto;
    color: #000;
    text-align: center;
    font-weight: bold;
}


.car-option:hover {
    transform: scale(1.05);
}

.car-option p {
    font-size: 20px;
    font-weight: bold;
    color: rgb(0, 0, 0);
}

.car-size-button {
    background: red;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 190px;
    height: 50px;
    margin: 20px auto;
    font-weight: bold;
    font-size: 16px;
}

/* Packages and service section */

.packages-services {
    color: #fff;
    text-align: center;
}



/* Center the Two Car Size Sections */
.modal-car-guide .modal-body .row {
    display: flex;
    justify-content: center;
    /* Centers the two columns */
    gap: 0px;

    /* Space between columns */
}

/* Adjust Columns */
.modal-car-guide .col-md-4 {
    flex: 1;
    /* Equal width */
    max-width: 450px;
    margin-top: -50px;
    /* Limit width */
}

/* Center the Images */
.modal-car-guide img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
}


.modal-car-guide .modal-content {
    background: rgba(42, 42, 42, 0.593);
    color: white;
    height: 400px;
    border-radius: 10px;



}


.modal-car-guide .modal-header {
    border-bottom: none;
    text-align: center;
}


.modal-car-guide .modal-title {
    font-size: 24px;
    font-weight: bold;
}


.modal-car-guide .modal-footer {
    border-top: none;
    justify-content: center;
}

.modal-car-guide .btn-secondary {
    background: #444;
    border: none;
    margin-bottom: 150px;
}

.service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #222;
    /* Dark background */
    color: white;

    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 180px;
    /* Adjust button width */
    height: 100px;
    /* Adjust button height */
    margin: 5px;
    transition: all 0.3s ease-in-out;
}

.service-btn .servbtn-icon {
    font-size: 30px;
    /* Increase icon size */
    margin-bottom: 5px;
    /* Add spacing between icon and text */
}

.selected{
    background-color: red !important;
}

.service-btn-ramdan {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #222;
    /* Dark background */
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 180px;
    /* Adjust button width */
    height: 100px;
    /* Adjust button height */
    margin: 5px;
    transition: all 0.3s ease-in-out;

    /* Active state background */
    color: white;
}


.service-btn-ramdan:focus {
    background-color: #444;
}

.service-btn:hover {
    background-color: #444;
    /* Slightly lighter on hover */
}

.service-btn:focus {
    background-color: red;
}



.service-card {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.service-card img {
    width: 100%;
    border-radius: 10px;
}

.price {
    font-weight: bold;
    margin-top: 10px;
}





.DIVID {
    font-size: 0.9rem;
    padding-right: 60px;
    padding-left: 20px;
}

.payment-options {
    display: flex;
    justify-content: center;
    /* Center the content horizontally */
    align-items: center;
    /* Vertically center the items if needed */
    padding-left: 30px;
}


/* Styles for larger screens (default) - No changes here */
.price-container {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 5px;
}

.discount-info {
    position: relative;
    display: flex;
    align-items: center;
}

.before-discount {
    font-size: 16px;
    margin-right: 5px;
    padding-left: 145px;
}

.discount {
    font-size: 16px;

    padding-left: 175px;
}

.strikethrough {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: normal;
    padding: 0 5px;
}

.strikethrough::after {
    content: '';
    position: absolute;
    left: 0;
    top: 80%;
    left: 15%;
    width: 90%;
    height: 1.5px;
    background-color: red;
    transform: rotate(-25deg);
    transform-origin: left center;
    z-index: 1;
}



.strikethrough-add-two::after {
    content: '';
    position: absolute;
    left: 0;
    top: 60%;
    left: 55%;
    width: 20%;
    height: 1.5px;
    background-color: red;
    transform: rotate(-25deg);
    transform-origin: left center;
    z-index: 1;
}





/* Media query for smaller screens (mobile) */
@media (max-width: 767px) {
    .price-container {
        font-size: 1.2rem;
        /* Smaller font size on mobile */
        margin-bottom: 0.5rem;
        /* Adjust margin on mobile */
        justify-content: center;
        /* Center content on mobile */
    }

    .discount-info {
        flex-direction: column;
        /* Stack elements vertically on mobile */
        align-items: center;
        /* Center items horizontally */
    }

    .discount {
        font-size: 16px;

        padding-right: 160px;
    }

    .before-discount {
        font-size: 0.9rem;
        /* Smaller font size on mobile */
        margin-right: 0;
        /* Remove margin on mobile */
        padding-left: 0;
        /* Remove left padding on mobile */
    }

    .strikethrough {
        font-size: 1rem;
        /* Smaller font size on mobile */
        padding: 0.2rem;
        /* Adjust padding on mobile */
    }

    .strikethrough::after {
        top: 70%;
        /* Adjust position of the strikethrough line */
    }

    .packhead {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .strikethrough::after {
        content: '';
        position: absolute;
        left: 0;
        top: 80%;
        left: 15%;
        width: 90%;
        height: 1.5px;
        background-color: red;
        transform: rotate(-25deg);
        transform-origin: left center;
        z-index: 1;
    }
    
    .strikethrough-add-two::after {
        content: '';
        position: absolute;
        left: 0;
        top: 60%;
        left: 51%;
        width: 10%;
        height: 1.5px;
        background-color: red;
        transform: rotate(-25deg);
        transform-origin: left center;
        z-index: 1;
    }
}

.payment-options img {
    margin: 0 -5px;
    /* Adjust this value for equal space between logos */

}

/* Ensure you don't need any specific margin on the first or last logo */
.payment-options img:last-of-type {
    margin-right: 0;
    /* Optional, but ensures no extra margin on the last image */
}


.button-container {
    display: flex;
    justify-content: center;
    /* Centers buttons */
    gap: 10px;
    /* Reduces space between buttons */
    margin-top: 10px;
    /* Reduce top margin for tighter spacing */
}



.book-now-unique {
    background-color: red;
    color: white;
    cursor: pointer;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 5px;
    flex: 1;
    font-size: 0.85rem;
    font-weight: bold;
    /* Makes both buttons equal width */
    text-align: center;
    max-width: 32%;
    /* Ensures buttons don't stretch too much */
}

.book-now-unique:hover {
    background-color: #000000;
}



.more-details-btn {
    background-color: red;
    color: white;
    cursor: pointer;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 5px;
    flex: 1;
    font-size: 0.85rem;
    font-weight: bold;
    /* Makes both buttons equal width */
    text-align: center;
    max-width: 32%;
    /* Ensures buttons don't stretch too much */
}

.more-details-btn:hover {
    background-color: #000000;
}

.details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    z-index: 10;
}

.details-overlay ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.details-overlay li {
    margin: 5px 0;
    text-align: left;
}

.details-overlay p {
    text-align: left;
    font-size: 1.5rem;
}


.close-details {
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.service-card {
    position: relative;
    overflow: hidden;
}

/* Additional Services Section */
#moreServiceSection {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
}


.more-service-card {
    width: 200px;
    height: 350px;
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.9), rgba(50, 50, 50, 0.9));
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.more-service-card img {
    width: 100%;
    height: 120px;
    /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .more-service-card {
        width: 100%;
        /* Full width on smaller screens */
        height: auto;
        /* Allow flexible height on small devices */
    }
}

.more-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
}

#moreServiceSection {
    display: none;
    /* Hidden by default */
    opacity: 0;

    transition: opacity 0.5s ease-in-out;
}

#moreServiceSection.show {
    display: block;
    opacity: 1;
    border-top: 2px red solid;
    border-bottom: 2px red solid;
}

/* Close button */
.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.more-service-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}


.more-service-card h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Pricing & Details */
.more-service-card p {
    font-size: 14px;
    margin: 3px 0;
}

/* Buttons */
.more-service-btn,
.more-service-details {
    width: 100%;
    margin-top: 8px;
    font-size: 14px;
    border-radius: 8px;
    transition: 0.3s;
}

.more-service-btn {
    background: #777;
    border: none;
}

.more-service-btn:hover {
    background: #999;
}

.more-service-details {
    background: red;
    border: none;
}

.more-service-details:hover {
    background: darkred;
}

.more-service-info {
    display: none;
    position: absolute;
    /* Keep it inside the service card */
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding-top: 50px;
    padding-left: 10px;
    text-align: left;
    width: 100%;
    height: 250px;
    /* Fixed height */
    bottom: 0;
    /* Makes sure it opens inside the card */
    left: 0;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.4);
    border-radius: 8px;
    overflow-y: auto;
    /* Adds scroll if needed */
}

/* Show details when clicked */
.more-service-info.show {
    display: block;
}

/* Ensure .more-service-card is positioned properly */
.more-service-card {
    position: relative;
    /* Allows absolute positioning inside it */
    overflow: hidden;
    /* Prevents unwanted content overflow */
}


/* Footer Note */
.more-service-footer {
    font-size: 14px;
    opacity: 0.8;
}

.price-container {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    /* Adds space between logo and price */
}

.price-container img {
    height: 20px;
    /* Adjust size if needed */
}



.price-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically */
    text-align: center;
    gap: 5px;
    /* Adjust spacing */
    width: 100%;
    /* Ensure full width */
}

.discount-info-add {
    display: flex;
    align-items: center;
    gap: 5px;
    /* Space between "Before" text and strikethrough price */
}


.strikethrough-add {
    opacity: 0.7;
    /* Reduce visibility slightly */
}

.strikethrough-add::after {
    content: '';
    position: absolute;
    left: 0;
    top: 56%;
    left: 57%;
    width: 15%;
    height: 1.5px;
    background-color: red;
    transform: rotate(-25deg);
    transform-origin: left center;
    z-index: 1;
}


.price-container-add {
    display: flex;

    gap: 5px;
    /* Space between icon and price */
    font-weight: bold;
    font-size: 18px;
    /* Adjust for readability */
}

.price-container-add img {
    padding-top: 4px;
    width: 18px;
    /* Resize Riyal symbol */
    height: auto;
}


@media (max-width: 768px) {
    .service-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 20px;

    }
}

@media (max-width: 768px) {
    .payment-options img {
        max-width: 100%;
        height: 50px;
        object-fit: contain;
        display: block;

        margin-bottom: 10px;
    }

    .logosmini {
        width: 150px;


    }
}




/* Footer */
.footer {
    background-color: #000000;
    color: #fff;
    padding: 60px 0;
    box-shadow: 0 -5px 15px rgba(255, 165, 0, 0.1);
    font-family: "Cairo", sans-serif;
}

/* Logo */


.footer .footer-about .sekk-logo img {
    max-height: 110px;

}

.num {
    font-size: 16px;
    /* Adjust size if needed */

    /* Space between logo and number */
    color: #eebf03;


}

.footer .footer-about .HEXA-logo img {
    max-height: 110px;

}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    color: color-mix(in srgb, #eebf03, transparent 20%);
    margin-right: 20px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #eebf03;

}


.quicklinksh {

    text-align: left;
}



.footer .social-links-mob a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    color: color-mix(in srgb, #eebf03, transparent 20%);
    margin-right: 20px;
    transition: 0.3s;
}

.footer .social-links-mob a:hover {
    color: #eebf03;

}

/* Section Titles */
.footer h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: red;
}

.footer .footer-links {
    padding-left: 50px;
    text-align: left;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer .footer-links ul li a {
    display: block;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-links ul li a:hover {
    color: red;
}

/* Map Section */
.maph {
    text-align: left;
}

.footer-map .map-container iframe {
    border-radius: 10px;
}

/* Copyright */
.footer .copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 165, 0, 0.3);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Hide second logo by default */
.mobile-logo {
    display: none !important;
}

/* Show second logo only on mobile */
@media (max-width: 768px) {
    .mobile-logo {
        display: flex !important;
        /* Ensure it's visible only in mobile */
    }

    .sekk-logo {
        display: none !important;


    }

    .footer {
        padding: 40px 5%;
    }

    .footer .footer-about img {
        max-height: 90px;
        margin-bottom: 30px;
    }


    .footer .footer-links ul {

        margin-left: 0px;
        text-align: center;
    }

    .quicklinksh {

        text-align: center;
    }

    .maph {

        text-align: center;
    }

    .footer-map .map-container iframe {
        border-radius: 10px;


        text-align: center;
    }

    .footer .footer-about .HEXA-logo img {
        max-height: 100px;

    }

    .numb-mob {
        margin-top: -40px;
    }

    .num {
        font-size: 16px;
        /* Adjust size if needed */
        /* Space between logo and number */
        color: #eebf03;


    }

    .footer .social-links a {

        display: none;
    }

    .numb {
        display: none;

    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .footer {
        padding: 40px 5%;
    }

    .footer .footer-about img {
        max-height: 90px;
        margin-bottom: 30px;
    }


    .footer .footer-links ul {

        margin-left: 0px;
        text-align: center;
    }

    .HEXA-logo-GER {
        display: none !important;

    }

    .quicklinksh {

        text-align: center;
    }

    .footer .footer-links {
        padding-right: 40px;
        text-align: left;
    }

    .maph {

        text-align: center;
    }

    .footer-map .map-container iframe {
        border-radius: 10px;


        text-align: center;
    }

    .num {
        font-size: 16px;
        /* Adjust size if needed */
        /* Space between logo and number */
        color: #eebf03;


    }

    .footer .social-links a {

        display: none;
    }

    .numb {
        display: none;

    }
}



   /* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn img {
    width: 40x;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 25px;
}

.whatsapp-btn img:hover {
    transform: scale(1.1);
}