/* سكشن الخدمة */
.exceptional-service-section {
    position: relative;
    background-image:
        url('/assets/site/images/background/background.png');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}


/* Overlay */
.exceptional-service-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.7); !* هنا زودنا الغماق *!*/
    z-index: 1;
}

/* محتوى فوق الغماق */
.exceptional-service-section .container,
.exceptional-service-section .content {
    position: relative;
    z-index: 2;
}

/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* محتوى */
.exceptional-service-section .content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* صور */
.exceptional-service-section .images {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.exceptional-service-section .main-image img {
    max-width: 100%;
    width: 400px;
    border: 10px solid #469cc7;
}

/* نص */
.exceptional-service-section .text-content {
    flex: 1;
    min-width: 300px;
    color: #111;
}

.exceptional-service-section .text-content h5 {
    font-size: 1rem;
    color: #469cc7;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exceptional-service-section .text-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.exceptional-service-section .text-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .exceptional-service-section .content {
        flex-direction: column-reverse;
        padding: 0 20px;
        gap: 20px; /* قلل المسافة بين العناصر */
    }

    .exceptional-service-section .text-content {
        text-align: left;
        width: 100%;
        margin: 0; /* أزل أي margin قديم */
    }

    .exceptional-service-section .text-content p {
        margin-bottom: 10px; /* أو أقل حسب شكل الصفحة */
    }

    .exceptional-service-section .images {
        margin: 0 auto;
        padding: 0;
    }

    .exceptional-service-section .main-image {
        margin: 0 auto;
        padding: 0;
    }

    .exceptional-service-section .main-image img {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
        height: auto;
        border: 10px solid #469cc7;
    }
}


/*blog section*/
@media (max-width: 768px) {
    .recommended-slider > div {
        width: 100% !important;
        max-width: 100% !important;
    }

    .recommended-slider .product-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    .product-card__thumb img {
        width: 100% !important;
        height: auto;
    }
}









