/*
Theme Name: My Custom Theme
Theme URI: https://golajandkar.com/
Author: soroush sharifi
Author URI: https://golajandkar.com/
Description: A pro WordPress theme.
Version: 1.1
License: GNU General Public License v2 or later

Tags: custom-theme, blog, responsive
Text Domain: my-custom-theme
*/




:root {
    --primary: #7AB730;
    --secondary: #FFD33C;
    --light: #F3F3F3;
    --dark: #212121;
}

@font-face {
    font-family: 'Peyda';
    src: url('/assets/css/fonts/eot/PeydaWeb-Regular.eot'); /* IE9 Compat Modes */
    src: url('/assets/css/fonts/eot/PeydaWeb-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('/assets/css/fonts/woff2/PeydaWeb-Regular.woff2') format('woff2'), /* Modern Browsers */
    url('/assets/css/fonts/woff/PeydaWeb-Regular.woff') format('woff'); /* Fallback for Older Browsers */
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'Peyda', sans-serif;
}

[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}

.btn {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 7px;
        top: -4px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        width: 100%;
        height: 1px;
        top: -1px;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.hero-header {
    background: url(../img/hero.jpg) top right no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.service-item a i {
    position: relative;
    padding-left: 20px;
    transition: .3s;
}

.service-item a:hover i {
    padding-left: 50px;
}

.service-item a i::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    top: 50%;
    left: 10px;
    margin-top: -1px;
    background: var(--primary);
    transition: .3s;
}

.service-item a:hover i::after {
    width: 50px;
}

.product-item {
    padding: 30px;
}

.product-item .btn-action {
    position: absolute;
    width: 100%;
    bottom: -40px;
    left: 0;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .btn-action {
    bottom: -20px;
    opacity: 1;
}

.product-carousel .owl-nav {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 55px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.bg-offer {
    background: url(../img/offer.jpg) top right no-repeat;
    background-size: cover;
}

.price-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: var(--primary);
    border-radius: 8px 8px 50% 50%;
    z-index: -1;
}

.price-carousel .owl-nav {
    margin-top: 35px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.team-carousel .owl-nav {
    position: absolute;
    width: 50px;
    height: 160px;
    top: calc(50% - 80px);
    right: 0;
    z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.2);
}

.team-item .team-overlay {
    position: absolute;
    top: 45px;
    right: 45px;
    bottom: 45px;
    left: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(122, 183, 48, .8);
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
}

/*.bg-testimonial {*/
/*    background: url(../img/testimonial.jpg) top left no-repeat;*/
/*    background-size: cover;*/
/*}*/

/*.testimonial-carousel .owl-nav {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 46px;*/
/*    top: calc(50% - 23px);*/
/*    left: 0;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    z-index: 1;*/
/*}*/

/*.testimonial-carousel .owl-nav .owl-prev,*/
/*.testimonial-carousel .owl-nav .owl-next {*/
/*    position: relative;*/
/*    width: 46px;*/
/*    height: 46px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: #FFFFFF;*/
/*    background: var(--primary);*/
/*    font-size: 22px;*/
/*    transition: .5s;*/
/*}*/

/*.testimonial-carousel .owl-nav .owl-prev:hover,*/
/*.testimonial-carousel .owl-nav .owl-next:hover {*/
/*    color: var(--dark);*/
/*}*/

/*.testimonial-carousel .owl-item img {*/
/*    width: 100px;*/
/*    height: 100px;*/
/*}*/

@media (min-width: 576px) {
    .blog-item .row {
        height: 300px;
    }
}

.blog-item a i {
    position: relative;
    padding-left: 20px;
    transition: .3s;
}

.blog-item a:hover i {
    padding-left: 50px;
}

.blog-item a i::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    top: 50%;
    left: 10px;
    margin-top: -1px;
    background: var(--primary);
    transition: .3s;
}

.blog-item a:hover i::after {
    width: 50px;
}


.fruit_section {
    .heading_container {
        display: flex;
        align-items: center;

        hr {
            width: 20%;
            height: 1px;
            border: none;
            margin: 0;
            margin-right: 10px;
            background-color: #b7b7b7;
        }

        h2 {
            margin: 0;
        }

        margin-bottom: 35px;
    }

    .fruit_container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        .box {
            flex: 0 0 31.33%;
            margin: 1%;
            position: relative;
            overflow: hidden;

            img {
                width: 100%;
            }

            .link_box {
                position: absolute;
                left: 0;
                top: 100%;
                width: 100%;
                height: 100%;
                opacity: 0;
                background-color: #252525;
                color: #ffffff;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.3s;

                h5 {
                    text-transform: uppercase;
                    margin-bottom: 25px;
                }

                a {
                    display: inline-block;
                    padding: 7px 35px;
                    border: 1px solid #ffffff;
                    color: #ffffff;
                    font-size: 15px;

                    &:hover {
                        background-color: #ffffff;
                        color: #000000;
                    }
                }
            }

            &:hover {
                .link_box {
                    top: 0;
                    opacity: 0.9;
                }
            }
        }
    }
}

.fruit_section .fruit_container .box .link_box {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #252525;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.fruit_section .fruit_container .box .link_box h5 {
    text-transform: uppercase;
    margin-bottom: 25px;
}

.fruit_section .fruit_container .box .link_box a {
    display: inline-block;
    padding: 7px 35px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 15px;
}

.fruit_section .fruit_container .box .link_box a:hover {
    background-color: #ffffff;
    color: #000000;
}

.fruit_section .fruit_container .box:hover .link_box {
    top: 0;
    opacity: 0.9;
}







.container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin-block: 2rem;
    gap: 2rem;
}

