:root{
    --main-color: #b3aa5d;
}

html {
    scroll-behavior: smooth;
}


body{
    direction: rtl;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}





.header-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 10px 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    direction: rtl;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

@media (min-width: 1024px) {
    .logo img {
        height: 70px;
    }
}


.links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}


.links a {
    text-decoration: none;
    color: #b79b17;
    font-size: 19px;
    font-weight: 600;
    transition: 0.3s ease;
}

.links a:hover {
    color: #85763a;
    transform: translateY(-2px);
}


.activ {
    background-color: #ffd615;
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 19px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.activ:hover {
    background-color: #a49350;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .header-area {
        flex-direction: column;
        padding: 12px 20px;
    }

    .links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .links a {
        font-size: 17px;
    }

    .activ {
        font-size: 17px;
        padding: 9px 22px;
    }
}





        /* end nav */

/* start img */
/* .hero {
    position: relative;
    z-index: 5;
    height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./image/snapedit_1.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    color: #FFF;
}
.hero-text {
    text-align: center;
    font-family: 'Cairo', sans-serif;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 25px;
} */



.hero {
    position: relative;
    z-index: 5;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./image/snapedit_1.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);

    z-index: -1;
}


.hero-content {
    text-align: center;
    max-width: 700px;
    color: #fff;
    padding: 0 20px;
    z-index: 10;
}


@media (max-width: 768px) {
    .hero {
        height: 80vh;
        background-position: center top;

    }

    .hero-content {
        font-size: 16px;
        padding: 0 15px;
    }
}



/* end */

 /* start button */
.btn {
    background-color: #ffda43;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #ceb968;
    transform: translateY(-3px);
}
/* end button */
/* start */

.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #deddb7;
    padding: 2px 20px;
    flex-wrap: wrap;

}

.stat-box {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
}

.stat-box h3 {
    font-size: 48px;
    color: #7b7a4f;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
}

.stat-box p {
    font-size: 35px;
    color: #7b7a4f;
    font-weight: 500;
}

/* end */

/* service.html */

                img {
                    max-width: 100%;
                }
        
                .services {
                    padding: 5rem 0;
        
                }
        
                .services-wrapper {
                    width: 100%;
                    max-width: 1200px;
                    margin: 0 auto;
                    padding: 0 1rem;
                    display: flex;
                    justify-content: space-between;
                    flex-wrap: wrap;
                }
        
                .service {
                    width: 48%;
                }
        
                .service img {
                    transform: opacity 300ms ease-in-out;
                    border-radius: 15px;
                    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
                }
        
                .service img:hover {
                    opacity: 0.8;
                    transform: scale(1.02);
                }
                    .service.reverse {
                    flex-direction: row-reverse;
                    }
                    .service .text {
                        width: 48%;
                        font-family: "Cairo", sans-serif;
                        color: #333;
}

                                @media (max-width: 600px) {
                                    .service {
                                        width: 100%;
                                    }
                                }
                /* end service */

                /* about us */

                /* end */

.section-title {
    text-align: center;
    margin: 50px 0;
}

.section-title h2 {
    font-size: 32px;
    color: #7b7a4f;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title .underline {
    width: 40px;
    height: 2px;
    background-color: #dcdcc0;
    margin: 0 auto;
}



    .services-row {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        flex-wrap: wrap;
        text-align: center;
    }

    .service-box {
        width: 45%;
        text-align: center;
            margin: 20px 0;
    }

    .service-box img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .service-box h2 {
font-size: 26px;
    color: #8c8a60;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: "Cairo", sans-serif;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
        }

        .service-box p {
            font-size: 20px;
            color: #7b7d4c;
        }

/* end */


/* start */

.why-us {
    background-color: #7b7a4f;
    color: #f5f5dc;
    text-align: center;
    padding: 80px 40px;
}

.why-us h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-us .underline {
    width: 50px;
    height: 2px;
    background-color: #d8d6b0;
    margin: 0 auto 40px;
    border-radius: 2px;
}

.features {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center; */

    display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        justify-items: center;
}

.feature-box {
    max-width: 320px;
    text-align: center;
    color: #f0f0e0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    color: #fff;
}

.feature-box i {
    font-size: 40px;
    color: #d8d6b0;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #ecebd2;
}





.contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-buttons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    text-decoration: none;
}

.contact-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


.btn-call {
    background-color: #00c853;
}

.btn-whatsapp {
    background-color: #25d366;
}

/* end */



        @media (max-width: 900px) {
            .features {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    
        @media (max-width: 600px) {
            .features {
                grid-template-columns: 1fr;
            }

        }
    
    

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.feature-box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}


.feature-box.show {
    animation: fadeUp 0.8s ease forwards;
}

/* end */




/* sart footer */

.footer {
    background-color: #111;
    color: #fff;
    padding: 50px 0 20px;
    font-family: "Cairo", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-section h3 {
    color: #d8d6b0;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #d8d6b0;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d8d6b0;
}


.social-icons a {
    display: inline-block;
    margin: 8px;
    font-size: 22px;
    color: #d8d6b0;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #fff;
}


.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.bottom-links {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.bottom-links li {
    display: inline;
    margin: 0 10px;
}

.bottom-links a {
    color: #888;
    text-decoration: none;
}

.bottom-links a:hover {
    color: #d8d6b0;
}

/* end footer */




.contact .row {
  display: flex;
  flex-direction: row-reverse; /* عكس الاتجاه: الفورم يمين والخريطة يسار */
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.contact .map {
  flex: 1 1 45rem;
  width: 100%;
  height: 450px;
  border: none;
}

.contact form {
  flex: 1 1 45rem;
  background: #0e0e0e;
  padding: 2rem;
  text-align: center;
}

.contact form h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact form .inputBox {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  background: #1b1b1b;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.contact form .inputBox span {
  color: #c49a6c;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.contact form .inputBox input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ccc;
  padding: 0.5rem;
  font-size: 1rem;
}

.contact form .btn {
  background: #c49a6c;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: 0.3s;
}

.contact form .btn:hover {
  background: #b18355;
}


















