
@font-face {
    font-family: 'yekan';
    src: url('fonts/BYekan+.ttf');
}

@font-face {
    font-family: 'nastaliq';
    src: url('fonts/IranNastaliq.ttf');
}

*{
font-family:"yekan";

}

body{

    direction: rtl;
    margin: 0;
    
}

.clearfix{

    clear: both;
}

.title{

    text-align: center;
    font-size: 24px;
    margin: 20px auto;
    border-bottom: 2px solid rgb(153, 153, 153);
    width: 25%;
    padding-bottom: 10px;

}

section {

    position: relative;
   top: 50px;
}



#nav {

width: 100%;

height: 50px;

   background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
     border-radius: 0 0 12px 12px;
position: fixed;
top:0px ;
left: 0px;
z-index: 99;

}



#nav ul li {

display: inline-block;

margin: 5px 10px;

text-align: center;

color: white;


}
#nav a{
    color: white;
    text-decoration: none;
}

#nav a:hover{

  color: #fed136;

   
}



/* ریسپانسیو منو */

/* دکمه منوی موبایل */
.menu-btn {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

/* حالت موبایل */
@media (max-width: 768px) {

    /* دکمه همبرگری را نمایش بده */
    .menu-btn {
        display: block;
    }

    /* مخفی کردن منو در موبایل */
    #menu {
        display: none;
        width: 100%;
        background: black;
        padding: 10px 0;
    }

    /* وقتی فعال شد نشان بده */
    #menu.show {
        display: block;
    }

    /* آیتم‌ها عمودی شوند */
    #menu li {
        display: block !important;
        margin: 10px;
    }
}


/* ریسپانسیو منو */

.hero header h1{

    /* width: 100%;
    height: 500px;
    background-color: olivedrab; */
    /* background-image: url('images/home6.jpg'); */
    /* background-repeat: no-repeat;
    background-position: center; */
    /* background-size: 100% 100%; */
    text-align: center ;
    size: 100px;
    /* padding-top: 5%;
    box-sizing: border-box ; */

}

/* اسلاید شو */

/* style.css */

/* ریست ساده */
/* * { box-sizing: border-box; margin: 0; padding: 0; }

html,body { height: 100%; font-family: "Vazirmatn", sans-serif; } */

/* hero (هدر) که canvas داخلش قرار می‌گیره */
.hero {
  position: relative;
  width: 100%;
  height: 600px; /* ارتفاع هدر - قابل تغییر */
  overflow: hidden;
  background: linear-gradient(120deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* محتوا بالای canvas */
.hero-content {
  position: relative; /* تا از canvas جدا باشه */
  z-index: 4;
  text-align: center;
  padding: 20px 30px;
  backdrop-filter: blur(0.2px);
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.hero p { opacity: 0.9; }

/* canvas را روی کل هدر کش می‌کنیم */
#particles-canvas {
  position: absolute;
  inset: 0; /* top:0;right:0;bottom:0;left:0; */
  z-index: 1; /* زیر محتوا */
  display: block;
}

/* برای جلوه بهتر: چند لایه گرادینت شفاف */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(600px 200px at 10% 20%, rgba(255,255,255,0.03), transparent 10%),
              radial-gradient(500px 150px at 90% 80%, rgba(255,255,255,0.02), transparent 10%);
}


/* اسلاید شو */



/* <!-- اون قسمتی که سه تا دیو کنار هم هستن --> */

:root{
--container-width:1100px;
--accent-red:#d02828;
--card-bg:#ffffff;
--heading-blue:#4aa2e6;
--sidebar-green:#bdbbbb;
--muted-text:#727272;
} 

.recommended-section{
max-width:var(--container-width);
margin:24px auto;
display:grid;
grid-template-columns:1fr 1fr 320px;
gap:20px;

}

/* ==== BIG CARDS ==== */
.big-card{
background:var(--card-bg);
border-radius:2px;
overflow:hidden;
display:flex;
flex-direction:column;
}

/* fake image backgrounds */
.big-card .image{
height:300px;
background-image:url("images/5.jpg");
background-size:cover;
background-position:center;
}

.big-card .card-body{
padding:28px 30px;
display:flex;
flex-direction:column;
gap:18px;
}

.big-card h3{

font-size:18px;
font-weight:700;
color:var(--heading-blue);
text-transform:uppercase;
margin:0;
}

.big-card p{
color:var(--muted-text);
font-size:14px;
line-height:1.8;
margin:0;
}

.big-card .cta{
margin-top:auto;
display:block;
text-align:center;
background:var(--accent-red);
color:#fff;
padding:16px;
font-weight:700;
border-radius:2px;
text-decoration:none;
}

/* ==== SIDEBAR ==== */
.sidebar{
display:flex;
flex-direction:column;
}

.sidebar .box{
background:var(--accent-red);
color:#fff;
padding:22px;
font-family:"yekan";
font-size:20px;
font-weight:700;
}

.sidebar .subtitle{
background:#d02828;
color:#ffffff;
padding:10px 22px;
font-size:13px;
}

.sidebar .list-wrap{
background:var(--sidebar-green);
padding:22px;
display:flex;
flex-direction:column;
gap:18px;
background-color:#fff;
}

.sidebar .item{
background:#f3f3f3;
padding:14px 22px;
display:flex;
align-items:center;
gap:18px;
border-radius:2px;

}
.item{
  transition: all 0.3s ease;
}



.item:hover {
  background-color: #bab9b9;
  color: red;
}

.sidebar .thumb{
width:80px;
height:60px;
background-image:url("images/6.jpg");
background-size:cover;
border-radius:2px;
}

.sidebar .label{

font-size:16px;
font-weight:800;
text-transform:uppercase;
}

/* Responsive */
@media(max-width:1024px){
.recommended-section{
grid-template-columns:1fr;
padding:0 18px;
}
.big-card .image{
height:220px;
}
}

/* <!-- اون قسمتی که سه تا دیو کنار هم هستن --> */




#header h1{

    color: white;
    font-size: 50px;
    font-family: 'nastaliq';
    margin: 0px;
}
#header button{
    width: 100px;
    height: 50px;
    background-color:#fed136;


}


