﻿:root {
    --bg-dark: #030405;
    --bg-card: #0e0f10;
    --primary: #2af0ff;
    --primary-glow: rgba(42, 240, 255, 0.4);
    --secondary: #7b4aff;
    --text-white: #ffffff;
    --text-gray: #dddddd;
    --text-muted: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(10, 10, 15, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--bg-dark);
    background-image: url('/img/back.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.7;
}

    /* لایه شفاف برای خوانایی بهتر محتوا */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.75) 50%, rgba(18, 18, 18, 0.85) 100%);
        z-index: -1;
        backdrop-filter: blur(0.5px);
    }

    /* یک overlay گرادینت اضافی برای عمق بیشتر */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at top right, rgba(102, 126, 234, 0.1) 0%, transparent 50%), radial-gradient(ellipse at bottom left, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
        z-index: -1;
        pointer-events: none;
    }
/* بهینه‌سازی برای موبایل */
@media (max-width: 768px) {
    body {
        background-attachment: scroll; /* fixed روی بعضی موبایل‌ها مشکل ایجاد می‌کند */
    }

        body::before {
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.8) 100%);
        }
}
/* اطمینان از اینکه محتوا روی لایه‌ها قرار می‌گیرد */
.navbar,
main,
footer,
section {
    position: relative;
    z-index: 1;
}
/*body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.7;
}*/

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--secondary);
    }

/* --- Top Bar --- */
.top-bar {
    font-size: 0.85rem;
    padding: 8px 0;
    position: relative;
    z-index: 1030;
}

    .top-bar a {
        color: var(--text-gray);
        text-decoration: none;
        transition: 0.2s;
    }

        .top-bar a:hover {
            color: var(--primary);
        }

    .top-bar i {
        font-size: 0.9rem;
        margin-left: 4px;
    }

/* --- Navbar (حرفه‌ای با خطوط زیرمنو و آیکون) --- */
.navbar {
    -webkit-backdrop-filter: blur(12px);
}

.navbar-brand {
    font-weight: 900;
    font-size: 2rem;
    color: var(--text-white) !important;
    letter-spacing: -0.5px;
    transition: 0.2s;
}

    .navbar-brand span {
        color: var(--primary);
        text-shadow: 0 0 10px var(--primary-glow);
        padding-right:10px;
    }

    .navbar-brand i {
        color: var(--primary);
        font-size: 2rem;
        margin-left: 8px;
    }

/* استایل حرفه‌ای منوها با خطوط بالا/پایین و آیکون */
.navbar-nav .nav-item {
    position: relative;
    margin: 0 3px;
}

.navbar-nav .nav-link {
    color: var(--text-gray) !important;
    font-weight: 600;
    padding: 10px 16px !important;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    transition: all 0.25s;
    position: relative;
    z-index: 1;
}
    /* خطوط شیک بالا و پایین (دوجناحی) */
    .navbar-nav .nav-link::before,
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
        transition: width 0.3s ease;
        opacity: 0.7;
    }

    .navbar-nav .nav-link::before {
        top: 0;
        right: 50%;
        transform: translateX(50%);
    }

    .navbar-nav .nav-link::after {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::before,
    .navbar-nav .nav-link.active::after {
        width: 80%;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary) !important;
        background: rgba(42, 240, 255, 0.05);
        text-shadow: 0 0 8px rgba(42, 240, 255, 0.5);
    }
    /* آیکون‌های کنار هر منو (شیک و حرفه‌ای) */
    .navbar-nav .nav-link i {
        font-size: 1.3rem;
        color: var(--primary);
        filter: drop-shadow(0 0 5px var(--primary-glow));
        transition: 0.2s;
    }

    .navbar-nav .nav-link:hover i,
    .navbar-nav .nav-link.active i {
        transform: scale(1.1);
    }

/* دکمه جستجو و ورود با آیکون */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-white);
}

    .btn-outline-light:hover {
        background: rgba(42, 240, 255, 0.1);
        border-color: var(--primary);
        color: var(--primary);
    }

.btn-custom {
    background: linear-gradient(145deg, var(--secondary), var(--primary));
    border: none;
    color: #000;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(123, 74, 255, 0.3);
}

    .btn-custom i {
        font-size: 1.2rem;
        color: #000;
    }

    .btn-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px var(--primary-glow);
        color: #000;
    }
   
    /*newsss*/



