

/* ردیف توضیح  */


  html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    font-family:'B Yekan', Tahoma, sans-serif  ;
}
/* .container-12 {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding: 0;
} */

h2 {
    color: #777;
    text-align: center;
    text-transform: uppercase;
    font: 300 20px/15px  'B Yekan', Tahoma, sans-serif !important;
    margin-bottom: 22px;
}

/* apptor */


h4 {
    color: #ece9e9;
    text-transform: uppercase;
    font: 300 20px/30px  'B Yekan', Tahoma, sans-serif !important;
    margin-bottom: 20px;
}
/* هدر */
/* ساختار جدید فلکس‌باکس برای تراز عمودی */
.nav-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    height: 100%; /* اضافه شده */
}

/* تنظیمات لوگو */
.logo {
    height: 40px;
    margin: 0 20px;
    display: flex; /* اضافه شده */
    align-items: center; /* اضافه شده */
}

/* تنظیمات تصویر لوگو */
.logo img {
    vertical-align: middle; /* اضافه شده */
    display: inline-block; /* اضافه شده */
}

/* تنظیمات منوی دسکتاپ */
.desktop-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    justify-content: center;
    align-items: center; /* اضافه شده */
    height: 100%; /* اضافه شده */
}

/* تنظیمات سبد خرید */
.cart-icon {
    font-size: 1.3rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: auto;
    display: flex; /* اضافه شده */
    align-items: center; /* اضافه شده */
    height: 100%; /* اضافه شده */
}


 /* Reset و تنظیمات پایه */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
            min-height: 200vh;
            overflow-x: hidden;
            position: relative;
        } */
        
        /* نوار منوی ثابت با عرض 80% و لبه‌های گرد */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 15px 0;
            z-index: 1000;
            
        }
        
        .nav-container {
            width: 80%;
            background: #fdfbfb;
            /* background:#dde9e9; */
            border-radius: 50px;
            padding: 10px 25px;
            box-shadow: 0 4px 20px rgba(7 46 216);
            
            /* افکت نقطه‌دار */
            background-image: radial-gradient(circle, #77acdd 1px, transparent 1px);
            background-size: 15px 15px;
            
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        /* بخش لوگو و منو */
        .nav-center {
            display: flex;
            align-items: center;
            flex-grow: 1;
            justify-content: center;
        }
        
        .logo {
            height: 40px;
            margin-left: 20px;
        }
        
        /* منوی دسکتاپ */
        .desktop-menu {
            display: flex;
            list-style: none;
            justify-content: center;
            align-items: center;
        }
        
        .desktop-menu li {
            margin: 0 15px;
        }
        
        .desktop-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        
        .desktop-menu a:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: #1e88e5;
            transition: width 0.3s;
        }
        
        .desktop-menu a:hover:after {
            width: 100%;
            left: 0;
        }
        
        /* سبد خرید */
        .cart-icon {
            font-size: 1.3rem;
            color: #333;
            cursor: pointer;
            transition: all 0.3s;
            position: absolute;
            left: 25px;
        }
        
        .cart-icon:hover {
            color: #1e88e5;
            transform: scale(1.1);
        }
        
        /* هامبورگر منو برای موبایل */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 25px;
            flex-direction: column;
            justify-content: space-between;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #333;
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        /* منوی موبایل */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            right: 10%;
            left: 10%;
            background: white;
            border-radius: 0 0 20px 20px;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            z-index: 999;
            
            /* افکت نقطه‌دار */
            background-image: radial-gradient(circle, #77acdd 1px, transparent 1px);
            background-size: 15px 15px;
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu ul {
            list-style: none;
        }
        
        .mobile-menu li {
            margin: 15px 0;
            text-align: center;
        }
        
        .mobile-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 1rem;
        }
        
        /* نقاط رنگی حرکتی */
        .floating-dots {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }
        
        .color-dot {
            position: absolute;
            border-radius: 50%;
            filter: blur(1px);
            opacity: 0.6;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(5vw, 10vh);
            }
            50% {
                transform: translate(10vw, 5vh);
            }
            75% {
                transform: translate(5vw, -5vh);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        /* استایل برای موبایل */
        @media (max-width: 768px) {
            .desktop-menu {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .nav-center {
                justify-content: flex-end;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: translateY(11px) rotate(45deg);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: translateY(-11px) rotate(-45deg);
            }
            .header-main__slides{
                margin-top: 2rem;
            }
        }
        
        /* محتوای اصلی */
        .main-content {
            padding: 30px;
            margin-top: 100px;
            text-align: center;
        }
/* هدر */















/* سکشن اول */
        
 /* موکاپ موبایل */



    body {
    direction: rtl;
    font-family:  'B Yekan', Tahoma, sans-serif !important;
    background-color: #f8f9fa;
  }
  
  .container {
    margin-top: 50px;
    padding: 20px;
  }
  
  /* استایل بخش عنوان و محتوا */
  .header-main__content {
    position: relative;
    /* padding: 20px; */
  }
  
  /* .infobar__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
  } */
  
  .infobar__subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #7f8c8d;
    margin-bottom: 30px;
  }
  
  .infobar__linear {
    background: linear-gradient(90deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
  }
  
  .btn-solid, .btn-primary {
    background: linear-gradient(90deg, #3498db, #9b59b6);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  }
  
  .btn-solid:hover, .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  }
  
  .header-main__content-shap {
    position: absolute;
    /* left: -20px; */
    
    top: 200px;
    transform: translateY(-50%);
    width: 160px;
    height: 50px;
  }
  .wave-animation {
    animation: wave 1.5s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes bounce {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-60%); }
}
.bounce-animation {
    animation: bounce 1s infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    25% {
        transform: translateY(-50%) rotate(-5deg);
    }
    75% {
        transform: translateY(-50%) rotate(5deg);
    }
}
  .typed-el {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  .typed-el i {
    margin-left: 5px;
  }
  
  #el_typed_header {
    color: #2c3e50;
    font-size: 1.3rem;
  }
  
  .typed-cursor {
    color: #3498db;
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  /* استایل اسلایدر موبایل */
  .header-main__slides {
    position: relative!important;
  }
  
  .header-main__slides-shap {
    position: absolute;
    top: -50px;
    left: 50px;
    width: 440px!important;
    z-index: 1;
  }
  
  .phone-mockup {
    position: relative;
    width: 210px;
    height: 380px;
    border: 12px solid #2c3e50;
    border-radius: 40px;
    margin: 0 auto;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }
  
  /* ناچ دوربین و دکمه ها */
  .phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: #2c3e50;
    border-radius: 0 0 10px 10px;
    z-index: 3;
  }
  
  .phone-mockup::after {
    content: '';
    position: absolute;
    top: 100px;
    right: -5px;
    width: 5px;
    height: 60px;
    background: #2c3e50;
    border-radius: 0 5px 5px 0;
  }
  
  .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
  }
  
  .slide {
    flex: 1;
    min-width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: white;
    font-weight: bold;
  }
  
  .slide:nth-child(1) {
    background: linear-gradient(135deg, #3498db, #2ecc71);
  }
  
  .slide:nth-child(2) {
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
  }
  
  .slide:nth-child(3) {
    background: linear-gradient(135deg, #f39c12, #d35400);
  }
  
  /* دکمه های کنترل اسلایدر */
  .slider-controls {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
  }
  
  .slider-controls button {
    background: rgba(255,255,255,0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    color: #2c3e50;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .slider-controls button:hover {
    background: rgba(255,255,255,0.9);
    transform: scale(1.1);
  }
  
  /* نقاط نشانگر اسلایدها */
  .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
  }
  
  /* رسپانسیو */
  @media (max-width: 992px) {
    .header-main__content {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .header-main__content-shap {
      display: none;
    }
    
    .typed-el {
      justify-content: center;
      margin-right: 0;
    }
  }
  
  @media (max-width: 768px) {
    .infobar__title1 {
      font-size: 1rem;
    }
    .infobar__title2 {
      font-size: 1rem;
    }
    
    .infobar__subtitle {
      font-size: 1.2rem;
    }
    
    .phone-mockup {
      width: 250px;
      height: 450px;
      border-width: 10px;
    }
  }
  
  @media (max-width: 576px) {
    .infobar__title1 {
      font-size: 1rem;
    }
    .infobar__title2 {
      font-size: 1rem;
    }
    .infobar__subtitle {
      font-size: 1rem;
    }
    
    .btn-solid, .btn-primary {
      padding: 10px 25px;
      font-size: 1rem;
    }
  }
  
.text-lg-start {
    text-align: right!important;
}


/* استایل‌های جدید برای تیک و متن */
.title-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tick-container {
  position: relative;
  width: 50px;
  height: 50px;
  margin-left: 0; /* فاصله بین تیک و متن */
  z-index: 1;
  animation: rotate 2s ease-in-out infinite;
}

.tick-svg {
  width: 25px; /* افزایش حجم تیک */
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -30%);
  fill: #fcfeff; /* رنگ آبی برای تیک */
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); /* سایه برای تیک */
  stroke: #2980b9; /* حاشیه برای حجم بیشتر */
  stroke-width: 1px;
  border-radius: 5px;
  
    background: linear-gradient(135deg, #078ae1, #a585b2);

}

@keyframes rotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}

.infobar__title1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  position: relative;
  z-index: 1;
}
.infobar__title2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #2c3e50;
  position: relative;
  z-index: 1;
}
/* برای نمایش بهتر در موبایل */
@media (max-width: 768px) {
  .tick-container {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }
  
  .infobar__title2 {
    font-size: 1rem;
  }
  .infobar__title1 {
    font-size: 1.5rem;
    font-weight:2200;
  }
  
  .tick-svg {
    width: 24px;
    height: 24px;
  }
}
/* موکاپ موبایل */ 
/* سکشن اول */



/* footer */
/* استایل فوتر */
.site-footer {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
    font-family: 'B Yekan', sans-serif;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
  
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    /* text-align: center; */
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #3498db, #9b59b6);
  
}

.footer-about {
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: linear-gradient(135deg, #3498db, #9b59b6);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-right: 15px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(-5px);
}

.footer-links a:before {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover:before {
    opacity: 1;
    right: -10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-left: 10px;
    color: #3498db;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-payments {
    display: flex;
    gap: 10px;
}

.footer-payments img {
    border-radius: 4px;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
}

.footer-payments img:hover {
    filter: none;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #9b59b6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* رسپانسیو */
@media (max-width: 992px) {
    .footer-column {
        flex: 0 0 100%;
        
    }
}

@media (max-width: 768px) {
    .footer-container {
        width: 50%;
    }
    .footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #3498db, #9b59b6);
  
}
    /* .footer-column {
        flex: 0 0 100%;
    } */
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}













/* اسلایدر */



/* راست‌چین کردن عناصر داخلی */
 .img-hover h4,
.img-hover p,
.img-hover ul {
    direction: rtl!important;
    text-align: right!important;
} 



/* تنظیمات کلی راست‌چین برای اسلایدر */
.owl-carousel.owl-rtl {
    direction: rtl;
}

/* تنظیمات کارت‌های اسلایدر */
.img-hover {
    direction: rtl;
    text-align: right;
    padding: 20px;
    margin: 10px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3), 
                0 5px 15px rgba(155, 89, 182, 0.2);
}

/* عنوان کارت‌ها */
.img-hover h4 {
    margin: 15px 0 10px;
    padding: 0;
    font-size: 1.2rem;
    color: #2c3e50;
    text-align: right;
}

/* متن کارت‌ها */
.img-hover p {
    margin: 0 0 15px;
    padding: 0;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: right;
    font-size: 0.9rem;
}

/* لیست اطلاعات */
.img-hover ul {
    padding-right: 0;
    margin: 0;
    text-align: right;
    list-style: none;
}

/* آیتم‌های لیست */
.img-hover ul li {
    display: inline-block;
    margin-left: 15px;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 0;
    position: relative;
    color: #95a5a6;
    font-size: 0.6rem;
    font-weight: bold;
}

/* جداکننده آیتم‌ها */
.img-hover ul li:after {
    content: "";
    position: absolute;
    right: auto;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 1px;
    background: #bdc3c7;
}

/* حذف جداکننده برای آخرین آیتم */
.img-hover ul li:last-child:after {
    display: none;
}

/* آیکون‌ها */
.img-hover ul li i {
    margin-left: 5px;
    margin-right: 0;
    color: rgba(114, 5, 133, 0.72);
}

/* تصاویر */
.img-hover img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: auto;
    display: block;
}

/* هاور کارت‌ها */


.img-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4), 
                0 10px 25px rgba(155, 39, 176, 0.72);
} 




















