/* Start Projects Section */
.projects_section {
    padding: 100px 0;
    background-color: var(--deeb_dark);
}
.projects_section.products_section{
    background-color: var(--dark_color);

}

.projects_section .header_section h2 {
    color: var(--white_color);
}
.projects_section .swiper {
    padding: 0 0 50px;
}

/* مهم */
.projects_section .swiper-slide {
    height: auto;
}

/* CARD */
.projects_section .card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: 0;
}
.projects_section .badge_unit{
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--deeb_dark);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    z-index: 9;
    display: inline-block;
    padding: 7px 12px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.projects_section .badge_unit sub,
.projects_section .badge_unit sup{
    color: var(--primary_color);
}
/* IMAGE */
.projects_section .card .image {
    height: 520px;
    position: relative;
    overflow: hidden;
}

.projects_section .card .image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
    z-index: 1;
}

/* Shine effect */
.projects_section .card .image::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 2;
}

.projects_section .card:hover .image::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.projects_section .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projects_section .card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */
.projects_section .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    padding: 20px;
    color: #fff;
}

.projects_section .overlay span {
    font-size: 14px;
    color: var(--deeb_sec);
}

.projects_section .overlay h3 {
    margin-top: 5px;
    font-size: 20px;
}

/* Pagination */
.projects_section .swiper-pagination {
    margin-top: 30px;
}

.projects_section .swiper-pagination-bullet {
    background: var(--deeb_sec);
    opacity: 0.4;
    width: 15px;
    border-radius: 0;
    height: 10px;
}

.projects_section .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    background: var(--deeb_sec);
}

/* Projects showcase — فاتح، بطاقات متدرجة، وسوم على الصورة */
.projects_section.projects_showcase {
    padding: 60px 0 60px;
}

.projects_section.projects_showcase .header_section {
    max-width: 920px;
}

.projects_section.projects_showcase .header_section .section_title {
    color: var(--deeb_dark);
}

.projects_showcase_kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--primary_color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary_color);
}

.projects_showcase_kickerDot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary_color);
    flex-shrink: 0;
}

.projects_showcase_heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.35em 0.3em;
    line-height: 1.25;
    font-size: clamp(26px, 4vw, 40px);
}

.projects_showcase_heading__dark {
    color: var(--white_off);
}

.projects_showcase_heading__accent {
    color: var(--primary_color);
}

.projects_showcase_desc {
    max-width: 640px;
    color: var(--white_off);
    font-size: 15px;
    line-height: 1.75;
}

.projects_showcase_swiperWrap {
    padding-bottom: 64px;
}

.projects_swiper_showcase {
    padding: 52px 0 8px;
}

.projects_swiper_showcase .swiper-wrapper {
    align-items: flex-start;
}

.project_showcase_card {
    height: 100%;
    transition: transform 0.35s ease;
}

.project_showcase_link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.project_showcase_link:hover {
    color: inherit;
}

.project_showcase_figure {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #e8e6e1;
}

.project_showcase_figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.project_showcase_link:hover .project_showcase_figure img {
    transform: scale(1.06);
}

.project_showcase_tags {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: calc(100% - 28px);
}

.project_showcase_tags span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    color: #2a2a2a;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.project_showcase_body {
    padding-top: 18px;
    text-align: start;
}

.project_showcase_title {
    font-size: 17px;
    color: var(--white_off);
    margin: 0 0 10px;
    line-height: 1.35;
}
.project_showcase_card :hover .project_showcase_title{
    color: var(--primary_color);
}
.project_showcase_meta {
    font-size: 14px;
    color: var(--deeb_sec);
    margin: 0;
    line-height: 1.5;
}

.project_slide--low .project_showcase_card {
    transform: translateY(46px);
}
.projects_showcase .projects_showcase_pagination.swiper-pagination-fraction {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    top: auto !important;
    width: 56px !important;
    height: 56px;
    margin: 0 !important;
    border-radius: 50%;
    border: 2px solid rgba(19, 27, 36, 0.12);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--deeb_dark);
    box-shadow: 0 6px 24px rgba(19, 27, 36, 0.06);
}