/* --- News Ticker حرفه‌ای با ارتفاع کمتر و متن دوربین مداربسته --- */
/*.news-ticker {
    background: linear-gradient(90deg, #0a0c0f, #111317);
    border-bottom: 1px solid rgba(42, 240, 255, 2);
    border-top: 3px solid rgba(42, 240, 255, 2);
    overflow: hidden;
    padding: 6px 0;*/ /* ارتفاع کمتر */
    /*font-size: 0.85rem;*/ /* فونت کوچکتر */
    /*box-shadow: inset 0 -2px 10px rgba(0,0,0,0.5);
}*/

/*.ticker-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}*/

.ticker-badge {
    background: linear-gradient(145deg, #ff416c, #ff4b2b);
    color: white;
    font-weight: 800;
    font-size: 0.75rem; /* کوچکتر */
    padding: 4px 16px;
    border-radius: 30px;
    margin-left: 15px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255,75,43,0.5);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255,255,255,0.2);
}

    .ticker-badge i {
        font-size: 0.9rem;
        filter: drop-shadow(0 0 5px gold);
    }

.ticker-content {
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    color: var(--text-white);
    font-weight: 400;
    display: flex;
    align-items: center;
}

    .ticker-content span {
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    .ticker-content i {
        color: var(--primary);
        font-size: 0.9rem;
        margin: 0 6px;
        filter: drop-shadow(0 0 3px var(--primary));
    }

    .ticker-content .separator {
        color: var(--primary);
        font-weight: 800;
        margin: 0 10px;
        opacity: 0.7;
    }

    .ticker-content .highlight {
        color: var(--primary);
        font-weight: 700;
        background: rgba(42, 240, 255, 0.15);
        padding: 2px 10px;
        border-radius: 20px;
        margin: 0 5px;
    }

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-150%);
    }
}

/* --- Hero Slider (بهبود کیفیت متن‌ها) --- */
.carousel-item {
    height: 650px;
    background: #000;
}

    .carousel-item img {
        height: 100%;
        object-fit: cover;
        opacity: 0.45;
        filter: brightness(0.7) contrast(1.2);
    }

.carousel-caption {
    bottom: 30% !important; /* از 25% به 15% تغییر دادم */
    text-align: center;
/*    background: linear-gradient(90deg, rgba(0,0,0,0.7), transparent);
*/    padding: 30px 40px;
    border-radius: 20px;
    right: 10%;
    left: auto;
    max-width: 650px;
    backdrop-filter: blur(3px);
/*    border: 1px solid rgba(255,255,255,0.1);
*/}
    .carousel-caption h1 {
        font-weight: 900;
        font-size: 3.5rem;
        text-shadow: 0 0 20px #000, 0 0 40px var(--primary);
        color: #fff !important;
    }

    .carousel-caption p {
        font-size: 1.3rem;
        font-weight: 300;
        color: #f5f5f5 !important;
        text-shadow: 2px 2px 5px #000;
    }

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

    .carousel-indicators button.active {
        opacity: 1;
        transform: scale(1.2);
    }

/* --- Section Titles با آیکون --- */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

    .section-header h2 {
        font-weight: 800;
        font-size: 2.6rem;
        color: #fff;
        display: inline-flex;
        align-items: center;
        gap: 15px;
        border-bottom: 3px solid var(--primary);
        padding-bottom: 10px;
    }

        .section-header h2 i {
            font-size: 2.5rem;
            color: var(--primary);
            text-shadow: 0 0 15px var(--primary);
        }

/* --- Cards حرفه‌ای --- */
.custom-card {
    background: var(--bg-card);
    border: 1px solid rgba(42, 240, 255, 0.1);
    padding: 2rem 1.8rem;
    border-radius: 24px;
    transition: 0.3s;
    height: 100%;
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

    .custom-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
        transform: translateX(-100%);
        transition: transform 0.5s;
    }

    .custom-card:hover::before {
        transform: translateX(100%);
    }

    .custom-card:hover {
        border-color: var(--primary);
        transform: translateY(-8px);
        box-shadow: 0 25px 40px rgba(42, 240, 255, 0.15);
    }

.card-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.feature-list li {
    margin-bottom: 10px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* --- Ad Banner پیشرفته --- */
.ad-banner {
    background: linear-gradient(120deg, #0e1a2b, #1f2a3f, #0c1828);
    border: 1px solid var(--primary);
    padding: 50px 30px;
    margin: 60px 0;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,210,255,0.2);
}

.ad-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    padding: 8px 18px;
    font-weight: 800;
    border-radius: 40px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.ad-banner h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
}