#services .services_items div{

    width: 33.3%;
    float: right;
    text-align: center;
    transition: all ease 0.3s;
    
}
#services .services_items div i:hover{
  box-shadow: 0.3px 0.3px 10px rgb(107, 107, 107);
   
}


#services .services_items div i{

   background-color:#fed136;
   color: white;
   padding: 20px 22px;
   border-radius: 50%;
   text-align: center;


}

#portfolio{
    background-color: rgb(219, 219, 219);
padding: 20px 10%;
width: 100%;
box-sizing: border-box;
float: right;
}

/* css مربوط به تگ لینک به صفحه جدید */

a.item-link {
  text-decoration: none; /* حذف خط زیر */
  color: inherit; /* رنگ متن مثل حالت عادی بمونه */
  /* display: inline-block; قابل کلیک روی کل div */
}

/* a.item-link:hover {
  transform: scale(1.02);
  transition: 0.3s;
} */


#portfolio  .portfolio_wrapper>div{
    border: 1px solid rgb(169, 169, 169);

    width:31% ;
    float: right;
    text-align: center;
    margin: 10px 1%;
    background-color: white;
    height: 360px;
    border-radius: 5px;
    position: relative;
    transition: all  1s  ease ;

} 

#portfolio  .portfolio_wrapper div img{
    width: 100%;
    height: 200px; ;


}

.plus{
    background-color: #fed136;
    color: #fff;
    position: absolute;
    width: 100%;
    top: 0px;
    height: 200px;
    padding-top: 75px;
    box-sizing: border-box;
    font-size: 2.1em;
    display: none;
    transition: all ease 1s;
}

#portfolio .portfolio_wrapper>div:hover .plus{

  display:block ;
}

span.featured{

    background-color: red;
    color: aliceblue;
    padding: 0px 20px;
    position: absolute;
    top: 0px;
    right: 0px;
}

/* ---------------------- */
/*  ریسپانسیو موبایل و تبلت  */
/* ---------------------- */

/* وقتی عرض صفحه کمتر از 992px شد → 2 ستونه شود */
@media (max-width: 992px) {
  #portfolio .portfolio_wrapper > div {
    width: 48%;
    margin: 10px 1%;
    height: auto;
  }
}

/* وقتی عرض صفحه کمتر از 768px شد → تک ستونه شود */
@media (max-width: 768px) {
  #portfolio {
    padding: 20px 5%;
  }

  #portfolio .portfolio_wrapper > div {
    width: 98%;
    float: none;
    margin: 15px auto;
    height: auto;
  }

  #portfolio .portfolio_wrapper div img {
    height: 180px; /* برای موبایل بهتر دیده بشه */
  }

  .plus {
    height: 180px;
    padding-top: 60px;
  }
}



























