/* General Styles */
body {
    font-family: 'Vazirmatn', sans-serif !important;
    color: #333;
    line-height: 1.6;
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
b {
    font-family: 'Vazirmatn', sans-serif !important;
}

@layer utilities {
    .gradient-text {
        background: linear-gradient(90deg, #EA580C 0%, #F97316 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .star-rating {
        background: linear-gradient(90deg, #EFBB06 0%, #FFD700 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .hover-scale {
        transition: transform 0.3s ease;
    }

    .hover-scale:hover {
        transform: scale(1.03);
    }
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-header {
    padding-bottom: 10px;
}

.logo {
    width: 4rem;
    height: 4rem;
    border-radius: 999rem;
    border: 2px solid #eee;
    padding: 0 !important;

    img {
        width: 100%;
        height: 100%;

        border-radius: 999rem;
    }
}

.navbar {
    justify-content: flex-end;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-left: 15px;
}

.navbar-nav .nav-link.btn-primary {
    background-color: #EA580C;
    border-color: #EA580C;
    color: #fff !important;
}

.navbar-nav .nav-link.btn-primary:hover {
    background-color: #C2410C;
    border-color: #C2410C;
}

.hero {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
}

.btn-primary {
    background-color: #EA580C;
    border-color: #EA580C;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #C2410C;
    border-color: #C2410C;
}

.btn-outline-primary {
    color: #EA580C;
    border-color: #EA580C;
}

.btn-outline-primary:hover {
    background-color: #EA580C;
    color: #fff;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.partners .partner-logo {
    max-width: 100px;
    margin: 0 10px;
    opacity: 0.7;
}

.partners .partner-logo:hover {
    opacity: 1;
}

.section {
    overflow-x: hidden !important;
    padding: 60px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.integration-card {
    background-color: white;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

    &:hover {
        border: 2px solid #EA580C;
    }
}

.integration-card.notifier {
    background: url(assets/banner-notifier.png) no-repeat center;
    background-position: top center;
    background-size: contain;

    &:hover {
        background-color: white;
    }
}

.integration-card:hover {
    transform: translateY(-5px);
}

.feature-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #EA580C;
    font-size: 1.2rem;
}

.pricing-card {
    width: 70%;
    background-color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.pricing-card .card-header {
    border-bottom: none;
    background-color: #EA580C;
    color: white;
    border-radius: 50rem 10rem 50rem 10rem;
}

.pricing-card:last-child .card-header {
    backdrop-filter: blur(15px);
    background: #ff69121f;
    color: #ff7f3a;
    transition: all ease .3s;

    &:hover {
        background: #ff69121f;
        color: rgb(65, 65, 65);
    }
}

.pricing-card .card-title {
    font-size: 2rem;
    color: #fff;
}

.pricing-card .list-group-item {
    border: none;
    position: relative;
    text-align: start;
    display: flex;
    align-items: baseline;

    &::before {
        content: "";
        width: 13px;
        height: 13px;
        flex-shrink: 0;
        margin-left: 0.5rem;
        display: block;
        align-self: baseline;
        -webkit-align-self: baseline;
        background: center center / 100% no-repeat;
        background-image: url('data:image/svg+xml,<svg width="16" height="11" viewBox="0 0 16 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 5.49908L5.66696 10.166L15 0.832031" stroke="%23F97316" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    }
}

.pricing-card:last-child {
    box-shadow: inset 0px 0px 30px -10px #EA580C,
        0px 0px 30px -10px #EA580C;
}

#accordion .card {
    border: none;
    margin-bottom: 10px;
}

#accordion .card-header {
    background-color: #fff;
    border: none;
    padding: 0;
}

#accordion .btn-link {
    color: #333;
    text-decoration: none;
    width: 100%;
    text-align: right;
    padding: 10px;
}

#accordion .btn-link:hover {
    color: #EA580C;
}

#accordion .card-body {
    padding: 15px;
    background-color: #f9f9f9;
}

.testimonial-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
}

.footer {
    padding: 40px 0;
    color: #fff;
}

.footer h5 {
    color: #EA580C;
}

.footer .btn-primary {
    background-color: #EA580C;
    border-color: #EA580C;
}

.footer .input-group {
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #EA580C;
}




/* product */


/* Product Page Styles */
.product-page {
    padding: 40px 0;
    background-color: #f8f9fa;
    direction: rtl;
}

.product-image {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.product-info {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-info h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.product-meta .sales {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.product-meta .rating,
.product-meta .support-rating {
    margin-bottom: 15px;
}

.product-meta .stars {
    color: #f4c150;
    font-size: 1rem;
    margin: 5px 0;
    display: inline-block;
}

.product-meta .support-rating .stars {
    color: #f4c150;
}

.product-info .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.product-info .features-list li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-right: 20px;
}

.product-info .features-list li:before {
    content: "✔";
    color: #28a745;
    position: absolute;
    right: 0;
}

.price-section {
    margin-bottom: 15px;
}

.price-section .price-label {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.price-section .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.price-section .ticket-time {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.btn-download {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

.btn-download:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.product-tabs {
    margin-top: 30px;
}

.nav-tabs {
    border-bottom: 1px solid #ddd;
    justify-content: flex-end;
}

.nav-tabs .nav-link {
    color: #333;
    border: none;
    border-bottom: 2px solid transparent;
    margin-left: 10px;
    padding: 10px 20px;
}

.nav-tabs .nav-link.active {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
    background: none;
}

.tab-content {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.tab-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tab-content ul {
    list-style-type: disc;
    padding-right: 20px;
    margin-bottom: 15px;
}

.faq-item {
    max-height: 5rem;
    background-color: #f8f9fa;
    cursor: pointer;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    overflow: hidden;

    &.active {
        max-height: 20rem;
    }

    &:hover h5 {
        color: #EA580C;
    }
}

.faq-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
}

.faq-item .response {
    font-style: italic;
    color: #444;
    margin-top: 10px;
}

.animate-bounce-slow {
    animation: bounce-slow 6s ease-in-out infinite;
}


@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.pagination-dot {
    margin: 0 5px !important;
}

.toast-enter {
    animation: slideIn 0.3s ease-out;
}

.toast-exit {
    animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}