.img1 {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 250px;
    object-fit: cover;
}

.news-card {
    display: flex;
    flex-direction: column;
    width: auto;
    overflow: hidden;
    box-shadow: 2px 0 10px rgba(52, 58, 64, 0.2);
    border-radius: 1em;
    background: #fff;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
}

.card__body {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-block-start: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}


.tag {
    align-self: flex-start;
    padding: .25em .75em;
    border-radius: 1em;
    font-size: .75rem;
}

.tag + .tag {
    margin-left: .5em;
}

.tag-blue {
    background: #56CCF2;
    background: linear-gradient(to bottom, #2F80ED, #56CCF2);
    color: #fafafa;
}

.tag-brown {
    background: #D1913C;
    background: linear-gradient(to bottom, #FFD194, #D1913C);
    color: #fafafa;
}

.tag-red {
    background: #cb2d3e;
    background: linear-gradient(to bottom, #ef473a, #cb2d3e);
    color: #fafafa;
}

.card__body  {
    font-size: 1.5rem;
    text-transform: capitalize;
}

.card__footer {
    display: flex;
    padding: 1rem;
    margin-top: auto;
}

.user {
    display: flex;
    gap: .5rem;
}



.user__info > small {
    color: #666;
}


.categories-img{
    height: 95%;
    /*border-radius: 15px;*/
}

.rounded-image {
    border-radius: 15px;
}



.form-group {
    margin-bottom: 15px;
    margin-top: 32px;
}

.form-group label {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: right; /* Ensure RTL text alignment */
    resize: none;
}

.form-group textarea {
    height: 100px;
}

.send-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-button:hover {
    background-color: #45a049;
}


.map-container {
    margin-top: 34px;
    position: relative;
    width: 95%;

    height: 400px;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.divider {
    border-left: 2px solid #ddd;
    height: auto;
    margin: 0 auto;
}


/* Style for Social Icons */
.social-icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; /* Space between icons */
    margin-top: 23px;
}

.social-icons a {
    font-size: 30px; /* Larger icons */
    text-decoration: none;
    color: #000; /* Change icon color */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icons a:hover {
    color: #12622c; /* Change color on hover */
}

.social-icons i {
    font-size: 30px; /* Bigger icons */
}

.social-icons span {
    margin-top: 5px;
    font-size: 16px;
}



.news-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.news-card-horizontal {
    flex-direction: column;
    width: 100%;

}

@media (min-width: 768px) {
    .news-card-horizontal {
        width: 100%;
        flex-direction: row;
    }
}

.custom-card-img-wrapper {
    border-bottom: 1px solid #ddd;
}

@media (min-width: 768px) {
    .custom-card-img-wrapper {
        border-bottom: none;
        border-left: 1px solid #ddd;
    }
}

.news-card-img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* PC mode: Image size 300x200 */
@media (min-width: 768px) {
    .news-card-img {
        width: 300px;
        height: 100%;
    }
}

/* Mobile mode: Image size 600x400 */
@media (max-width: 767.98px) {
    .news-card-img {
        width: 100%;
        height: 400px;
    }
}

.news-card-body {
    padding: 16px;
    text-align: right;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.news-card-text {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #555;
}

.news-card-footer {
    font-size: 0.875rem;
    color: #888;
}


.filter-attribute-item {
    list-style: none; /* Remove bullet points */
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between checkbox and text */
    align-items: center; /* Align items vertically */
    padding: 5px 0; /* Optional: Add some vertical spacing */
}

.filter-attribute-checkbox {
    margin: 0; /* Remove any default margins */
}

.filter-attribute-label {
    margin: 0; /* Remove any default margins */
    flex-grow: 1; /* Push the text to the far end */
    text-align: right; /* Align the text to the right */
}


.gallery {
    display: flex;
    flex-wrap: nowrap;
}
.gallery-img {
    max-width: 100px;
    height: auto;
    border-radius: 5px;
}

/* For WordPress editor */



.experience {
    padding: 50px 0 100px;
    border-top: 1px solid #e5ebf2;
}
.experience-content {padding-top: 100px;}
.single-timeline-box {margin-bottom: 75px;}

/*experience-time*/
.experience-time {
    position: relative;
}
.experience-time h2 {
    font-weight: 400;
    font-size: 25px;
}
.experience-time h3 {
    font-size: 16px;
    font-weight: 300;
    color: #636a82;
    margin-top: 14px;
    text-transform: uppercase;
}
/*experience-time*/

/*main-timeline*/
.main-timeline{
    position: relative;
}
.main-timeline:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #b2c1ce;
    position: absolute;
    top: 1.5%;
    left: 45.8%; /* Adjust to center if needed */
    z-index: -1;
}

.main-timeline .timeline {
    position: relative;
}

.timeline-content span > i,
.experience-time span > i {
    color: #fc9e2c;
    position: absolute;
    font-size: 12px;
    left: -42px;
    top: 10%;
    transform: translateY(-50%);
    z-index: 1;

}

@media (min-width: 992px) {
    .timeline-content span > i::before,
    .experience-time span > i::before {
        content: "";
        display: block;
        width: 10px; /* Adjust for dot size */
        height: 10px;
        background: #fc9e2c; /* Dot color */
        border-radius: 50%; /* Makes the dot round */
        position: absolute;
        left: -20px; /* Adjust to align with timeline */
        top: 50%; /* Center on the line */
        transform: translateY(-50%);
    }
}
.timeline-content h4.title {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}
.timeline-content h5 {
    color: #636a82;
    font-size: 14px;
    font-weight: 300;
    margin: 18px 0 20px;
}
.main-timeline .description {
    font-size: 16px;
    color: black;
}
.main-timeline .timeline-content.right{
    float: right;
    text-align: left;
}
.timeline-single-before:before {
    content: '';
    top: 57px;
    left: -3px;
    position: absolute;
    width: 100%;
    height:400px;
    border-left:15px solid #fff;
}

.experience-time-responsive{display: none;}






@media (min-width: 992px) {
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
}

@media (min-width: 992px) {
    .col-md-5 {
        width: 41.66666667%;
    }
    .main-timeline{
        margin-left: 95px;
    }
}




ul li {
    list-style: none;
}

h2 {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}






@media screen and (max-width:991px){
    .experience-time-responsive{display: block;}
    .experience-time-main{display: none;}
    .experience-time,.timeline-content{text-align: left;margin-bottom: 20px;margin-left: 40px;}
    .timeline-content span>i{left: 0%;top: -54%;}
    .experience-time span>i {left: -6%;top: 6%;}
    .main-timeline:before {left:0.4%;}

    .single-horizontal-timeline .experience-time,.single-horizontal-timeline .timeline-content {margin: 0;}
}/*max-width:991px*/

@media screen and (max-width:767px){
    .single-about-img {max-width: 450px;}
    .experience-time span>i,.timeline-content span>i,.main-timeline:before {display: none;}
    .experience-time, .timeline-content {margin-left: 0;}

    .isotope .item {max-width: 350px;margin: 0 auto 30px;}

    .single-profile {max-width: 350px; margin: 30px auto;border: 0;}
    .profile-border{border: 0;}

    .single-horizontal-timeline {max-width: 350px;margin: 30px auto;}

}/*max-width:767px*/

.experience-time {
    position: relative;
}

@media screen and (max-width:991px){
    .experience-time-responsive{display: block;}
    .experience-time-main{display: none;}
    .experience-time,.timeline-content{text-align: right;margin-bottom: 20px;margin-left: 40px;}
    .timeline-content span>i{left: 0%;top: -54%;}
    .experience-time span>i {left: -6%;top: 6%;}
    .main-timeline:before {left:0.4%;}

    .single-horizontal-timeline .experience-time,.single-horizontal-timeline .timeline-content {margin: 0;}
}/*max-width:991px*/

/* General Styles for Product Card */
.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: right;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card-img-top {
    height: 200px;
    object-fit: cover;
}

.product-card-body {
    padding: 1.5rem;
}

.product-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.product-card-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #28a745; /* Green color for price */
}



/* Desktop Styles (Default) */
.product-card {
    width: 100%; /* Full width on desktop */
    margin: 0 auto; /* Center the card */
}

/* Mobile Styles */
@media (max-width: 767px) {
    .product-card {
        width: 90%; /* Reduce width for mobile */
        margin: 0 auto 1.5rem; /* Center the card and add margin at the bottom */
        border-radius: 15px; /* Larger border radius for mobile */
    }

    .product-card-img-top {
        height: 150px; /* Smaller image height for mobile */
        border-radius: 15px 15px 0 0; /* Rounded corners only at the top */
    }

    .product-card-body {
        padding: 1rem; /* Reduce padding for mobile */
    }

    .product-card-title {
        font-size: 1.1rem; /* Smaller title for mobile */
        margin-bottom: 0.5rem; /* Reduce margin for mobile */
    }

    .product-card-text {
        font-size: 0.85rem; /* Smaller text for mobile */
        margin-bottom: 0.75rem; /* Reduce margin for mobile */
    }

    .product-price {
        font-size: 1rem; /* Smaller price for mobile */
    }

    .product-btn-primary {
        width: 100%; /* Full-width button for mobile */
        margin-top: 0.5rem; /* Add space above the button */
        border-radius: 10px; /* Rounded corners for button */
    }
}


/* Hide the filter pruducts-sidebar on mobile */
@media (max-width: 991.98px) {
    .sidebar {
        display: none;
    }
}

/* Style for the mobile filter button */
.mobile-filter-button {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff8c42; /* Orange color */
    color: white;
    border: none;
    border-radius: 50%; /* Circular button */
    width: 50px;
    height: 50px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

@media (max-width: 991.98px) {
    .mobile-filter-button {
        display: block; /* Show on mobile */
    }
}

/* Style for the filter modal */
.filter-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    overflow-y: auto;
    padding: 20px;
}

.filter-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: 100px auto 0 auto;
}

.close-modal {
position: absolute;
top: 10px;
right: 10px;
font-size: 24px;
cursor: pointer;
color: #ff8c42; /* Orange color */
}

/* Orange color for radio buttons and labels */
.filter-attribute-item input[type="radio"] {
    accent-color: #ff8c42; /* Orange color for radio buttons */
}

.filter-attribute-label {
    color: #333;
}

.filter-attribute-label:hover {
    color: #ff8c42; /* Orange color on hover */
}


/* Notification Card Styles */
.notification-card {
    position: fixed;
    top: 100px;
    right: -400px; /* Start off-screen */
    width: 350px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: right 0.5s ease-in-out;
}

.notification-card.show {
    right: 20px; /* Slide in */
}

.notification-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.notification-content {
    flex: 1;
}

.notification-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
    text-align: right; /* Align text to the right for Persian */
}

