﻿
.footer-title p {
    color: white;
}

.description-item {
    transition: all 0.3s ease-in-out;
}

.btn-show-more {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-show-more:hover {
        background-color: #0056b3;
    }

.logo-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* ���� ����� ����� */
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block;
}

@media (max-width: 991.98px) {
    .logo-overlay {
        background-color: transparent !important;
        padding: 0 !important;
    }
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

.bg-light {
    background-color: #f9f9f9;
}

.about-sec .main-btn {
    min-width: 160px;
    text-align: center;
}

.num::before {
    content: "+";
    margin-right: 5px; /* ������ �� ������� ��� ������� ������ */
}

#unique-services {
    padding: 50px 0;
    background-color: #f9f9f9;
}

    #unique-services .container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    #unique-services .service {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

        #unique-services .service .icon {
            font-size: 40px;
            color: #007b5e;
            margin-bottom: 10px;
        }

        #unique-services .service h3 {
            font-size: x-large;
            margin: 10px 0;
            color: #c89f6b;
        }

        #unique-services .service p {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
        }

    #unique-services .service {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

        #unique-services .service:hover {
            transform: translateY(-5px);
        }


#specializations {
    padding: 50px 0;
    background-color: #f9f9f9;
}

    #specializations .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        text-align: center;
    }

    #specializations .section-title {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 30px;
        color: #333;
    }

    #specializations .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    #specializations .item {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

        #specializations .item:hover {
            transform: translateY(-5px);
        }

    #specializations .icon {
        font-size: 40px;
        color: #007b5e;
        margin-bottom: 10px;
    }

    #specializations h3 {
        font-size: 18px;
        color: #333;
        margin: 10px 0 0;
    }

    #specializations .section-description {
        font-size: 16px;
        color: #555;
        text-align: center;
        margin-bottom: 30px;
        line-height: 1.8;
    }
/* 8.2. Border button */
.border-btn-box {
    position: relative;
    border: 1px solid #c89f6b;
    text-align: center;
    display: inline-block;
}

.border-btn-inner {
    overflow: hidden;
}

    .border-btn-box:before,
    .border-btn-inner:after {
        position: absolute;
        width: calc(100% + 1px);
        height: 1px;
        content: '';
        background: #c89f6b;
        top: -1px;
        left: 0;
        -webkit-transition: 0.5s cubic-bezier(.76, .06, .85, .07);
        -o-transition: 0.5s cubic-bezier(.76, .06, .85, .07);
        transition: 0.5s cubic-bezier(.76, .06, .85, .07);
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left;
        -ms-transform-origin: left;
        transform-origin: left;
    }

    .border-btn-box:after,
    .border-btn-inner:before {
        position: absolute;
        width: 1px;
        height: calc(100% + 2px);
        content: '';
        background: #c89f6b;
        top: -1px;
        right: -1px;
        -webkit-transition: 0.5s cubic-bezier(.76, .06, .85, .07);
        -o-transition: 0.5s cubic-bezier(.76, .06, .85, .07);
        transition: 0.5s cubic-bezier(.76, .06, .85, .07);
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
    }

    .border-btn-inner:before {
        top: auto;
        right: auto;
        bottom: -1px;
        left: -1px;
        -webkit-transform-origin: bottom;
        -ms-transform-origin: bottom;
        transform-origin: bottom;
    }

    .border-btn-inner:after {
        top: auto;
        left: auto;
        bottom: -1px;
        right: 0;
        -webkit-transform-origin: right;
        -ms-transform-origin: right;
        transform-origin: right;
    }

.border-btn-box:hover:before,
.border-btn-box:hover .border-btn-inner:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.border-btn-box:hover:after,
.border-btn-box:hover .border-btn-inner:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.border-btn {
    font-family: 'DINNextLTArabic-Regular', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 60px;
    font-weight: 400;
    position: relative;
    color: transparent;
    padding: 0 60px;
}

    .border-btn:before,
    .border-btn:after {
        color: #262626;
        content: attr(data-text);
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%) translateX(0);
        -ms-transform: translateY(-50%) translateX(0);
        transform: translateY(-50%) translateX(0);
        width: 100%;
        /* -webkit-transition: .96s cubic-bezier(.767, .01, .18, 1.01); */
        -o-transition: .96s cubic-bezier(.767, .01, .18, 1.01);
        /* transition: .96s cubic-bezier(.767, .01, .18, 1.01); */
    }

    .border-btn:after {
        color: #c89f6b;
        -webkit-transform: translateY(-50%) translateX(30px);
        -ms-transform: translateY(-50%) translateX(30px);
        transform: translateY(-50%) translateX(30px);
        opacity: 0;
    }