@media (max-width: 991.98px) {
    .project_slide--low .project_showcase_card,
    .project_slide--high .project_showcase_card {
        transform: none;
    }

    .projects_swiper_showcase {
        padding-top: 28px;
    }

    .projects_showcase .projects_showcase_pagination.swiper-pagination-fraction {
        position: relative;
        margin-inline: auto 0 !important;
        margin-top: 24px !important;
    }
}

/* Site footer */
.site_footer {
    position: relative;
    overflow: hidden;
    padding: 90px 15px 200px;
    background-color: var(--deeb_dark);
    /* background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px); */
    background-image: url(../img/dark-section-bg-image.png);
    /* background-size: 48px 48px; */
    background-position: center top;
}

.site_footer .container {
    position: relative;
    z-index: 1;
}

.footer_top {
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer_cta_title {
    font-size: clamp(26px, 4vw, 35px);
    line-height: 1.25;
    color: var(--white_color);
    margin: 0;
}

.footer_cta_title em {
    font-style: italic;
    color: var(--primary_color);
}

.footer_social_block {
    text-align: center;
}

@media (min-width: 992px) {
    .footer_social_block {
        text-align: left;
    }
}

.footer_social_label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    text-align: right;
}

.footer_social_icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer_social_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--raduis);
    background: var(--primary_color);
    color: var(--deeb_dark);
    font-size: 16px;
}

.footer_social_link:hover {
    filter: brightness(1.08);
    color: var(--deeb_dark);
}

.footer_mid {
    padding-top: 56px;
    padding-bottom: 48px;
}

.footer_brand {
    text-decoration: none;
    max-width: 150px;
}


.footer_desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 320px;
}

.footer_col_title {
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary_color);
    margin-bottom: 20px;
}

.footer_links li + li {
    margin-top: 10px;
}

.footer_links a {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
}

.footer_links a:hover {
    color: var(--primary_color);
}

.footer_newsletter_text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.footer_newsletter_wrap {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
}

.footer_newsletter_input {
    width: 100%;
    padding: 14px 52px 14px 18px;
    border-radius: var(--raduis);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.25);
    color: var(--white_color);
    font-size: 14px;
    outline: none;
}

.footer_newsletter_input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer_newsletter_input:focus {
    border-color: var(--primary_color);
}

[dir="rtl"] .footer_newsletter_input {
    padding: 14px 18px 14px 52px;
}

.footer_newsletter_btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: var(--raduis);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary_color);
    color: var(--deeb_dark);
    cursor: pointer;
}

[dir="rtl"] .footer_newsletter_btn {
    right: auto;
    left: 6px;
}

.footer_newsletter_btn:hover {
    filter: brightness(1.08);
}

.footer_copy {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    padding-top: 8px;
}

/* Start Testimonials Section */
.testimonials_section {
    padding: 40px 0;
    background: var(--dark_color);
}
.testimonials_section::before{
    position: absolute;
    /* content: ""; */
    background-image: url(../img/about_bg.svg) ;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.testimonials_section .container{
    max-width: 1700px !important;
}
.testimonials_section .testimonial_card {
    background: var(--deeb_dark);
    padding: 30px;
    border-radius: var(--raduis);
    position: relative;
    /* max-width: 600px; */
}

/* Stars */
.testimonials_section .stars {
    color: var(--deeb_sec);
    font-size: 18px;
}

/* Quote */
.testimonials_section .quote {
    font-size: 40px;
    color: var(--primary_color);
}

/* Text */
.testimonials_section .testimonial_text  {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white_off);
    margin-bottom: 30px;
}

/* Divider */
.testimonials_section .divider {
    height: 1px;
    background: var(--white_color);
    margin: 25px 0;
    opacity: 0.2;
}

/* User */
.testimonials_section .user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonials_section .user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials_section .user h4 {
    color: var(--white_off);
    margin: 0;
    font-size: 18px;
}

.testimonials_section .user span {
    color: var(--primary_color);
    font-size: 14px;
}
/* End Testimonials Section */

