@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Cairo:wght@200..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lunasima:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul {
    padding-left: 0;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}


body {
    font-family: "Cairo", serif;
}


::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: #37B461;
}

::-webkit-scrollbar-thumb:hover {
    background: #37B461;
}


.dropdown-toggle::after {
    display: none !important;
}


/* =================== preload ======================*/
.preload {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    object-fit: contain;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999999999999999;
}


@media(max-width:700px) {
    header .d-flex {
        display: flex !important;
        flex-direction: column;
        text-align: start !important;
        align-items: flex-start !important;
        /* padding-left: 30px; */
        padding-top: 10px;
    }

    .main-link i {
        display: block !important;
    }

    .main-link {
        display: flex;

    }

    .section-tow {
        padding: 0 !important;
    }

    .img-about {
        padding: 0 !important;
    }
}

.container {
    max-width: 1150px;
    margin: 0 auto;
}

.lang-en .text-about h2 {
    direction: ltr;
    text-align: left;
}

.navbar {
    justify-content: space-between;
    padding-top: 26px;
    padding-bottom: 18px;
    position: fixed;
    z-index: 999999999;
    width: 100%;
    box-shadow: 1px 1px 5px #ddd;
    background-color: #ffff;
}

.navbar-brand {
    position: absolute;
    left: 48%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.menu-left {
    flex-grow: 1;
}

.nav-item .nav-link {
    font-size: 16px;
    font-weight: 600 !important;
    color: #000000;
}


.main-contact {
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(-45deg, #5ADFF6, #0456C3);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    padding: 10px 20px;
    border: none;
    -o-border-radius: 50px;
    font-weight: 600;
}


   .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.flip-card-front {
    background-color: #fff;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-back {
    transform: rotateY(180deg);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flip-card-back .background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.4); 
}

.flip-card-back .back-content {
    z-index: 2;
    color: white;
    text-align: center;
}

.flip-card-back .back-content h5 {
    font-size: 20px;
    font-weight: bold;
}

.flip-card-back .back-content a {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
}



.main-contact i {
    background: linear-gradient(-45deg, #0456C3, #5ADFF6);
    padding: 5px;
    color: #fff;
    font-size: 12px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px
}

@media(max-width:767px) {
    .main-contact i {
        display: none !important;
    }

    /* .main-link i{
        display: none !important;
    } */
}

.main-link i {
    /* background: linear-gradient(-45deg, #0456C3, #5ADFF6); */
    padding: 5px;
    color: #000;
    font-size: 14px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    margin-left: 5px;
    -o-border-radius: 50px;
}


.main-link {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    text-decoration: none;
}

.main-link::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 4px;
    background: #37B461;
    transition: width 0.3s ease;
}

.main-link:hover::before {
    width: 100%;
}


.main-contact:hover {
    background: linear-gradient(-45deg, #0456C3, #5ADFF6);
    color: #fff;
}


.navbar-brand {
    padding-bottom: 20px;
}

.navbar-nav .nav-link {
    position: relative;
    color: #000;
    font-weight: 600 !important;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link i {
    /* background: linear-gradient(-45deg, #0456C3, #5ADFF6); */
    padding: 5px;
    color: #000;
    font-size: 14px;
    margin-left: 5px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #37B461;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: linear-gradient(-45deg, #0456C3, #5ADFF6);
}


@media (max-width: 768px) {
    .menu-left {
        flex-grow: 0;
    }

    .navbar-brand {
        position: absolute;
        left: 80%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }


    .navbar-brand {
        position: absolute;
        right: 10px;
        top: -5px;
        z-index: 10;
    }



    .navbar-brand img {
        width: 100px;
        padding-top: 0px;
    }
}


/* main  */

/* slider */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

@media (min-width: 1400px) {
    .swiper-slide img {
        height: 900px !important;
    }

}


@media (max-width: 500px) {
    .swiper-slide img {
        height: 300px !important;
    }
}

@media(max-width:1700px) {

    .hero-slider {
        height: 80dvh;
    }
}

.hero-slider {
    background-color: #1D1A1B;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100dvh;
    position: relative;
}

.hero-slider h1 {
    font-size: 4rem;
}

.hero-slider .col-lg-10 {
    text-align: left;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.119) 0%, rgba(0, 0, 0, 0.497) 100%);
    z-index: 2;
    pointer-events: none;
}

/* about */

.section-tow {
    padding: 80px 0;
    background-color: #fff;
}

.text-about {
    text-align: left;
    padding: 20px;
}

.text-about h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Architects Daughter', sans-serif;
}