.custom-feature-box {
    width: 301px;
    height: 180px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    /* box-shadow: 0 8px 16px -6px rgba(0, 200, 100, 0.25); */
    /* margin: 40px 0 20px; فضای بیشتر بالا برای آیکون بیرون‌زده */
    overflow: visible; /* اجازه می‌دهد آیکون از باکس خارج شود */
    /* box-shadow: rgb(202, 255, 234) 0px 4px 0px 0px; */
       box-shadow: 0 15px 0 0 rgba(52, 152, 219, 0.4), 
                0 10px 12px 0 rgba(155, 39, 176, 0.72);
             margin-left: 20px!important; /* حذف margin-left: auto */
    margin-right: auto; /* چسباندن به چپ */
    /* بقیه استایل‌ها */   
    margin-top: 0;
    margin-bottom: 0;
}
.custom-feature-box1 {
    width: 301px;
    height: 180px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    /* box-shadow: 0 8px 16px -6px rgba(0, 200, 100, 0.25); */
    /* margin: 40px 0 20px; فضای بیشتر بالا برای آیکون بیرون‌زده */
    overflow: visible; /* اجازه می‌دهد آیکون از باکس خارج شود */
    /* box-shadow: rgb(202, 255, 234) 0px 4px 0px 0px; */
       box-shadow: 0 15px 0 0 rgba(52, 152, 219, 0.4), 
                0 10px 12px 0 rgba(155, 39, 176, 0.72);
       margin-top: 0;
    margin-bottom: 0;     
}

