@font-face {
    font-family: iranyekanBold;
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/iranyekan/eot/iranyekanwebbold(fanum).eot') format('eot'),
    url('../fonts/iranyekan/woff2/iranyekanwebbold(fanum).woff2') format('woff2'),
    url('../fonts/iranyekan/woff/iranyekanwebbold(fanum).woff') format('woff'),
    url('../fonts/iranyekan/ttf/iranyekanwebbold(fanum).ttf') format('ttf')
}

@font-face {
    font-family: iranyekan;
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/iranyekan/eot/iranyekanweblight(fanum).eot') format('eot'),
    url('../fonts/iranyekan/woff2/iranyekanweblight(fanum).woff2') format('woff2'),
    url('../fonts/iranyekan/woff/iranyekanweblight(fanum).woff') format('woff'),
    url('../fonts/iranyekan/ttf/iranyekanweblight(fanum).ttf') format('ttf')
}

html, body {
    overflow-x: hidden !important;
}

* {
    font-family: iranyekan;
}

h1, h2, h3, h4, h5, h6 {
    font-family: iranyekanBold;
}

p {
    font-size: 15px;
    font-weight: 600;
}


/* ===== css loader styles===== */

#preloader {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#loader {
    display: block;
    position: relative;
    right: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px -75px 0 0;
    border-radius: 50%;
    border: 4px solid transparent;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    border: 3px solid transparent;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 5px solid transparent;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* ===== end css loader styles===== */

/* =====header===== */

.header {
    border-radius: 0 0 20px 20px;
}

.header button {
    font-size: 35px;
    background: transparent;
    border: 0px;
}

.header ul {
    margin-bottom: 0 !important;
    height: 60px;
}


/* =====search box===== */
.search-container {
    background: #fff;
    height: 40px;
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.8s;
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .3),
    -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

.search-container:hover > .search-input {
    width: 400px;
}

.search-container .search-input {
    background: transparent;
    border: none;
    outline: none;
    width: 0px;
    font-weight: 500;
    font-size: 16px;
    transition: 0.8s;

}

.search-container .search-btn .fas {
    color: #5cbdbb;
}

@keyframes hoverShake {
    0% {
        transform: skew(0deg, 0deg);
    }
    25% {
        transform: skew(0deg, 0deg);
    }
    75% {
        transform: skew(0deg, 0deg);
    }
    100% {
        transform: skew(0deg, 0deg);
    }
}

.search-container:hover {
    animation: hoverShake 0.15s linear 3;
}

/* =====end search box===== */


.my-canvas {
    width: 350px;
}


/* =====dropdown===== */
.custom-dropdown .btn:active, .custom-dropdown .btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none;
}


.custom-dropdown .title-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
}

.custom-dropdown .title {
    font-size: 22px;
    font-weight: 700;
}

.custom-dropdown .dropdown-link {
    display: inline-block;
    padding-right: 0px;
    position: relative;
}

.custom-dropdown .dropdown-link .wrap-icon {
    font-size: 30px;
}

.custom-dropdown .dropdown-menu {
    border: 1px solid transparent;
    margin-top: 0px !important;
    padding-top: 0;
    padding-bottom: 0;
    padding: 10px;
    opacity: 0;
    left: 0 !important;
    -webkit-transition: .3s margin-top ease, .3s opacity ease, .3s visibility ease;
    -o-transition: .3s margin-top ease, .3s opacity ease, .3s visibility ease;
    transition: .3s margin-top ease, .3s opacity ease, .3s visibility ease;
    visibility: hidden;
    width: 500px;
}

.custom-dropdown .dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    margin-top: 10px !important;
}

.custom-dropdown .custom-notifications {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 200px;
    overflow-y: scroll;
    border-bottom: 1px solid #efefef;
}

.custom-dropdown .custom-notifications > li {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.custom-dropdown .custom-notifications > li:last-child {
    margin-bottom: 0;
}

.custom-dropdown .custom-notifications > li > a {
    display: block;
    padding: 20px;
}


.custom-dropdown .custom-notifications > li > a .img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 70px;
}

.custom-dropdown .custom-notifications > li > a .img img {
    width: 70px;
    border-radius: 12px;
}

.custom-dropdown .custom-notifications > li > a .text {
    margin-top: 0px;
}