/* product page*/
#product{
 padding: 10px 5%;
    box-sizing: border-box;
    width: 100%;
    float: right;
}

.product_content{
   
    box-shadow: 1px 1px 5px rgb(69, 67, 67);
    padding: 10px;
    float: right;

}
.product_content div{
    width: 50%;
    float: right;

}

#product_detail{

    padding: 10px;
    box-shadow:  0.2px 0.2px 5px rgb(69, 67, 67) ;
    margin: 50px auto;
}


#product_detail table{
    border: groove 3px #fed136 ;
    border-collapse: collapse;
    width: 90%;
    margin: auto;
    text-align: center;


}

#product_detail table td{
    border: groove 3px #fed136 ;
    padding: 5px;

}


a[href$='zip']{

    color: red !important;
    text-decoration: none;
    margin-right: 42px;

}

.product_content a::before{
    content: "";
    color: #3c763d;

}


.product_content I{
    margin-right: -130px;

}


/* ریسپانسیو موبایل */
@media screen and (max-width: 768px) {
    .product_content {
        display: flex;
        flex-direction: column !important;
        gap: 20px;
        float: none;
    }

    .product_content div {
        width: 100% !important;
        float: none !important;
    }

    .product_content img {
        width: 100% !important;
        height: auto;
    }

    #product_detail {
        width: 100%;
        margin: 20px 0;
        overflow-x: auto; /* جدول قابل اسکرول شود */
    }
}






/* دایره های که وسط صفحه هستن وعنوانش تاریخچه ما هست */


.timeline-section {
  display: flex;
  flex-direction: column; /* این خط باعث میشه زیر هم بیاد */
  align-items: center; /* برای وسط‌چینی افقی */
  gap: 50px; /* فاصله بین دایره‌ها */
  /* padding: 60px 0; */
}

.timeline-item {
  width: 220px;
  text-align: center;
}

.circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  background-size: cover;
  background-position: center;
  border: 3px solid #ccc;
}
.circle:hover {
  transform: scale(1.2) rotate(3deg);
  /* filter: brightness(1.3) blur(2px); */
  transition: all 0.6s ease;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* ------------------------- */
/* ریسپانسیو تبلت و موبایل  */
/* ------------------------- */

/* برای تبلت‌ها */
@media (max-width: 992px) {
  .timeline-item {
    width: 180px;
  }

  .circle {
    width: 140px;
    height: 140px;
  }
}

/* برای موبایل */
@media (max-width: 768px) {

  .timeline-section {
    gap: 35px;
  }

  .timeline-item {
    width: 100%;
    max-width: 300px; /* برای اینکه خیلی پهن نشه */
  }

  .circle {
    width: 120px;
    height: 120px;
  }

  .timeline-item h3 {
    font-size: 1.1rem;
  }

  .timeline-item p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

}












/* .pos{
    background-color: brown;
    width: 200px;
    height:200px ;
    position: fixed;
    top: 0;
    left: 0;


}
.pos span{
 background-color: aqua;
 padding: 5px;

} */



/* تیم ما اون دایره هایی که عکس افراد توش عکس افراد هست */
.team-section {
  padding: 20px 0px;
  background: #f3f3f3;
  font-family:"yekan";
  text-align: center;
  direction: rtl;
}

.team-section h2 {
  font-size: 22px;
  margin-bottom: 30px;
  position: relative;
}

.team-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #999;
  margin: 10px auto 0;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.team-member {
  width: 200px;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  transition: filter 0.4s ease;
}

.team-member img:hover {
  filter: grayscale(60%);
}

.team-member h3 {
  margin: 15px 0 5px;
  font-size: 16px;
}

.team-member p {
  color: gray;
  margin: 0 0 10px;
  font-size: 14px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons i {
  color: #222;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #0077b5;
}










/* footer */

#contact{
    background-image: url('');
    
    background-position: center;
    
    background-color: rgb(71, 71, 71);
    
    color: rgb(255, 255, 255);
    padding: 30px 10px;
}
#contact .wrapper div{
    width: 50%;
    float: right;
    padding: 30px 50px;
    box-sizing: border-box;

}
#contact .wrapper div input{
   display: block;
   
   width: 100%;
   height: 40px;
   margin-bottom: 10px;

}

#contact .wrapper div textarea{
   
   width: 100%;
   height: 150px;

}
#contact .submit{ 
    border:0px ;
    background-color: #ffdd39 ;
    color:#fff ;
    padding: 10px 40px;
    font-size: 1.2em;


}