.feature-icon {
    position: absolute;
    top: -40px; /* بالاتر از باکس */
    right: -20px; /* بیرون از لبه راست */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #efe2e2;
    border: 3px solid #efe9e9;
    /* box-shadow: 0 4px 10px rgba(235, 230, 230, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* مطمئن شوید آیکون روی باکس قرار می‌گیرد */
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s;
}

.feature-icon:hover img {
    transform: scale(1.1);
}
.feature-icon1 {
    position: absolute;
    top: -40px; /* بالاتر از باکس */
    right: -20px; /* بیرون از لبه راست */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #92ddaf;
    border: 3px solid #efe9e9;
    /* box-shadow: 0 4px 10px rgba(235, 230, 230, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* مطمئن شوید آیکون روی باکس قرار می‌گیرد */
}
.feature-icon1 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s;
}

.feature-icon1:hover img {
    transform: scale(1.1);
}
.feature-icon2 {
    position: absolute;
    top: -40px; /* بالاتر از باکس */
    right: -20px; /* بیرون از لبه راست */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #d8c589;
    border: 3px solid #efe9e9;
    /* box-shadow: 0 4px 10px rgba(235, 230, 230, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* مطمئن شوید آیکون روی باکس قرار می‌گیرد */
}
.feature-icon2 img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s;
}