/* Start Blogs Section */
.blogs_section {
    padding: 50px 0;
    background: var(--deeb_dark);
}
.blog_card{
    padding: 15px;
    border-radius: 0;
    text-align: center;
    background: var(--dark_color);
}
.blogs_section .blog_card .image {
    border-radius: 0;
    overflow: hidden;
    height: 300px;
    margin-bottom: 20px;
}
.blogs_section .blog_card .image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.blogs_section .blog_card:hover .image img {
    transform: scale(1.08);
}
.blogs_section .blog_card h2 {
    font-size: 18px;
    line-height: 1.4em;
    letter-spacing: 0px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9e9f11a;
    transition: 0.5s ease;
    color: var(--white_off);
}

.blogs_section .blog_card:hover h2 {
    color: var(--primary_color);
}
.blogs_section .btn_primary {
    background: none;
    color: var(--white_off);
    padding: 0;
}
.blogs_section .btn_primary:hover{
    color: var(--primary_color);
}
.blogs_section .btn_primary svg path {
    fill: var(--primary_color);
}
.blogs_section .btn_primary:hover svg path {
    fill: var(--primary_color);
}
.blogs_section .btn_primary::before ,
.blogs_section .btn_primary::after{
    display: none;
}

/* End Blogs Section */

/* Contact page section */
.contact_section {
    padding: 90px 0 100px;
    background: var(--dark_color);
}

.contact_page_badge {
    background: transparent;
    border: 1px solid var(--primary_color);
    margin-bottom: 24px;
}

.contact_main_title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--white_off);
    margin-bottom: 20px;
}

.contact_main_title em {
    font-style: italic;
    font-weight: 700;
}

.contact_lead {
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
    color: var(--white_off);
    margin-bottom: 28px;
    max-width: 480px;
}

.contact_email {
    font-size: 17px;
    font-weight: 500;
    color: var(--white_off);
}
.contact_email i ,
.contact_phone i{
    font-size: 20px;
}

.contact_email i,
.contact_email:hover,
.contact_phone i{
    color: var(--primary_color);
}

.contact_phone {
    font-size: 16px;
    font-weight: 400;
    color: var(--white_off);
}

.contact_address_wrap {
    border-top: 1px solid var(--border_color);
    border-bottom: 1px solid var(--border_color);
    padding: 20px 0;
    margin-top: 8px;
}

.contact_address {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.contact_address_label {
    font-weight: 700;
    color: var(--white_off);
    display: inline-block;
    margin-inline-end: 6px;
}

.contact_address_text {
    color: var(--white_off);
    font-weight: 400;
}

.contact_soc_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--raduis);
    border: 1px solid var(--primary_color);
    color: var(--primary_color);
    background: transparent;
    font-size: 15px;
}

.contact_soc_btn:hover {
    border-color: var(--primary_color);
    color: var(--white_off);
    background: var(--deeb_sec);
}

.contact_form_card {
    background: var(--deeb_dark);
    border-radius: var(--raduis);
    padding: 40px 36px;
    box-shadow: 0 18px 50px rgba(21, 25, 44, 0.08);
}

.contact_field_label {
    display: block;
    font-size: 14px;
    color: var(--white_off);
    margin-bottom: 8px;
}

.contact_form .contact_input {
    border: none;
    border-radius: 0;
    background: var(--dark_color);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--white_off);
}

.contact_form .contact_input::placeholder {
    color: var(--white_off);
    opacity: 0.5;
}

.contact_form .contact_input:focus {
    box-shadow: none;
    outline: 2px solid rgba(198, 183, 162, 0.45);
    background: var(--deeb_dark);
}

.contact_textarea {
    min-height: 140px;
    resize: vertical;
}

/* .contact_submit_btn {
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white_color);
    background: var(--deeb_dark);
    border: none;
}

.contact_submit_btn:hover {
    background: var(--dark_color);
    color: var(--white_color);
} */

.contact_location_teaser .contact_page_badge {
    margin-bottom: 0;
}

/* About page — intro, founding story, values */
.about_page_intro_section {
    padding: 60px 0 40px;
    background: var(--secondary_color);
}

.about_page_intro_section .header_section {
    max-width: 800px;
}