.border-btn2 {
    font-family: 'DINNextLTArabic-Regular', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 60px;
    font-weight: 400;
    position: relative;
    color: transparent;
    padding: 0 60px;
}

    .border-btn2:before,
    .border-btn2:after {
        color: #262626;
        content: attr(data-text);
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%) translateX(0);
        -ms-transform: translateY(-50%) translateX(0);
        transform: translateY(-50%) translateX(0);
        width: 100%;
        /* -webkit-transition: .96s cubic-bezier(.767, .01, .18, 1.01); */
        -o-transition: .96s cubic-bezier(.767, .01, .18, 1.01);
        /* transition: .96s cubic-bezier(.767, .01, .18, 1.01); */
    }

    .border-btn2:after {
        color: #c89f6b;
        -webkit-transform: translateY(-50%) translateX(30px);
        -ms-transform: translateY(-50%) translateX(30px);
        transform: translateY(-50%) translateX(30px);
        opacity: 0;
    }

.border-btn-box:hover .border-btn:before {
    -webkit-transform: translateY(-50%) translateX(-30px);
    -ms-transform: translateY(-50%) translateX(-30px);
    transform: translateY(-50%) translateX(-30px);
    opacity: 0;
}

.border-btn-box:hover .border-btn:after {
    -webkit-transform: translateY(-50%) translateX(0);
    -ms-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.light-bg-2 .border-btn-box,
.light-bg-2 .border-btn-box {
    border: 1px solid #274e5a !important;
}

.light-bg-2 .border-btn2:before,
.light-bg-2 .border-btn2:before {
    color: #274e5a;
}

.dark-bg-1 .border-btn-box,
.dark-bg-2 .border-btn-box {
    border: 1px solid #dae9f4;
}

.dark-bg-1 .border-btn:before,
.dark-bg-2 .border-btn:before {
    color: white;
}

.red-bg .border-btn-box {
    border: 1px solid #262626;
}

.red-bg .border-btn:before {
    color: #262626;
}

.red-bg .border-btn:after {
    color: white;
}

.red-bg .border-btn-box:before,
.red-bg .border-btn-inner:after,
.red-bg .border-btn-box:after,
.red-bg .border-btn-inner:before {
    background: white;
}

.border-btn-red.border-btn-box {
    border: 1px solid #ffffff;
}

    .border-btn-red.border-btn-box:before,
    .border-btn-red .border-btn-inner:after,
    .border-btn-red.border-btn-box:after,
    .border-btn-red .border-btn-inner:before {
        background: #c89f6b;
    }

.border-btn-red .border-btn:before,
.border-btn-red .border-btn:after {
    color: white;
}

.border-btn-red .border-btn:after {
    color: #c89f6b;
}

@@media only screen and (max-width: 767px) {

    .border-btn {
        line-height: 55px;
        padding: 0 55px;
    }
}

@@media only screen and (max-width: 549px) {

    .border-btn {
        line-height: 50px;
        padding: 0 50px;
    }
}

}

.border-btn:before,
.border-btn:after {
    color: #262626;
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) translateX(0);
    -ms-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
    width: 100%;
    /* -webkit-transition: .96s cubic-bezier(.767, .01, .18, 1.01); */
    -o-transition: .96s cubic-bezier(.767, .01, .18, 1.01);
    /* transition: .96s cubic-bezier(.767, .01, .18, 1.01); */
}

.border-btn {
    font-family: 'DINNextLTArabic-Regular', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 60px;
    font-weight: 400;
    position: relative;
    color: transparent;
    padding: 0 60px;
}

    .border-btn:before,
    .border-btn:after {
        color: #262626;
        content: attr(data-text);
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%) translateX(0);
        -ms-transform: translateY(-50%) translateX(0);
        transform: translateY(-50%) translateX(0);
        width: 100%;
        /* -webkit-transition: .96s cubic-bezier(.767, .01, .18, 1.01); */
        -o-transition: .96s cubic-bezier(.767, .01, .18, 1.01);
        /* transition: .96s cubic-bezier(.767, .01, .18, 1.01); */
    }

.about_tabs_sec {
    font-size: 18px;
}

.home-item {
    position: relative;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* ���� �������� */
    z-index: 1;
}