.feature-icon2:hover img {
    transform: scale(1.1);
}
.feature-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: right;
    padding-top: 10px;
}

.feature-desc {
    text-align: right;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.custom-feature-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* background: linear-gradient(90deg, rgba(0,200,100,0.8), rgba(0,200,100,0.2)); */
    box-shadow: 0 4px 12px rgba(0, 200, 100, 0.3);
}

.feature-arrow {
    text-align: left;
    margin-top: 10px;
}

.feature-arrow img {
    /* width: 24px; */
    /* transform: rotate(90deg); */
    opacity: 0.9;
    transition: opacity 0.3s;
    float: right;
    width: 6rem;
    height: 4.3rem;
    margin-right: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 22px;

}

.feature-arrow:hover img {
    opacity: 1;
}
.feature-arrow1 {
    text-align: left;
    margin-top: 10px;
}

.feature-arrow1 img {
    /* width: 24px; */
    transform: rotate(90deg);
    opacity: 0.9;
    transition: opacity 0.3s;
    float: right;
    width: 6rem;
    height: 4.3rem;
    margin-right: 4rem;
    padding-bottom: 1rem;

}

.feature-arrow1:hover img {
    opacity: 1;
}
.ptotal{
  padding: 3rem!important;
}
@media (max-width: 768px) {
  .tt .tt2{
    width: 350px!important;
    height: 400px!important;
  }
  .header-main__slides img{
    display:none;
  }
  .feature-arrow img{
    display: none;
  }
  .feature-arrow1 img{
    display: none;
  }
}

@media (max-width: 1024px){
.feature-arrow img{
    display: none;
  }
  .feature-arrow1 img{
    display: none;
  }
}





/* @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700&display=swap'); */

section {
  position: relative;
  z-index: 3;
  padding-top: 50px;
  padding-bottom: 0;
  font-family: 'B Yekan', Tahoma, sans-serif !important;
  direction: rtl;
  /* background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(155, 39, 176, 0.1)); */
}

.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header h2 {
  color: #FFF;
  font-weight: bold;
  font-size: 2.5em;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
  color: #FFF;
  line-height: 1.8;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* .contact-info {
  width: 50%;
} */

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
  flex-direction: row-reverse;
  align-items: flex-start;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(155, 39, 176, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.contact-info-item:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(52, 152, 219, 0.8), rgba(155, 39, 176, 0.8));
}