.text-about p {
    font-size: 14px;
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.text-about .btn {
    border-radius: 50px;
    color: #fff;
    background: #37B461;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    padding: 10px 20px;
    border: none;
    -o-border-radius: 50px;
    font-weight: 600;
}


.text-about .btn:hover {
    background-color: #39b563;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.img-about {
    text-align: center;
    padding: 20px;
}

.img-about img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .text-about {
        text-align: center;
    }

    .text-about h2 {
        font-size: 2rem;
    }

    .text-about p {
        font-size: 0.9rem;
    }

    .img-about img {
        margin-top: 20px;
    }
}


/* prodect */
.products {
    padding: 80px 0;
    background: #37B461;
}

.products h2 {
    color: #fff;
}


.products .product-card img {
    width: 100%;
    height: 300px;
    object-fit: fill;
}


.product-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.title-product {
    position: absolute;
    top: 65%;
    left: 0;
    padding: 10px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: start;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
}

.product-card:hover .title-product {
    opacity: 1;
}

.title-product h3 {
    font-size: 24px;
}

.title-product a {
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.title-product p {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
}

.products h2 {
    font-size: 35px;
    padding: 10px 0;
    text-align: center;
}


/* slider parnds */

.reviews {
    background-color: #fff;
    padding-top: 90px;
    padding-bottom: 70px;
}


.reviews .review {
    border: 1px solid #ffffff28;
}


.reviews .review .header img {
    height: 230px !important;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}




@media (width <=500px) {


    .reviews .review .header .cardHeadline {
        flex-direction: column;
    }

    .reviews .review .header .cardHeadline .rate::before {
        content: none;
    }


    .reviews .review .header .cardHeadline .rate {
        margin-inline-start: 0px;
    }
}

/* contact us */

.dev-contact {
    /* background-color: #f9f9f9; */
    /* margin-top: -70px; */
    /* height: 100vh; */
}



.contact-info {
    padding: 40px 20px;
}

.info-box {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 100%;
}

.info-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #39b563;
    border-radius: 50%;
}

.info-box .icon i {
    font-size: 24px;
    color: #37B461;
}

.info-box h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 1rem;
    color: #4f4f4f;
    margin: 5px 0;
}

.contact-section {
    /* max-width: 900px; */
    margin: 80px auto;
    border-radius: 10px;
    line-height: 60px;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 10px 5px;
    font-size: 16px;
    background-color: transparent;
    transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -ms-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom: 2px solid #007bff;
}

.form-group label {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 14px;
    color: #555;
}




.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}


.btn-submit {
    padding: 12px 20px;
    background: #37B461;
    color: #fff;
    padding: 0;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #37B461;
}

@media (max-width: 768px) {
    .contact-section {
        margin: 20px;
        padding: 15px;
    }

    .dev-contact {
        padding-top: 70px;
    }
}

/* footer */


footer {
    padding-top: 4rem;
    background-color: #fff;
    border-top: 1px solid #e2e2e2;
}

footer .footerInner {
    display: grid;
    grid-template-columns: 9fr repeat(2, 4fr) 1fr;
    gap: 40px;
    color: #000;
}

footer .footerInner .main .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

