@font-face {
  font-family: 'Estedad';
  src: url('fonts/estedad-fd.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* Reset و تنظیمات پایه */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Estedad', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* هدر و عنوان شرکت */
header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(63, 81, 181, 0.2);
}

.company-name {
    font-size: 2.2rem;
    color: #3f51b5; /* رنگ سورمه‌ای سازمانی */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.coming-soon {
    font-size: 3rem;
    color: #3f51b5;
    font-weight: 600;
    padding: 15px 30px;
    display: inline-block;
    position: relative;
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 30px;
    left: 30px;
    height: 4px;
    background: linear-gradient(to left, #3f51b5, #7986cb);
    border-radius: 2px;
}

/* بخش معرفی */
.intro {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border-right: 5px solid #3f51b5;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* بخش زمینه‌های فعالیت */
.activities {
    margin-bottom: 60px;
}

.activities h2 {
    font-size: 1.8rem;
    color: #3f51b5;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(63, 81, 181, 0.2);
    font-weight: 600;
}

.activity-list {
    list-style-type: none;
}

.activity-list li {
    background-color: #fff;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-right: 3px solid #3f51b5;
}

.activity-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.activity-list h3 {
    color: #3f51b5;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.activity-list p {
    color: #555;
    line-height: 1.7;
}

/* فوتر */
footer {
    text-align: center;
    padding: 25px 0;
    border-top: 2px solid rgba(63, 81, 181, 0.2);
    color: #666;
    font-size: 0.95rem;
}

/* طراحی واکنش‌گرا */
@media (max-width: 992px) {
    .company-name {
        font-size: 1.9rem;
    }
    
    .coming-soon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .company-name {
        font-size: 1.6rem;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .activity-list li {
        padding: 20px;
    }
    
    .intro, .activity-list li {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .company-name {
        font-size: 1.4rem;
    }
    
    .coming-soon {
        font-size: 1.7rem;
        padding: 10px 20px;
    }
    
    .coming-soon::after {
        right: 20px;
        left: 20px;
    }
    
    .activities h2 {
        font-size: 1.5rem;
    }
    
    .activity-list h3 {
        font-size: 1.2rem;
    }
    
    footer p {
        font-size: 0.85rem;
    }
}