.contact-info-icon {
  height: 60px;
  width: 60px;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(155, 39, 176, 0.1));
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.2), rgba(155, 39, 176, 0.2));
}

.contact-info-icon i {
  font-size: 25px;
  line-height: 60px;
  color: #1da9c0;
}

.contact-info-content {
  margin-right: 20px;
  margin-left: 0;
  text-align: right;
  flex: 1;
}

.contact-info-content h4 {
  color: #1da9c0;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.contact-info-content p {
  color: #333;
  font-size: 1em;
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  width: 45%;
  padding-bottom: 20px;
  padding-top: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(155, 39, 176, 0.72);
  transition: all 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 15px 30px rgba(52, 152, 219, 0.6);
}

.contact-form h2 {
  font-weight: bold;
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #333;
  text-align: right;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.contact-form .input-box input,
.contact-form .input-box textarea {
  width: 100%;
  padding: 8px 0;
  font-size: 16px;
  margin: 15px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
  text-align: right;
  font-family:  'B Yekan', Tahoma, sans-serif !important;
}

.contact-form .input-box span {
  position: absolute;
  right: 0;
  padding: 8px 0;
  font-size: 16px;
  margin: 15px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box textarea:focus ~ span {
  color: rgba(107, 7, 125, 0.72);
  font-size: 13px;
  transform: translateY(-25px);
}

.contact-form .input-box input[type="submit"] {
  width: 100%;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.8), rgba(155, 39, 176, 0.8));
  color: #FFF;
  border: none;
  cursor: pointer;
  padding: 12px;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 20px;
  font-family:  'B Yekan', Tahoma, sans-serif !important;
}

.contact-form .input-box input[type="submit"]:hover {
  background: linear-gradient(45deg, rgba(52, 152, 219, 1), rgba(155, 39, 176, 1));
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  /* .row {
    flex-direction: column-reverse;
  } */
  
  .contact-info {
    margin-bottom: 40px;
    width: 100%;
  }
  
  .contact-form {
    width: 100%;
    margin-bottom: 40px;
  }
}