footer .footerInner .main .logo span.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background: linear-gradient(-45deg, #5ADFF6, #0456C3);
    aspect-ratio: 1/1;
    width: 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-inline-end: 3px;
}

footer .footerInner .main .logo span:last-of-type {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

footer .footerInner .main p {
    padding: 20px 0;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    font-size: 12px;
}

footer .footerInner .main .social a {
    background: #37B461;
    aspect-ratio: 1/1;
    width: 40px;
    border-radius: 5px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-inline-end: 10px;
    transition: 0.3s all ease-in-out;
    text-transform: capitalize;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

footer .footerInner .main .social a:hover {
    background-color: #00000099;
    border: 1px solid #000;
    color: #333;
}

footer .footerInner h4 {
    font-size: 1.5rem;
    font-weight: 100;
    /* text-transform: uppercase; */
}

footer .footerInner .line {
    height: 3px;
    width: 30%;
    border-radius: 5px;
    background: #37B461;
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

footer .footerInner .links ul>li>a {
    display: inline-flex;
    padding: 10px 10px;
    padding-inline-start: 0;
    color: #000;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

footer .footerInner .links ul>li>a:hover {
    color: #000;
}

footer .footerInner .links ul>li>a::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.5rem;
    vertical-align: middle;
    margin-inline-end: 10px;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

footer .footerInner .links ul>li>a:hover::before {
    margin-inline-end: 15px;
    font-size: 0.6rem;
}

footer .footerInner .contact ul>li>a {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 20px;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

footer .footerInner .contact ul>li>a:hover {
    color: #000;
}

footer .footerInner .contact ul>li>a i {
    aspect-ratio: 1/1;
    background: #37B461;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

footer .footerInner .contact ul>li>a>span {
    font-size: 1rem;
    /* font-weight: 200; */
    color: #000;
}

footer .footerInner .contact ul>li>a>span span {
    color: #000;
    font-weight: 400;
}

footer .lowerFooter {
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-block: 20px;
    margin-top: 3rem;
    /* background: linear-gradient(-45deg, #5ADFF6, #0456C3);  */
    text-transform: capitalize;
}

footer .lowerFooter a {
    color: #000;
}

footer .lowerFooter ul {
    display: inline-flex;
}

footer .lowerFooter ul a {
    padding: 2px 10px;
}

@media (width <=800px) {
    footer .footerInner {
        grid-template-columns: 2fr 1fr;
    }

    footer .footerInner .main {
        order: -1;
    }

    footer .footerInner .contact {
        order: -1;
    }

    footer .footerInner .important {
        order: -1;
    }

    footer .lowerFooter,
    footer .lowerFooter ul {
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    footer .lowerFooter ul {
        margin-top: 10px;
    }
}

@media (width <=500px) {
    footer .footerInner {
        grid-template-columns: 1fr;
    }

    footer .footerInner .contact {
        order: 3;
    }
}

footer .footerInner .links ul>li>a::before {
    position: relative;
    top: 5px;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}


/* about */
.hero-about {
    background-image: url(../img/hero2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    padding: 20px;
    margin: 0;
    position: relative;
    overflow: hidden;
}


.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-about>* {
    position: relative;
    z-index: 2;
}


.text-about h2 {
    font-size: 4rem;
    font-weight: 700;
    /* color: #fff; */
}

.text-about h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.product-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 20px;
}

.product-info h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #333;
}

.product-info .category {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
}

.product-info .description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.ct-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    display: flex !important;
    justify-content: center;
    gap: 10px;
    gap: 60px;
}

.ct-breadcrumb li {
    font-size: 1.2rem;
}

.ct-breadcrumb li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.ct-breadcrumb li a:hover {
    color: #007bff;
}

.ct-breadcrumb li span {
    color: #ddd;
}

/* img-prodects */

.prodect-deteles {
    margin-bottom: 20px;
    padding-top: 120px;
    gap: 20px;
}


.deteles {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.img-prodects img {
    width: 100%;
    height: 230px;
    /* object-fit: cover; */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.prodect-titel {
    padding: 20px;
}

.prodect-titel h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.prodect-titel p {
    font-size: 1rem;
    color: #777;
    margin: 10px 0;
}

.price {
    font-size: 1.2rem;
    color: #0056b3;
    font-weight: bold;
    margin-bottom: 15px;
}

.buy-btn a {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(45deg, #0456C3, #5ADFF6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}


.shipping-section {
    padding: 50px 20px;
}

.shipping-title {
    color: #0b593b;
    font-weight: bold;
}

.shipping-list i {
    color: #0b593b;
    margin-left: 8px;
}

.shipping-list li {
    margin-bottom: 15px;
    font-size: 18px;
}

.image-box img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .shipping-title {
        font-size: 24px;
        text-align: center;
    }

    .shipping-subtitle {
        text-align: center;
    }
}



.section-about {
    padding: 50px 0;
    overflow: hidden;
}

.about-heading {
    color: #37B461;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: right;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: right;
}

.stats-box {
    background-color: #37B461;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.stats-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-icon {
    color: #25D366;
    font-size: 26px;
    margin-left: -12px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    text-align: right;
    gap: 20px;
    align-items: center;
}

.feature-text {
    font-size: 15px;
}

.btn-primary {
    background-color: #37B461;
    border-color: #37B461;
    padding: 10px 25px;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: #37B461;
    border-color: #37B461;
}

.img-about img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.read-more-btn {
    display: inline-block;
    background-color: #37B461;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
}


.stats-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: #37B461;
    padding: 10px;
}


.shipping-section {
    padding: 50px 0;
}

.shipping-title {
    color: #37B461;
    font-weight: 700;
    font-size: 32px;
}

.shipping-subtitle {
    color: #333;
    font-size: 18px;
}

.shipping-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.shipping-list li i {
    color: #37B461;
    margin-left: 10px;
    font-size: 20px;
}

.image-box img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.contact-section {
    position: relative;
}

.contact-content {
    background-color: #2d6a4f;
    color: white;
    padding: 60px 40px;
    height: 100%;
    text-align: left;
}

.contact-title {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
}

.contact-subtitle {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
}

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

.contact-info {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 20px;
}


.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.info-icon i {
    font-size: 15px;
    color: white;
}

.info-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon i {
    color: #2d6a4f;
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.contact-image {
    width: 100%;
    height: 100vh;
    background-image: url('../img/caucasian-.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media(max-width:1890px)and (min-width:991px){

.contact-image {
    height: 160vh;
    background-position: center center;
}
}



.whatsapp-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .contact-image {
        min-height: 300px;
    }

    .contact-content {
        padding: 40px 20px;
    }

    .contact-subtitle {
        font-size: 32px;
    }
}


.info-item .main-titel {
    display: flex;
    gap: 10px;
    font-size: 10px;
}


.main-titel div{
    font-size: 15px;
}


.custom-section {
    padding: 60px 0;
}

.custom-image {
    max-width: 100%;
    height: 350px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.custom-card {
    position: relative;
    background-image: url('../img/caucasian-.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    height: 325px;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    z-index: 1;
}

.custom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 88, 63, 0.8);
    z-index: 0;
}

.custom-card * {
    position: relative;
    z-index: 1;
}


.custom-card h5 {
    margin-bottom: 15px;
    font-weight: bold;
}

.custom-card p {
    flex-grow: 1;
}

.custom-card a {
    color: white;
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    width: 28%;
    width: max-content;
}

.custom-card a:hover {
    background-color: white;
    color: #00583f;
}



.header-main {
    text-align: center;
    margin-bottom: 70px;
}

.small-title {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.green-text {
    color: #1a6e50;
}

.description {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 16px;
    color: #666;
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    border: 1px solid #1a6e50;
    border-radius: 5px;
    padding: 20px;
    height: 250px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: opacity 0.3s ease;
    z-index: 2;
    position: relative;
}

.card-content h3 {
    color: #1a6e50;
    margin-bottom: 15px;
    font-size: 18px;
}

.card-content p {
    font-size: 14px;
    color: #666;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover .card-content {
    opacity: 0;
}

.service-card:hover .card-image {
    opacity: 1;
}

.button-container {
    text-align: center;
    margin-top: 30px;
}

.contact-button {
    background-color: #1a6e50;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #155a41;
}

@media (max-width: 1024px) {
    .services-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid-main {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 26px;
    }
}



/* تأثير الـ hover مع انيميشن */
.service-card:hover .card-content {
    opacity: 0;
    transform: translateY(-20px);
}

.service-card:hover .card-image {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: brightness(1);
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 110, 80, 0.8) 0%, rgba(26, 110, 80, 0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .card-image {
    z-index: 2;
}


.service-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s ease;
    z-index: 2;
    position: relative;
    backface-visibility: hidden;
}

.card-content h3 {
    color: #1a6e50;
    margin-bottom: 15px;
    font-size: 18px;
}

.card-content p {
    font-size: 14px;
    color: #666;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 1;
    transform: scale(1.2) rotate(5deg);
    filter: brightness(0.8);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover .card-content {
    opacity: 0;
    transform: translateY(-20px);
}

.service-card:hover .card-image {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: brightness(1);
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 110, 80, 0.8) 0%, rgba(26, 110, 80, 0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .card-image {
    z-index: 2;
}

.button-container {
    text-align: center;
    margin-top: 30px;
}

.contact-button {
    background-color: #37B461;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 19px;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Tajawal", sans-serif;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #155a41;
}




.hero-section {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 300px;
    background-image: url('../img/caucasian-.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.main-title {
    color: #2ecc71;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

.description {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}


.description-2 {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
}


.whatsapp-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-button i {
    font-size: 30px;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .whatsapp-button a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.6rem;
    }

    .hero-section {
        min-height: 500px;
    }
}



.stats-section {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    background-color: #f6f6f6;

}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(#f0f0f0 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.icon {
    font-size: 40px;
    color: #2a6e51;
    margin-bottom: 15px;
}

.number {
    font-size: 42px;
    font-weight: 700;
    color: #2a6e51;
    margin-bottom: 10px;
}

.description {
    font-size: 16px;
    color: #2a6e51;
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-grid {
        justify-content: center;
    }

    .stat-item {
        flex-basis: 40%;
    }
}

@media (max-width: 768px) {
    .stat-item {
        flex-basis: 100%;
    }
}



.page-banner {
    position: relative;
    width: 100%;
    height: 330px;
    background-image: url('../img/caucasian-.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #e0e0e0;
}

.breadcrumb-separator {
    margin: 0 10px;
}

.breadcrumb-current {
    color: #cccccc;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.2rem;
    }

    .breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 250px;
    }

    .banner-title {
        font-size: 1.8rem;
    }
}


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

.section-header {
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}


.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* تجاوب مع الشاشات المتوسطة */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-title {
        font-size: 2rem;
    }
}

/* تجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-title {
        font-size: 1.8rem;
    }
}

/* تجاوب مع الشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .section-header::before {
        right: -15px;
    }
}



.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-container {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.w-100 {
    width: 100%;
}

.primary-image,
.secondary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
}

.secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .primary-image {
    opacity: 0;
}

.product-card:hover .secondary-image {
    opacity: 1;
}


@media(min-width:1600px){

.main-section-tow{
    height: 25vh !important;
}
}

.main-section-tow{
   position: relative;
    z-index: 3;
    height: 50vh;
    display: flex;
    align-items: flex-end;
}


@media(max-width:991px){

.main-section-tow{
    height: 120vh !important;
    display: flex;
}
}
