header {
    .top-header {
        background: #6d9427;
        padding: 5px 0;

        .top-details {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .item {
                display: flex;
                align-items: center;
                gap: 30px;

                a {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    color: #fff;
                }
            }
        }
    }

.menu-icon{
    display: none;
}
    .bottom-header {
        padding: 10px 0px;
        background: #ebf4c9;

        .main-bottom-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            a {
                display: flex;
            }
        }

        .primary-menu {
            display: flex;
            align-items: center;
            gap: 20px;

            nav ul {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            li a {
                padding: 5px 10px;
                font-size: 16px;
                color: #222;
                font-weight: 600;
            }

        }
    }
}

/* ========= hero-section ======== */

.hero-section {

    .item {
        padding: 220px 0px;
    }

    .slide1 {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../upload/banner/slide1.jpg);
        background-position: center;
        background-size: cover;
    }

    .slide-content {
        text-align: center;
        color: #fff;
        width: 70%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .banner-title {
        font-size: 60px;
    }

    .slide2 {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../upload/banner/slide2.jpg);
        background-position: center;
        background-size: cover;
    }

}


/* =========location-section====== */

.location-section {
    padding: 50px 0px;
    background-color: #ebf4c9;

    h3{
        text-align: center;
        margin-bottom: 10px;
    }
    p{
        margin-bottom: 20px;
        text-align: center;
        /* font-size: 20px; */
    }

    .main-location {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-bottom: 20px;

        .item {
            width: 50%;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            border-radius: 10px;

            a {
                color: #fff;
            }
        }

        .address {
            font-family: Marcellus;
            font-size: 32px;
            font-weight: 600;
            text-align: center;
        }

        .call {
            font-size: 28px;
            font-weight: 600;
        }

        .location-first {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/other/location42.jpg);
            background-position: center;
            background-size: cover;
        }

        .location-secound {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/other/location42.jpg);
            background-position: center;
            background-size: cover;
        }
    }
}

/* ======= services ======= */

.service-section {
    .service-heading {
        width: 60%;
        margin: 0 auto;
        text-align: center;

        h2 {
            margin-bottom: 20px;
        }
    }

    .main-services {
        margin-top: 40px;

        .item {
            background-color: #ebf4c9;
            padding: 50px 25px 24px 25px;
            text-align: center;
            margin-bottom: 30px;
            transition: all ease .4s;
        }

        .service-img {
            width: 100%;
            max-width: 200px;
            margin: 0 auto;
            margin-bottom: 25px;
            position: relative;
        }

        .service-icon {
            position: absolute;
            right: 0;
            top: 0;
            background-color: #fff;
            color: #fff;
            width: 70px;
            height: 70px;
            line-height: 70px;
            border-radius: 50%;
            margin: -25px -25px 0 0;
            text-align: center;
            display: flex;
            align-items: center;

            img {
                max-height: 40px;
            }
        }

        .service-title {
            font-size: 26px;
            font-weight: 400;

            a {
                color: #222;

            }
        }
        .service-content{
            p{
                margin-top: 10px;
            }
        }

        .item:hover{
            background: #6d9427;
            color: #fff;
            a{
                color: #fff;
            }
        }
    }

    .brochure{
        margin-top: 30px;
        text-align: center;
        .main-brochure{
            display: flex;
            align-items: center;
            gap: 30px;
            justify-content: center;
        }
    }
    .primary-btn{
        margin-top: 25px;
        width: 100%;
    }
}


/* === divider === */

