a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.navbar {
    border-radius: 0 0 30px 30px;
    background-color: #ffffff;
    transition: all 0.4s ease;
    z-index: 9999;
}

.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(120, 80, 20, 0.4);
    /* ظل ذهبي غامق */
}

.nav_toggler {
    color: #3c2300;
}

.com_name{
    font-family: "Outfit", sans-serif !important;
}

.text_brand{
    letter-spacing: -1px;
    font-weight: 700;
    font-size: 35px;
    color: #3c2300;
}

.nav_link {
    color: #3c2300;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.nav_link::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 2px;
    background: linear-gradient(to right, #ffb144, #76501c);
    transition: all 0.5s ease;
}

.nav_link:hover::before,
.nav_link.active::before {
    width: 100%;
}

.dropdown .nav_link::after {
    content: " \f0d7";
    margin: 0 3px;
    color: #3c2300;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 5px;
}

.dropdown-menu {
    transition: all 5s ease-in-out;
}

.navbar .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* hero section */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.content {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
}

.content h1 {
    font-size: 70px;
    margin-bottom: 30px;
    font-weight: 800;
}

.content p {
    font-size: 1.5em;
    color: #e5e3e3;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 99;
}

.dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.dot.active {
    opacity: 1;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.241);
}
.hero-slider .slide a{
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
    padding: 7px 25px;
    margin-bottom: -20px !important;
    background: linear-gradient(to right , #b07a2e, #3c2300 ) ;
}

/* تصميم الأيقونات العائمة */
.floating-social-icons {
    position: fixed;
    bottom: 20px; /* أسفل الصفحة */
    right: 20px; /* يمين الصفحة */
    display: flex;
    flex-direction: column;
    gap: 10px; /* مسافة بين الأيقونات */
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
}

/* تنسيق الروابط */
.floating-social-icons .social-link {
    font-size: 24px;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: pulse 1.5s infinite;
}
.floating-social-icons .social-link span{
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translate(-50%, -50%);
    width: 165px;
    background: #4d3412e6 !important;
    padding: 5px 15px;
    text-align: center;
    border-radius: 19px;
    font-size: 18px;
}

.fa-paper-plane{
    color: #4d3412e6;
}

/* تأثير النبض */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
}

.floating-social-icons .social-link:hover {
    transform: scale(1.1);
}

/* أيقونة WhatsApp */
.floating-social-icons .whatsapp {
    background: #25D366;
    animation: pulse 1.5s infinite;
}

/* إخفاء الأيقونات عند الوصول إلى Contact Us */
.hidden {
    opacity: 0;
    pointer-events: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons .social-link {
    font-size: 24px;
    color: #333;
    transition: 0.3s;
}

.social-icons .social-link:hover {
    color: #000;
}


/* about section */
.section {
    padding: 120px 0;
}

.section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #a16f2a;
    margin-bottom: -2px;
}

.section p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(144, 144, 144);
    letter-spacing: 1.1px;
}

.section p span {
    color: #a16f2a;
}

.sec_p_about {
    margin-bottom: 40px;
}

.about a {
    border: 2px solid #a16f2a;
    color: #a16f2ae0;
    font-size: 22px;
    font-weight: 700;
    padding: 7px 33px;
    border-radius: 20px;
    margin-bottom: -50px;
    transition: all 0.7s ease;
}

.about a:hover {
    color: #ffffffe0;
    background: #76501c;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.g-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 1s ease, transform 1s ease;
    z-index: 0;
}

.g-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* product section */

.product {
    background: rgba(120, 82, 28, 0.048);
}

.product h3 {
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    color: #242c34;
    position: relative;
}

.product h3::after {
    content: "";
    width: 220px;
    height: 2px;
    background-color: #76501c;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product h3::before {
    content: "";
    width: 80px;
    height: 2px;
    background-color: #8e6834;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn_product {
    border: 2px solid #a16f2a;
    color: #765220e0;
    background-color: transparent;
    font-size: 22px;
    font-weight: 700;
    padding: 7px 33px;
    border-radius: 7px;
    transition: all 0.7s ease;
}

.btn_product:hover {
    color: #ffffffe0;
    background: #242c34;
    border: none;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block !important;
}

.tab-btn {
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    color: #a16f2a;
    padding: 5px 18px;
    border-radius: 30px;
    transition: all 0.4s ease;
}

.tab-btn.active {
    color: #fff;
    background-color: #a16f2a;
}

.product .item {
    padding: 15px;
    padding-bottom: 30px;
}

.product .item_product {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 2px 2px 20px #0000005d;
    position: relative;
}