/* ----------- حالت موبایل ----------- */
@media (max-width: 768px) {

  #contact .wrapper div {
    width: 100%;
    float: none;
    padding: 20px 0;
  }

  #contact .wrapper div input,
  #contact .wrapper div textarea {
    height: 40px;
    font-size: 1rem;
  }

  #contact .wrapper div textarea {
    height: 120px;
  }

  #contact .submit {
    width: 100%;
    padding: 12px 0;
    font-size: 1.1em;
  }

}













/* تست */


/* فوتر */
.site-footer {
  padding: 3px 16px;
  border-top: 1px solid #f3f1f1;
  background: transparent;
}

.footer-logos {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding: 8px 12px;
  flex-wrap: wrap;
}

/* هر لوگو */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 180px;
  min-width: 120px;
}

.footer-logo a {
  display: inline-block;
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  transition: transform 0.22s ease;
  cursor: pointer;
}

.footer-logo img {
  display: block;
  max-height: var(--logo-max-height);
  width: 100px;
  filter: grayscale(100%) contrast(0.95);
  opacity: 0.45;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.footer-logo a:hover img,
.footer-logo a:focus img {
  filter: none;
  opacity: 1;
  transform: translateY(-4px);
}

.footer-logo a:active {
  transform: translateY(-1px);
}

/* ریسپانسیو */
@media (max-width: 640px) {
  :root {
    --logo-max-height: 44px;
    --gap: 20px;
  }
  .footer-logos {
    justify-content: center;
    gap: 18px;
  }
  .footer-logo {
    flex: 1 1 45%;
    min-width: 120px;
  }
}

@media (max-width: 360px) {
  :root {
    --logo-max-height: 36px;
    --gap: 12px;
  }
  .footer-logo {
    flex: 1 1 100%;
  }
}


/* <!-- قسمت پایین فوتر --> */

/* ظاهر کلی فوتر */
.site-footer{
  background: linear-gradient(#ffffff 0 0); /* نوار بالا سیاه (قابل تنظیم) */
  position:relative;
  padding-top:1px; /* فاصله برای نوار سیاه بالا */
}

/* بخش پایینی فوتر با مرز آبی نازک (شبیه تصویر) */
.site-footer .footer-inner{
  /* background: var(--footer-bg);
  border-top: 4px solid #2f7db6; خط آبی زیر فوتر */
   display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1100px;
  margin:0 auto;
  padding:18px 24px 28px;
  gap:20px;
}  

/* ستون‌ها */
.footer-left, .footer-center, .footer-right{
  display:flex;
  align-items:center;
}

/* متن کپی‌رایت */
.footer-left p{
  color:#fed136;
  font-size:14px;
  margin:0;
}

/* لینک‌ها (سمت راست) */
.footer-links a{
  color:var(--accent);
  text-decoration:underline;
  margin-left:18px; /* چون dir=rtl، margin-left باعث فاصله بین لینک‌ها میشه */
  font-size:14px;
}
.footer-links a:hover{opacity:0.85;}

/* مرکز: دکمه‌های اجتماعی گرد */
.footer-center{
  position:relative;
  justify-content:center;
  flex:1;
}
.social{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:center;
}

/* دکمه‌های گرد */
.social-btn{
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#111; /* رنگ داخل دایره */
  color:#fff;
  text-decoration:none;
  box-shadow:0 2px 6px rgba(0,0,0,0.25);
  transition:transform .15s ease, opacity .15s ease;
  border:4px solid var(--footer-bg); /* حاشیه روشن برای جلوه شناور */
}
.social-btn i{font-size:16px}
.social-btn:hover{transform:translateY(-4px); opacity:0.95}

/* واکنشگرا */
@media (max-width:800px){
  .site-footer .footer-inner{
    flex-direction:column;
    text-align:center;
    padding:18px;
    gap:16px;
  }
  
  .footer-right{order:3}
  .footer-left{order:1}
  .footer-center{order:2}
  .footer-links a{margin-left:8px}
}

/* اگر بخواهی نوار سیاه بالای تصویر واضح‌تر باشد */
.site-footer::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:8px; /* ارتفاع نوار سیاه بالایی */
  background:var(--bg-dark);
}

/* درباره ما */

.about {
  padding: 80px 0;
  background-color: #fdfdfd;
  text-align: center;
  font-family:'yekan';
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
  position: relative;
}

.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #0078ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
  text-align: right;
  direction: rtl;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #444;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: right;
}