.home-item .container,
.home-item .content {
    position: relative;
    z-index: 2;
}


.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }


.page-top a {
    color: white;
}


.section_title.linear {
    background: linear-gradient(to right, #c89f6b 30%, #c89f6b 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.about-sec {
    position: relative;
    z-index: 2;
    background-color: rgba(238, 238, 238, 0.2039215686);
}

.about-content {
    display: flex;
    gap: 50px 65px;
}

@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
}

.about-content .about-img {
    width: 380px;
    height: 400px;
    position: relative;
    flex-shrink: 0;
}

@media screen and (max-width: 425px) {
    .about-content .about-img {
        width: 325px;
        height: 380px;
    }
}

@media screen and (max-width: 375px) {
    .about-content .about-img {
        width: 290px;
        height: 290px;
    }
}

html[lang=en] .about-content .about-img::before {
    left: 26px;
}

html[lang=ar] .about-content .about-img::before {
    right: 26px;
}

@media screen and (max-width: 425px) {
    .about-content .about-img::before {
        border-start-end-radius: 10px;
    }
}

html[lang=en] .about-content .about-img::after {
    left: -15px;
}

html[lang=ar] .about-content .about-img::after {
    right: -15px;
}

@media screen and (max-width: 425px) {
    .about-content .about-img::after {
        width: 60px;
        height: 60px;
        bottom: -10px;
    }

    html[lang=en] .about-content .about-img::after {
        left: -10px;
    }

    html[lang=ar] .about-content .about-img::after {
        right: -10px;
    }
}

.about-content .about-img .img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-start-start-radius: 10px;
}

@media screen and (max-width: 425px) {
    .about-content .about-img .img {
        border-start-end-radius: 10px;
    }
}

.about-content .about-img .logo {
    position: absolute;
    background-color: #fff;
    writing-mode: vertical-rl;
    padding: 20px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 2px dashed #fff;
    outline-offset: 5px;
    color: #c89f6b;
}

html[lang=en] .about-content .about-img .logo {
    left: 20px;
}

html[lang=ar] .about-content .about-img .logo {
    right: 20px;
}

.about-content .about-img .logo img {
    max-width: 100px;
}

.about-content .content .main-title {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .about-content .content .main-title .btn {
        cursor: unset;
        outline: unset;
        border: unset;
        opacity: 0.7;
    }

    .about-content .content .main-title .icon {
        width: 34px;
        height: 34px;
        background-color: #c89f6b;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
        color: #fff;
    }

.about-content .content .text {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 18px;
    text-align: justify;
}

@media only screen and (max-width: 425px) {
    .about-content .content .text {
        font-size: 13px;
    }
}

.about-content .content .main-btn {
    max-width: -moz-fit-content;
    max-width: fit-content;
}

.about-content.sm {
    align-items: center;
}

    .about-content.sm .about-img {
        height: 400px;
    }

.our_cards {
    background-color: rgba(242, 245, 247, 0.5607843137);
    padding: 18px;
    border-radius: 10px !important;
}

.our_card {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    margin-bottom: 20px;
    background-color: #fff;
    gap: 25px;
    padding-inline-end: 25px;
}

    .our_card .number {
        background-color: #c89f6b;
        color: #fff;
        font-size: 25px;
        padding-block: 20px;
        padding-inline-end: 40px;
        padding-inline-start: 45px;
        border-start-end-radius: 40px;
        border-end-end-radius: 40px;
        position: relative;
        transition: all 0.3s ease;
        z-index: 2;
        overflow: hidden;
    }

        .our_card .number .img {
            max-width: 35px;
            transform: scaleX(-1);
        }

        .our_card .number::before {
            content: "";
            position: absolute;
            width: 4px;
            height: 100%;
            top: 50%;
            transform: translateY(-50%);
            background-color: #c89f6b;
            z-index: -1;
            transition: all 0.3s ease;
        }

html[lang=en] .our_card .number::before {
    left: 0;
}

html[lang=ar] .our_card .number::before {
    right: 0;
}

.our_card .name {
    color: #c89f6b;
    font-size: 20px;
    margin-bottom: 10px;
}

.our_card .text {
    color: #272727;
    margin-bottom: 0 !important;
}

.our_card:hover .number::before {
    width: 100%;
}

@media screen and (max-width: 425px) {
    .our_card {
        flex-direction: column;
        padding: 25px 15px;
        gap: 15px;
    }

        .our_card .number {
            border-radius: 10px;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .our_card .number .img {
                max-width: 25px;
            }

        .our_card .name,
        .our_card .text {
            text-align: justify;
        }
}

.our_card.sm {
    flex-direction: row;
    padding: 25px 15px;
    box-shadow: unset;
}

    .our_card.sm .number {
        border-radius: 10px;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 75px;
        height: 75px;
    }

        .our_card.sm .number .img {
            max-width: 30px;
        }

    .our_card.sm .name,
    .our_card.sm .text {
        text-align: justify;
    }

    .our_card.sm .name {
        margin-bottom: 15px;
    }

.Our_values_sec {
    position: relative;
    z-index: 2;
}

.our_values,
.our_choices {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 36px 30px;
}

.our_value {
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

    .our_value::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.89);
        z-index: -1;
    }

    .our_value .our_value_img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        -o-object-fit: cover;
        object-fit: cover;
        transition: all 0.3s ease;
    }

    .our_value .icon {
        max-width: 65px;
        max-height: 45px;
    }

    .our_value .name {
        color: #062b15;
        font-size: 17px;
    }

    .our_value .text {
        text-align: center;
        font-size: 13px;
        color: #000;
    }

    .our_value:hover .our_value_img {
        transform: scale(1.1);
    }