.content_doors img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.stands img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.content_doors h4 {
    width: 100%;
    padding: 7px 5px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn_details {
    cursor: pointer;
    width: 160px;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
    bottom: 10px;
    color: #fff;
    background-color: #4d3412a4;
    border: 2px solid transparent;
    transition: all 0.7s ease;
}

.product .content_doors .btn_details:hover {
    color: #76501c;
    background-color: transparent;
    border: 2px solid #4d3412a4;
}

/* product section */

.successful img {
    z-index: -1;
    filter: brightness(30%);
}

.successful p {
    opacity: 90%;
}

/* success_partners section */

.partnersSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.partnersSwiper .swiper-slide img {
    max-height: 150px;
    object-fit: contain;
    transition: filter 0.3s ease;
    border-radius: 20px;
    padding: 10px;
}

.partnersSwiper .swiper-slide img:hover {
    filter: grayscale(0%);
}

/* Footer */

footer {
    font-family: "Cairo", sans-serif;
}

footer i {
    vertical-align: middle;
}

footer .bi {
    color: #242c34;
}

.text_footer {
    margin-bottom: 30px;
    color: #76501c;
    position: relative;
}

.text_footer::before {
    content: "";
    width: 80px;
    height: 2px;
    background-color: #8e6834;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text_footer::after {
    content: "";
    width: 220px;
    height: 2px;
    background-color: #76501c;
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer .footer_p {
    font-size: 18px;
    margin: 0 auto;
    width: 50%;
    color: #000000f3;
    opacity: 90%;
}

.linkss a{
    color: #76501c;
    font-size: 18px;
    position: relative;
}
.linkss a::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 2px;
    background: linear-gradient(to right, #ffb144, #76501c);
    transition: all 0.5s ease;
}

.linkss a:hover::before {
    width: 100%;
}

footer .media a{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #76501c;
    border: 2px solid #76501c;
    background-color: transparent;
    padding: 10px;
    border-radius: 50%;
    font-size: 22px;
    transition: all 0.7s ease;
}
footer .media a:hover{
    color: #fff;
    border: 2px solid #fff;
    background-color: #76501c;
}

footer img{
    width: 40px;
    height: 40px;
}

.footerss{
    display: flex;
    justify-content: space-between;
    width: 100%;
}













/* Product Details page */

#product-details-container {
    margin-top: 100px !important;
    background-color: #8e693405;
    padding: 50px 20px;
    border-radius: 30px;
}

.text-item {
    color: #242c34;
}

.text-item h2 {
    font-size: 33px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    color: #76501c;
}

.text-item ul {
    text-align: start;
    width: 100%;
    list-style: circle;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
}

.text-item ul li {
    margin-bottom: 10px;
}

.text-item p {
    line-height: 1.8;
}

.text-item p b {
    font-size: 22px;
    font-weight: 800;
}

.btn_contact {
    cursor: pointer;
    width: 160px;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
    bottom: 10px;
    color: #fff;
    background-color: #4d3412a4;
    border: 2px solid transparent;
    transition: all 0.7s ease;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
}

.btn_contact:hover {
    color: #76501c;
    background-color: transparent;
    border: 2px solid #4d3412a4;
}

.related img,
.not_related img{
    width: 100%;
    height: 370px;
}
.related h5 ,
.not_related h5{
    width: 100%;
    padding: 7px 5px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.related a,
.not_related a{
    cursor: pointer;
    width: 160px;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
    bottom: 10px;
    color: #fff;
    background-color: #4d3412a4;
    border: 2px solid transparent;
    transition: all 0.7s ease;
}

.related a:hover,
.not_related a:hover {
    color: #76501c;
    background-color: transparent;
    border: 2px solid #4d3412a4;
}

.related h3,
.not_related h3{
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    color: #242c34;
    position: relative;
}

.related h3::after,
.not_related h3::after{
    content: "";
    width: 220px;
    height: 2px;
    background-color: #76501c;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.related h3::before,
.not_related h3::before{
    content: "";
    width: 80px;
    height: 2px;
    background-color: #8e6834;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background-color: #242c34;
    padding: 34px 20px;
    border-radius: 20px;
}




















/* About page */
.hero_about{
    background-image: url(../image/bg-about.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
}
.main_about_text{
    font-size: 45px;
    font-weight: bold;
}
.features{
    background: #76511c06;
}
.features h5{
    color: #3c2300;
}





/* contact page */

.hero_contact{
    background-image: url(../image/bg-about.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
}

.contact{
    padding: 100px 0 0 !important;
    background-color: #76511c0c;
}


.contact .form{
    text-align: left;
    padding: 0 25px 25px;
    border-radius: 15px;
}
.contact .form p{
    width: 90%;
}
.contact form{
    width: 100%;
    background-color: #fff;
    padding: 30px 10px 0;
    border-radius: 10px;
}
.contact form .input{
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact form input,
.contact select,
.contact textarea{
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border-radius: 7px;
    border: 2px solid #76511c1d;
    background-color: #fff;
}
.contact form input:focus,
.contact select:focus,
.contact textarea:focus{
    border-color: #76501c !important;
    outline: none;
}
.contact select{
    color: #fff;
}
.contact form input[type="submit"]{
    width: 180px;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border: none;
    background: linear-gradient(to right , #a16f2ad7, #3c2300b9 ) ;
    cursor: pointer;
    transition: all 0.7s ease;
}
.contact form input[type="submit"]:hover{
    opacity: 80%;
}
.contact .item:nth-child(2){
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    gap: 30px;
}
.contact .dataDiv{
    width: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}





@media (max-width: 992px) {
    .section {
        padding: 30px 0;
    }

    .section h2 {
        text-align: center;
    }

    .main_section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product .content_doors img {
        width: 100%;
        height: 190px;
    }

    .text_successful {
        width: 100% !important;
    }

    footer .footer_p {
        width: 90%;
    }

    .footer_bottom .footerss{
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-direction: column ;
    }
    .num_trusted{
        order: 1
        ;
    }
    .all_saved{
        order: 2;
        margin-top: 20px;
        text-align: center;
    }

    .content_doors img {
        width: 100%;
        height: 275px;
    }

    .div_form,
    .div_form .form{
        width: 100% !important;
    }
    
    .section p {
        text-align: center;
    }

}

@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }
}