.ad-banner p {
    color: var(--primary);
    font-size: 1.3rem;
}

.ad-banner .btn-dark {
    background: #000;
    border: 2px solid var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 50px;
}

/* --- Brands Section --- */
.brands-section {
    padding: 30px 0;
   
    border-top: 1px solid rgba(42, 240, 255, 0.2);
    border-bottom: 1px solid rgba(42, 240, 255, 0.2);
}

.brand-item {
    font-size: 1.6rem;
    font-weight: 800;
    color: #555;
    transition: 0.2s;
    letter-spacing: 2px;
}

    .brand-item:hover {
        color: var(--primary);
        text-shadow: 0 0 15px var(--primary);
    }

/* --- Why Us (Features) --- */
.feature-block {
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* --- Testimonials با آواتار و استار --- */
.testimonial-card {
    background: #111317;
    border: 1px solid rgba(42,240,255,0.15);
    padding: 25px 20px;
    border-radius: 30px;
    text-align: center;
    transition: 0.3s;
}

    .testimonial-card:hover {
        border-color: var(--primary);
        transform: scale(1.02);
    }

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--primary);
    box-shadow: 0 0 25px var(--primary-glow);
}

.star-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

/* --- Footer با آیکون و خطوط --- */
footer {
    background: #010101;
    border-top: 2px solid rgba(42,240,255,0.2);
    padding: 60px 0 20px;
}

    footer h5 {
        color: #fff;
        margin-bottom: 20px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        footer h5 i {
            color: var(--primary);
        }

    footer ul li {
        margin-bottom: 12px;
    }

    footer a {
        color: var(--text-muted);
        text-decoration: none;
        transition: 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        footer a:hover {
            color: var(--primary);
            transform: translateX(-5px);
        }

/* --- Chat Button (پیشرفته) --- */
.chat-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(145deg, #1ebea5, #128C7E);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    z-index: 1000;
    transition: 0.3s;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2);
}

    .chat-btn:hover {
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }

/* --- Modal سفارشی --- */
.modal-content {
    background: #121317;
    border: 1px solid var(--primary);
    color: #fff;
    border-radius: 20px;
}

.form-control {
    background: #1e1f24;
    border: 1px solid #333;
    color: #fff;
    border-radius: 12px;
    padding: 12px;
}

    .form-control:focus {
        background: #1e1f24;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(42,240,255,0.2);
    }

@media (max-width: 768px) {
    .carousel-item {
        height: 500px;
    }

    .carousel-caption {
        right: 5%;
        padding: 20px;
    }

        .carousel-caption h1 {
            font-size: 2.2rem;
        }

    .navbar-brand {
        font-size: 1.6rem;
    }

    .ticker-content {
        animation: ticker 15s linear infinite;
    }
}

.navbar-logo {
    width: 40px; /* یا هر اندازه‌ای که می‌خوای */
    height: auto;
    transition: transform 0.3s ease;
    vertical-align: middle; /* برای هم‌تراز شدن با متن */
    margin: 0 5px; /* فاصله از آیکون و متن */
}

    .navbar-logo:hover {
        transform: scale(2.5); /* ۱.۵ برابر بزرگتر */
        z-index: 1000; /* برای اینکه روی بقیه عناصر قرار بگیره */
    }

.yellow-placeholder::placeholder {
    color: #ffd700;
}
.navbar-logo1 {
    width: 50px; /* یا هر اندازه‌ای که می‌خوای */
    height: auto;
    transition: transform 0.3s ease;
    vertical-align: middle; /* برای هم‌تراز شدن با متن */
    margin: 0 5px; /* فاصله از آیکون و متن */
}
/*Slider*/
.hero-carousel {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    background: linear-gradient(to bottom, rgba(13, 43, 62, 0.7), rgba(13, 43, 62, 0.9));
*/    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
    padding-bottom: 0;
}

    .carousel-caption h2 {
        color: #ffd700;
        letter-spacing: 2px;
        font-size: 1rem;
    }

    .carousel-caption h1 {
        color: white;
        font-size: 3rem;
    }

    .carousel-caption p {
        color: rgba(255,255,255,0.8);
        font-size: 1.1rem;
    }

.btn-outline-light {
    border: 1px solid #ffd700;
    color: #ffd700;
    transition: all 0.3s;
}

    .btn-outline-light:hover {
        background: #ffd700;
        color: #0d2b3e;
        border-color: #ffd700;
    }

.carousel-indicators button {
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.5);
    margin: 0 5px;
}

    .carousel-indicators button.active {
        background: #ffd700;
    }
