
body {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    background: #f9f9f9;
    margin: 0;
    direction: rtl;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: #222;
    color: #fff;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
   
}

.logo i {
    margin-left: 8px;
}

nav {
    display: flex;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    margin-left: 25px;
    transition: color 0.2s;
}

nav a:last-child {
    margin-left: 0;
}

nav a:hover {
    color: #ffd600;
}

.header-btn {
    background: #ffd600;
    color: #222;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
}

.header-btn:hover {
    background: #fff;
    color: #222;
}

.intro-section {
    background: #fff;
    padding: 50px 0 40px 0;
}

.intro-flex {
    display: flex;
    align-items: center;
  
}

.intro-image {
    margin-left: 60px;
}

.intro-image img {
    width: 340px;
    border-radius: 20px;
    box-shadow: 0 6px 28px rgba(44, 62, 80, 0.12);
}

.intro-text h1 {
    font-size: 2.1rem;
    margin-bottom: 18px;
    color: #222;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.btn {
    background: #222;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn:hover {
    background: #ffd600;
    color: #222;
}


.features-section {
    background: #f2f2f2;
    padding: 40px 0;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #222;
}

.features-grid {
    display: flex;
    justify-content: center;
 
}

.feature-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    width: 220px;
    box-shadow: 0 2px 10px rgba(80,80,80,0.06);
    transition: box-shadow 0.2s;
  
    margin-left: 35px;
}

.feature-item:last-child {
    margin-left: 0;
}

.feature-item i {
    font-size: 2.1rem;
    color: #ffd600;
    margin-bottom: 17px;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #222;
}

.feature-item p {
    color: #555;
    font-size: 0.98rem;
}


.contact-section {
    background: #fff;
    padding: 45px 0;
}

.contact-flex {
    display: flex;
    align-items: flex-start;
 
}

.contact-form {
    background: #f7f7f7;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(80,80,80,0.04);
    width: 350px;
    flex-shrink: 0;
    margin-left: 60px;
}

.contact-form h2 {
    margin-bottom: 18px;
    color: #222;
}

.contact-form label {
    display: block;
    margin-bottom: 7px;
    color: #444;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 9px 8px;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    color: #333;
}

.contact-form textarea {
    resize: vertical;
    min-height: 60px;
    max-height: 150px;
}

.contact-form button {
    width: 100%;
    margin-top: 8px;
}

.contact-info {
    font-size: 1.04rem;
    color: #333;
    background: #f7f7f7;
    padding: 32px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(80,80,80,0.04);
    flex: 1;
}
.contact-info a {
    color: #000;           
    text-decoration: none; 
}

.contact-info a:hover {
    color: #8e7e7e;        
  }
.contact-info h3 {
    margin-bottom: 18px;
    color: #222;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 12px 0;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #ffd600;
    font-size: 1.1rem;
    margin-left: 8px;
}


footer {
    background: #222;
    color: #fff;
    padding: 17px 0;
    margin-top: 40px;
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-icons a {
    color: #fff;
 
    margin-left: 16px;
    font-size: 1.2rem;
    transition: color 0.18s;
}

.social-icons a:last-child {
    margin-left: 0;
}

.social-icons a:hover {
    color: #ffd600;
}