.notification-view-btn {
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    font-family: 'Vazir', Arial, sans-serif; /* Use a Persian-supported font */
}

.notification-view-btn:hover {
    background: #005bb5;
}

.notification-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.notification-close-btn:hover {
    color: #333;
}

/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}
/*** Team ***/


/*-------------------------------------
        9. Portfolio
--------------------------------------*/
.portfolio {
    padding:  1px 0 100px;

}

.portfolio-content {padding-top: 100px;}

/* ---- .item ---- */
.isotope:after {
    content: '';
    display: block;
    clear: both;
}
.isotope .item {
    position:relative;
    overflow:hidden;
    margin-bottom: 30px;
}
/*.item img*/
.isotope .item img{
    width:100%;
    height:100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.isotope .item:hover  img{
    -webkit-transform:scale(1.5);
    -moz-transform:scale(1.5);
    -ms-transform:scale(1.5);
    -o-transform:scale(1.5);
    transform:scale(1.5);
}/*.item img*/

/*.isotope-overlay*/
.isotope-overlay{
    position:absolute;
    height:100%;
    width:100%;
    background:rgba(31,44,108,.5);
    display:flex;
    align-items:center;
    text-transform: uppercase;
    justify-content:center;
    flex-direction:row;
    -webkit-transform:scale(0);
    -moz-transform:scale(0);
    -ms-transform:scale(0);
    -o-transform:scale(0);
    transform:scale(0);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.isotope-overlay a {
    display: inline-block;
    color: #fff;
    font-size: 34px;
    text-align: center;
}
.isotope .item:hover .isotope-overlay{
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -ms-transform:scale(1);
    -o-transform:scale(1);
    transform:scale(1);
    top:0;
}/*.isotope-overlay*/




/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px; /* Smooth rounded corners */
}

.swiper-pagination {
    position: absolute;
    bottom: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff; /* Change arrow color */
}

/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


