.elementor-2978 .elementor-element.elementor-element-d3e9513{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-2978 .elementor-element.elementor-element-d3e9513{--content-width:1439px;}}/* Start custom CSS for html, class: .elementor-element-28ee4b1 *//* متغیرها و تنظیمات پایه */
:root {
    --bg-dark: #080a0f;
    --card-bg: rgba(17, 25, 40, 0.75);
    --primary-cyan: #00f2ff;
    --text-main: #ffffff;
    --text-dim: #a0aec0;
    --border-glow: rgba(0, 242, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: var(--text-main) !important;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* هدر */
.main-header {
    text-align: center;
    margin-bottom: 60px;
}

.glow-text {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.6) !important;
    letter-spacing: -1px !important;
}

/* کارت‌های توضیحات (Info Cards) */
.description-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.icon-box {
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
}

.info-card h3 {
    color: var(--primary-cyan) !important;
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
}

.info-card p {
    color: var(--text-dim) !important;
    font-size: 0.95rem !important;
}

/* بخش‌های مانیتورینگ */
.monitor-section {
    margin-bottom: 70px;
}

.section-header {
    border-right: 5px solid var(--primary-cyan);
    padding-right: 15px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8rem !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* گرید مانیتورها */
.monitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

/* کارت‌های مانیتور (Iframe Containers) */
.monitor-card {
    position: relative;
    background: #000;
    border-radius: 15px;
    height: 350px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
    transition: 0.3s ease;
}

.monitor-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.monitor-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* گوشه‌های تزئینی تکنولوژی */
.corner-top, .corner-bottom {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 5;
    pointer-events: none;
}

.corner-top {
    top: 10px; right: 10px;
    border-top: 2px solid var(--primary-cyan);
    border-right: 2px solid var(--primary-cyan);
}

.corner-bottom {
    bottom: 10px; left: 10px;
    border-bottom: 2px solid var(--primary-cyan);
    border-left: 2px solid var(--primary-cyan);
}

/* انیمیشن اسکن لاین */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    opacity: 0.2;
    z-index: 9999;
    pointer-events: none;
    animation: move-scan 6s linear infinite;
}

@keyframes move-scan {
    0% { top: -5%; }
    100% { top: 105%; }
}

/* واکنش‌گرایی (Responsive) */
@media (max-width: 768px) {
    .glow-text { font-size: 2rem !important; }
    .monitor-grid { grid-template-columns: 1fr; }
    .container { padding: 30px 15px; }
}/* End custom CSS */