@media screen and (max-width: 425px) {
    .our_value .name {
        font-size: 15px;
    }
}

.our_choice {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    padding: 0 10px 20px;
}

    .our_choice .num_ch {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        background-color: #c89f6b;
        width: -moz-fit-content;
        width: fit-content;
        width: 60px;
        height: 60px;
        border-radius: 60px !important;
        border-start-start-radius: 0px !important;
        border-start-end-radius: 0px !important;
        margin-inline: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 18px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 2;
    }

        .our_choice .num_ch::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #c89f6b;
            transition: all 0.3s ease;
            z-index: -1;
        }

    .our_choice .text {
        text-align: center;
        font-size: 14px;
        color: #272727;
    }

    .our_choice:hover .num_ch::before {
        height: 100%;
    }

@media screen and (max-width: 425px) {
    .our_choice .num_ch {
        font-size: 18px;
    }

    .our_choice .text {
        font-size: 13px;
    }
}


/********************* Start Pdf section *********************/
.pdf-sec {
    background-color: rgba(128, 198, 125, 0.04);
    position: relative;
}

.regulations-content .regul-item {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

    .regulations-content .regul-item .reg-info {
        display: block;
        padding: 20px;
        height: 100%;
        width: 100%;
        background-color: #fff;
        color: #272424;
        font-size: 17px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

@media screen and (max-width: 425px) {
    .regulations-content .regul-item .reg-info {
        font-size: 15px;
        padding: 20px 15px;
    }
}

.regulations-content .regul-item .reg-info .reg-icon {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    background-color: #c89f6b;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.regulations-content .regul-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    background-color: #c89f6b;
    width: 0;
    height: 3px;
    transition: all 0.5s ease;
}

html[lang=en] .regulations-content .regul-item::after {
    left: 0;
}

html[lang=ar] .regulations-content .regul-item::after {
    right: 0;
}

.regulations-content .regul-item:hover .reg-info {
    color: #c89f6b;
}

    .regulations-content .regul-item:hover .reg-info .reg-icon {
        transform: scale(1);
        opacity: 1;
    }

.regulations-content .regul-item:hover::after {
    width: 100%;
}

.regulations-content.sec .regul-item::after {
    background-color: #c89f6b;
}

.regulations-content.sec .regul-item .reg-info .reg-icon {
    background-color: #c89f6b;
}

.regulations-content.sec .regul-item:hover .reg-info {
    color: #c89f6b;
}

/********************* End Pdf section *********************/

/********************* Start contact-box section *********************/
.contact-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media screen and (max-width: 768px) {
    .contact-box {
        padding: 15px;
        gap: 12px;
    }
}

.contact-box .ic {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c89f6b;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .contact-box .ic {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.contact-box .name {
    font-size: 18px;
    color: #272424;
}

@media screen and (max-width: 768px) {
    .contact-box .name {
        font-size: 16px;
    }
}

.contact-box .desc {
    font-size: 14px;
    color: #272424;
}

@media screen and (max-width: 768px) {
    .contact-box .desc {
        font-size: 13px;
    }
}

.contact-box:hover {
    transform: translateY(-10px);
}

    .contact-box:hover .ic {
        background-color: #c89f6b;
    }

.contact-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    transition: all 0.3s ease;
    margin-bottom: -50px;
    position: relative;
    z-index: 65;
}

@media screen and (max-width: 768px) {
    .contact-form {
        padding: 20px 15px;
    }
}

.contact-form .input-g {
    margin-bottom: 24px;
}

.contact-form .input-me {
    background-color: #fff !important;
}

.contact-img {
    max-width: 100%;
    max-height: 360px;
}

@media screen and (max-width: 992px) {
    .contact-img {
        display: none;
    }
}

/********************* End contact-box section *********************/

/********************* Start brand section *********************/
.clients-slider .owl-stage-outer {
    padding: 20px 0;
}

    .clients-slider .owl-stage-outer .owl-item {
        display: flex;
        align-items: center;
    }

.client-item {
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgba(39, 36, 36, 0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 100px;
    border-radius: 12px;
    position: relative;
}

    .client-item::after, .client-item::before {
        content: "";
        position: absolute;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        background-color: rgba(128, 198, 125, 0.1);
        z-index: -1;
    }

    .client-item::after {
        top: -8px;
    }

html[lang=en] .client-item::after {
    right: -8px;
}

html[lang=ar] .client-item::after {
    left: -8px;
}

.client-item::before {
    bottom: -8px;
}

html[lang=en] .client-item::before {
    left: -8px;
}

html[lang=ar] .client-item::before {
    right: -8px;
}

.brand-img {
    max-width: 80px;
    max-height: 75px;
}

/********************* End brand section *********************/

/********************* Start reviews section *********************/
.customer-reviews {
    overflow: hidden;
}

.reviews-slider .center .review-card {
    background-color: #f7f7ff;
    transform: scale(1);
    opacity: 1;
}

.reviews-slider .owl-dots {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

    .reviews-slider .owl-dots .owl-dot {
        border-radius: 50%;
        width: 10px;
        height: 10px;
        background-color: #dbeded !important;
        transition: all 0.3s ease;
    }

        .reviews-slider .owl-dots .owl-dot.active {
            background-color: #c89f6b !important;
        }

.review-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 0 5px 0 rgba(37, 33, 34, 0.1);
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .review-card {
        padding: 15px 10px;
    }
}

.review-card .top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card .review-img {
    border-radius: 50%;
    width: 65px !important;
    height: 65px !important;
    -o-object-fit: cover;
    object-fit: cover;
    box-shadow: 0 0 5px 0 rgba(37, 33, 34, 0.1);
}

@media screen and (max-width: 768px) {
    .review-card .review-img {
        border-radius: 50%;
        width: 55px !important;
        height: 55px !important;
    }
}

.review-card .name {
    font-size: 19px;
    font-weight: 700;
    color: #252122;
    margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
    .review-card .name {
        font-size: 17px;
    }
}

.review-card .jop {
    font-size: 17px;
    color: #7E8485;
}

@media screen and (max-width: 768px) {
    .review-card .jop {
        font-size: 16px;
    }
}

.review-card .text-con {
    position: relative;
    margin-top: 18px;
}

@media screen and (max-width: 768px) {
    .review-card .text-con {
        margin-top: 12px;
    }
}

.review-card .text-con .info {
    line-height: 25px;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .review-card .text-con .info {
        font-size: 15px;
    }
}

/********************* End reviews section *********************/

/********************* Start text section *********************/
.text-section {
    position: relative;
    padding: 140px 0;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

@media screen and (max-width: 992px) {
    .text-section {
        padding: 100px 0;
    }
}

@media screen and (max-width: 576px) {
    .text-section {
        padding: 70px 0;
    }
}

.text-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 33, 34, 0.7);
    z-index: 1;
}

.text-section .background_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -2;
}

.text-section .brand-text {
    text-align: center;
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 992px) {
    .text-section .brand-text {
        font-size: 28px;
    }
}

@media screen and (max-width: 576px) {
    .text-section .brand-text {
        font-size: 24px;
    }
}

@media screen and (max-width: 576px) {
    .text-section .brand-text {
        font-size: 20px;
    }
}

/********************* End text section *********************/

/********************* Start About section *********************/
.about-section {
    background-color: #f7f7ff;
    position: relative;
    overflow: hidden;
}

    .about-section .bg_sec {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .about-section .bg_sec2 {
        position: absolute;
        top: -20px;
        width: 80px;
        height: 80px;
        z-index: 1;
    }

html[lang=en] .about-section .bg_sec2 {
    right: 0;
}

html[lang=ar] .about-section .bg_sec2 {
    left: 0;
}

@media screen and (max-width: 768px) {
    .about-section .bg_sec2 {
        width: 50px;
        height: 50px;
        display: none;
    }
}

.about-section .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

@media screen and (max-width: 768px) {
    .about-section .about-container {
        flex-direction: column-reverse;
    }
}

.about-section .about-container .about-img {
    width: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    height: 350px;
    border-radius: 8px;
}

@media screen and (max-width: 992px) {
    .about-section .about-container .about-img {
        width: 325px;
        height: 290px;
    }
}

@media screen and (max-width: 768px) {
    .about-section .about-container .about-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        opacity: 0.1;
    }
}

.about-section .about-container .about-content {
    display: grid;
    row-gap: 18px;
}

@media screen and (max-width: 992px) {
    .about-section .about-container .about-content {
        row-gap: 14px;
    }
}

@media screen and (max-width: 768px) {
    .about-section .about-container .about-content {
        justify-items: center;
        position: relative;
        z-index: 2;
    }
}

.about-section about-sec .about-container .about-content .logo {
    max-width: 80px;
    max-height: 90px;
}

.about-section .about-container .about-content .about-title {
    font-size: 20px;
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    .about-section .about-container .about-content .about-title {
        font-size: 18px;
    }
}

.about-section .about-container .about-content .about-text {
    line-height: 26px;
}

@media screen and (max-width: 768px) {
    .about-section .about-container .about-content .about-text {
        text-align: center;
    }
}

.about-section .about-container .about-content .main-btn {
    width: -moz-fit-content;
    width: fit-content;
}

/********************* End About section *********************/


/********************* Titles *********************/
.big-title {
    font-size: 23px;
    color: #060042;
    font-family: fontDemi;
}

@media screen and (max-width: 576px) {
    .big-title {
        font-size: 20px;
    }
}

.big-title.sm {
    font-size: 17px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

    .section-head .main-btn {
        height: 40px !important;
        min-width: 100px !important;
    }

@media screen and (max-width: 576px) {
    .section-head .main-btn {
        height: 35px !important;
        min-width: 85px !important;
    }
}

@media screen and (max-width: 425px) {
    .section-head {
        align-items: start;
    }
}

.main-title {
    color: #c89f6b;
    font-size: 25px;
    font-weight: 600;
    margin: auto;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
}

    .main-title::before, .main-title::after {
        content: "";
        position: absolute;
        height: 4px;
        border-radius: 15px;
        width: 80%;
    }

    .main-title::before {
        bottom: -11px;
        background-color: #c89f6b;
    }

html[lang=en] .main-title::before {
    left: -10px;
}

html[lang=ar] .main-title::before {
    right: -10px;
}

.main-title::after {
    bottom: -17px;
    background-color: #c89f6b;
}

html[lang=en] .main-title::after {
    right: -10px;
}

html[lang=ar] .main-title::after {
    left: -10px;
}

@media screen and (max-width: 425px) {
    .main-title {
        font-size: 15px;
    }
}

.offers {
    position: relative;
    padding: 0 20px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

    .offers::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 50% !important;
        transform: translate(-50%, -50%);
        width: calc(100% + 20px);
        height: calc(100% + 20px);
        border-radius: 25px;
        background-color: rgba(255, 0, 0, 0.897);
        z-index: -1;
        animation: pulse 600ms infinite alternate;
        right: unset !important;
    }

    .offers::after {
        display: none;
    }

.sec-title {
    color: #c89f6b;
    font-size: 25px;
    font-weight: 700;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
}

    .sec-title::before, .sec-title::after {
        content: "";
        position: absolute;
        height: 4px;
        background-color: #c89f6b;
        bottom: -12px;
        border-radius: 15px;
    }

    .sec-title::before {
        width: 70px;
    }

html[lang=en] .sec-title::before {
    left: 0;
}

html[lang=ar] .sec-title::before {
    right: 0;
}

.sec-title::after {
    width: 10px;
}

html[lang=en] .sec-title::after {
    left: 73px;
}

html[lang=ar] .sec-title::after {
    right: 73px;
}

@media screen and (max-width: 576px) {
    .sec-title {
        font-size: 17px;
    }
}

@media screen and (max-width: 425px) {
    .sec-title {
        font-size: 16px;
    }
}