.about_intro_text {
    max-width: 720px;
    margin-top: 12px;
}

.about_founding_section {
    padding: 50px 0 70px;
}

.about_founding_image {
    border-radius: var(--raduis);
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}

.about_founding_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about_values_section {
    padding: 80px 0 40px;
    background: var(--deeb_dark);
}

.about_values_lead {
    max-width: 640px;
    margin-top: 8px;
    color: var(--primary_color);
}

.about_value_card {
    background: var(--dark_color);
    border-radius: var(--raduis);
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(4, 6, 24, 0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.about_value_card:hover {
    box-shadow: 0 14px 40px rgba(21, 25, 44, 0.08);
    border-color: rgba(198, 183, 162, 0.35);
}

.about_value_icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deeb_sec);
    color: var(--white_off);
    font-size: 22px;
}

.about_value_card .card_title {
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--primary_color);
}

.about_value_card .desc_content {
    font-size: 14px;
    color: var(--white_off);
    line-height: 1.75;
}

/* Product details — وحدات للبيع */
.product_gallery_wrap {
    position: relative;
    border-radius: var(--raduis);
    overflow: hidden;
    background: var(--white_color);
}

.product_gallery_slide {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.product_gallery_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product_details_page .product_gallery_pagination {
    bottom: 16px !important;
}

.product_details_page .product_gallery_pagination .swiper-pagination-bullet {
    background: var(--white_color);
    opacity: 0.45;
}

.product_details_page .product_gallery_pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary_color);
}

.product_back_to_list {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary_color);
    margin-bottom: 12px;
}

.product_back_to_list:hover {
    color: var(--deeb_dark);
}

.product_unit_badge {
    margin-bottom: 8px;
}

.product_unit_title {
    margin-bottom: 16px;
}

.product_subheading {
    font-size: 20px;
    font-weight: 600;
    color: var(--deeb_dark);
    margin: 32px 0 16px;
}

.product_spec_item {
    background: var(--white_off);
    border-radius: 14px;
    padding: 14px 16px;
    height: 100%;
    border: 1px solid rgba(4, 6, 24, 0.06);
}

.product_spec_label {
    display: block;
    font-size: 13px;
    color: var(--dark_color);
    margin-bottom: 6px;
}

.product_spec_value {
    font-size: 16px;
    font-weight: 600;
    color: var(--deeb_dark);
}

.product_feature_list {
    padding: 0;
    margin: 0;
}

.product_feature_list li {
    position: relative;
    padding-right: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--dark_color);
    list-style: none;
}

.product_feature_list li i {
    position: absolute;
    right: 0;
    top: 4px;
    color: var(--primary_color);
    font-size: 14px;
}

.product_price_card {
    /* position: sticky; */
    /* top: 100px; */
    background: var(--white_color);
    border-radius: var(--raduis);
    padding: 28px 24px;
    box-shadow: 0 18px 50px rgba(21, 25, 44, 0.08);
    border: 1px solid rgba(4, 6, 24, 0.06);
}

.product_status {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.product_status--available {
    background: rgba(198, 183, 162, 0.25);
    color: var(--deeb_dark);
}

.product_price_label {
    font-size: 14px;
    color: var(--dark_color);
    margin-bottom: 4px;
}

.product_price_amount {
    margin: 0 0 8px;
    line-height: 1.1;
}

.product_price_num {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    color: var(--deeb_dark);
    font-family: var(--number_font);
    letter-spacing: 0.02em;
}

.product_price_cur {
    font-size: 18px;
    font-weight: 600;
    color: var(--deeb_dark);
    margin-inline-start: 6px;
}

.product_price_note {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
}

.product_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product_phone_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--deeb_dark);
}

.product_phone_link:hover {
    color: var(--primary_color);
}


/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/