.custom-dropdown .custom-notifications > li > a .text strong {
    font-weight: 700;
}

.custom-dropdown .custom-notifications > li.unread a {
    background: transparent;
    text-decoration: none;
    border-radius: 0 15px 15px 0;
}


/* =====end dropdown===== */

.close-btn {
    padding: 3px;
    border-radius: 50%;
}

.close-btn i.bi {
    font-size: 18px;
}

.my-canvas {
    width: 300px;
}

.offcanvas-end {
    border-radius: 0 15px 15px 0;
}

.offcanvas-end .offcanvas-body {
    border-radius: 0 15px 15px 0;
}

.offcanvas-start {
    border-radius: 15px 0 0 15px;
}

.offcanvas-start .offcanvas-body {
    border-radius: 0 0 0 15px;
}

.offcanvas-start .offcanvas-header {
    border-radius: 15px 0 0 0;
}

.link-user {
    border-radius: 15px;
    padding: 5px;
}

.link-user li {
    padding: 5px 10px;
    border-radius: 10px;
    transition: background-color ease;
    transition-delay: 0.3s;
    transition-duration: 0.3s;
    margin-top: 5px;
}

.link-user li a {
    text-decoration: none;
    font-weight: bold;
}

.link-user li a i {
    font-size: 22px;
}

.user-img {
    border: 10px solid;
}

.menu-site li {
    margin-top: 4px;
    padding: 10px 15px;
}

.menu-site li:after {
    content: '';
    display: block;
    margin: auto;
    margin-top: 5px;
    height: 3px;
    width: 0;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
}

.menu-site li:hover:after {
    width: 100%;
    background-color: #fefdfd;
}

.menu-site a {
    text-decoration: none;
    font-weight: bold;
}

.menu-site li a i {
    font-size: 22px;
}

/* =====end header===== */


/* =====animate rotate===== */
.rotate-center:hover {
    -webkit-animation: rotate-center 1.0s ease-in-out both;
    animation: rotate-center 1.0s ease-in-out both;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-7-25 15:24:0
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* =====end animate rotate===== */


/* =====main===== */
.main {
    margin-top: 70px;
}

.div-util {
    border-radius: 20px;
    height: 80px;
}

.div-util img {
    height: 110px;
}

#slider-first img {
    border-radius: 15px;
    /* height: 400; */
}

#slider-first .owl-nav {
    display: none;
}

#slider-first .owl-dots {
    margin-top: 15px;
}

#slider-first .owl-dots button span {
    width: 15px !important;
    height: 15px !important;
}

.top-back {
    background-image: url('../img/slice-1-2\ -\ Copy.png');
    margin-top: -170px;
    margin-bottom: -5px;
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: -1;
}

.bottem-back {
    background-image: url('../img/slice-1-2.png');
    margin-bottom: -170px;
    height: 200px;
    margin-top: -5px;
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: -2;
}

/* =====slider-two===== */

.section-slider-two {
    background-image: url(../img/pattern-2.png);
    background-position: top;
}

#slider-second .item {
    border-radius: 20px;
    font-weight: bold;
}

#slider-second .item a {
    text-decoration: none;
}

#slider-second .item img {
    width: 50% !important;
    border-radius: 20px 0 0 20px;
}

#slider-second .item .slider-text {
    text-align: center;
}

#slider-second .owl-nav {
    display: none;
}

#slider-second .owl-dots {
    margin-top: 15px;
}

#slider-second .owl-dots button span {
    width: 15px !important;
    height: 15px !important;
}

.slider-title {
    margin-bottom: 25px !important;
}

.slider-title h3:before {
    display: block;
    position: absolute;
    content: " ";
    height: 4px;
    width: 120px;
    margin: 43px 0 0 0;
}

.slider-title h3:after {
    display: block;
    position: relative;
    content: " ";
    height: 4px;
    width: 173px;
    margin: 21px 0 0 0;
}

.slider-title-light {
    margin-bottom: 25px !important;
    margin-top: 15px !important;
}

.slider-title-light h3:before {
    display: block;
    position: absolute;
    content: " ";
    height: 4px;
    width: 120px;
    margin: 43px 0 0 0;
}

.slider-title-light h3:after {
    display: block;
    position: relative;
    content: " ";
    height: 4px;
    width: 173px;
    margin: 21px 0 0 0;
}