/* aboutus */


    .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .title {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .description {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            font-weight: 300;
        }
        
        /* .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
        } */
        
        .col-3 {
            flex: 1 1 300px;
            max-width: 300px;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 
                0 5px 15px rgba(0, 0, 0, 0.1),
                0 10px 20px rgba(155, 39, 176, 0.1),
                0 0 0 3px rgba(52, 152, 219, 0.1);
            transition: 
                transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.5s ease,
                border 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(52, 152, 219, 0.2);
        }
        
        .col-3::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }
        
        .col-3:hover {
            transform: 
                translateY(-10px) 
                rotate(1deg) 
                scale(1.03);
            box-shadow: 
                0 15px 30px rgba(0, 0, 0, 0.15),
                0 20px 40px rgba(155, 39, 176, 0.2),
                0 0 0 5px rgba(52, 152, 219, 0.2);
            border: 1px solid rgba(155, 39, 176, 0.3);
        }
        
        .col-3:hover::before {
            opacity: 0.1;
        }
        
        .col-3 span {
            display: block;
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .col-3:hover span {
            color: var(--secondary-color);
        }
        
        .col-3 a {
            color: var(--primary-color);
            text-decoration: none;
            display: inline-block;
            margin-bottom: 1rem;
            transition: 
                color 0.3s ease,
                transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .col-3:hover a {
            color: var(--secondary-color);
            transform: scale(1.1) rotate(5deg);
        }
        
        .col-3 p {
            transition: color 0.3s ease;
        }
        
        .col-3:hover p {
            color: #555;
        }
        
        .about-content {
            background: white;
            padding: 3rem;
            border-radius: 10px;
            /* box-shadow: 
                0 5px 15px rgba(0, 0, 0, 0.1),
                0 0 0 3px rgba(52, 152, 219, 0.1); */
            /* margin-bottom: 3rem; */
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .about-content::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
        }
        
        .about-content h2 {
            color: rgba(155, 39, 176, 1);
            margin-bottom: 1.5rem;
            font-size: 2rem;
            font-weight: 800;
            text-shadow: rgba(52, 152, 219, 0.9);
        }
        
        .about-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            line-height: 1.8;
        }
        
        .team-section {
            margin-top: 4rem;
        }
        
        .team-title {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 1rem;
        }
        
        .team-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .team-members {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        
        .team-member {
            flex: 1 1 250px;
            max-width: 250px;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 
                0 5px 15px rgba(0, 0, 0, 0.1),
                0 10px 20px rgba(155, 39, 176, 0.1),
                0 0 0 3px rgba(52, 152, 219, 0.1);
            text-align: center;
            transition: 
                transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.5s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(52, 152, 219, 0.2);
        }
        
        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }
        
        .team-member:hover {
            transform: 
                translateY(-10px) 
                rotate(1deg) 
                scale(1.03);
            box-shadow: 
                0 15px 30px rgba(0, 0, 0, 0.15),
                0 20px 40px rgba(155, 39, 176, 0.2),
                0 0 0 5px rgba(52, 152, 219, 0.2);
            border: 1px solid rgba(155, 39, 176, 0.3);
        }
        
        .team-member:hover::before {
            opacity: 0.1;
        }
        
        .team-member img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 5px solid var(--light-color);
            transition: 
                border-color 0.5s ease,
                transform 0.5s ease;
        }
        
        .team-member:hover img {
            border-color: var(--secondary-color);
            transform: scale(1.05);
        }
        
        .team-member h3 {
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        
        .team-member:hover h3 {
            color: var(--secondary-color);
        }
        
        .team-member p {
            color: var(--primary-color);
            font-weight: 300;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }
        
        .team-member:hover p {
            color: var(--secondary-color);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .social-links a {
            color: var(--dark-color);
            font-size: 1.2rem;
            transition: 
                color 0.3s ease,
                transform 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .title {
                font-size: 2rem;
            }
            
            .description {
                font-size: 1rem;
            }
            
            .col-3, .team-member {
                flex: 1 1 100%;
                max-width: 100%;
            }
            
            .about-content {
                padding: 2rem 1rem;
            }
        }
        /* استایل آیکون‌های اصلی */
   /* استایل آیکون‌های اصلی با افکت معکوس رنگ */
        .col-3 a {
            color: rgba(155, 39, 176, 0.95); /* بنفش پررنگ (حالت عادی) */
            text-decoration: none;
            display: inline-block;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            filter: drop-shadow(0 4px 8px rgba(155, 39, 176, 0.3));
            transition: 
                all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .col-3:hover a {
            color: rgba(52, 152, 219, 0.9); /* آبی پررنگ (حالت هاور) */
            transform: scale(1.15) rotate(8deg);
            filter: drop-shadow(0 6px 12px rgba(52, 152, 219, 0.4));
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        
        /* استایل آیکون‌های شبکه‌های اجتماعی */
        .social-links a {
            color: rgba(155, 39, 176, 0.9);
            font-size: 1.3rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            filter: drop-shadow(0 3px 6px rgba(155, 39, 176, 0.3));
            transition: 
                all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: rgba(255, 255, 255, 0.2);
            padding: 10px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .social-links a:hover {
            color: rgba(52, 152, 219, 0.95);
            transform: translateY(-5px) scale(1.1);
            filter: drop-shadow(0 5px 10px rgba(52, 152, 219, 0.4));
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 4px 8px rgba(0, 0, 0, 0.2),
                inset 0 0 0 2px rgba(255, 255, 255, 0.4);
        }
        
        /* سایه‌های جذاب برای کادرها */
        .col-3, .team-member {
            box-shadow: 
              0 8px 25px rgba(0, 0, 0, 0.15), 0 10px 30px rgb(52 94 219 / 67%), 0 0 0 3px rgb(199 22 231 / 1%)
        }
        
        .col-3:hover, .team-member:hover {
            box-shadow: 
                0 15px 40px rgba(0, 0, 0, 0.2),
                0 20px 50px rgba(52, 152, 219, 0.3),
                0 0 0 5px rgba(155, 39, 176, 0.4);
            transform: translateY(-10px) scale(1.02);
        }

         @media (max-width: 768px){
          .col-3{
            margin-bottom: 2rem;
          }
         }























.banner-total{
  padding-right: 57px!important;
}



















/* blog */
            /* استایل‌های کلی */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }
    
    /* استایل‌های بخش بلاگ */
    .blog-container {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
        
    }
    
    .blog-post-item {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15), 
            0 10px 30px rgba(52, 94, 219, 0.67), 
            0 0 0 3px rgba(199, 22, 231, 0.1);
        transition: 
            transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            box-shadow 0.5s ease;
        margin-bottom: 0;
        padding-bottom: 0;
        position: relative;
        border: 1px solid rgba(52, 152, 219, 0.2);
    }
    
    .blog-post-item:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.2),
            0 20px 50px rgba(52, 152, 219, 0.3),
            0 0 0 5px rgba(155, 39, 176, 0.4);
        border: 1px solid rgba(155, 39, 176, 0.3);
    }
    
    .blog-post-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .blog-post-item:hover img {
        transform: scale(1.05);
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-content h2 {
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }
    
    .blog-post-item:hover .post-content h2 {
        color: rgba(155, 39, 176, 0.9);
    }
    
    /* استایل‌های سایدبار */
    .side-nav {
        background: white;
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15), 
            0 10px 30px rgba(52, 94, 219, 0.67), 
            0 0 0 3px rgba(199, 22, 231, 0.1);
    }
    
    .side-nav-head h4 {
        color: #333;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .list-group-item {
        padding: 0.75rem 1.25rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        margin-bottom: 0.5rem;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .list-group-item:hover {
        background-color: rgba(155, 39, 176, 0.1);
        border-color: rgba(155, 39, 176, 0.3);
    }
    
    /* استایل‌های تب‌ها */
    .tabs {
        background: white;
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15), 
            0 10px 30px rgba(52, 94, 219, 0.67), 
            0 0 0 3px rgba(199, 22, 231, 0.1);
    }
    
    .nav-tabs > li > a {
        color: #555;
        font-weight: 500;
    }
    
    .nav-tabs > li.active > a {
        color: rgba(155, 39, 176, 0.9);
    }
    
    .tab-post {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .tab-post-link {
        color: #333;
        transition: color 0.3s ease;
    }
    
    .tab-post-link:hover {
        color: rgba(155, 39, 176, 0.9);
        text-decoration: none;
    }
    
    /* استایل‌های تگ‌ها */
    .tag {
        display: inline-block;
        background: #f5f5f5;
        padding: 0.3rem 0.8rem;
        margin: 0 0.5rem 0.5rem 0;
        border-radius: 20px;
        color: #555;
        transition: all 0.3s ease;
    }
    
    .tag:hover {
        background: rgba(155, 39, 176, 0.1);
        color: rgba(155, 39, 176, 0.9);
        text-decoration: none;
    }
    
    /* رسپانسیو */
    @media (max-width: 768px) {
        .blog-post-item {
            flex: 1 1 100%;
            max-width: 100%;
        }
    }







/* detailblog */



 /* استایل‌های صفحه جزئیات وبلاگ */
            .blog-detail-container {
                background: white;
                border-radius: 10px;
                padding: 2rem;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 
                            0 10px 30px rgba(52, 94, 219, 0.67), 
                            0 0 0 3px rgba(199, 22, 231, 0.1);
                margin-bottom: 2rem;
            }
            
            .blog-detail-header {
                margin-bottom: 2rem;
                padding-bottom: 1rem;
                border-bottom: 1px solid #eee;
            }
            
            .blog-detail-title {
                font-size: 2rem;
                color: #333;
                margin-bottom: 1rem;
                line-height: 1.3;
            }
            
            .blog-meta {
                display: flex;
                gap: 1.5rem;
                color: #777;
                font-size: 0.9rem;
            }
            
            .blog-meta .meta-item i {
                margin-left: 5px;
            }
            
            .blog-detail-image {
                margin-bottom: 2rem;
                overflow: hidden;
                border-radius: 8px;
            }
            
            .blog-detail-image img {
                width: 100%;
                height: auto;
                transition: transform 0.5s ease;
            }
            
            .blog-detail-image:hover img {
                transform: scale(1.02);
            }
            
            .image-caption {
                text-align: center;
                font-size: 0.9rem;
                color: #777;
                margin-top: 0.5rem;
                font-style: italic;
            }
            
            .blog-detail-content {
                line-height: 1.8;
                color: #555;
            }
            
            .blog-detail-content p {
                margin-bottom: 1.5rem;
            }
            
            .blog-detail-content h2, 
            .blog-detail-content h3, 
            .blog-detail-content h4 {
                margin: 2rem 0 1rem;
                color: #333;
            }
            
            .blog-detail-content blockquote {
                border-right: 4px solid rgba(155, 39, 176, 0.7);
                background: rgba(155, 39, 176, 0.05);
                padding: 1.5rem;
                margin: 2rem 0;
                font-style: italic;
            }
            
            .blog-detail-content blockquote footer {
                margin-top: 1rem;
                font-style: normal;
                font-weight: bold;
            }
            
            .tags-container {
                margin: 2rem 0;
                padding: 1rem 0;
                border-top: 1px solid #eee;
                border-bottom: 1px solid #eee;
            }
            
            .tags-title {
                font-weight: bold;
                margin-left: 1rem;
            }
            
            /* استایل‌های باکس نویسنده */
            .author-box {
                display: flex;
                gap: 1.5rem;
                padding: 1.5rem;
                background: #f9f9f9;
                border-radius: 8px;
                margin: 2rem 0;
                border: 1px solid #eee;
            }
            
            .author-avatar {
                flex: 0 0 80px;
            }
            
            .author-avatar img {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                object-fit: cover;
            }
            
            .author-info {
                flex: 1;
            }
            
            .author-name {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
                color: #333;
            }
            
            .author-bio {
                font-size: 0.9rem;
                color: #666;
                margin-bottom: 0.5rem;
            }
            
            .author-social a {
                display: inline-block;
                margin-left: 0.8rem;
                color: #777;
                transition: color 0.3s ease;
            }
            
            .author-social a:hover {
                color: rgba(155, 39, 176, 0.9);
            }
            
            /* استایل‌های بخش نظرات */
            .comments-section {
                margin-top: 3rem;
            }
            
            .comments-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
                padding-bottom: 1rem;
                border-bottom: 1px solid #eee;
            }
            
            .comment-list {
                margin-bottom: 3rem;
            }
            
            .comment-item {
                margin-bottom: 1.5rem;
                padding-bottom: 1.5rem;
                border-bottom: 1px solid #eee;
            }
            
            .comment-item.reply {
                margin-right: 3rem;
                margin-top: 1.5rem;
                border-bottom: none;
                padding-bottom: 0;
            }
            
            .comment-content {
                position: relative;
                padding-right: 70px;
            }
            
            .comment-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 0.5rem;
            }
            
            .comment-author {
                font-size: 1rem;
                color: #333;
                margin: 0;
            }
            
            .comment-date {
                font-size: 0.8rem;
                color: #999;
            }
            
            .comment-text {
                font-size: 0.95rem;
                color: #555;
                line-height: 1.6;
            }
            
            .comment-reply {
                display: inline-block;
                margin-top: 0.5rem;
                font-size: 0.9rem;
                color: rgba(155, 39, 176, 0.9);
                text-decoration: none;
            }
            
            /* استایل‌های فرم نظر */
            .comment-form {
                background: #f9f9f9;
                padding: 2rem;
                border-radius: 8px;
                margin-top: 2rem;
            }
            
            .form-title {
                font-size: 1.3rem;
                margin-bottom: 1.5rem;
                color: #333;
            }
            
            .form-group {
                margin-bottom: 1.5rem;
            }
            
            .form-control {
                width: 100%;
                padding: 0.75rem;
                border: 1px solid #ddd;
                border-radius: 4px;
                transition: border-color 0.3s ease;
            }
            
            .form-control:focus {
                border-color: rgba(155, 39, 176, 0.7);
                outline: none;
            }
            
            .btn-primary {
                background-color: rgba(155, 39, 176, 0.9);
                color: white;
                border: none;
                padding: 0.75rem 1.5rem;
                border-radius: 4px;
                cursor: pointer;
                transition: background-color 0.3s ease;
            }
            
            .btn-primary:hover {
                background-color: rgba(155, 39, 176, 1);
            }
            
            /* رسپانسیو */
            @media (max-width: 768px) {
                .blog-detail-title {
                    font-size: 1.5rem;
                }
                
                .blog-meta {
                    flex-direction: column;
                    gap: 0.5rem;
                }
                
                .author-box {
                    flex-direction: column;
                }
                
                .comment-item.reply {
                    margin-right: 1.5rem;
                }
                
                .comment-content {
                    padding-right: 0;
                }
            }





















         
/* greencss */


.nav-tabs.nav-top-border>li.active>a,
.nav-tabs.nav-top-border>li.active>a:hover {
	border-top-color:rgba(155, 39, 176, 1) !important;
}
.nav-tabs.nav-bottom-border>li.active>a,
.nav-tabs.nav-bottom-border>li.active>a:hover {
	border-bottom-color:rgba(155, 39, 176, 1) !important;
}
.nav-tabs.nav-alternate>li.active>a {
	background-color: rgba(155, 39, 176, 1) !important;
}
.nav-tabs>li.active>a {
	color: rgba(155, 39, 176, 1) !important;
}




   












         