.font1
{
    font-size:1.5rem!important;
}

/*Why*/
.why-section {
    position: relative;
}

/* پس‌زمینه مدار */
.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255,215,0,0.03) 1px, transparent 1px), linear-gradient(0deg, rgba(255,215,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* اشکال شناور */
.floating-shapes .shape {
    position: absolute;
    background: rgba(255,215,0,0.03);
    border-radius: 50%;
    animation: float 6s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 30%;
    animation-delay: 4s;
}

/* افکت شیشه‌ای */
.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .glass-effect:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        border-color: rgba(255,215,0,0.3);
    }

/* شمارنده ویژگی‌ها */
.number-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* کارت‌های آمار */
.stat-card {
    transition: all 0.3s;
}

    .stat-card:hover {
        transform: scale(1.05);
    }

/* دیوایدر */
.divider-custom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: #ffd700;
    opacity: 0.3;
}

/* انیمیشن */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* پیشرفت */
.progress {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.progress-bar {
    background: #ffd700;
    border-radius: 10px;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .feature-item {
        padding: 1.5rem !important;
    }

    .stat-card {
        margin-bottom: 1rem;
    }
}
/*Testimon*/
.testimonial-section {
    position: relative;
}

/* الگوی پس‌زمینه */
.testimonial-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20px 20px, rgba(255,215,0,0.05) 2px, transparent 2px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* کوتیشن‌های شناور */
.floating-quotes i {
    position: absolute;
    color: rgba(255,215,0,0.03);
    font-size: 8rem;
    z-index: 1;
}

.quote-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.quote-2 {
    bottom: 10%;
    right: 5%;
    transform: rotate(15deg);
    font-size: 12rem;
}

.quote-3 {
    top: 40%;
    right: 15%;
    font-size: 6rem;
    opacity: 0.5;
}

/* کارت شیشه‌ای */
.glass-card {
    background: rgba(13, 43, 62, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .glass-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255,215,0,0.3);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

/* گرادینت بالای کارت */
.card-header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

/* نشان تایید */
.verified-badge {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255,215,0,0.3);
}

/* پیشرفت */
.progress {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: #ffd700;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

    .progress-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: shimmer 2s infinite;
    }

/* تگ‌ها */
.badge.bg-warning-subtle {
    background: rgba(255,215,0,0.1) !important;
    color: #ffd700 !important;
    padding: 8px 12px;
    font-weight: normal;
    transition: all 0.3s;
}

    .badge.bg-warning-subtle:hover {
        background: rgba(255,215,0,0.2) !important;
        transform: scale(1.05);
    }

/* دکمه */
.btn-outline-warning {
    border: 2px solid #ffd700;
    color: #ffd700;
    transition: all 0.3s;
}

    .btn-outline-warning:hover {
        background: #ffd700;
        color: #0d2b3e;
        transform: scale(1.05);
    }

/* انیمیشن */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1rem;
    }

    .floating-quotes i {
        font-size: 4rem;
    }
}
/*Footer*/
.footer-section {
    position: relative;
}