.divider{
    position: relative;
    .divider-icon {
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        color: #fff;
        background-color: #6d9427;
        border-radius: 50%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.divider:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 2px;
    margin-top: -1px;
    width: 100%;
    z-index: -1;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #6d9427 50%, rgba(255, 255, 255, 0) 100%);
}
/* =========== about ======== */

.about-us{
    .main-about{
        display: flex;
        gap: 40px;
        align-items: center;
        .about-img{
            width: 50%;

            img{
                width: 100%;
                border-radius: 10px;
                box-shadow: 0px 0px 10px #ccc;
            }
        }
        .about-content{
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: self-start;
        }
    }
}

/* ====== testimonial ======= */

.testimonial{
    background: url(../upload/other/testi-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;

    .testimonial-heading{
        text-align: center;
    }
    .main-testimonial{
        margin-top: 40px;
        .item{
            background-color: #fff;
            padding: 0px 20px 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            border-bottom: 4px solid transparent;
            transition: all .3s ease-in-out;
        }
        .testi-rating img{
            width: 120px;
        }
        .quote-icon{
            font-size: 60px;
            display: flex;
            justify-content: end;
            transition: all .3s ease-in-out;
        }
        .author{
            font-size: 22px;
            font-weight: 600;
            color: #222;
        }
        .item:hover{
            background: #ebf4c9;
            border-bottom: 4px solid #6d9427;
        }
        .item:hover .quote-icon{
            color: #6d9427;
        }
    }
}

/* ====== gallery ======= */

.gallery{
   
    h3{
        text-align: center;
    }
    .main-gallery{
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        grid-gap: 20px;
        align-items: stretch;
    }
    .gallery-img {
        overflow: hidden;
        display: flex;
        border-radius: 10px;
        img {
            width: 100%;
            transition: all .2s ease-in-out;
        }
    }
    .gallery-img:hover img {
        transform: scale(1.1);
    }

    .gallery-btn{
        text-align: center;
        margin-top: 20px;
    }
}

/* =========== make Appointment ======== */

.appointment{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../upload/other/appi-bg-1-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    .main-appointment{
        display: flex;
        align-items: center;
        gap: 40px;
    }
    .bussines-hour{
        width: 50%;
        color: #fff;

        ul{
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
    }
    .appointment-form{
        width: 50%;
        background: #6d9427;
        padding: 40px;
        color: #fff;
    }

    .hour-list{
        margin-top: 30px;
        background-color: rgba(0, 0, 0, .5);
        padding: 30px 40px;
        border-left: 5px solid #6d9427;
        color: #fff;
    }
}

form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    label{
        display: block;
    }
    input,  select, textarea{
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .group-box{
        display: flex;
        gap: 15px;
        .box{
            width: 50%;
        }
    }

    input[type="submit"]{
        width: 170px;
        background: #ebf4c9;
        padding: 12px;
        font-size: 18px;
    }
}

/* ========= footer ======= */

footer {
    background: #ebf4c9;
    background-position: center;
    background-size: cover;
    .top-header {
        padding: 50px 0;
        display: flex;
        justify-content: space-between;
        color: #000;
        flex-wrap: wrap;
        gap: 20px;
        ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 20px
        }

        ul a {
            font-size: 16px
        }

        a {
            color: #000
        }

        i {
            margin-right: 15px
        }

        .footer-contact {
            ul li a {
                display: flex;
                align-items: center
            }
        }

        .social-media {
            margin-top: 20px;
            font-size: 25px
        }
    }

    .bottom-footer {
        background: #000;
        padding: 10px 0;
        text-align: center;
        font-size: 14px;
        color: #fff;
        a {
            color: #fff
        }

        img {
            margin-top: 10px
        }
    }
}

/* ========= gallery-page ======= */

#gallery-page{
    h2{
        text-align: center;
    }
    .gallery {
        .main-gallery {
            grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        }
    }
}

#contact-page {
    .shop-details {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        padding: 70px 0 50px;

        a {
            color: var(--text-color)
        }
    }

    .shop-details .box {
        text-align: center;
        width: 33.33%;
        padding: 20px;
        box-shadow: 0 20px 60px 0 rgb(0 0 0 / .06);
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        gap: 10px
    }

    .box a {
        word-break: break-all
    }

    .shop-details .icon {
        img {
            width: 50px
        }
    }

    .form-map {
        padding-bottom: 70px;

        .container {
            display: flex;
            justify-content: space-between;
            gap: 40px
        }

        .map {
            width: 50%;

            iframe {
                width: 100%;
                height: 100%
            }
        }

        .main-form {
            width: 50%;
            padding: 40px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 1px 1px 20px #cccccc61
        }
    }

    .map2 {
        display: flex;

        iframe {
            width: 100%;
            height: 300px
        }
    }
}

#service-page{

    .img-box{
        display: flex;
        img{
            border-radius: 15px;
            box-shadow: 0px 0px 12px #cccccc61;
        }
    }
.services-container {
    display: flex;
}

.services-sidebar {
    width: 25%;

    ul{
        background-color: #6d9427;
        padding: 20px;
        border-radius: 8px;
        position: sticky;
        top: 100px;
    }
}

.services-sidebar ul {
    list-style: none;
}

.services-sidebar li {
    color: white;
    padding: 10px 0;
    border-bottom: 1px solid #555;
    cursor: pointer;
    transition: color 0.3s ease;
}

.services-sidebar li:hover {
    color: #000000;
}

.tab-link.active {
    color: #000000;
}

.services-content {
    width: 75%;
    background-color: #ebf4c9;
    padding: 20px;
    border-radius: 8px;
    margin-left: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}


table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
}

table td {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    color: #333;
}

.book-now-btn {
    display: inline-block;
    background-color: #ff4081;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
}

.book-now-btn:hover {
    background-color: #ff3366;
}

.tab-content {
    display: none;

    h5{
        text-transform: capitalize;
    }
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: self-start;
}
}

#special-page{
    text-align: center;
    .container{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .special-page{
        display: flex;
        text-align: center;
        gap: 20px;

        .item{
            flex: 1;
            border-radius: 15px;
            border: 1px solid #ccc;
            padding: 40px 30px;
            background-color: #6d9427;
            color: #fff;
        }
    }


}
.service__seo{
    padding: 40px 0px;
}
.service__seo h5{
    margin-bottom: 20px;
}