/*end slider-two */
#slider-three .item {
    border-radius: 20px;
    font-weight: bold;
}

#slider-three .item img {
    border-radius: 20px 20px 0 0;
    margin-bottom: 10px;
}

#slider-three .item .slider-text {
    text-align: center;
}

#slider-three .owl-dots {
    display: none;
}

#slider-three .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%) !important;
}

#slider-three .owl-nav button.owl-prev {
    border-radius: 10px 0 0 10px !important;
    float: right !important;
    margin-right: 0px;
}

#slider-three .owl-nav button.owl-next {
    border-radius: 0 10px 10px 0 !important;
    float: left !important;
    margin-left: 0px;
}

#slider-three .owl-nav button span {
    margin: 20px 10px;
    font-size: 30px;
}


/* =====section-shuttle===== */

.section-shuttle .row {
    padding: 10px;
    border-radius: 15px;
    margin-top: 10px;
    text-align: center !important;
}

.section-shuttle .row h4 {
    font-weight: bold;
}

.section-shuttle .row p {
    margin-top: 10px;
    padding: 0 15px;
}


/* =====end section-shuttle===== */

#slider-four .text {
    padding: 20px !important;
    border-radius: 0 0 10px 10px;
    width: 100%;
    font-weight: bold;
}

#slider-four .image {
    border-radius: 10px 10px 0 0;
}

#slider-four .image img {
    border-radius: 10px 10px 0 0;
}

#slider-four .image ul.inner-ul {
    top: 10px;
    left: 10px;
    transform: translateX(-100px);
    transition: transform 0.5s ease;
}

#slider-four .image:hover > ul.inner-ul {
    transform: translateX(0);
}

#slider-four .owl-dots {
    display: none;
}

#slider-four .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%) !important;
}

#slider-four .owl-nav button.owl-prev {
    border-radius: 0 10px 10px 0 !important;
    float: right !important;
    margin-right: -40px;
    width: 40px !important;
    height: 60px !important;
}

#slider-four .owl-nav button.owl-next {
    border-radius: 10px 0 0 10px !important;
    float: left !important;
    margin-left: -40px;
    width: 40px !important;
    height: 60px !important;
}

#slider-four .item .text h5 {
    font-size: 20px;
}

#slider-four .item .text span {
    font-size: 15px;
}

.container-slider {
    padding: 0px 50px;
    border-radius: 20px;
    margin-top: 20px;
}

.section-slider-course {
    background-image: url('../img/curved-layer-2-2.png') !important;
}

/* =====end main===== */


/* =====style me===== */


.logo {
    width: 100px;
    height: 70px;
    filter: invert(1) brightness(2)
}

.header-span {
    text-decoration: none !important;
    font-size: 20px;
    font-weight: bold;
    color: var(--my-light);
}

.header a {
    text-decoration: none;
}

.header a:hover {
    text-decoration: none;
}


.arzhin-logo {
    filter: invert(1) brightness(2) !important

}


.footer-logo {
    width: 100px;
    height: auto;
    margin-right: 30px;
}

.footer a {
    text-decoration: none;
    color: #0d6efd;
}

.footer a:hover {
    text-decoration: underline;
}

/* #colapse-search {
  position: relative;
  z-index: 1051;
} */

#colapse-search {
    position: relative;
    z-index: 1051;
    margin-top: 60px;
}

.search-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-size: 0.9rem;
    text-align: right;
}

.search-link i {
    font-size: 1.3rem;
}

.search-link:hover {
    background-color: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
}

.search-header h5 {
    font-weight: 600;
}

.container a {
    text-decoration: none;
}

/* =====style me===== */

/* =====منو خطی===== */

.main-menu .nav-link {
    color: #fff;
    font-weight: bold;
    position: relative;
    transition: color 0.3s;
}

.main-menu .nav-link:hover {
    color: #d1b3ff;
}

.dropdown-menu.mega-menu {
    min-width: 500px;
    border-radius: 15px;
    background: #fff;
}