/* CTA Section */
.footer-cta {
    background: #304064 url('background.png') center center / cover no-repeat;
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}
.footer-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}
.footer-cta .cta-btn {
    background-color: #469cc7;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Main Footer */
.main-footer {
    background-color: #fdfdfd;
    color: #111;
    padding: 60px 20px 0;
    background-image: url('/assets/site/images/background/background.png');
    background-size: cover;
    font-family: 'Arial', sans-serif;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-col h4 {
    margin-bottom: 18px;
    font-size: 1.25rem; /* أكبر */
    font-weight: 700;
    color: #0b1e3d; /* أزرق غامق */
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col .contact-info li {
    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul li a:hover {
    color: #d63b2c;
}

/* Social Icons */
.social-icons a {
    color: #0b1e3d;
    margin-right: 12px;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
}
.social-icons a:hover {
    color: #d63b2c;
}

/* Contact Info */
.contact-info {
    padding-left: 0;
}
/* أيقونات الاتصال */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #111;
}

.contact-info i {
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}


/* Footer Bottom */
.footer-bottom {
    background-color: #304064;
    color: white;
    text-align: center;
    padding: 16px;
    font-size: 0.85rem;
    margin-top: 40px;
}





/* ألوان مخصصة لكل نوع */
.contact-info i.fa-map-marker-alt {
    color: #2e8b57; /* أخضر - موقع */
}
.contact-info i.fa-envelope {
    color: #d63b2c; /* أحمر - إيميل */
}
.contact-info i.fa-phone-alt {
    color: #007bff; /* أزرق - تليفون */
}

/* Responsive */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col {
        text-align: left;
        flex: 0 0 0;
    }



    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .footer-col ul li a,
    .footer-col .contact-info li {
        font-size: 0.95rem;
    }

    .footer-cta h2 {
        font-size: 1.4rem;
    }

    .footer-cta .cta-btn {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}




/* ===== BANNER ===== */
.banner-three {
    position: relative;
    overflow: hidden;
    height: 819px;

    background-color: #000;
    display: block; /* نلغي التوسيط */

    display: flex;
    align-items: center;
    z-index: 1;
}

.banner-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.banner-bg {
    background-image: url('/assets/site/images/background/background2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    animation: zoomOut 20s ease-out forwards;
    transform: scale(1.2);
}

@keyframes zoomOut {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.banner-three .container {
    position: relative;
    z-index: 3;
    padding-top: 30px;  /* تقليل المسافات العلوية والسفلية */
    padding-bottom: 30px;
}

/* نص البانر */
.span3 {
    max-width: 700px;
    padding-right: 20px;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.banner-three h5 {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    max-width: 700px;
    word-break: break-word;
    margin-bottom: 20px;
}

/* List with Icon */
.list-with-icon {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.list-with-icon li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
}

.list-with-icon li .icon {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-top: 2px;
    flex-shrink: 0;
}

.banner-description {
    flex: 1;
}

/* Button */
.btn.btn-outline-white {
    margin-top: 25px;
    padding: 10px 22px;
    border: 2px solid #fff;
    color: #fff;
    transition: 0.3s ease;
}

.btn.btn-outline-white:hover {
    background-color: #fff;
    color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .banner-three {
        padding: 0; /* إزالة المسافات حول البانر */
    }

    .banner-three .container {
        padding-left: 0;
        padding-right: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .banner-three h5 {
        font-size: 30px !important;
        line-height: 1.4;
    }

    .span3 {
        padding-right: 0;
        padding-left: 0;
    }

    .list-with-icon li {
        font-size: 0.95rem;
    }
}


.custom-banner-btn {
    display: inline-block;
    background-color: #304064;
    color: #fff;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 30px;
    border: none;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.custom-banner-btn:hover {
    background-color: #304064; /* أغمق شوي عند التحويم */
    color: #fff;
}



/*after banner*/
.cards-section {
    transform: translateY(-100px);
    padding: 0 20px;
    position: relative;
    z-index: 5;
    background: transparent;
}

.cards-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    display: flex;
    gap: 70px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    color: #fff;
    padding: 40px 30px;
    border: 1px solid #ccc;
    text-align: center;
    flex: 1 1 300px;
    max-width: 360px;
    min-height: 380px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    border-radius: 0 !important; /* ✅ ده بيكسر أي style قديم */
}

.card:hover {
    /*transform: translateY(-6px);*/
}

.card-icon {
    width: 160px;  /* ✅ تكبير */
    height: 160px; /* ✅ تكبير */
    margin: 0 auto 25px;
    object-fit: contain;
    /*filter: brightness(0) invert(1);*/
}

.card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.card p {
    font-size: 15px;
    line-height: 1.7;
}

.card-red {
    /*background-color: #D62828;*/
    background-color: #429ec6;
}

.card-dark {
    background-color: #0C1F47;
}

@media (max-width: 768px) {
    .cards-section {
        transform: translateY(-115px);
        padding-top: 76px;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }
}

/* لجعل الكروت جنب بعض فقط في مقاس التابلت */
@media (max-width: 991px) and (min-width: 768px) {
    .cards-container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 20px;
    }

    .card {
        flex: 1 1 0;
        max-width: unset;
    }

    .banner-three {
        height: 1060px; /* أو أي قيمة مناسبة تخلي الكروت تعلق على البنر */
    }
}




/*about*/

.about-section {
    background: #fff;
}


.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-text {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
}

.about-text h5 {
    color: #ff0000;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 30px;
    background-color: #469cc7;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.about-image {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: fit-content;
    margin: auto;
}

.image-wrapper img {
    width: 100%;
    max-width: 500px;
    z-index: 2;
    position: relative;
    display: block;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 10px solid #469cc7;
    z-index: 1;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column; /* ✅ بدل column-reverse */
        text-align: left;
    }
    .about-text, .about-image {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .image-wrapper img {
        max-width: 100%;
    }
}


/* activites */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h5 {
    font-size: 14px;
    color: #469cc7;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1c2c4c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-title p {
    max-width: 720px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}

/* ✅ Tablet and mobile (up to 992px) */
@media (max-width: 992px) {
    .section-title {
        text-align: left;
        padding: 0 20px;
    }

    .section-title h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .section-title p {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* ✅ Mobile only (up to 767.98px) — bigger title */
@media (max-width: 767.98px) {
    .section-title h2 {
        font-size: 30px;
        text-align: left;
    }
    .section-title p {
        text-align: left;
    }
}




/*why choose us*/

/*Why Choose us*/
.why-choose-section {
    padding: 100px 0;
    background: url('/assets/site/images/sections/section_6.jpg') center center/cover no-repeat;
    position: relative;
    /*color: white;*/
}



.content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.text-content {
    flex: 0 0 40%;
    max-width: 40%;
    padding-right: 20px;
}

.text-content .small-title-content {
    color: white; /* سماوي */
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-content .title-content {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.text-content .description-content {
    font-size: 18px;
    color: white;
    line-height: 1.7;
}

.cards {
    flex: 0 0 55%;
    max-width: 55%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card-why {
    background: rgba(255, 255, 255, 0.05); /* خلفية شفافة أكثر */
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 15px; /* تقليل التباعد الداخلي */
    border-radius: 8px;
    text-align: center;
    min-height: 260px; /* تقليل الارتفاع */
}
.card-why .icon {
    background: #469cc7; /* الأزرق الغامق */
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-why .icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1); /* يخلي الأيقونة بيضاء لو لونها غامق */
}

.card-why h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.card-why p {
    font-size: 16px;
    color: #dcdcdc;
    line-height: 1.6;
}

/* Overlay dark effect for background */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* أسود بنسبة 70% شفافية */
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .content {
        flex-direction: column;
    }

    .text-content, .cards {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .text-content {
        margin-bottom: 40px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}





/* Start Capture Memories Section */
.capture-section {
    padding: 50px 0;
    background: #fff;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.images {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
}

.main-image img {
    width: 100%;
    border: 10px solid #469cc7; /* اللون السماوي */
}

.small-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
}

.small-image img {
    width: 250px;
    border: 7px solid #469cc7;
    border-radius: 8px;
}

.text-content {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 15px;
}

.text-content h5 {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.text-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #304065;
}

.text-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #304064;
    color: #fff;
    border-radius: 1px;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .text-content {
        flex-direction: column;
        align-items: flex-start; /* ✅ النص يبدأ من اليسار */
        text-align: left;
    }

    .text-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 20px; /* ✅ مسافة من الحواف */
    }

    .text-content h2 {
        font-size: 32px; /* حجم مناسب للموبايل */
    }

    .text-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .btn-primary {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 14px 0;
        background-color: #ff0000;
        color: #fff;
        text-align: center;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        margin-top: 20px;
        text-decoration: none;
    }

    .images, .text-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .images {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 60px;
    }

    .main-image img {
        width: 90vw;
        max-width: 400px;
        border: 10px solid #469cc7;
        /*border-radius: 8px;*/
    }

    .small-image {
        position: absolute;
        bottom: -20px;
        right: -10px; /* ✅ زودنا يمين بدل ما تكون برا */
        z-index: 2;
    }

    .small-image img {
        width: 60vw;
        max-width: 240px;
        border: 7px solid #469cc7;
        border-radius: 8px;
    }

    .text-content {
        padding: 0 20px;
    }
}

/* End Capture Memories Section */





/* Start Blog Section */
.blog-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.swiper.blog-swiper {
    background-color: #fff; /* خلفية سطر السلايدر */
}

.swiper-wrapper {
    background-color: #fff !important; /* 💡 السطر الذي يلف الشرائح */
}

.swiper-slide {
    background-color: #fff !important; /* 💡 كل سلايد نفسها */
}
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #304065;
}

.blog-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-card {
    background: #fff;
    width: 300px;
    border-radius: 20px 20px 10px 10px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 5px solid #304064;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 20px;
    color: #304065;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-more {
    text-decoration: none;
    color: #304064;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #304064;
}



.blog-swiper {
    padding: 40px 0;
}

.swiper-slide.blog-card {
    width: 300px;
    background: #fff;
    border-radius: 20px 20px 10px 10px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.swiper-slide.blog-card:hover {
    transform: translateY(-5px);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #469cc7;
    color: #fff;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.blog-card {
    box-shadow: none; /* لو عايزها بدون ظل تمامًا */
}

.swiper-wrapper {
    background-color: #fff !important;
}

.swiper-slide {
    background-color: #fff !important;
}

@media (max-width: 768px) {
    .blog-cards {
        flex-direction: column;
        align-items: center;
    }
}
/* End Blog Section */










.service-box {
    background-color: #fff;
    border: 1px solid #eaeaea;
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 50px;
}

.services-section{
    margin-bottom: 40px;
    margin-top: 100px;
}

.service-box:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #304065;
}

.service-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    color: #1C2C4D;
    font-weight: 600;
    font-size: 14px;
}

.service-btn {
    background-color: #469cc7;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background-color: #357aa3;
}














/*  gallery Page */
.custom-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    grid-gap: 10px;
    padding: 20px 5vw; /* top-bottom 20px, left-right 5% of viewport */
    box-sizing: border-box;
    margin-top: 30px;
}

/* Wrapper for each image */
.custom-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image styling without border-radius */
.custom-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Hover effect */
.custom-image-box img:hover {
    transform: scale(1.03);
}

/* Span taller items */
.custom-image-box.tall {
    grid-row: span 2;
}






/* Start Hero section fixed*/
.hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('/assets/site/images/banner/baner_bg_1.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* تغميق */
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.hero-overlay .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.banner-content {
    max-width: 650px;
    padding-left: 40px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content p {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
    color: #eee;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .hero-banner {
        height: 450px;
    }

    .banner-content {
        padding-left: 20px;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 18px;
    }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
    .hero-banner {
        height: 350px;
        justify-content: center;
    }

    .banner-content {
        padding-left: 0;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 35px;
    }

    .banner-content p {
        font-size: 19px;
    }
}
/* End Hero section fixed*/







/*Start Top Header*/
.header-top {
    background-color: #1E2A38;
    padding: 12px 0;
}

.top-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 15px;
}

.info-item i {
    font-size: 20px;
    color: #469cc7;
}

.info-pair {
    display: flex;
    gap: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .info-pair {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .info-item {
        justify-content: center;
        font-size: 14px;
    }

    .info-item i {
        font-size: 16px;
    }
}
/*End Top Header*/


.truncate-text {
    display: block;               /* أو inline-block حسب العنصر */
    white-space: nowrap;          /* يمنع النزول لسطر جديد */
    overflow: hidden;             /* يخفي النص الزائد */
    text-overflow: ellipsis;      /* يضيف ... في نهاية السطر */
    max-width: 100%;              /* أو حدد عرضًا ثابتًا مثل 300px */
}


.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;          /* عدد السطور */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6; /* زيادة تباعد السطور */
    font-size: 16px !important; /* ← أضفنا !important */
}




.duration-radio {
    width: 60px;
    height: 60px;
    accent-color: #304066; /* لون داخلي للراديو عند التحديد */
    cursor: pointer;
}

.duration-option {
    background-color: #fff;
    transition: background-color 0.3s;
}
.duration-option.selected {
    background-color: #f3f4f6; /* خلفية رمادية للسطر المحدد */
    border-color: #304066;
}
@media (max-width: 1024px) {
    .booking-review-box {
        margin-top: 30px;
    }
    .form-fill-details{
        border: none;
    }
}

/*.form-fill-details{*/
/*    border: 1px solid #e6e6e6;*/
/*    padding: 5px;*/
/*    border-radius: 10px;*/
/*}*/





/*all activities*/
.services-section {
    padding: 50px 0;
    background-color: #fff;
}

.container-services {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 200px;
    gap: 40px;
    flex-wrap: wrap;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    border: 10px solid #429ec6;
}

.service-text {
    max-width: 600px;
}

.service-text h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-discover {
    background-color: #2d4066;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-discover:hover {
    background-color: #2d4066;
}


/* تابلت - شاشات أقل من 992px */
@media (max-width: 991px) {
    .service-item {
        margin-bottom: 70px;
    }
    .service-text h2 {
        font-size: 31px;
    }
}

/* موبايل - شاشات أقل من 576px */
@media (max-width: 575px) {
    .service-item {
        margin-bottom: 70px;
    }
    .service-text h2 {
        font-size: 31px;
    }
}

@media (max-width: 991px) {
    .service-item.arabic-mobile {
        flex-direction: column-reverse !important; /* عكس الترتيب */
    }
}



/*about page*/
.about-details {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.about-content-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.about-text {
    flex: 1 1 55%;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.about-image {
    flex: 1 1 40%;
}

.about-image img {
    width: 100%;
    object-fit: cover;
    border: 10px solid #429ec6;

}

/* Responsive */
@media (max-width: 768px) {
    .about-content-flex {
        flex-direction: column;
    }

    .about-text, .about-image {
        flex: 1 1 100%;
    }
}















.our-values-section {
    padding: 80px 20px;
    background-color: #fff;
}

.values-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.values-image img {
    width: 100%;
    max-width: 500px;
    border: 10px solid #429ec6;
}

.values-content {
    flex: 1;
}

.section-subtitle {
    font-size: 14px;
    color: #999;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #111;
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.icon-box {
    font-size: 25px;
    color: white;
    background: #2d4066;
    padding: 10px 20px;
    border-radius: 8px;
}

.value-item h4 {
    margin: 0 0 5px;
    font-weight: bold;
    font-size: 25px;
}

.value-item p {
    margin: 0;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .values-flex {
        flex-direction: column;
    }
}



.cover-img {
height: 400px;
}



/*thanks page*/

.thank-you-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.thank-you-box {
    max-width: 600px;
    margin: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.check-icon {
    font-size: 60px;
    color: #304066; /* green */
    margin-bottom: 20px;
}

.thank-you-title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #304066;
    margin: 20px auto;
    border: none;
}

.thank-you-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
}

.back-btn {
    display: inline-block;
    background-color: #304066;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background-color: #1d2b44;
}










.preloader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #4facfe 0%, #00f2fe 100%);
    top: 0;
    left: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
}

.preloader-logo-container {
    z-index: 3;
    animation: preloader-float 2s ease-in-out infinite;
}

.preloader-logo {
    width: 320px;        /* الحجم الأساسي للديسكتوب */
    max-width: 100%;
    height: auto;
    display: block;
}

.preloader-wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 120px;
    animation: preloader-wave 6s linear infinite;
    opacity: 0.7;
    z-index: 1;
}

.wave-2 {
    animation-duration: 10s;
    opacity: 0.5;
    bottom: 5px;
}

@keyframes preloader-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes preloader-wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
    .preloader-logo {
        width: 260px;    /* تابلت */
    }
}

@media (max-width: 768px) {
    .preloader-logo {
        width: 280px;    /* موبايل */
    }
}

@media (max-width: 480px) {
    .preloader-logo {
        width: 300px;    /* موبايل صغير */
    }
}






.discount-badge {
    position: absolute;
    background-color: #e3342f; /* لون أحمر جذاب */
    color: #fff;
    padding: 4px 40px;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(-45deg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
    border-radius: 4px;
    text-align: center;
    pointer-events: none;
}

/* النسخة العربية */
.badge-ar {
    top: 20px;
    left: -30px;
}

/* النسخة الإنجليزية */
.badge-en {
    top: 30px;
    left: -37px;
}




/*whatsapp*/

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px; /* ← بدّل right بـ left */
    z-index: 1000;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
