﻿.header {
    text-align: center;
}

    .header h3 {
        color: #bc852b;
        font-size: calc(16px + 1.8vw);
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .header h5 {
        color: var(--Neutral-600, #999);
        font-size: calc(10px + 0.9vw);
        font-style: normal;
        font-weight: 600;
        line-height: 180%;
    }

.header-image img {
    height: 539px;
}

.header-slider {
    width: 100%;
    height: 75vh;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .header-slider .swiper-slide {
        position: relative;
        text-align: center;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .header-slider .swiper-slide img {
            width: 100%;
            height: 75vh;
            object-fit: cover;
        }

    .header-slider .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #808080;
        opacity: 0.8;
    }

    .header-slider .text-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
    }

        .header-slider .text-container h1 {
            margin: 0;
            color: var(--Neutral-White, #FFF);
            font-size: 40px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }

        .header-slider .text-container p {
            margin-top: 20px;
            color: var(--Neutral-White, #FFF);
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 180%;
        }

/* Responsive styles */
@media (max-width: 1200px) {
    .header-slider .text-container h1 {
        font-size: 2em;
    }

    .header-slider .text-container p {
        font-size: 1em;
    }
}

@media (max-width: 992px) {
    .header-slider .text-container h1 {
        font-size: 1.8em;
    }

    .header-slider .text-container p {
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .header-slider .text-container h1 {
        font-size: 1.5em;
    }

    .header-slider .text-container p {
        font-size: 0.8em;
    }
}

@media (max-width: 576px) {
    .header-slider .text-container {
        width: 90%;
        padding: 10px;
    }

        .header-slider .text-container h1 {
            font-size: 1.2em;
        }

        .header-slider .text-container p {
            font-size: 0.7em;
        }

    .header-slider .swiper-slide img {
        height: 100vh; /* Adjusted height for mobile */
    }
}

/* Styles for next and previous buttons */
.swiper-button-next, .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: rgba(0, 0, 0, 0.20);
    padding: 10px;
    border-radius: 5px;
}

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 20px;
        color: #fff;
    }

/* Styles for next and previous buttons */
.swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 20px;
    background: rgba(0, 0, 0, 0.20);
    border-radius: 10px 0px 0px 10px;
}

.swiper-button-prev {
    border-radius: 0px 10px 10px 0px;
}

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 20px;
        color: #fff;
    }

.swiper-button-next, .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: rgba(0, 0, 0, 0.20);
    padding: 10px;
    border-radius: 5px;
}

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 17px !important;
           }

.swiper-container-contact, .header-slider {
    overflow: hidden;
}
.swiper-container {
    overflow: hidden;
/*    cursor: grab;*/
}
.documentation-button {
    background-color: #bc852b; /* لون الخلفية */
    color: white; /* لون النص */
    border: none; /* إزالة الحدود */
    padding: 10px; /* الحشو */
    text-align: center; /* محاذاة النص */
    text-decoration: none; /* إزالة التسطير */
    display: inline-block; /* عرض الزر ككتلة مدمجة */
    font-size: clamp(18px, 2vw + 1rem, 18px);    /* حجم الخط */
    margin: 10px 2px; /* الهوامش */
    cursor: pointer; /* تغيير شكل المؤشر عند التمرير فوق الزر */
    border-radius: 5px; /* زوايا مدورة */
}