/* Start page Details */
.details_page {
    padding: 100px 0;
    background: var(--deeb_dark);
}
.details_page .single_image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}
.details_page .single_image::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.details_page .single_image:hover::after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}
.details_page .single_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}
.details_content{
    padding: 20px;
    background: var(--dark_color);
    border-radius: var(--raduis);
}
.details_page .details_content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.details_page .details_content p {
    margin-bottom: 20px;
    color: var(--white_off);
    opacity: 0.7;
}
.details_page .details_content blockquote {
    background: var(--deeb_dark) url(/img/icon-blockquote.svg) no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border-radius: 20px;
    padding: 30px 30px 30px 90px !important;
    margin-bottom: 30px !important;
}
.details_page .details_content blockquote p {
    font-size: 20px !important;
    color: var(--white_off);
    font-weight: 300;
    opacity: 0.5;
    margin-top: 0;
    line-height: 1.4em;
    margin-bottom: 0;
}

.details_page .details_content h2 {
    color: var(--primary_color);
    font-weight: 500;
    margin: 1em 0 0.7em;
    font-size: 20px;
}
.details_page .details_content ul {
    padding-left: 20px;
    margin: 20px 0;
}

.details_page .details_content ul li {
    line-height: 1;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary_color);
    padding-bottom: 15px;
    position: relative;
}
.details_page .details_content ul li::before{
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 1px;
    background: var(--white_off);
    opacity: 0.2;
}

/* Post tags + share row */
.details_page .details_content > .entry + .row {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #0406181a;
}
.servises_video{
    overflow: hidden;
    border-radius: var(--raduis);
}
.servises_video h4{
    color: var(--primary_color);
    font-weight: 400;
}
.servises_video video{
    border-radius: var(--raduis);
    width: 100%;
    height: auto;
}
.details_page .post-tags .tag-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    font-size: 15px;
    line-height: 1.5;
}

.details_page .post-tags .tag-links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary_color);
    background: rgba(4, 6, 24, 0.05);
    border: 1px solid var(--primary_color);
    text-decoration: none;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.details_page .post-tags .tag-links a:hover {
    color: var(--white_color);
    border-color: var(--deeb_sec);
    background: var(--primary_color);
}

.details_page .post-social-sharing ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

@media (min-width: 992px) {
    .details_page .post-social-sharing ul {
        margin-top: 0;
        justify-content: flex-end;
    }
}

.details_page .post-social-sharing a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary_color);
    color: var(--deeb_dark);
    font-size: 15px;
    text-decoration: none;
    transition: filter 0.25s ease;
}

.details_page .post-social-sharing a:hover {
    filter: brightness(1.08);
    color: var(--deeb_dark);
}

/* Comments / reply form */
.details_page .comment-box {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--primary_color);
}

.details_page .comments-area {
    margin: 0;
}

.details_page .comment-reply-title {
    font-size: clamp(22px, 3vw, 28px);
    color: var(--white_off);
    margin: 0 0 8px;
    line-height: 1.3;
}

.details_page .comment-reply-title small {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
}

.details_page .comment-reply-title small a {
    color: var(--white_off);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.details_page .comment-reply-title small a:hover {
    color: var(--primary_color);
}

.details_page .comment-form .comment-notes {
    font-size: 14px;
    line-height: 1.65;
    color: var(--white_off);
    margin-bottom: 24px !important;
}

.details_page .comment-form .comment-notes .required ,
#email-notes{
    color: var(--white_off);
}

.details_page .comment-form label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--white_off);
    margin-bottom: 8px;
}

.details_page .comment-form label .required {
    color: var(--white_off);
    font-weight: 600;
}

.details_page .comment-form input,
.details_page .comment-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--white_off);
    background: var(--dark_color);
    border: 1px solid rgba(4, 6, 24, 0.12);
    border-radius: 16px;
    outline: none;
    box-sizing: border-box;
}

.details_page .comment-form textarea {
    min-height: 180px;
    resize: vertical;
}

.details_page .comment-form input:focus,
.details_page .comment-form textarea:focus {
    border-color: var(--primary_color);
}

.details_page .comment-form p {
    margin-bottom: 20px;
}

.details_page .comment-form p.form-submit {
    margin-bottom: 0;
}

.details_page .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.details_page .comment-form-cookies-consent input[type='checkbox'] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary_color);
    cursor: pointer;
}

.details_page .comment-form-cookies-consent label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white_off);
    cursor: pointer;
}

