@font-face {
    font-family: 'iransans';
    src: url(../fonts/IRANSansWeb_Light.woff2) format("woff2");
    src: url(../fonts/IRANSansWeb_Light.woff) format("woff");
}
.img-instagram {
    width: 60%;
    height: auto;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
ul{
    list-style: none;
}
body{
    font-family: 'iransans' !important;
    direction: rtl;
    text-align: right;
    scroll-behavior: smooth;
}
:root{
    --white:#fff;
    --gray:#6c757d;
    --blue:#32C1FD;
    --green:#14635b;
    --gold:#d2ab67;
    --black:#3a3a3a;
}
a{
    text-decoration: none !important;
}
hr{
    color: var(--gray);
}
.text-sm{
    font-size: 13px;
}
.text-height{
    line-height: 1.9;
}
#padding span span {
    padding: 5px;
    border-radius: 10px;
}
.header-margin{
    margin-top: 65px;
}
.widget-box {
    display: block;
    padding: 15px;
    margin: 10px 0;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ebeefd;
    -webkit-box-shadow: 0 4px 12px rgb(109 114 139 / 10%);
    box-shadow: 0 4px 12px rgb(109 114 139 / 20%);
}
.widget-title{
    font-weight: 600;
    font-size: 20px;
    color: var(--black);
}
.divider {
    position: relative;
    display: block;
    margin: 12px 0 24px 0;
    max-width: 100%;
    height: 2px;
    background-color: #d1dcff;
    border-radius: 20px;
    border: none;
}
.divider::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 20px;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}
.index-header-image{
    min-height: 100vh;
    background: linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url('../images/header/index.webp') center/cover fixed no-repeat;
}
.text-gold{
    color: var(--gold);
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.text-gold:hover{
    color: #a38043 !important;
}
.text-green{
    color: var(--green);
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.text-green:hover{
    color: #135650 !important;
}
.img-container {
    background: #000;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}
.btn-gold{
    display: inline-block;
    text-decoration: none;
    background: var(--gold);
    color: var(--white);
    padding: 8px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.btn-gold:hover{
    background: #a37d3c;
    color: var(--white);
}
.btn-green{
    display: inline-block; 
    text-decoration: none;
    background: var(--green);
    color: var(--white);
    padding: 8px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.btn-green:hover{
    background: #02433c;
    color: var(--white);
}
.btn-light-green{
    display: inline-block; 
    text-decoration: none;
    background: lightseagreen;
    color: var(--white);
    padding: 8px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.btn-light-green:hover{
    background: rgb(25, 141, 135);
}
.title-section{
    display: flex;
    justify-content: space-between;
}
.title-section h2 {
    font-size: 18px;
    font-weight: bold;
    padding: 5px;
    margin-bottom: 18px;
    display: inline-block;
    border-right: 4px solid #32837b;
    border-bottom: 4px solid #32837b;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}
.title-section a{
    font-size: 15px;
    color: var(--black);
    margin-top: 10px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.title-section a:hover{
    color: var(--gold);
}
.title-section a i{
    color: var(--gold);
    font-size: 12px;
}
.sticky-top {
    position: sticky;
    top: 100px !important;
    z-index: 1020;
}

/* navbar */
.bg-nav{
    background: var(--white);
    transition: background-color 200ms linear;
    -webkit-transition: background-color 200ms linear;
    -moz-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    -o-transition: background-color 200ms linear;
}
/* انیمیشن‌ها */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* استایل منوی اول (خدمات) */
.services-dropdown .dropdown-menu {
    pointer-events: none; /* فضای منو غیرفعال */
}
.services-dropdown:hover .dropdown-menu {
    pointer-events: auto; /* فضای منو فعال هنگام هاور */
}
/* استایل منوی اول (خدمات) */
.services-dropdown .dropdown-menu {
    pointer-events: none; /* فضای منو غیرفعال */
    display: none; /* مخفی بودن منو به صورت پیش‌فرض */
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 15px;
    display: flex; /* بخش‌ها کنار هم */
    flex-direction: column; /* آیتم‌ها به صورت عمودی نمایش داده شوند */
    gap: 20px; /* فاصله بین بخش‌ها */
}

.services-dropdown:hover .dropdown-menu {
    display: flex; /* نمایش منو هنگام هاور */
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.4s ease-out forwards;
    pointer-events: auto; /* فعال کردن فضای منو هنگام هاور */
}

.services-dropdown .dropdown-section {
    display: flex;
    flex-direction: column;
    min-width: 150px; /* عرض هر بخش */
}
.services-dropdown .dropdown-header {
    font-weight: bold;
    font-size: 14px;
    color: #555;
    padding: 5px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 10px;
}
.services-dropdown .dropdown-item {
    padding: 12px 18px;
    font-size: 16px;
    color: #333;
    transition: background-color 0.3s, padding-left 0.3s;
    border-radius: 6px;
}
.services-dropdown .dropdown-item:hover {
    background-color: #d2ab67;
    padding-left: 24px;
    color: #fff;
}
/* استایل منوی دوم (حساب کاربری) */
.user-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
}
.user-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideInDown 0.4s ease-out forwards;
}
.user-dropdown .dropdown-menu .dropdown-item {
    padding: 12px 18px;
    font-size: 14px;
    color: #333;
    transition: background-color 0.3s, padding-left 0.3s;
    border-radius: 6px;
}
.user-dropdown .dropdown-menu .dropdown-item:hover {
    background-color: var(--green);
    padding-left: 24px;
    color: var(--white);
}
.user-dropdown-title {
    color: #343434;
    font-weight: 600;
    font-size: 14px;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}
.user-dropdown-title:hover {
    color: var(--gold);
}
/* استایل عمومی برای منوها */
.dropdown-menu {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0 !important;
}
/* استایل آیکون‌ها */
.nav-logo {
    border-radius: 50%;
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
}
.nav-logo:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
/* استایل لینک‌های اصلی منو */
.navbar .navbar-nav .nav-link {
    color: #3a3a3a;
    font-size: 15px !important;
    font-weight: bold;
    position: relative;
    padding: 10px 20px;
    margin-right: 5px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.nav-link:hover::before {
    width: 100%;
}
.nav-link:hover {
    background-color: var(--green);
    color: #fff !important;
}
.fa-angle-down{
    font-size: 10px;
}
.navbar-toggler-btn{
    color: #fff !important;
    background: var(--green) !important;
}
.nav-logo{
    cursor: pointer;
}
/* استایل های offcanvas */
.offcanvas-item{
    margin: 5px 0;
}
.offcanvas-link{
    color: var(--black);
    font-weight: bold;
    font-size: 15px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.offcanvas-link:hover{
    color: var(--gold);
}
.navbar-list .dropdown-item{
    padding: 10px 20px;
    font-weight: bold;
    font-size: 15px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.navbar-list .dropdown-item:hover{
    background: none;
    color: var(--white);
    background: var(--gold);
}
.offcanvas-close-btn{
    color: #fff;
    background: #3e3e3e;
    padding: 4px 12px;
    font-size: 20px;
    border-radius: 5px;
}

/* header */

header{
    color: var(--white);
    overflow: hidden;
}
.title-heading h2{
    text-align: center;
    font-size: 120px;
    font-weight: bold;
    font-family: 'Times New Roman';
}
.title-heading h1{
    margin: 10px 0;
    text-align: center;
    font-size: 47px;
    font-weight: bold;
}
.title-heading h3{
    margin: 35px 0;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
.btn-mragin{
    margin-left: 18px;
}
/* online course */
.online-course-card {
    display: block;
    padding: 10px;
    margin: 10px 0;
    background-color: #fff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border: 1px solid #ebeefd;
    -webkit-box-shadow: 0 4px 12px rgb(109 114 139 / 10%);
    box-shadow: 0 4px 12px rgb(109 114 139 / 30%);
}
.online-course-card-img img{
    width: 100%;
    height: 200px;
    opacity: 0.9;
    object-fit: cover;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.online-course-card-body .green{
    background: var(--green);
    display: inline-block;
    margin-top: 10px;
    padding: 5px;
    font-size: 10px;
    color: var(--white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.online-course-card-body .gold{
    background: rgb(169, 131, 64);
    display: inline-block;
    margin-top: 10px;
    padding: 5px;
    font-size: 10px;
    color: var(--white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.online-course-card-body h4{
    font-size: 15px;
/*    height: 50px;*/
    line-height: normal;
    overflow: hidden;
    margin-top: 9px;
    font-weight: bold;
}
.online-course-card-body h4 a{
    color: #000 ;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.online-course-card-body h4 a:hover{
    color: var(--green);
}
.online-course-card-body .course-info-clock{
    font-size: 10px;
    font-weight: 500;
    margin-left: 10px;
}
.online-course-card-body .course-info-clock i{
    color: #555;
    margin-left: 3px;
}
.online-course-card-body .course-info-session{
    font-size: 10px;
    font-weight: 500;
}
.online-course-card-body .course-info-session i{
    color: #555;
    margin-left: 3px;
}
.online-course-card-footer{
    display: flex;
    margin-top: 5px;
    justify-content: space-between;
}
.online-course-card-footer .course-price{
    color: var(--green);
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}
.online-course-card-footer a{
    display: flex;
    align-items: center;
    background: var(--green);
    padding: 5px 10px;
    color: var(--white);
    font-size: 12px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    color: var(--white);
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
}
.online-course-card-footer a:hover{
    background: #0a514b;
    color: var(--white);
}
.online-course-card-footer a i{
    margin-right: 5px;
    font-size: 10px;
    
}
/* in person course */
.course-card{
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ebeefd;
    -webkit-box-shadow: 0 4px 12px rgb(109 114 139 / 10%);
    box-shadow: 0 4px 12px rgb(109 114 139 / 10%);
}
.course-img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.8;
}
.course-card h4{
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
}
.course-card h4 a{
    color: var(--mainBlack);
    font-size: 27px;
}
.course-card-border-title {
    border-bottom: 3px solid #116960;
    border-radius: 25px;
    width: 50%;
    margin: 0 auto;
}
.course-card-info{
    margin-top: 20px;
    text-align: center;
}
.course-card-info p{
    font-size: 15px;
    color: #000;
}
.course-card-info i{
    color: var(--gold);
    font-size: 17px;
}
.course-card .btn-success{
    background: #116960;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.course-card .btn-success:hover{
    background: #0e4e47;
}
/* question */
.accordion-item {
    background-color: #fff;
    border: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--green) !important;
    background-color: #fff !important;
    font-weight: bold;
}
.accordion-button:focus {
    z-index: 3;
    border-color: none;
    outline: none;
    box-shadow: none !important; /* حذف سایه */
}
.accordion-body{
    padding-left: 30px;
    padding-right: 30px;
}
.accordion-body p{
    line-height: 2;
    text-align: justify;
    font-size: 15px;
    color: #2f2f2f;
}
.question-img{
    width: 100%;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
/* banner */
.banner-height{
    background: linear-gradient(rgb(0, 0, 0,0.70), rgba(0, 0, 0, 0.70)),url('../images/body/banner.jpg') center/cover fixed no-repeat;
    min-height: 30vh;
}
.banner{
    overflow: hidden;
}
.banner h3{
    line-height: 2;
}
.banner-number{
    background: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 5px;
    color: #fff !important;
    font-weight: bold;
}
.banner-btn{
    background: var(--green);
    border: 2px solid var(--green);
    border-radius: 15px;
    padding: 5px 10px;
    color: #fff !important;
    font-weight: bold;
}
/* blog */
.card-blog {
    transition: 0.3s;
    border: none;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.blog-img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}
.blog-heading h5 a{
    font-weight: bold;
    font-size: 17px;
    color: var(--mainBlack);
}
.blog-text{
    font-size: 14px;
    color: var(--mainGray);
    margin-top: 15px;
    text-align: justify;
    line-height: 1.8;
    overflow: hidden;
    height: 77px;
}
.blog-info{
    color: #6c757d;
    font-size: 13px;
}
.blog-info p{
    margin: 0 8px;
}
.blog-info p i{
    color: var(--mainCream);
}
/* footer */
.footer {
    border-top: 1px solid #f0f0f0;
    margin-top: 30px;
    padding: 30px 0;
    box-shadow: 0 .175rem .5rem rgba(0,0,0,.075) !important;
}
.footer-bar{
    width: 50px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--mainBlue);
    transition: width 0.2s ease;
}
.footer:hover .footer-bar{
    width: 100px;
}
.footer a {
    color: #635858;
    transition: 0.5s
}
.footer a:hover{
    color: #000;
}
.footer h4{
    color: #000;
    font-weight: bold;
}
.footer-contact-item{
    margin: 20px 0;
}
.footer-link-item{
    margin: 20px 0;
}
.footer-about-item{
    margin: 20px 0;
}
.footer-about-item p{
    color: #595959;
    line-height: 2;
    text-align: justify;
    font-size: 14px;
}
.footer-about-item a{
    color: #0278BF;
}
.footer-social-networks{
    margin-bottom: 20px;
}
.footer-social-networks a {
    color: #fff;
    background: #116960;
    padding: 3px 14px;
    font-size: 25px;
    margin: 0 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.footer-social-networks a:hover{
    color: #fff;
    background: #d2ab67;
}
.footer-copy {
    border-top: 1px solid #f0f0f0;
    color: #a4a4a4;
    font-size: 14px;
}
.footer-copy a{
    color: var(--gold);
}
.footer-create p {
    font-size: 14px;
    color: #a4a4a4;
    font-weight: bold;
}
/* header image */
.header-height-tourism{
    min-height: 60vh;
    background: linear-gradient(rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)), url('../images/header/tourism.jpg') center/cover fixed no-repeat;
}
.header-height-contact{
    min-height: 40vh;
    background: linear-gradient(rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)), url('../images/header/contact.jpg') center/cover fixed no-repeat;
}
.header-height-about{
    min-height: 70vh;
    background: linear-gradient(rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)), url('../images/header/about.jpg') center/cover fixed no-repeat;
}
.header-height-course {
    min-height: 50vh;
    background: linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url('../images/header/course.webp') center / cover fixed no-repeat;
}
.header-height-comment{
    min-height: 60vh;
    background: linear-gradient(rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)), url('../images/header/comment.jpg') center/cover fixed no-repeat;
}
.header-height-blog{
    min-height: 50vh;
    background: linear-gradient(rgb(0, 0, 0, 0.65), rgb(0, 0, 0, 0.65), rgb(0, 0, 0, 0.65)), url('../images/header/blog.jpg') center/cover fixed no-repeat;
}
.header-height-document {
    min-height: 90vh;
    background: linear-gradient(rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)), url('../images/header/document.jpg') center / cover fixed no-repeat;
}
/* tourism */
.bg-c-blue {
    background: linear-gradient(45deg,#4099ff,#73b4ff);
    border: none !important;
}
.text-blue{
    color: #4099ff !important;
}
.bg-c-green {
    background: linear-gradient(45deg,#116960,#59e0c5);
    border: none !important;
}
.text-green{
    color: #2c8e84 !important;
}
.bg-c-yellow {
    background: linear-gradient(45deg,#d2ab67,#ffcb80);
    border: none !important;
}
.text-yellow{
    color: #d2ab67 !important;
}
.bg-c-pink {
    background: linear-gradient(45deg,#FF5370,#ff869a);
    border: none !important;
}
.text-pink{
    color: #FF5370 !important;
}

.box-icon {
    --tblr-avatar-size: 2.5rem;
    --tblr-avatar-bg: var(--tblr-border-color-light);
    position: relative;
    width: var(--tblr-avatar-size);
    height: var(--tblr-avatar-size);
    font-size: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #626976;
    text-align: center;
    text-transform: uppercase;
    vertical-align: bottom;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
}
.box-text p{
    margin-top: 15px;
    line-height: 2;
    font-size: 13px;
}
.tourism-top-text{
    line-height: 2;
    text-align: justify;
    color: #000;
    font-size: 17px;
}
.tourism-top-text h2{
    font-weight: bold;
    font-size: 22px;
}
/* contact */
.contact-alert-box .text-success{
    color: #116960 !important;
}
.contact-info-box{
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}
.contact-info-box h4{
    line-height: 1.7;
}
.contact-info-box p{
    line-height: 2;
    font-size: 16px;
}
.contact-info p{
    margin: 20px 0;
    font-size: 15px;
}
.contact-info span{
    font-weight: bold;
    color: #000;
}
.contact-info i{
    margin-left: 10px;
    font-size: 20px;
}
/* about */
.about-header-box{
    text-align: center;
    padding: 0 20px;
}
.about-header-box i{
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 30px;
    font-size: 40px;
}
.about-header-box p{
    font-weight: bold;
    font-size: 14px;
    margin-top: 20px;
}
.about-section p{
    line-height: 2;
    text-align: justify;
}
.about-section img{
    border-radius: 20px;
}
/* comment */
.comment-video{
    width: 100%;
	height: 50%;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
/* blog page */
.blog-title{
    display: flex;
}
.blog-title h6{
    font-weight: bold;
    padding-top: 10px;
    font-size: 18px;
}
.blog-title span{
    padding-top: 10px;
    margin-right: 20px;
    font-size: 14px;
    color: var(--mainGray);
}
.aside-border-title {
    border-bottom: 3px solid var(--gold);
    border-radius: 25px;
    width: 60%;
    margin: 0 auto;
}
.aside-link {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-top: 20px;
}
.aside-link li {
    margin: 10px 0;
    display: flex;
}
.aside-link li i {
    margin-left: 10px;
    margin-top: 2px;
    color: var(--gold);
    transition: 0.5s;
}
.aside-link a {
    color: var(--black);
    font-size: 14px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.aside-link a:hover{
    color: var(--green);
}
.pagination-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.pagination-wrap ul li {
    display: inline-block;
}
.pagination-wrap ul li a {
    color: #5c5c5c;
    font-size: 15px;
    background-color: rgb(231, 231, 231);
    display: inline-block;
    padding: 8px 14px;
    border-radius: 5px;
    margin: 3px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.7s;
}
.pagination-wrap ul li a:hover{
    color: #464646;
    background-color: #acacac;   
}
/* document */
.document-header h1{
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 60px;
    margin-right: 150px;
    font-size: 40px;
    color: #fff;
}
.document-header h3{
    font-weight: bold;
    margin-right: 150px;
    color: #dedede;
    font-size: 20px;
    line-height: 2;
}
.document-header i{
    font-size: 12px;
    margin-left: 10px;
    color: #fff;
}
.document-header-link{
    margin-right: 150px;
}
/* blog-single */
.blog-single{
    margin-top: 100px;
}
.blog-single-content{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    background: #fff;
    border-radius: 15px;
    padding: 20px;
}
.blog-single-content .top-img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.blog-single-content h2 a{
    font-weight: bold;
    font-size: 23px;
    color: var(--black);
    line-height: 2;
}
.blog-single-content-info{
    display: flex;
    margin-top: 20px;
}
.blog-single-content-info p{
    font-size: 13px;
    color: var(--gray);
    height: 0.5rem;
}
.blog-single-bar{
    width: 100%;
    height: 2px;
    margin-top: 10px;
    border-radius: 3px;
    background-color: var(--green);
    opacity: 0.4;
}
.single-blog-short-des{
    line-height: 2;
    font-size: 14px;
    text-align: justify;
    color: #333333;
    margin: 20px 0;
}
.blog-single-content-img img{
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 30px;
}
.blog-single-content-text h3{
    font-weight: bold;
    font-size: 22px;
}
.blog-single-content-text{
    line-height: 2;
    text-align: justify;
    font-size: 14px;
}
.blog-single-content .ads{
    display: flex;
    justify-content: center;
    margin: 20px 0;
    border: 1px solid #000;
}
.blog-single-content .ads img{
    width: 20%;
    height: 300px;
}
.ads-title{
    font-size: 13px;
    margin-top: 8px;
    color: #3d3d3d;
    line-height: 2;
}
.ads-title:hover{
    color: var(--gold);
}
.blog-widget img{
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
}
.aside-single-post {
    position: relative;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding: 17px 0;
}
.aside-single-post .image img {
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    object-fit: cover;
    border-radius: 10px;
}
.aside-single-post .content {
    padding-left: 100px;
}
.aside-single-post .content a {
    line-height: 1.7;
    font-size: 15px;
    color: #2C2D3F;
    font-weight: bold;
    font-size: 14px;
    margin-top: 25px;
    display: block;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.aside-single-post .content a:hover{
    color: var(--green);
}
/* Header Styles */
.rules-header {
    background-color: #14635b;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 70px;
}
.rules-header-title {
    font-size: 32px;
    font-weight: bold;
}
.rules-content {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.rules-section-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #d2ab67;
    display: inline-block;
    padding-bottom: 5px;
}
.rules-section-text {
    text-align: justify;
    margin-bottom: 20px;
    color: #444;
    font-size: 16px;
    line-height: 1.8;
}
.rules-footer {
    text-align: center;
    padding: 20px;
    background-color: #14635b;
    color: #fff;
    font-size: 14px;
}
.rules-footer a {
    color: #d2ab67;
    text-decoration: none;
    font-weight: bold;
}
.rules-footer a:hover {
    text-decoration: underline;
}
/* profile */
.profile-margin{
  margin-top: 120px;
}
.profile-link li{
  list-style: none;
  margin: 15px;
  font-weight: 500;
  font-size: 15px;
}
.profile-link a{
  color: #26262a;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.profile-link a:hover{
  color: #0a97b0;
}
.profile-information li{
  list-style: none;
  padding: 10px 0;
  font-size: 15px;
}
.profile-information i{
  margin-left: 10px;
  font-size: 14px;
  color: var(--gold);
}
.user-profile-img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    padding: 10px;
/*    border: 1px solid var(--gray);*/
    border-radius: 50%;
}
.alert-info {
    background-color: #f0f8ff !important;
    border: 1px solid #bee5eb !important;
    border-radius: 10px;
}
.alert {
    padding-bottom: 5px !important;
}
.alert-text{
    line-height: 1.9;
    text-align: justify;
}
/* online course page */
.online-course-group-card {
    display: block;
    margin: 10px 0;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ebeefd;
    -webkit-box-shadow: 0 4px 12px rgb(109 114 139 / 10%);
    box-shadow: 0 4px 12px rgb(109 114 139 / 20%);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.online-course-group-card img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    opacity: 0.9;
}
.online-course-group-card-body{
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.online-course-group-card-body h4{
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
}
.online-course-group-card-body h4 i{
    color: var(--gold);
    font-size: 14px;
}
/* online course group page*/
.online-course-group-margin{
    margin-top: 100px;
}
.online-course-group-top h2{
    font-size: 20px;
    font-weight: bold;
}
.breadcrumb-item a{
    font-size: 14px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.breadcrumb-item a:hover{
    color: var(--gold);
}
.breadcrumb-item-link{
    color: var(--gray);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}
.breadcrumb-item-link:hover{
    color: var(--gold);
}
.order-layer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.select-layer {
  width: 100%;
}
.custom-select {
  font-size: 14px !important;
  font-weight: bold !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.custom-select:hover {
  color: var(--black) !important;
  border-color: var(--gold);
}
.custom-select:focus {
  box-shadow: 0 0 5px #8d6f3c !important;
  border-color: #b89455 !important;
}
.filter-box {
    border: 1px solid #14635b;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #fff;
}
.filter-header {
    background-color: #14635b;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}
.filter-content {
    padding: 15px;
    display: block;
}
.filter-option {
    margin-bottom: 10px;
}
.filter-option input[type="radio"] {
    margin-left: 8px;
    accent-color: #d2ab67;
}
.filter-option label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}
.filter-box .toggle-icon {
    color: #fff;
    font-size: 18px;
}
.filter-box.active .filter-content {
    display: none; 
}
.form-check-input:checked{
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    box-shadow: none !important;
}
.form-check-input:focus{
    box-shadow: none !important;
}
.online-course-group-text{
    line-height: 2;
}
/* course group page */
.course-group-header {
    overflow: hidden;
    margin-top: 60px;
}
.course-group-header-top {
    position: relative;
    text-align: center;
    color: white !important;
}
.course-group-header img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    position: relative;
    filter: brightness(.4);
}
.course-group-header-top .centered {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.course-group-header-top .centered h1 {
    line-height: 2 !important;
    font-size: 22px;
}
.course-group-card {
    background-color: #fff;
    border: 1px solid #ebeefd;
    -webkit-box-shadow: 0 4px 12px rgb(109 114 139 / 10%);
    box-shadow: 0 4px 12px rgb(109 114 139 / 10%);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.course-group-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.8;
}
.course-group-card h3 {
    padding-top: 10px;
    padding-right: 25px;
    margin: 10px 0;
    font-weight: bold;
}
.course-group-card h3 a {
    font-size: 22px;
    color: var(--black);
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.course-group-card h3 a:hover{
    color: var(--green);
}
.course-group-card-info p {
    padding: 0 25px;
    text-align: justify;
    line-height: 1.7;
    font-size: 15px;
    height: 130px;
    overflow: hidden;
    color: var(--gray);
}
.course-group-card-btn {
    background: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 5px 10px;
    color: #fff !important;
    font-weight: bold;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
}
.course-group-card-btn:hover{
    background: var(--green);
    border: 2px solid var(--green);
}
.course-group-text p{
    line-height: 2;
}
.course-group-contact-info{
    margin: 20px 0;
    font-size: 14px;
}
.course-group-contact-info i{
    margin-left: 10px;
    font-size: 20px;
}
.course-group-contact-info span {
    font-weight: bold;
}
/* shopping cart */
.cart-item img {
    max-width: 100px;
    height: auto;
}
.quantity-input {
    width: 50px;
}
.cart-summary {
    background-color: #f8f9fa;
    border-radius: 10px;
}
/* course single */
.register-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--green);
    color: white;
    padding: 12px 24px;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}
.course-single-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin: 20px auto;
    max-width: 800px;
}
.course-single-price {
    font-size: 1rem;
    font-weight: bold;
    color: #14635b;
    margin-bottom: 20px;
}
.course-single-price-icon {
    color: #d2ab67;;
    margin-left: 8px;
}
.course-single-details {
    list-style: none;
    padding: 0;
    margin: 0;
}
.course-single-details-item {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color:#333;
}
.course-single-details-icon {
    width: 24px;
    text-align: center;
    margin-left: 8px;
    color: #14635b;
}
.course-single-status {
    color: #14635b;
    font-weight: bold;
}
.course-single-purchased {
    color: #28a745;
    font-weight: bold;
    margin-top: 20px;
}
.course-single-instructor-link {
    color: #d2ab67;
    text-decoration: none;
    font-weight: bold;
}
.course-single-instructor-link:hover {
    text-decoration: underline;
}
.course-single-main {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin: 20px auto;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.course-single-img img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.course-single-main-text p{
    text-align: justify;
    color: #000;
    line-height: 1.9;
}

.course-single-commnet i{
    font-size: 14px;
}
.course-single-commnet-item{
    display: flex;
    justify-content: center;
    margin: 30px auto;
}
.course-single-commnet-item .image{
    margin-left: 12px;
}
.course-single-commnet-item .name{
    width: auto;
    white-space: normal;
    display: inline-table;
    line-height: 15px;
    border-left: 1px solid #e3e9ed;
    padding-left: 15px;
    margin-left: 15px;
}
.course-single-commnet-item .text{
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #edf1f4;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.course-single-commnet-item .commnet{
    line-height: 2;
    text-align: justify;
}
.course-single-commnet-item p{
    display: inline-block;
    font-size: 13px;
}
.share-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.share-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.share-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.share-socials span {
    font-size: 0.7rem;
    font-weight: bold;
    color: #333;
    margin-top: 7px;
}
/* online-course-single */
.online-course-single{
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin: 20px auto;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.online-course-single i{
    font-size: 12px;
    color: var(--gold);
}

.online-course-single p{
    font-size: 16px;
    font-weight: bold;
}
.online-course-single span{
    font-size: 14px;
    color: #646464;
}
.card-img-top{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
/* استایل کلی ویدیو آیتم */
.video-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* عناصر را در دو طرف قرار می‌دهد */
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #c3c3c3; /* حاشیه dashed */
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* شماره ویدیو */
.video-num {
    font-size: 1.2rem;
    font-weight: bold;
    color: #14635b; /* سبز تیره */
}

/* عنوان ویدیو */
.video-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* دکمه دانلود */
.show-video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.show-video:hover {
    background-color: #14635b; /* سبز تیره */
    color: white;
}

/* زمان ویدیو */
.course-time-left {
    font-size: 0.9rem;
    color: #666;
}

/* گروه عناصر سمت چپ */
.left-elements {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* register */
.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f7f7f7;
}

.register-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    background-color: #fff;
    margin: 120px 0;
}

.register-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.register-header h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--green);
}

.register-form .form-control {
    border-radius: 10px;
    margin-bottom: 1rem;
}

.register-form .btn-register {
    background-color: var(--green);
    color: #fff;
    border-radius: 10px;
    padding: 0.6rem;
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
}

.register-form .btn-register:hover {
    background-color: #135650;
    color: #fff;
}

.register-form .form-footer {
    text-align: center;
    margin-top: 1rem;
}

.input-icon {
    position: relative;
}

.input-icon .fa {
    position: absolute;
    top: 50%;
    left: 10px;
    color: var(--gold);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.form-control.has-icon {
    padding-left: 2.5rem;
}
input:focus{
    outline: none !important;
    box-shadow: 0 0 5px 2px rgba(255, 193, 7, 0.6) !important;
    border-color: #ffc107 !important;
} 
.show-password span{
    font-size: 13px;
}
/* document page */
.cooking-1 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.cooking-1 h2 {
    font-size: 25px;
    font-weight: bold;
    line-height: 1.8;
}
.cooking-1 p {
    line-height: 2;
    text-align: justify;
}
.document-img {
    width: 60%;
}
document-text h2{
    font-weight : bold;
    font-size: 22px;
}
document-text h5{
    font-size: 20px;
}
document-text p {
    text-align: justify;
    font-size: 16px;
}
/*comment*/
.comments-section {
/*    max-width: 800px;*/
    margin: auto;
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    padding: 20px;
    border-radius: 10px;
}
.comments-section-border {
    width: 90px;
    height: 7px;
    background-color: var(--lightGold);
    margin: 10px auto;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.comment-box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
}
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comment-box strong {
    color: #333;
    font-size: 16px;
}
.comment-box p {
    margin: 5px 0;
    color: #555;
}
.reply-box {
    margin-right: 40px;
    padding: 10px;
    border-left: 3px solid #8d8ed8;
    background: rgba(141, 142, 216, 0.1);
    border-radius: 5px;
    margin-top: 10px;
}
.reply-header {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    gap: 8px;
}
.admin-badge {
    background-color: #28a745;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}
.date-text {
    margin-right: auto;
    font-size: 12px;
    color: #666;
}
.reply-replying-to {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
    margin-bottom: 5px;
}
.reply-text {
    color: #555;
    font-size: 14px;
}
.reply-btn {
    background: none;
    border: none;
    color: #8d8ed8;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}
.reply-btn:hover {
    text-decoration: underline;
}
.comment-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-in;
    opacity: 0;
    margin-top: 10px;
}
.comment-form textarea {
    width: 100%;
    height: 80px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    resize: none;
    font-size: 14px;
}
.comment-form button {
    background: #8d8ed8;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
}
.comment-form button:hover {
    background: #6e6fd4;
}
.comment-form.active {
    max-height: 500px !important; 
    opacity: 1;
    transition: max-height 0.4s ease-in, opacity 0.3s ease-in;
}
/* Showcase */
.showcase-box{
    width: 100%;
    height: 280px;
    background: #333;
    border-radius: 10px;
    outline: 1px solid rgba(255, 255, 255, .5);
    outline-offset: -8px;
    box-shadow: 3px 3px 10px rgb(0 0 0 / 10%);
    position: relative;
    overflow: hidden;
}
.showcase-box-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform .75s;
}
.showcase-box:hover .showcase-box-img{
    transform: scale(1.25);
}
.showcase-box:hover .showcase-box-title{
    color: var(--gold);
}
.showcase-box-title{
    position: absolute;
    right: 25px;
    bottom: 15px;
    font-size: 20px;
    text-shadow: 0 0 1px rgb(0 0 0 / 50%);
    color: #fff;
    font-weight: bold;
    transition: 0.5s;
}
/* showcase single */
.showcase-single-header{
    overflow: hidden;
}
.showcase-single-header img{
    width: 100%;
    height: 100px;
    object-fit: cover;
    position: relative;
    filter: brightness(.4);
}
.showcase-single-box{
    width: 100%;
    height: 400px;
    background: #333;
    border-radius: 10px;
    outline: 1px solid rgba(255, 255, 255, .5);
    outline-offset: -8px;
    box-shadow: 3px 3px 10px rgb(0 0 0 / 10%);
    position: relative;
    overflow: hidden;
}
.showcase-box-single-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.6;
    transition: transform .75s;
}
.showcase-single-box:hover .showcase-box-single-img{
    transform: scale(1.25);
}
.btn-showcase-single-form{
    background: linear-gradient(45deg,#004b44,#d2ab67);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 10px;
    border: 1px solid var(--mainCream);
}
.btn-showcase-single-form:hover{
    background: linear-gradient(45deg,#02403a,#b5955c);
}
.header-height-showcase {
    min-height: 50vh;
    background: linear-gradient(rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)), url('../images/header/shop.jpg') center/cover fixed no-repeat;
}
.showcase-single-box-image img {
    width: 100%;
    height: auto;
}
/* Ad */
.single-post {
    position: relative;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding: 17px 0;
}
.single-post .image img {
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    object-fit: cover;
    border-radius: 10px;
}
.single-post .content {
    padding-left: 100px;
}
.single-post .content h5 {
    line-height: 1.9;
}
.single-post .content h5 a {
    color: #2C2D3F;
    font-weight: 500;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    display: block;
    transition: 0.3s all;
}
.single-post .content h5 a:hover{
    color: var(--gold);
    
}
.line-height {
    line-height: 1.9;
}
.margin-li li{
    margin-top: 10px;
}