/* =====================
   ROOT & RESET
===================== */
:root{
    --primary:#008000;
    --secondary:#0d850d;
    --dark:#0a355b;
    --light:#f7f9fc;
    --text:#1f2937;
    --radius:22px;
    --transition:.35s ease;
  }
  
  *{
    margin:0;
    padding:0;
    box-sizing:border-box;
  }
  
  body{
    font-family:Vazirmatn,sans-serif;
    background:var(--light);
    color:var(--text);
    line-height:2;
  }
  
  a{text-decoration:none;color:inherit}
  img{max-width:100%}
  
  .container{
    width:92%;
    max-width:1250px;
    margin:auto;
  }
  
  /* =====================
     HEADER
  ===================== */
  .header{
    background:##FFD700;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
  }
  
  .nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
  }
  
  .logo{
    font-size:1.25rem;
    font-weight:800;
    color:var(--primary);
    display:flex;
    align-items:center;
    gap:10px;
  }
  
  .menu a{
    margin:0 14px;
    font-weight:500;
    position:relative;
  }
  
  .menu a::after{
    content:"";
    position:absolute;
    bottom:-6px;
    right:0;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:var(--transition);
  }
  
  .menu a:hover::after{
    width:100%;
  }
  
  /* =====================
     HERO
  ===================== */
  .hero{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    padding:130px 0;
  }
  
  .hero-box{
    max-width:850px;
  }
  
  .hero h1{
    font-size:3.1rem;
    font-weight:800;
  }
  
  .hero h1 span{
    color:#FFD700;
  }
  
  .hero p{
    margin:25px 0;
    font-size:1.1rem;
    opacity:.95;
  }
  
  .hero-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
  }
  
  .btn-main{
    background:#fff;
    color:var(--primary);
    padding:15px 34px;
    border-radius:var(--radius);
    font-weight:700;
    transition:var(--transition);
  }
  
  .btn-main:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
  }
  
  .btn-light{
    border:2px solid #FFD700;
    padding:15px 34px;
    border-radius:var(--radius);
    font-weight:600;
  }
  
  /* =====================
     SECTIONS
  ===================== */
  .section{
    padding:90px 0;
  }
  
  .bg-soft{background:#eef4fa}
  .bg-dark{background:var(--primary);color:#fff}
  
  .section-title{
    text-align:center;
    font-size:2.4rem;
    margin-bottom:60px;
    font-weight:800;
  }
  
  /* =====================
     WHY US
  ===================== */
  .why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:28px;
  }
  
  .why-box{
    background:#fff;
    padding:38px 30px;
    border-radius:var(--radius);
    text-align:center;
    box-shadow:0 25px 50px rgba(0,0,0,.08);
    transition:var(--transition);
  }
  
  .why-box:hover{
    transform:translateY(-12px);
  }
  
  .why-box i{
    font-size:2.6rem;
    color:var(--secondary);
    margin-bottom:18px;
  }
  
  /* =====================
     ABOUT
  ===================== */
  .about-text{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
    font-size:1.05rem;
  }
  
  .timeline{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
  }
  
  .tl-item{
    background:#fff;
    padding:30px;
    border-radius:var(--radius);
    box-shadow:0 20px 40px rgba(0,0,0,.07);
    position:relative;
  }
  
  .tl-dot{
    width:14px;
    height:14px;
    background:var(--secondary);
    border-radius:50%;
    margin-bottom:10px;
  }
  
  /* =====================
     SERVICES
  ===================== */
  .services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
  }
  
  .service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:var(--radius);
    text-align:center;
    box-shadow:0 25px 50px rgba(0,0,0,.08);
    transition:var(--transition);
  }
  
  .service-card:hover{
    transform:translateY(-14px);
  }
  
  .service-card i{
    font-size:2.5rem;
    color:var(--primary);
    margin-bottom:16px;
  }
  
  /* =====================
     PROCESS
  ===================== */
  .process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
  }
  
  .process-step{
    background:#fff;
    padding:35px;
    border-radius:var(--radius);
    box-shadow:0 20px 40px rgba(0,0,0,.07);
  }
  
  .process-step span{
    font-size:2.2rem;
    font-weight:800;
    color:var(--secondary);
  }
  
  /* =====================
     PROJECTS
  ===================== */
  .projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
  }
  
  .project-card{
    background:#fff;
    padding:35px;
    border-radius:var(--radius);
    text-align:center;
    box-shadow:0 25px 50px rgba(0,0,0,.08);
    transition:var(--transition);
  }
  
  .project-card:hover{
    transform:scale(1.05);
  }
  
  /* =====================
     CONTACT
  ===================== */
  .contact-area{
    max-width:900px;
    margin:auto;
    text-align:center;
  }
  
  .contact-form{
    display:grid;
    gap:18px;
    margin:40px 0;
  }
  
  .contact-form input,
  .contact-form textarea{
    padding:16px;
    border-radius:var(--radius);
    border:none;
    font-family:inherit;
  }
  
  .contact-form textarea{
    min-height:140px;
  }
  
  .contact-info p{
    margin:8px 0;
  }
  
  /* =====================
     FOOTER
  ===================== */
  .footer{
    background:var(--dark);
    color:#fff;
    padding:60px 0 20px;
  }
  
  .footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
  }
  
  .copy{
    text-align:center;
    margin-top:30px;
    font-size:.9rem;
    opacity:.8;
  }
  
  /* =====================
     RESPONSIVE
  ===================== */
  @media(max-width:768px){
    .hero h1{font-size:2.2rem}
    .menu{display:none}
  }
  .hover-line{
  position:relative;
  display:inline-block;
  cursor:pointer;
  }
  
  .hover-line::after{
  content:"";
  position:absolute;
  right:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:#0d850d;
  transition:0.3s ease;
  }
  
  .hover-line:hover::after{
  width:100%;
  }
  /* =====================
     PROFESSIONAL MAP
  ===================== */
  .map-section{
    padding:90px 0;
    background:#f8fbff;
  }
  
  .map-header{
    text-align:center;
    margin-bottom:35px;
  }
  
  .map-header h2{
    font-size:2rem;
    color:#0f4c81;
    margin-bottom:10px;
    font-weight:800;
  }
  
  .map-header p{
    color:#555;
    max-width:700px;
    margin:auto;
    line-height:1.9;
  }
  
  .map-wrapper{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    background:#fff;
  }
  
  .map-wrapper iframe{
    display:block;
    width:100%;
    filter:grayscale(10%);
  }
  
  .map-overlay{
    position:absolute;
    top:30px;
    right:30px;
    width:340px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    border-radius:22px;
    padding:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
  }
  
  .map-overlay h3{
    color:#0f4c81;
    margin-bottom:10px;
    font-size:1.3rem;
    font-weight:800;
  }
  
  .map-overlay p{
    color:#444;
    font-size:.95rem;
    line-height:1.9;
    margin-bottom:18px;
  }
  
  .map-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  
  .map-btn{
    display:inline-block;
    text-align:center;
    padding:12px 18px;
    border-radius:14px;
    font-weight:700;
    transition:.3s ease;
  }
  
  .map-btn.primary{
    background:#0d850d;
    color:#fff;
  }
  
  .map-btn.primary:hover{
    background:#0a355b;
    transform:translateY(-3px);
  }
  
  .map-btn.secondary{
    background:#0d850d;
    color:#fff;
  }
  
  .map-btn.secondary:hover{
    background:#0d850d;
    transform:translateY(-3px);
  }
  
  @media(max-width:768px){
    .map-overlay{
      position:static;
      width:100%;
      border-radius:0 0 24px 24px;
      box-shadow:none;
    }
  }
  .logo img{
    display:inline-block;
    max-height:50px;
    vertical-align:middle;
    transition:.3s ease;
  }
  
  .logo img:hover{
    transform:scale(1.1);
  }
  /* ===== HEADER ===== */
  .header{
    width:100%;
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(12px);
    box-shadow:0 6px 25px rgba(0,0,0,.08);
  }
  
  .nav-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    height:85px;
  
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  
  /* لوگو */
  .logo-link{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
  }
  
  .logo-img{
    height:48px;
    width:auto;
    transition:.35s ease;
  }
  
  .logo-text{
    font-size:1.3rem;
    font-weight:800;
    color:#0d850d;
    white-space:nowrap;
    transition:.35s ease;
  }
  
  /* هاور لوگو */
  .logo-link:hover .logo-img{
    transform:scale(1.08) rotate(-2deg);
  }
  
  .logo-link:hover .logo-text{
    color:#38b814;
  }
  
  /* منو */
  .menu{
    display:flex;
    align-items:center;
    gap:28px;
  }
  
  .menu a{
    position:relative;
    text-decoration:none;
    color:#1f2937;
    font-size:1rem;
    font-weight:700;
    transition:.3s ease;
    padding:6px 0;
  }
  
  /* هاور منو */
  .menu a:hover{
    color:#0f4c81;
  }
  
  .menu a::after{
    content:"";
    position:absolute;
    right:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:linear-gradient(90deg,#0f4c81,#14b8a6);
    border-radius:10px;
    transition:.35s ease;
  }
  
  .menu a:hover::after{
    width:100%;
  }
  
  /* اسکرول نرم */
  html{
    scroll-behavior:smooth;
  }
  .logo-img {
      mix-blend-mode: multiply; /* این کد رنگ سفید عکس را نادیده می‌گیرد */
      filter: contrast(110%);   /* کمی کنتراست برای بهتر دیده شدن */
      max-height: 50px;
      display: block;
  }
  /* === TEAM SECTION === */
  .team-section {
    background: #f8fbff;
    padding: 80px 0;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
  }
  
  .team-member {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.35s ease;
  }
  
  .team-member:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.12);
  }
  
  .team-img-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
  }
  
  .team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
  }
  
  .team-member:hover .team-img-box img {
    transform: scale(1.09);
  }
  
  .team-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px 15px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: 0.35s ease;
    text-align: center;
  }
  
  .team-member:hover .team-info {
    transform: translateY(0);
  }
  
  .team-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f4c81;
    margin-bottom: 4px;
  }
  
  .team-info span {
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .team-img-box {
    width: 100%;
    height: 880px;   /* ارتفاع زیادتر برای عکس‌های عمودی */
    overflow: hidden;
    border-radius: 18px;
  }
  .team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;  /* صورت از بالا بهتر دیده می‌شود */
    transition: 0.4s ease;
  }
  .team-img-box{
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .team-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .team-img-box{
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  .team-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  
  .team-info{
    position: relative;
    z-index: 2;
    margin-top: 10px;
  }
  .chat-widget{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:999;
    }
    
    #chat-btn{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#0077ff;
    color:white;
    font-size:26px;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    }
    
    .chat-box{
    width:300px;
    background:white;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    display:none;
    flex-direction:column;
    overflow:hidden;
    margin-bottom:10px;
    }
    
    .chat-header{
    background:#0077ff;
    color:white;
    padding:12px;
    display:flex;
    justify-content:space-between;
    }
    
    .chat-body{
    padding:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
    }
    
    .chat-body input,
    .chat-body textarea{
    padding:10px;
    border:1px solid #ddd;
    border-radius:6px;
    }
    
    #send-btn{
    background:#0077ff;
    color:white;
    border:none;
    padding:10px;
    border-radius:6px;
    cursor:pointer;
    }
    
    .rating{
    display:none;
    text-align:center;
    }
    
    .rating span{
    font-size:22px;
    cursor:pointer;
    }
    #chat-btn{
      width:60px;
      height:60px;
      border:none;
      border-radius:50%;
      background:#0077ff;
      color:white;
      font-size:26px;
      cursor:pointer;
      box-shadow:0 5px 15px rgba(0,0,0,0.2);
      transition:all 0.3s ease;
      }
      
      #chat-btn:hover{
      transform:scale(1.08);
      background:#005fd1;
      box-shadow:0 10px 25px rgba(0,0,0,0.25);
      }
      #send-btn{
        background:#0077ff;
        color:white;
        border:none;
        padding:10px;
        border-radius:6px;
        cursor:pointer;
        transition:all 0.25s ease;
        }
        
        #send-btn:hover{
        background:#005fd1;
        transform:translateY(-2px);
        box-shadow:0 6px 12px rgba(0,0,0,0.2);
        }
        .rating span.active{
          color:gold;
          }
          #chat-btn{
            width:60px;
            height:60px;
            border:none;
            border-radius:50%;
            background:#0077ff;
            color:white;
            font-size:26px;
            cursor:pointer;
            box-shadow:0 5px 15px rgba(0,0,0,0.2);
            animation:pulse 2s infinite;
            }
            
            /* انیمیشن نبض */
            @keyframes pulse{
            
            0%{
            transform:scale(1);
            box-shadow:0 0 0 0 rgba(54, 64, 75, 0.7);
            }
            
            100%{
            transform:scale(1.05);
            box-shadow:0 0 0 12px rgba(0,119,255,0);
            }
            
            100%{
            transform:scale(1);
            box-shadow:0 0 0 0 rgba(0,119,255,0);
            }
            
            }
            /* دکمه اصلی چت */
  #chat-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #0077ff;
    color: white;
    font-size: 28px;
    cursor: pointer;
    position: relative; /* برای لایه زیرین ضروری است */
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 119, 255, 0.4);
    
    /* انیمیشن تپش قلب روی خود دکمه */
    animation: heartBeat 1.5s infinite;
  }
  
  /* لایه زیرین برای افکت موجی (تپ تپ نوری) */
  #chat-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(0, 119, 255, 0.5);
    z-index: -1;
    /* انیمیشن پخش شدن موج */
    animation: ripple 1.5s infinite;
  }
  
  /* 1. انیمیشن تپش (بزرگ و کوچک شدن) */
  @keyframes heartBeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.15); } /* تپ اول */
    30% { transform: scale(1); }
    45% { transform: scale(1.15); } /* تپ دوم */
    100% { transform: scale(1); }
  }
  
  /* 2. انیمیشن موج نوری که از دکمه خارج می‌شود */
  @keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5); /* تا ۱.۸ برابر بزرگ می‌شود */
        opacity: 0; /* و محو می‌شود */
    }
  }
  .stats-section {
    padding: 80px 20px;
    background: #f8faff;
    text-align: center;
  }
  
  .stats-title {
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: bold;
    color: #003b7a;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
  }
  
  .stat-box {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: .3s;
    position: relative;
  }
  
  .stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }
  
  .stat-icon {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .stat-box h3 {
    font-size: 32px;
    margin: 10px 0;
    font-weight: bold;
    color: #0066cc;
  }
  
  .stat-box p {
    font-size: 16px;
    opacity: .7;
  }
  .live-stats{
    padding:80px 20px;
    background:linear-gradient(180deg,#f7fbff,#eef5ff);
    text-align:center;
  }
  
  .container{
    max-width:1200px;
    margin:auto;
  }
  
  .stats-title{
    font-size:32px;
    margin-bottom:50px;
    color:#003b7a;
    font-weight:700;
  }
  
  .stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
  }
  
  .stat-card{
    background:#fff;
    border-radius:16px;
    padding:35px 20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
  }
  
  .stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
  }
  
  .icon{
    font-size:38px;
    margin-bottom:10px;
  }
  
  .num{
    font-size:34px;
    font-weight:700;
    color:#0066cc;
    margin:10px 0;
  }
  
  .label{
    opacity:.7;
    font-size:15px;
  }
  .nav-menu{
    display:flex;
    gap:30px;
    align-items:center;
    }
    
    .dropdown{
    position:relative;
    }
    
    .dropbtn{
    background:none;
    border:none;
    font-size:16px;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:6px;
    }
    
    .arrow{
    font-size:12px;
    transition:0.3s;
    }
    
    .dropdown-content{
    position:absolute;
    top:35px;
    right:0;
    background:white;
    min-width:180px;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    border-radius:8px;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.3s;
    }
    
    .dropdown-content a{
    display:block;
    padding:12px 16px;
    text-decoration:none;
    color:#333;
    }
    
    .dropdown-content a:hover{
    background:#f3f6fb;
    }
    
    .dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    }
    
    .dropdown:hover .arrow{
    transform:rotate(180deg);
    }
    .clients{
      padding:70px 20px;
      background:#f4f7fb;
      text-align:center;
      }
      
      .clients-wrapper{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:20px;
      position:relative;
      }
      
      .clients-slider{
      overflow:hidden;
      width:800px;
      }
      
      .clients-track{
      display:flex;
      gap:60px;
      transition:transform .6s ease;
      }
      
      .clients-track img{
      height:60px;
      opacity:.7;
      transition:.3s;
      cursor:pointer;
      }
      
      .clients-track img:hover{
      opacity:1;
      transform:scale(1.1);
      }
      
      /* دکمه‌ها */
      
      .slider-btn{
      background:#003b7a;
      color:white;
      border:none;
      font-size:22px;
      width:45px;
      height:45px;
      border-radius:50%;
      cursor:pointer;
      transition:.3s;
      }
      
      .slider-btn:hover{
      background:#0055aa;
      }
      .downloads{
        padding:80px 20px;
        text-align:center;
        }
        
        .download-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
        gap:25px;
        max-width:900px;
        margin:auto;
        }
        
        .download-card{
        background:white;
        padding:30px;
        border-radius:14px;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
        transition:.3s;
        }
        
        .download-card:hover{
        transform:translateY(-6px);
        }
        
        .download-card h3{
        margin:15px 0;
        font-size:18px;
        }
        
        .download-card a{
        display:inline-block;
        padding:8px 18px;
        background:#0066cc;
        color:white;
        border-radius:6px;
        text-decoration:none;
        }
        
        .download-card a:hover{
        background:#004fa3;
        }
        .downloads{
          padding:80px 20px;
          text-align:center;
          }
          
          .download-grid{
          display:grid;
          grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
          gap:25px;
          max-width:900px;
          margin:auto;
          }
          
          .download-card{
          background:white;
          padding:30px;
          border-radius:14px;
          box-shadow:0 10px 25px rgba(0,0,0,.08);
          transition:.3s;
          }
          
          .download-card:hover{
          transform:translateY(-6px);
          }
          
          .download-card h3{
          margin:15px 0;
          font-size:18px;
          }
          
          .download-card a{
          display:inline-block;
          padding:8px 18px;
          background:#0066cc;
          color:white;
          border-radius:6px;
          text-decoration:none;
          }
          
          .download-card a:hover{
          background:#004fa3;
          }
          .team-member{
            background:#fff;
            border-radius:22px;
            overflow:hidden;
            box-shadow:0 15px 40px rgba(0,0,0,.08);
            transition:.4s;
            position:relative;
            }
            
            .team-member:hover{
            transform:translateY(-10px);
            box-shadow:0 20px 50px rgba(0,0,0,.14);
            }
            
            /* تصویر */
            
            .team-img-box{
            height:260px;
            overflow:hidden;
            }
            
            .team-img-box img{
            width:100%;
            height:100%;
            object-fit:cover;
            transition:1s;
            }
            
            .team-member:hover img{
            transform:scale(1.08);
            }
            
            /* اطلاعات */
            
            .team-info{
            padding:22px;
            text-align:center;
            }
            
            .team-info h3{
            font-size:22px;
            margin-bottom:8px;
            color:#0d1b2a;
            }
            
            .team-info p{
            color:#666;
            margin-bottom:22px;
            font-size:15px;
            }
            
            /* دکمه ها */
            
            .team-contact{
            display:flex;
            justify-content:center;
            gap:14px;
            }
            
            /* پایه */
            
            .contact-btn{
            position:relative;
            display:flex;
            align-items:center;
            justify-content:center;
            gap:10px;
            padding:12px 18px;
            border-radius:14px;
            text-decoration:none;
            font-size:15px;
            font-weight:600;
            overflow:hidden;
            transition:.4s;
            min-width:130px;
            }
            
            /* آیکون */
            
            .contact-btn .icon{
            width:42px;
            height:42px;
            display:flex;
            align-items:center;
            justify-content:center;
            border-radius:50%;
            background:rgba(255,255,255,.2);
            font-size:18px;
            transition:.4s;
            }
            
            /* متن */
            
            .contact-btn .text{
            transition:.4s;
            }
            
            /* تماس */
            
            .call-btn{
            background:linear-gradient(135deg,#0066ff,#0047b3);
            color:white;
            box-shadow:0 10px 25px rgba(0,102,255,.25);
            }
            
            /* واتساپ */
            
            .whatsapp-btn{
            background:linear-gradient(135deg,#25d366,#128c7e);
            color:white;
            box-shadow:0 10px 25px rgba(37,211,102,.25);
            }
            
            /* هاور */
            
            .contact-btn:hover{
            transform:translateY(-5px) scale(1.03);
            }
            
            .contact-btn:hover .icon{
            transform:rotate(10deg) scale(1.1);
            background:rgba(255,255,255,.3);
            }
            
            /* افکت نور */
            
            .contact-btn::before{
            content:'';
            position:absolute;
            top:0;
            left:-100%;
            width:100%;
            height:100%;
            background:linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
            );
            transition:.7s;
            }
            
            .contact-btn:hover::before{
            left:100%;
            }
            .title{
              color:#0077ff;
              font-family:"Vazirmatn", sans-serif;
              font-weight:600;
              }
              .team-name{
                font-size:22px;
                font-weight:700;
                
                background:linear-gradient(45deg,#0077ff,#00c6ff);
                -webkit-background-clip:text;
                -webkit-text-fill-color:transparent;
                
                font-family:"Vazirmatn", sans-serif;
                }
                .title{
                  color:#0077ff;
                  font-family:"Vazirmatn", sans-serif;
                  text-shadow:0 3px 10px rgba(0,119,255,.3);
                  }
                  .team-name{
                    font-family:"Vazirmatn", sans-serif;
                    font-size:22px;
                    font-weight:700;
                    
                    background:linear-gradient(45deg,#0f2027,#2c5364);
                    -webkit-background-clip:text;
                    -webkit-text-fill-color:transparent;
                    }
                    .hero{
                      padding:50px 20px;
                      text-align:center;
                      }
                      
                      .hero-slogan{
                      font-family:"Vazirmatn", sans-serif;
                      font-size:64px;
                      font-weight:800;
                      line-height:1.4;
                      
                      /* رنگ آبی جذاب */
                      background:linear-gradient(45deg,#FFD700,#FFD700,#FFD700);
                      -webkit-background-clip:text;
                      -webkit-text-fill-color:transparent;
                      
                      /* سایه برای جلب توجه */
                      text-shadow:0 10px 25px rgba(0,119,255,.25);
                      
                      /* انیمیشن ملایم */
                      animation:fadeUp 1.5s ease;
                      }
                      
                      @keyframes fadeUp{
                      from{
                      opacity:0;
                      transform:translateY(40px);
                      }
                      to{
                      opacity:1;
                      transform:translateY(0);
                      }
                      }
                      .hero {
                        background-color: #002d5b; /* یک پس‌زمینه تیره برای اینکه لوگوی سفید دیده شود */
                        padding: 100px 20px;
                        text-align: center;
                        position: relative;
                        overflow: hidden;
                    }
                    
                    .hero-logo {
                        /* ۱. کنترل اندازه */
                        width: 180px; /* اندازه لوگو را اینجا تنظیم کنید */
                        height: auto;
                        margin-bottom: 20px;
                    
                        /* ۲. ترفند حذف پس‌زمینه سفید (مخصوص عکس‌های JPG با زمینه کاملا سفید) */
                        mix-blend-mode: screen; 
                    
                        /* ۳. ترفند تبدیل خطوط آبی به سفید */
                        filter: invert(1) grayscale(1) brightness(2);
                        
                        /* ۴. نرم کردن لبه‌ها */
                        opacity: 0.9;
                    }
                    
                    .hero-slogan {
                        font-size: 50px;
                        font-weight: 900;
                        color: #fff; /* یا گرادینت آبی که قبلا دادم */
                        margin-top: 10px;
                    }
                    .footer-subsidiaries {
                      text-align: center;
                      padding: 20px 0;
                  }
                  
                  .footer-subsidiaries h3 {
                      color: #fff;
                      font-size: 1.4rem;
                      margin-bottom: 20px;
                      font-weight: bold;
                      position: relative;
                      display: inline-block;
                  }
                  
                  /* خط زیر عنوان */
                  .footer-subsidiaries h3::after {
                      content: '';
                      display: block;
                      width: 50%;
                      height: 2px;
                      background: linear-gradient(90deg, transparent, #00d4ff, transparent);
                      margin: 8px auto 0;
                  }
                  
                  .footer-subsidiaries ul {
                      list-style: none;
                      padding: 0;
                  }
                  
                  .footer-subsidiaries li {
                      margin-bottom: 12px;
                  }
                  
                  .footer-subsidiaries a {
                      text-decoration: none;
                      color: #cbd5e0; /* رنگ خاکستری ملایم */
                      font-size: 1.1rem;
                      transition: all 0.3s ease;
                      display: inline-block;
                  }
                  
                  .footer-subsidiaries a small {
                      display: block;
                      font-size: 0.8rem;
                      color: #718096;
                      margin-top: 2px;
                  }
                  
                  /* افکت هنگام هاور */
                  .footer-subsidiaries a:hover {
                      color: #00d4ff; /* رنگ آبی روشن موقع هاور */
                      transform: translateX(-5px); /* کمی به سمت چپ حرکت کند */
                      text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
                  }
                  
                  /* فونت نرم برای کل بخش */
                  .footer-subsidiaries * {
                      font-family: 'YourSoftFontName', sans-serif; /* نام فونت خودت را اینجا بگذار */
                  }
                  /* رنگ اصلی بهینه سنجش */
  :root {
    --sanjesh-blue: #0062ff;
    --sanjesh-dark: #0046b8;
  }                
  .stat-number {
    color: #0062ff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 0px 0;
  }
  .stat-clock {
    color: #072640;
  }
  .clients{
    padding:60px 0;
    background:#0f172a;
    text-align:center;
  }
  
  .clients h2{
    color:#f8fafc;
    margin-bottom:40px;
  }
  
  .logo-slider{
    overflow:hidden;
    width:100%;
  }
  
  .logo-track{
    display:flex;
    gap:60px;
    width:max-content;
    animation:scroll 25s linear infinite;
  }
  
  .logo-track img{
    height:70px;
    opacity:0.7;
    transition:0.3s;
  }
  
  .logo-track img:hover{
    opacity:1;
  }
  
  @keyframes scroll{
    from{
      transform:translateX(0);
    }
    to{
      transform:translateX(-50%);
    }
  }
  /* ظرف کلی */
.behnod-accordion-container {
    max-width: 1000px;
    margin: 40px auto;
    font-family: 'Vazirmatn', sans-serif;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    direction: rtl;
}

/* هدر کشو - شیک و ظریف */
.behnod-accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: #f8fafc;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

.behnod-accordion-header:hover {
    background: #f1f5f9;
}

/* استایل آیکون فلش */
.arrow-icon {
    width: 24px;
    height: 24px;
    fill: #14b8a6; /* رنگ فیروزه‌ای برند شما */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* وقتی کشو باز می‌شود فلش بچرخد */
.behnod-accordion-header.active .arrow-icon {
    transform: rotate(180deg);
}

/* بدنه کشو */
.behnod-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: #ffffff;
}

.behnod-accordion-body.open {
    max-height: 2000px; /* یک عدد بزرگ برای باز شدن کامل */
    transition: max-height 1s ease-in-out;
}

/* گرید عکس‌ها - ۳ ستونه منظم */
.device-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 25px;
}

/* استایل هر عکس */
.device-item {
    aspect-ratio: 4 / 3; /* تمام عکسها هم اندازه میشوند */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.device-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* عکس کشیده نمی‌شود و متناسب برش می‌خورد */
    transition: transform 0.5s;
}

.device-item img:hover {
    transform: scale(1.1);
}

/* واکنش‌گرا برای موبایل */
@media (max-width: 768px) {
    .device-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

  