@media (min-width: 768px) {
    .details_page #commentform.comment-form {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 24px;
    }

    /* أول عنصر ياخد العرض كله */
.details_page #commentform.comment-form > *:first-child {
    grid-column: 1 / -1;
}
}

@media (max-width: 991.98px) {
    .details_page {
        padding: 60px 0 72px;
    }

    .details_page .details_content > .entry + .row > [class*='col-'] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .details_page .post-tags .tag-links {
        justify-content: center;
    }

    .details_page .post-social-sharing ul {
        margin-top: 14px;
        justify-content: center !important;
    }
}

@media (max-width: 575.98px) {
    .details_page {
        padding: 40px 0 56px;
    }

    .details_page .comment-form input,
    .details_page .comment-form textarea {
        font-size: 16px;
    }

    .details_page .form-submit input.submit {
        width: 100%;
        box-sizing: border-box;
    }
}

/* End page Details */

/* What we do — home */
.whatWeDo_section {
    position: relative;
    padding: 40px 0;
    background: var(--deeb_dark);
    overflow: hidden;
}

.whatWeDo_section::before,
.whatWeDo_section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(197, 164, 126, 0.22);
    width: clamp(120px, 18vw, 200px);
    height: clamp(200px, 28vw, 300px);
    border-radius: 2px;
    transform: rotate(12deg);
}

.whatWeDo_section::before {
    right: 6%;
    top: 18%;
}

.whatWeDo_section::after {
    right: 2%;
    top: 28%;
    opacity: 0.65;
}

.whatWeDo_kicker {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c5a47e;
    margin-bottom: 1rem;
}

.whatWeDo_mainTitle {
    max-width: 720px;
    line-height: 1.35;
    color: var(--white_off);
}

.whatWeDo_cards {
    position: relative;
    z-index: 1;
}

.whatWeDo_colMid {
    margin-top: 0;
}

@media (min-width: 992px) {
    .whatWeDo_colMid {
        margin-top: 42px;
    }
}

.whatWeDo_card {
    background: var(--dark_color);
    padding: 45px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 32px rgba(19, 27, 36, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    overflow: hidden;
    transition: 0.5s cubic-bezier(.785, .135, .15, .86);
    -webkit-transition: 0.5s cubic-bezier(.785, .135, .15, .86);
    z-index: 1;
    border-radius: var(--raduis);
}
.whatWeDo_card:before, .whatWeDo_card:after {
    content: "";
    background: var(--deeb_dark);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.5s cubic-bezier(.785, .135, .15, .86);
    -webkit-transition: 0.5s cubic-bezier(.785, .135, .15, .86);
    z-index: -1;
}
.whatWeDo_card:before {
    top: 0;
    left: 0;
    right: auto;
}
.whatWeDo_card:hover:before {
    width: 100%;
    right: 0;
    left: auto;
}
.whatWeDo_card:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}
.whatWeDo_card:after {
    bottom: 0;
    right: 0;
    left: auto;
}
.whatWeDo_card:hover {
    box-shadow: 0 14px 40px rgba(19, 27, 36, 0.1);
    transform: translateY(-4px);
}

.whatWeDo_iconWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a47e;
}

.whatWeDo_icon {
    width: 64px;
    height: 64px;
}

.whatWeDo_cardTitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--white_off);
    line-height: 1.45;
    margin: 0;
    flex-grow: 1;
}
.whatWeDo_card:hover .whatWeDo_cardTitle{
    color: var(--white_color);
}
.whatWeDo_link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999999;
    margin-top: auto;
}

.whatWeDo_card:hover .whatWeDo_link {
    color: #c5a47e;
}






.v2_aboutus_section {
    background: #1f1f1f;
    /* background: var(--deeb_dark); */
    position: relative;
    overflow: hidden;
    padding: 100px 0 0;
}
.v2_aboutus_section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(31, 31, 31, 0) 30%, #1f1f1f 90%);
    z-index: 1;
}
.v2_aboutus_section .container {
    position: relative;
    z-index: 2;
}
.v2_aboutus_section .about2_image {
    position: absolute;
    top: -150px;
    right: -250px;
    left: auto;
    z-index: -1;
    pointer-events: none;
}

