/* 
Theme Name: Hello Child
Theme URI: https://elementor-site.ir/
Description: 
Author: Elementor Site
Author URI: https://elementor-site.ir/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

 /* تعریف متغیرهای رنگ جدید */
:root {
  --primary: #1cd6cb;          /* فیروزه‌ای روشن */
  --secondary: #13bfb1;        /* فیروزه‌ای تیره */
  --light-accent: #e0f7fa;     /* فیروزه‌ای بسیار روشن */
  --dark-accent: #0a8a7e;      /* فیروزه‌ای بسیار تیره */
  --accent: #f67d00;           /* نارنجی (#f67d00) */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* ریست استایل‌ها و فونت */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Vazir', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  line-height: 1.6;
  padding-top: 80px;
}

/* هدر */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);

  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px !important;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* منوی ناوبری */
nav ul {
  display: flex;
  list-style: none;

}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

nav ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--white);
  bottom: 0;
  right: 0;
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

/* بخش هیرو */
.hero {
  background: linear-gradient(rgba(28, 214, 203, 0.2), rgba(19, 191, 177, 0.7)), 
              url('images/hero-bg.webp') center/cover no-repeat;
  color: var(--white);
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-content {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 1rem;
  margin-top:20rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
  color: #f67d00;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
}

/* دکمه‌ها */
.btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary-blue);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn:hover {
  background: var(--light-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* بخش خدمات */
.services {
  padding: 4rem 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--dark-blue);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--secondary-blue);
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

/* بخش درباره ما */
.about {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.about-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.about-img {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
  line-height: 1.8;
  text-align: justify;
}

/* بخش تیم */
.team {
  padding: 4rem 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid var(--medium-gray);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-img {
  height: 300px;
  overflow: hidden;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-img img {
  transform: scale(1.1);
}

.member-info {
  padding: 1.5rem;
}

.member-info h3 {
  font-size: 1.3rem;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.member-info p {
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  color: var(--dark-gray);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-blue);
}

/* بخش تماس */
.contact {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.info-icon {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-top: 0.3rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-blue);
  outline: none;
  background: var(--white);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* فوتر */
footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--secondary-blue);
  bottom: 0;
  right: 0;
}

.footer-col p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-right: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* انیمیشن‌ها */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* رسپانسیو */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  nav ul {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: var(--dark-blue);
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition);
  }
  
  nav ul.active {
    right: 0;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    height: 60vh;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .about-container {
    flex-direction: column;
  }
  
  .contact-container {
    flex-direction: column;
  }
}

/* کدهای بخش خدمات */

/* استایل‌های مخصوص صفحه خدمات */
.page-hero {
    background: linear-gradient(rgba(26, 58, 143, 0.8), rgba(13, 31, 77, 0.8)), 
                url('services-hero.jpg') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-bottom: 3rem;
}

.page-hero-content {
    width: 100%;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.breadcrumb-item {
    margin: 0 0.5rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.5rem;
}

/* بخش خدمات صفحه خدمات */
.services-page {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-intro h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-intro p {
    color: var(--dark-gray);
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-category {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.category-services {
    padding: 1.5rem;
}

.service-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-item h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-blue);
    gap: 0.5rem;
}

/* فرآیند کار */
.work-process {
    padding: 4rem 0;
    background: var(--light-blue);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

.step-content h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* CTA */
.service-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* انیمیشن‌ها */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* رسپانسیو */
@media (max-width: 768px) {
    .page-hero {
        height: 250px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}
/* استایل‌های مخصوص صفحه خدمات */
.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* برای نمایش 3 باکس در هر ردیف در صفحه‌های بزرگ */
@media (min-width: 1200px) {
    .services-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* برای نمایش 2 باکس در هر ردیف در صفحه‌های متوسط */
@media (min-width: 768px) and (max-width: 1199px) {
    .services-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* فرآیند کار با 5 مرحله */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

/* برای نمایش 5 مرحله در یک ردیف در صفحه‌های بزرگ */
@media (min-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* برای نمایش 3 مرحله در هر ردیف در صفحه‌های متوسط */
@media (min-width: 768px) and (max-width: 1199px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        grid-column: span 1.5;
    }
}

/* برای نمایش 2 مرحله در هر ردیف در صفحه‌های کوچک */
@media (min-width: 576px) and (max-width: 767px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:last-child {
        grid-column: span 2;
    }
}

/* استایل‌های جدید برای دسته‌بندی‌های اضافه شده */
.category-icon .fa-heartbeat {
    color: #e74c3c;
}

.category-icon .fa-graduation-cap {
    color: #2ecc71;
}

/* انیمیشن‌های بهبود یافته */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.process-step:hover .step-number::after {
    animation: pulse 1.5s infinite;
}

/* بخش تماس با ما */

/* استایل‌های مخصوص صفحه تماس */
.contact-hero {
    background: linear-gradient(rgba(26, 58, 143, 0.8), rgba(13, 31, 77, 0.8)), 
                url('contact-hero.jpg') center/cover no-repeat;
    height: 300px;
}

.contact-main {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-content: start;
}

.info-box {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    border-left: 4px solid var(--primary); /* اضافه کردن حاشیه فیروزه‌ای */
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(19, 191, 177, 0.2); /* تغییر سایه به رنگ فیروزه‌ای */
    border-left-color: var(--secondary); /* تغییر حاشیه در حالت hover */
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-box:hover .info-icon {
    background: var(--primary); /* تغییر پس‌زمینه در حالت hover */
    color: var(--white); /* تغییر رنگ آیکون در حالت hover */
    transform: rotate(15deg); /* افزودن انیمیشن کوچک */
}

.info-content h3 {
    font-size: 1.2rem;
    color: var(--dark-accent); /* تغییر به رنگ فیروزه‌ای تیره */
    margin-bottom: 0.8rem;
}

.info-content p {
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.info-content a {
    color: var(--primary); /* تغییر به رنگ فیروزه‌ای اصلی */
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.info-content a:hover {
    color: var(--secondary); /* تغییر به رنگ فیروزه‌ای تیره */
    gap: 0.5rem;
}

.info-content a::after {
    content: "→";
    transition: var(--transition);
    opacity: 0;
}

.info-content a:hover::after {
    opacity: 1;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* فرم تماس */
.contact-form-container {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--dark-gray);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-blue);
}

.contact-form .required {
    color: #e74c3c;
    margin-right: 0.3rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-gray);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    background: var(--white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-footer {
    margin-top: 2rem;
    text-align: left;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* نقشه */
.contact-map {
    padding: 0 0 4rem;
}

.contact-map h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* سوالات متداول */
.contact-faq {
    padding: 4rem 0;
    background: var(--light-blue);
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-blue);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* CTA پایانی */
.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-call {
    background: var(--white);
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
}

/* رسپانسیو */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-call, .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* درباره ما */

/* استایل‌های مخصوص صفحه درباره ما */
.about-hero {
    background: linear-gradient(rgba(26, 58, 143, 0.8), rgba(13, 31, 77, 0.8)), 
                url('about-hero.jpg') center/cover no-repeat;
    height: 300px;
}

/* بخش معرفی */
.about-intro {
    padding: 4rem 0;
}

.about-intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.about-intro-text .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--light-blue);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-intro-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.9rem;
    margin: 0;
}

/* ماموریت و چشم‌انداز */
.mission-vision {
    padding: 4rem 0;
    background: var(--light-blue);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-box, 
.vision-box, 
.values-box {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-box:hover, 
.vision-box:hover, 
.values-box:hover {
    transform: translateY(-5px);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.box-header i {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.box-header h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.values-list i {
    color: var(--primary-blue);
}

/* تاریخچه */
.about-history {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--dark-gray);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--primary-blue);
    top: 0;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.timeline-item {
    padding: 1rem 0;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    padding-left: 3rem;
    padding-right: 0;
    text-align: left;
}

.timeline-item:nth-child(even) {
    padding-right: 3rem;
    padding-left: 0;
    text-align: right;
    margin-right: auto;
    margin-left: 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-blue);
    border-radius: 50%;
    top: 2rem;
}

.timeline-item:nth-child(odd)::after {
    left: -8px;
}

.timeline-item:nth-child(even)::after {
    right: -8px;
}

.timeline-year {
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* آمار و ارقام */
.about-stats {
    padding: 4rem 0;
    background: linear-gradient(rgba(26, 58, 143, 0.9), rgba(13, 31, 77, 0.9)), 
                url('stats-bg.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-title {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA */
.about-cta {
    padding: 4rem 0;
    background: var(--light-blue);
    text-align: center;
}

.about-cta h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.about-cta p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* رسپانسیو */
@media (max-width: 992px) {
    .about-intro-content {
        flex-direction: column;
    }
    
    .about-intro-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .timeline::before {
        right: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-item::after {
        left: 30px !important;
    }
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
    }
}
/* استایل‌های مخصوص بخش about-intro با 4 کاشی */
.about-intro {
    padding: 4rem 0;
    position: relative;
}

.about-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tile-item {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
}

.tile-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tile-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.tile-item h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.tile-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.about-intro-text .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.about-intro-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.9rem;
    margin: 0;
}

/* رسپانسیو */
@media (max-width: 992px) {
    .about-intro-content {
        flex-direction: column;
    }
    
    .about-intro-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .about-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-tiles {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge span {
        font-size: 2rem;
    }
}
/* استایل‌های جدید بخش آمار و ارقام */
.about-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.about-stats::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.stats-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.stats-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.stat-circle::before {
    content: '';
    position: absolute;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
}

.stat-circle span {
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 5px;
    color: var(--white);
}

.stat-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-info p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* انیمیشن‌ها */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* رسپانسیو */
@media (max-width: 768px) {
    .about-stats {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-header h2 {
        font-size: 1.8rem;
    }
}

/* بخش تیم */

/* استایل‌های مخصوص صفحه تیم */
.team-hero {
    background: linear-gradient(rgba(26, 58, 143, 0.8), rgba(13, 31, 77, 0.8)), 
                url('team-hero.jpg') center/cover no-repeat;
    height: 300px;
}

/* تخصص‌های تیم */
.team-specialties {
    padding: 4rem 0;
    background: var(--light-blue);
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-intro p {
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.specialty-item {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
}

.specialty-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.specialty-item h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.specialty-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* اعضای تیم */
.team-members {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--dark-gray);
}

.members-tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-gray);
    border: 2px solid var(--medium-gray);
}

.tab-btn:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.tab-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.member-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-img {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-card:hover .member-img img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: -60px;
    right: 0;
    left: 0;
    background: rgba(26, 58, 143, 0.8);
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
}

.member-card:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.expertise {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* CTA */
.team-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.team-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.team-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* رسپانسیو */
@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
/* استایل‌های مخصوص بخش تخصص‌های تیم - 6 کاشی */
.team-specialties {
    padding: 4rem 0;
    background: var(--light-blue);
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-intro p {
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.specialty-item {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.specialty-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.specialty-item:hover::before {
    transform: scaleX(1);
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.specialty-item:hover .specialty-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.specialty-item h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.specialty-item:hover h3 {
    color: var(--primary-blue);
}

.specialty-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* آیکون‌های مخصوص هر تخصص */
.fa-brain { color: #8e44ad; }
.fa-users { color: #3498db; }
.fa-child { color: #e74c3c; }
.fa-graduation-cap { color: #2ecc71; }
.fa-heartbeat { color: #e74c3c; }
.fa-comments { color: #3498db; }

/* رسپانسیو */
@media (max-width: 1200px) {
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .specialties-grid {
        grid-template-columns: 1fr;
    }
}
/**/


/* ریست استایل‌ها و فونت */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Vazir', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  line-height: 1.6;
  padding-top: 80px;
}


/* دکمه‌ها */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(19, 191, 177, 0.3);
}

.btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(19, 191, 177, 0.4);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary);
}

/* بخش خدمات */
.service-card {
  background: var(--light-accent);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(19, 191, 177, 0.2);
  border-color: var(--secondary);
}

/* منوی ناوبری */
nav ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

nav ul li a::after {
  background: var(--white);
}

/* بخش تیم */
.team-member {
  border: 1px solid var(--medium-gray);
}

.team-member:hover {
  box-shadow: 0 15px 30px rgba(19, 191, 177, 0.15);
}

/* فرم تماس */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

/* فوتر */
footer {
  background: var(--dark-accent);
}

.footer-col h3::after {
  background: var(--secondary);
}

/* آیکون‌ها */
.service-icon {
  color: var(--primary);
}

/* بخش آمار و ارقام */
.about-stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-accent) 100%);
}

/* رسپانسیو */
@media (max-width: 768px) {
  nav ul {
    background: var(--dark-accent);
  }
}

/* انیمیشن‌ها */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(28, 214, 203, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(28, 214, 203, 0); }
  100% { box-shadow: 0 0 0 0 rgba(28, 214, 203, 0); }
}

/* اضافه کردن افکت پالس برای عناصر تعاملی */
.btn-primary:hover,
.service-card:hover {
  animation: pulse 1.5s infinite;
}