/* خطوط مدار */
.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255,215,0,0.02) 1px, transparent 1px), linear-gradient(0deg, rgba(255,215,0,0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* نقطه‌های شناور */
.floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10px 10px, rgba(255,215,0,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveDots 20s linear infinite;
}

/* آیکون‌های اجتماعی */
.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    color: #ffd700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        background: #ffd700;
        color: #0d2b3e;
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(255,215,0,0.3);
    }

/* لینک‌های فوتر */
.footer-links li a {
    transition: all 0.3s ease;
    display: inline-block;
}

    .footer-links li a:hover {
        color: #ffd700 !important;
        transform: translateX(-5px);
    }

/* اینپوت خبرنامه */
.footer-section .form-control {
    border-right: none;
    border-color: rgba(255,215,0,0.25);
    color: white;
}

    .footer-section .form-control:focus {
        box-shadow: none;
        border-color: #ffd700;
        background: rgba(255,215,0,0.05);
    }

.footer-section .btn-warning {
    background: #ffd700;
    border: none;
    color: #0d2b3e;
}

    .footer-section .btn-warning:hover {
        background: #ffed4a;
        transform: scale(1.05);
    }

/* انیمیشن */
@keyframes moveDots {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

/* رنگ‌بندی */
.text-gray-300 {
    color: rgba(255,255,255,0.7);
}

.text-gray-500 {
    color: rgba(255,255,255,0.5);
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .footer-logo {
        height: 40px !important;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/*ContactUS*/
.contact-section {
    position: relative;
}

/* افکت شیشه‌ای */
.glass-effect {
    background: rgba(13, 43, 62, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

    .glass-effect:hover {
        border-color: rgba(255, 215, 0, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

/* کارت‌های سریع */
.quick-contact-card {
    background: rgba(13, 43, 62, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
}

    .quick-contact-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 215, 0, 0.5);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* فرم */
.form-group {
    position: relative;
}

.form-control, .form-select {
    height: 55px;
    padding-right: 45px;
    border-radius: 12px;
    transition: all 0.3s;
}

    .form-control:focus, .form-select:focus {
        border-color: #ffd700 !important;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
        background: rgba(255, 215, 0, 0.05);
    }

textarea.form-control {
    height: auto;
    padding-top: 15px;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 45px;
    color: #ffd700;
    opacity: 0.7;
}

/* دکمه */
.btn-warning {
    background: #ffd700;
    border: none;
    color: #0d2b3e;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-warning:hover {
        background: #ffed4a;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    }

.btn-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 0;
}

.btn-warning:hover .btn-overlay {
    left: 100%;
}

/* شبکه‌های اجتماعی */
.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    color: #ffd700;
    transition: all 0.3s;
    text-decoration: none;
}

    .social-link:hover {
        background: #ffd700;
        color: #0d2b3e;
        transform: translateY(-3px);
    }

/* نقشه */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

    .map-overlay:hover {
        background: rgba(13, 43, 62, 0.8) !important;
    }

/* ریسپانسیو */
@media (max-width: 768px) {
    .contact-info-card, .contact-form-card {
        padding: 25px !important;
    }

    .quick-contact-card {
        padding: 15px !important;
    }

        .quick-contact-card p {
            font-size: 12px;
        }
}

/*ServiceUs*/
.services-section {
    position: relative;
}

.service-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        border-color: rgba(255,215,0,0.3);
    }

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,215,0,0.1);
    color: #ffd700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid rgba(255,215,0,0.3);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.service-card:hover .icon-circle {
    background: rgba(255,215,0,0.2);
    transform: scale(1.1);
}

.service-features li {
    transition: all 0.2s;
}

    .service-features li:hover {
        transform: translateX(-5px);
    }

/* تیم */
.team-card {
    transition: all 0.3s;
}

    .team-card:hover {
        transform: translateY(-10px);
    }

.team-image-wrapper {
    position: relative;
}

.team-social {
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.social-icon-team {
    width: 35px;
    height: 35px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d2b3e;
    text-decoration: none;
    transition: all 0.3s;
}

    .social-icon-team:hover {
        background: white;
        transform: scale(1.1);
    }

.expertise-tag {
    background: rgba(255,215,0,0.1);
    color: #ffd700;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    border: 1px solid rgba(255,215,0,0.2);
}

.team-stat {
    padding: 20px;
    background: rgba(255,215,0,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,215,0,0.1);
}

.text-gray-400 {
    color: rgba(255,255,255,0.6);
}

/*Production*/
.products-section {
    position: relative;
}

.product-card {
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        border-color: rgba(255,215,0,0.3);
    }

.product-img-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

    .product-badges .badge {
        padding: 6px 12px;
        font-weight: 500;
        border-radius: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 35px;
    height: 35px;
    background: rgba(255,215,0,0.2);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
}

    .action-btn:hover {
        background: #ffd700;
        color: #0d2b3e;
        transform: scale(1.1);
    }

.product-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,215,0,0.1);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.feature-tag {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    color: #ffd700;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin: 2px;
    border: 1px solid rgba(255,215,0,0.2);
}

.contact-price-box {
    background: rgba(0,0,0,0.3) !important;
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 12px;
}

.product-code {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.btn-warning {
    background: #ffd700;
    border: none;
    color: #0d2b3e;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-warning:hover {
        background: #ffed4a;
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(255,215,0,0.3);
    }

.btn-outline-warning {
    border: 2px solid #ffd700;
    color: #ffd700;
    transition: all 0.3s;
}

    .btn-outline-warning:hover {
        background: #ffd700;
        color: #0d2b3e;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255,215,0,0.2);
    }

/* ریسپانسیو */
@media (max-width: 768px) {
    .product-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .product-badges .badge {
        padding: 4px 8px;
        font-size: 10px;
    }
}
/*Blog*/
.blog-section {
    position: relative;
}

/* دسته‌بندی */
.category-btn {
    background: rgba(255,215,0,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

    .category-btn:hover, .category-btn.active {
        background: #ffd700;
        color: #0d2b3e;
        border-color: #ffd700;
    }

/* پست ویژه */
.featured-post {
    transition: all 0.3s;
}

    .featured-post:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

.featured-img {
    position: relative;
    min-height: 300px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
}

.featured-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255,215,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d2b3e;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

    .play-btn:hover {
        background: #ffd700;
        transform: scale(1.1);
        color: #0d2b3e;
    }

/* کارت‌های بلاگ */
.blog-card {
    transition: all 0.3s;
    height: 100%;
    overflow: hidden;
}

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

.blog-media {
    overflow: hidden;
    height: 200px;
}

.blog-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.media-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(13,43,62,0.9);
    color: #ffd700;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,215,0,0.3);
}

.duration-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.hot-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #28a745;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    animation: blink 1s infinite;
}

/* کارت‌های ویدئو */
.video-card {
    transition: all 0.3s;
    cursor: pointer;
}

    .video-card:hover {
        transform: translateY(-5px);
        background: rgba(255,215,0,0.1) !important;
    }

.duration-small {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
}

/* انیمیشن‌ها */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,215,0,0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255,215,0,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,215,0,0);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* خبرنامه */
.newsletter-box {
    background: rgba(13,43,62,0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.2);
}

    .newsletter-box .form-control:focus {
        border-color: #ffd700;
        box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
    }

/* ریسپانسیو */
@media (max-width: 768px) {
    .featured-content {
        padding: 25px !important;
    }

        .featured-content h3 {
            font-size: 1.5rem !important;
        }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .category-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
}
/*Project*/
.projects-section {
    position: relative;
}

/* فیلترها */
.filter-btn {
    background: rgba(255,215,0,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

    .filter-btn:hover, .filter-btn.active {
        background: #ffd700;
        color: #0d2b3e;
        border-color: #ffd700;
    }

/* کارت پروژه */
.project-card {
    transition: all 0.3s;
    overflow: hidden;
    height: 100%;
}

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

.project-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13,43,62,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    backdrop-filter: blur(3px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: all 0.3s;
}

.project-card:hover .overlay-content {
    transform: translateY(0);
}

.project-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,215,0,0.9);
    color: #0d2b3e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
}

.project-status-badge {
    position: absolute;
/*    bottom: 10px;
*/    left: 10px;
    background: rgba(13,43,62,0.9);
    color: #ffd700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    border: 1px solid rgba(255,215,0,0.3);
    z-index: 2;
}

.vip-badge {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #0d2b3e;
    font-weight: bold;
}

.new-badge {
    background: #28a745;
    color: white;
}

/* تگ پروژه */
.project-tag {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    color: #ffd700;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin: 2px;
    border: 1px solid rgba(255,215,0,0.2);
}

/* ویدئو پروژه */
.video-project-card {
    transition: all 0.3s;
    cursor: pointer;
}

    .video-project-card:hover {
        transform: translateY(-5px);
        background: rgba(255,215,0,0.1) !important;
    }

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s;
}

.video-project-card:hover .video-play-overlay {
    opacity: 1;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    z-index: 2;
}

/* مشتریان */
.client-item {
    width: 120px;
    text-align: center;
    transition: all 0.3s;
}

    .client-item:hover {
        transform: translateY(-5px);
        background: rgba(255,215,0,0.15) !important;
        border-color: rgba(255,215,0,0.3);
    }

/* CTA */
.project-cta {
    background: rgba(13,43,62,0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.2);
}

/* انیمیشن */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease forwards;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .filter-btn {
        padding: 5px 12px;
        font-size: 12px;
    }

    .featured-project .row {
        flex-direction: column;
    }

    .featured-project img {
        height: 200px;
    }

    .client-item {
        width: 100px;
        padding: 10px !important;
    }

    .project-cta {
        padding: 30px 20px !important;
    }

        .project-cta .btn {
            padding: 10px 20px !important;
            font-size: 14px;
        }
}

@media (max-width: 576px) {
    .stat-card {
        padding: 15px !important;
    }

        .stat-card h3 {
            font-size: 1.5rem;
        }

    .project-tags {
        flex-wrap: wrap;
    }
}