.v2_aboutus_section .about2_image img {
    /* width: 900px; */
    max-width: unset;
    opacity: 0.9;
}
.v2_aboutus_section .content{
    max-width: 550px;
}
.v2_title_about {
    font-size: clamp(24px, 2vw, 50px);
}
.v2_title_about span{
    color: var(--primary_color);
    font-family: var(--number_font);
}

.v2_desc_about {
    color: #ccc;
    font-weight: 400;
    font-size: 18px;
}
.v2_desc_about code{
    font-size: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--primary_color);
}
.text-primary{
    color: var(--primary_color) !important;
}
.title_cardv2_about{
    font-weight: 600;
    font-family: var(--number_font);
}
.v2_aboutus_section code {
    color: var(--primary_color);
    background: none;
}
.about2_cards {
    margin-top: 200px;
    position: relative;
    z-index: 1;
}
.v2card_about_icons {
    background: rgba(24, 24, 24, 0.918);
    padding: 20px;
    /* background: var(--deeb_dark); */
    color: white;
    backdrop-filter: blur(5px);
    border-radius: 20px 20px 0 0;

    box-shadow: 0 7px 30px rgba(0, 0, 0, 0.5);

    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}
.image_about_v2icon {
    /* margin-top: auto; */
    display: flex;
    justify-content: flex-end;
}

.v2card_about_icons img {
    max-width: 120px;
}
@media (max-width: 992px) {
    .v2_aboutus_section .about2_image {
        top: -100px;
        left: -150px;
    }

    .v2_aboutus_section .about2_image img {
        width: 700px;
    }

    .v2_aboutus_section h2 {
        font-size: 32px;
    }

    .about2_cards {
        margin-top: 150px;
    }
}
/* @media (min-width: 1400px) {
    .v2_aboutus_section .about2_image {
        left: -300px;
        top: -200px;
    }

    .v2_aboutus_section .about2_image img {
        width: 1000px;
    }
} */
.partner_section {
    background: var(--deeb_dark);
    position: relative;
    z-index: 9;
}
.partner_section::before{
    position: absolute;
    /* content: ""; */
    background-image: url(../img/process-shape-1.png) ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.history-element {
    position: absolute;
    bottom: -250px;
    left: 77px;
    max-width: 800px;
}
.history-element img{
    max-width: 100%;
}
.section_heading_2 h2 {
    color: var(--white_off);
    text-transform: uppercase;
}
.section_heading_2 h2 span{
    color: var(--primary_color);
}
.section_heading_2 p {
    color: var(--white_off);
    font-size: 18px;
}
.section_heading_2 code{
    font-weight: 900;
}

/* card */
.partner_card {
    background: var(--deeb_dark);
    color: var(--primary_color);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: clamp(16px, 6.6667px + 1.2153vw, 30px);
    box-shadow:
        0 0 #0000,
        0 0 #0000,
        0 0 #0000,
        0 0 #0000,
        0 4px 25px 0 #00000040,
        0 4px 4px 0 #00000036;
}
.partner_card .content h3 {
    color: var(--primary_color);
    font-size: 18px;
}
.partner_card .content p {
    font-weight: 300;
    font-size: 16px;
    color: white;
}
.partner_card .partner_image {
    max-width: 130px;
}



.discover_section {
    background: var(--dark_color);
}
.section_wrapper2{
    padding: 40px;
    background: var(--deeb_dark);
    border-radius: 20px 20px 0 0;
}
.section_content2 {
    border-radius: clamp(24px, 19.4286px + 0.4464vw, 28px);
    box-shadow:
        0 0 #0000,
        0 0 #0000,
        0 0 #0000,
        0 0 #0000,
        0 4px 25px 0 #00000040,
        0 4px 4px 0 #00000036;
    color: #fcf5ee;
    font-size: 21px;
    padding: clamp(32px, 3.125vw, 60px);
    background: #181818;
}
.discover_section_image {
    width: 100%;
    border-radius: clamp(24px, 19.4286px + 0.4464vw, 28px);
    overflow: hidden;
}
.discover_section_image img{
    width: 100%;
}