.hover-card {
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.hover-card:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.header {
    background: linear-gradient(90deg, #5f3dc4, #7d4bff);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-demo {
    background: #fff;
    color: #5f3dc4;
    border-radius: 20px;
    padding: 6px 16px;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s;
}

.btn-demo:hover {
    background: #d1b3ff;
    color: #fff;
}

@media (max-width: 1296px) and (min-width: 1200px) {
    .btn-demo {
        font-size: 16px !important; /* فونت کوچکتر */
        padding: 5px 10px !important; /* عرض کمتر */
        height: 34px !important; /* ارتفاع کمتر */
    }
}

/* =====end style me===== */


/* =====doc cmms page===== */

/* ===== کارت‌های ویدیو ===== */
.video-card video {
    border: 2px solid;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover video {
    transform: scale(1.02);
    box-shadow: 0 0 15px;
}

/* ===== کارت مقاله ===== */
.article-card {
    border: 1px solid;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
}

/* ===== مشتریان ===== */
.client-logo {
    border: 1px solid;
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-logo img {
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px;
}

/* ===== ماژول‌ها ===== */
.module-card {
    border: 1px solid;
    transition: all 0.3s;
    height: 100%;
}

.module-card:hover {
    transform: translateY(-5px);
}

/* ===== CTA ===== */
.section-cta .btn {
    border: none;
    transition: all 0.3s;
}


/* =====end doc cmms page===== */

/* ===== articlecmms cmms page===== */
/*.article-hero img {*/
/*  border: 2px solid;*/
/*}*/
.article-main-image {
    height: 320px !important;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
    border: 1px solid #eee;
}

@media (max-width: 768px) {
    .article-main-image {
        height: 280px !important;
    }
}

blockquote {
    border-top: 3px solid;
    border-bottom: 3px solid;
    text-align: justify;

}

/*.related-card {*/
/*  border: 1px solid;*/
/*  transition: all 0.3s ease;*/
/*}*/
/*.related-card:hover {*/
/*  transform: translateY(-4px);*/
/*}*/
/* اندازه ثابت برای عکس مقالات مرتبط */
.related-thumb-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 0.75rem;
    background: #f8f9fa;
}

.related-thumb-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.related-thumb-img:hover {
    transform: scale(1.05);
}

/* کارت‌ها هم ارتفاع */
.related-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}


/* ===== end articlecmms cmms page===== */


/* =====about page===== */


.about-hero {
    background: var(--my-light);
    min-height: 40vh;
}

.section-title {
    color: var(--my-dark);;
    padding-right: 10px;
}

.license-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.license-card:hover {
    background: rgba(0, 224, 255, 0.08);
    transform: translateY(-4px);
}

.contact-links .btn {
    transition: all 0.3s ease;
}

.contact-links .btn:hover {
    background-color: var(--my-dark);
    color: #000;
}


/* =====end about page===== */

/* ===== contactus page===== */
.contact-section {
    color: #333;
}

.section-title {
    font-weight: 700;
    color: #4a2fbd;
}

.contact-info {
    background: #fff;
    border-right: 4px solid #4a2fbd;
}

.contact-info i {
    font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    border-radius: 10px;
    border: 1px solid #ccc;
}

.contact-form button {
    border-radius: 10px;
    background-color: #4a2fbd;
    border: none;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #372199;
}

.map-wrapper iframe {
    border: 0;
    width: 100%;
    height: 350px;
}

/* ===== end contactus page===== */

/* ===== contactus page===== */
.intro-section h2 {
    color: #0d6efd;
}

.form-section .card {
    max-width: 800px;
    margin: auto;
}

.benefit-card {
    background: white;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* ===== end contactus page===== */

/* ===== سوالات متداول===== */
.intro-section h2 {
    color: #0d6efd;
}

.accordion-button {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #333;
    transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
    background-color: #0d6efd;
    color: #fff;
}

.accordion-body {
    background: #fff;
    line-height: 1.9;
}

.contact-section a.btn {
    border-radius: 10px;
}

/* ===== پایان بخش سوالات متداول===== */


/* ===== منابع نت===== */
.section-title-maintenance {
    font-weight: bold;
    color: #3a3a3a;
    border-right: 6px solid #6f42c1;
    padding-right: 12px;
}

.resource-card {
    background: #fff;
    border: 1px solid rgba(111, 66, 193, 0.2);
    border-top: 5px solid #6f42c1;
    border-radius: 16px;
    padding: 22px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(111, 66, 193, 0.15);
}

.resource-card h5 {
    color: #4b2ca0;
    font-weight: 700;
    margin-bottom: 10px;
}

.resource-card p {
    color: #5f6368;
    font-size: 0.95rem;
    margin-bottom: 10px;
}


.resource-card .btn,
.resource-card .download-btn {
    margin-top: auto;
}
.card-actions {
    margin-top: auto; /* دکمه‌ها همیشه می‌چسبن به پایین */
}


.download-btn {
    display: inline-block;
    background: linear-gradient(90deg, #6f42c1 0%, #8e58e0 100%);
    color: #fff;
    border-radius: 10px;
    padding: 6px 14px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.download-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.ai-form {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 5px solid #007bff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ai-form input,
.ai-form select,
.ai-form textarea {
    border-radius: 10px;
    border: 1px solid #ced4da;
    transition: 0.2s;
}

.ai-form input:focus,
.ai-form select:focus,
.ai-form textarea:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 5px rgba(139, 92, 246, 0.4);
}

.output-box {
    background: #f9f8ff;
    border: 1px dashed #b5a7e1;
    border-radius: 10px;
    padding: 18px;
    margin-top: 15px;
    min-height: 120px;
    color: #6c63a2;
    font-size: 0.95rem;
}

.gradient-section {
    background: linear-gradient(90deg, #ede7ff 0%, #f9f9ff 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(111, 66, 193, 0.15);
}

.text-gradient {
    background: linear-gradient(90deg, #6f42c1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* ===== پایان بخش منابع نت===== */

/* ===== بخش کامنت ارژین===== */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap');
body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #f8f9fa; /* Light Gray Background */
}

.article-main-image {
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.related-thumb-img {
    height: 150px;
    object-fit: cover;
    width: 100%;
    border-radius: 0.75rem;
}

.section-title {
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
    color: #212529;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 3px;
    background-color: #0d6efd; /* Primary Blue */
    border-radius: 9999px;
}

/* Style for the comment line */
.comment-item {
    border-right: 4px solid #ffc107; /* Yellow border for differentiation */
}

.admin-response {
    border-right: 4px solid #0dcaf0; /* Cyan border for admin response */
}

/* ===== پایان بخش کامنت ارژین===== */

/* =====  بخش دمو لینک ارژین===== */
.body-demolink {
    background: #f3f4ff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.demo-box-demolink {
    background: #fff;
    border-radius: 15px;
    border: 1.5px solid #d6d6e8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
    padding: 30px;
    max-width: 550px;
    width: 100%;
}

.demo-box-demolink h2 {
    color: #4b4bb0;
    font-size: 22px;
    margin-bottom: 20px;
}

.demo-box-demolink button {
    height: 48px;
    font-size: 16px;
}


/* ===== پایان بخش دمو لینک ارژین===== */

.video-st {
    border: 1px solid;
}

.video-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    min-height: 48px;
}


.load-more-glass {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 30px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.load-more-glass:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}


.form-control:focus {
    border-color: #7d4bff;
    box-shadow: 0 0 0 0.2rem rgba(125, 75, 255, 0.25);
}
.article-body p {
    line-height: 2;
    margin-bottom: 1.5rem;
}

.article-body h2, .article-body h3 {
    margin-top: 2.5rem;
}
.homepage-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.5;
    color: #222;
    text-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.article-img-small {
    max-width: 50%;     /* کل سایز تصویر کوچیک‌تر میشه */
    height: auto;       /* نسبت تصویر حفظ میشه */
    display: block;
    margin: 0 auto;     /* وسط‌چین */
}

/*مودال دمو*/
/* افکت شیشه‌ای و انیمیشن نرم برای مودال */
#createDemoModal .modal-content {
    animation: modalPop 0.4s ease-out;
    background: rgba(255, 255, 255, 0.96);
}

@keyframes modalPop {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* موبایل: تمام صفحه + گردی کمتر در گوشه‌ها */
@media (max-width: 768px) {
    #createDemoModal .modal-content {
        border-radius: 16px 16px 0 0 !important;
        min-height: 100vh;
    }

    #createDemoModal .modal-header {
        border-radius: 16px 16px 0 0;
        padding: 1.5rem 1.2rem !important;
    }

    #createDemoModal .modal-body {
        padding: 1.5rem 1.2rem !important;
    }

    .icon-circle {
        padding: 12px !important;
    }

    .icon-circle i {
        font-size: 1.5rem !important;
    }
}

/*پایان مودال دمو*/