.about-features li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.about-features li::before {
  content: "";
  position: absolute;
  left: 0;
}

.about-text .btn {
  display: inline-block;
  background-color: #0078ff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-text .btn:hover {
  background-color: #005fcc;
  transform: translateY(-3px);
}

.about-img {
  flex: 1 1 400px;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* واکنش‌گرایی */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
  .about-features {
    text-align: center;
    padding: 0;
  }
}


/* درباره ما */




/* تست صفحه ورود */

/* استایل برای منوی dropdown */
/* آیتم ورود در منو */
#Login {
    position: relative; /* برای اینکه dropdown نسبت به این li قرار بگیره */
    cursor: pointer;    /* نشانگر ماوس تغییر کند */
}

/* استایل منوی کشویی */
#Login .dropdown {
    position: absolute; /* منو را نسبت به آیتم والد قرار می‌دهد */
    top: 100%;          /* درست پایین گزینه ورود */
    left: 0;
    background-color: #fff; /* رنگ پس‌زمینه */
    border: 1px solid #ccc; /* حاشیه خاکستری */
    padding: 15px;          /* فاصله داخلی */
    width: 200px;           /* عرض منو */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* سایه زیبا */
    z-index: 1000;          /* بالا بودن نسبت به دیگر عناصر */
}

/* فرم داخل منو */
#Login .dropdown form {
    display: flex;
    flex-direction: column; /* فیلدها زیر هم قرار بگیرند */
}

/* استایل فیلدهای ورودی */
#Login .dropdown input {
    margin-bottom: 10px; /* فاصله بین فیلدها */
    padding: 5px;        /* فاصله داخلی */
}

/* دکمه ورود */
#Login .dropdown button {
    padding: 5px;
    cursor: pointer;      /* نشانگر ماوس تغییر کند */
}

/* استایل قسمت ثبت نام */
#Login .signup {
    text-align: center;   /* متن وسط چین شود */
    margin-top: 10px;     /* فاصله از فرم */
}

#Login .signup a {
    text-decoration: none; /* خط زیر متن نباشد */
    color: blue;           /* رنگ لینک */
}



/* تست صفحه ورود */





/* انیمیشن فوتر */
#contact { position: relative; background: #000; overflow: hidden; }
#contact .particles-bg { position: absolute; inset:0; z-index:0; pointer-events:none; }

.particle {
  position: absolute;
  width: 4px; height:4px;
  border-radius: 50%;
  background: #00c8ff;
  opacity: 0.7;
  filter: blur(0.5px);
  animation: float 5s ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-20px) scale(1.3); }
}

#contact > *:not(.particles-bg) { position: relative; z-index:2; }


/* انیمیشن فوتر */




/* صفحه خدمات ما services */
/* فونت یکان برای کل بخش */
#servicesArea {
  font-family: "yekan";
  background: #f0f4f8;
  padding: 80px 20px;
  text-align: center;
}

.servicesWrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.servicesHeader {
  font-size: 3rem;
  color: #1e3a8a;
  margin-bottom: 50px;
  position: relative;
}

.servicesHeader::after {
  content: '';
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #007BFF, #00CFFF);
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

.cardsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}



.serviceItem {
  background: linear-gradient(145deg, #ffffff, #e6f0ff);
  padding: 25px 15px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s, box-shadow 0.4s, opacity 0.6s;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  opacity: 0; /* شروع مخفی برای انیمیشن */
  transform: translateY(50px);
}

.serviceItem.show {
  opacity: 1;
  transform: translateY(0);
}


.serviceItem:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.iconWrapper img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.serviceItem:hover .iconWrapper img {
  transform: rotate(15deg) scale(1.1);
}

.itemTitle {
  font-size: 1.6rem;
  color: #007BFF;
  margin-bottom: 12px;
}

.itemDesc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ریسپانسیو موبایل */
@media (max-width: 768px) {
  .servicesHeader {
    font-size: 2.2rem;
  }

  .cardsGrid {
    grid-template-columns: 1fr; /* کارت‌ها زیر هم قرار بگیرند */
    gap: 20px;
  }

  .serviceItem {
    padding: 25px 15px;
  }

  .iconWrapper img {
    width: 70px;
    height: 70px;
  }

  .itemTitle {
    font-size: 1.4rem;
  }

  .itemDesc {
    font-size: 0.95rem;
  }
}
