/* #ef0008 */
 /* استایل عمومی */
.dreamit-about-single-img img.ty1 {
  width: 530px;
  height: 350px;
}

/* رسانه‌های پرس‌وجو (در انتها باشند) */
@media (max-width: 768px) {
  .dreamit-about-single-img img.ty1 {
    width: 250px !important;
    height: 250px !important;
  }
}
/* ردیف توضیح  */


  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: 700 15px/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: 8px 0;
            z-index: 1000;
            
        }
        
       .nav-container {
    width: 87.7%;
    background: #fdfbfb;
    /* background: #dde9e9; */
    border-radius: 10px;
    padding: 13px 25px;
    box-shadow: 0 4px 20px rgb(104, 6, 32);
    /* 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: #c9262b;
            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;
        }
 






.navbar.scrolled {
    top: 0;
    width: 100%;
    padding: 0;
}

.navbar.scrolled .nav-container {
    width: 100%;
    border-radius: 0;
    padding: 10px 20px; /* دلخواه: فاصله کمی برای ظاهر بهتر */
}
/* مهم */

 .navbar.scrolled .nav-container {
   padding-left: 110px!important;
   padding-right:120px!important ;
}


.navbar.scrolled .cart-icon {
    left: 100px !important;
}






.hero-area {
  position: relative;
  padding:  0;
  /* background: #f9f9f9; */
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #333;
}

.hero-subtitle {
  display: block;
      font-size: 1.9rem;
    font-weight: 700;
  color: #c9262b;
  margin-bottom: 35px;
  padding-right: 15px;
}

.hero-title {
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-title span {
  color: #c9262b;
}

.hero-icon-box {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.hero-icon-box .icon {
    width: 10px;
    height: 10px;
    background: #c9262b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    padding: 1rem;
}

.hero-icon-box .media-body span {
  display: block;
  font-size: 0.9rem;
  color: #777777;
}

.hero-icon-box h4 a {
  color: #333;
  text-decoration: none;
}

/* اسلایدر اصلی */


/* تامبنیل‌های عمودی */
/* .hero-thumb-wrap {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
} */

.hero-thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hero-thumb.active,
.hero-thumb:hover {
  border-color: #ff6f00;
  transform: scale(1.1);
}

.hero-slider-wrapper {
  position: relative;
}
/* ریسپانسیو */
@media (max-width: 992px) {
  .hero-thumb-wrap {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }

  .hero-thumb {
    width: 40px;
    height: 40px;
  }

  .hero-slider {
    height: 350px;
  }
}




.hero-slider .slick-slide {
  height: 100%;
}
.hero-slider .single-h-slider {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}




.hero-slider .slick-slide {
  height: 100%;
}


.hero-area {
  position: relative;
  z-index: 10; /* بالاتر از نوار منو (که z-index: 1000 دارد؟ نه!) */
}

/* هدر */


/* مطمئن شویم اسلایدها قابل مشاهده هستند */
.hero-slider .slick-list,
.hero-slider .slick-track {
  height: 100%;
}



  /* استایل‌های اسلایدر ساده */
  

.hero-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.hero-thumb.active,
.hero-thumb:hover {
  border-color: #ff6f00;
  transform: scale(1.1);
  opacity: 1;
}




.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
  }

  
  .single-h-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }



  
  .single-h-slider.active {
    opacity: 1;
  }
  
  .hero-thumb-wrap {
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
  }
    
  .hero-thumb {
    width:80px;
    height:80px;
    border-radius:50%;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
  }
  
  
  .hero-thumb.active,
  .hero-thumb:hover {
    border-color: #c9262b;
    transform: scale(1.1);
    opacity: 1;
    padding: 1rem;
  }
    
  .hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border-color: #c9262b!important;
  }
  .container {
    position: relative;
    width: 1320px;
    
}

.pxbanner_slider {
      width: 95%;
      max-width: 600px;
      float: right;
      background-color: rgb(168 8 48 / 10%); /* همان قرمز، 80% ناشفاف */
      padding: 60px 70px;
      border-radius: 20px;
      color: rgb(82, 81, 81);
      text-align: center;
      box-sizing: border-box;
    }

    .pxbanner_slider h1 {
      margin: 0 0 20px;
      font-size: 20px;
      /* font-weight: bold; */
    line-height: 2rem;
    }

    .pxbanner_slider p {
      margin: 0;
      font-size: 16px;
      line-height: 1.6;
    }






    .contact-button {
  padding: 14px 45px;
  background: linear-gradient(90deg, #c9262b, #a96b64, #c9262b);
  background-size: 200% auto;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
  animation: gradientMove 3s infinite alternate;
  margin-top: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
/* .pxbanner_slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  float: left;
  background-color: rgba(168, 8, 48, 0.1);
  padding: 60px 70px;
  border-radius: 20px;
  color: rgb(82, 81, 81);
  text-align: center;
  box-sizing: border-box;
}

.pxbanner_slider::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #a80830, transparent);
  animation: pulseLine 2s infinite;
}

@keyframes pulseLine {
  0%, 100% { opacity: 0; height: 0; }
  50% { opacity: 1; height: 60px; }
} */


.highlight-experience {
  position: relative;
  color: #c9262b;
}

.highlight-experience::after {
  content: '';
  position: absolute;
  bottom: -4px;        /* نزدیک‌تر به متن */
  left: 0;
  width: 100%;
  height: 0;
  border-bottom: 2px dotted #c9262b; /* خط نقطه‌چین */
  opacity: 0;
  animation: drawDottedLine 3s infinite;
}
@keyframes drawDottedLine {
  0%, 10% {
    width: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50%, 60% {
    width: 100%;
    opacity: 1;
  }
  90%, 100% {
    width: 0;
    opacity: 0;
  }
}
/* دایرهٔ شناور در سمت راست پایین */
.floating-contact-circle {
  position: absolute;
  bottom:70px;
  left: 100px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

/* دایرهٔ داخلی: دکمه */
.contact-button-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #c9262b; /* قرمز با شفافیت */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
  backdrop-filter: blur(6px);
  border: 2px solid white;
  transition: transform 0.3s;
}

.contact-button-circle:hover {
  transform: scale(1.05);
}
.contact-button-circle:active {
 color:#fff !important;;
}
/* حلقهٔ خط چین متحرک */
.rotating-dashed-border {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px dashed #c9262b;
  border-radius: 50%;
  animation: rotate 8s linear infinite;
  z-index: 1;
}

/* آیکن‌های تماس روی حلقه */
.contact-icons {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation: rotate 12s linear infinite reverse;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.contact-icons i {
  position: absolute;
  font-size: 16px;
  color: #c9262b;
  opacity: 0;
  animation: fadeInOut 8s infinite;
}

/* قرار دادن آیکن‌ها در موقعیت‌های مختلف دور دایره */
.contact-icons i:nth-child(1) { transform: rotate(0deg) translate(60px) rotate(0deg); animation-delay: 0s; }
.contact-icons i:nth-child(2) { transform: rotate(90deg) translate(60px) rotate(-90deg); animation-delay: 2s; }
.contact-icons i:nth-child(3) { transform: rotate(180deg) translate(60px) rotate(-180deg); animation-delay: 4s; }
.contact-icons i:nth-child(4) { transform: rotate(270deg) translate(60px) rotate(-270deg); animation-delay: 6s; }

/* انیمیشن چرخش */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* انیمیشن نمایش/پنهان‌شدن آیکن‌ها */
@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
}







.p-pc{
  padding-left: 2rem;
  padding-right: 2rem;
}


.p-pc1{
  padding-left: 0!important;
  padding-right:0!important ;
}





/* Media Query برای تبلت */
@media (max-width: 992px) {
.hero-title {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .pxbanner_slider h1 {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    white-space: normal !important;
  }

  .hero-content {
    height: auto !important;
    padding-top: 5rem !important;
  }
  
  .hero-thumb-wrap {
    position: static !important;
    transform: none !important;
    flex-direction: row !important;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
  }
  
  .hero-thumb {
    width: 70px !important;
    height: 70px !important;
  }
  
  .floating-contact-circle {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    margin: 25px auto 0 auto;
    transform: none !important;
  }
  .container{
    width: unset!important;
  }
}
 .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    /* padding-left: 2rem !important; */
    padding-right: 2rem !important;
}
/* Media Query برای موبایل */
@media (max-width: 768px) {
  .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-left:2rem !important;
    padding-right:2rem !important;
}
  .p-pc1{
  padding-left:2rem;
  padding-right:2rem;
}
    .container{
    width: unset!important;
  }
 .hero-title {
    font-size: 0.9rem !important;
    line-height: 1.8 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: justify !important;
    padding: 0 10px !important;
  }
  
  .pxbanner_slider {
    padding: 20px 15px !important;
  }
  
  .pxbanner_slider h1 {
    font-size: 0.9rem !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center !important;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
  
  .hero-content {
    padding-top: 6.5rem !important;
    /* padding-left: 1rem !important; */
    padding-right: 1rem !important;
  }
  
  .hero-slider {
    height: 300px !important;
  }
  
  .hero-thumb {
    width: 55px !important;
    height: 55px !important;
  }
  
  .floating-contact-circle {
    margin: 20px auto 0 auto;
  }
  
  .nav-container {
    width: 95% !important;
  }
}

/* Media Query برای موبایل‌های کوچک */
@media (max-width: 480px) {
    .container{
    width: unset!important;
  }
.hero-title {
    font-size: 0.8rem !important;
    line-height: 1.7 !important;
    padding: 0 5px !important;
  }
  
  .pxbanner_slider h1 {
    font-size: 0.8rem !important;
    line-height: 1.7 !important;
  }
  
  .pxbanner_slider {
    padding: 15px 10px !important;
  }

  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-thumb {
    width: 45px !important;
    height: 45px !important;
  }
  
  .hero-slider {
    height: 250px !important;
  }
}

/* جایگزین با استفاده از box-shadow */
@media (max-width: 992px) {
  .hero-thumb.active {
    padding: 0 !important;
    border-width: 2px !important;
    box-shadow: 0 0 0 8px rgba(168, 8, 48, 0.3);
  }
}

@media (max-width: 768px) {
  .hero-thumb.active {
    box-shadow: 0 0 0 6px rgba(168, 8, 48, 0.3);
  }
}


/* section div.row>div {
    margin-bottom: 20px!important;
} */

@media only screen and (max-width: 768px) {
    section div.row>div

 {
        margin-bottom: 20px!important;
    }
}


































/* اضافه کردن استایل برای تب‌های فعال */
/* .property-tab-menu .list-group-item.active {
    background-color: #007bff;
    color: #fff;
} */

/* نمایش تب فعال */
.tab-pane.active.show {
    display: block !important;
    opacity: 1;
}

/* بهبود transition برای تب‌ها */
.tab-content > .tab-pane {
    transition: opacity 0.3s ease-in-out;
}

/* استایل برای hover روی تب‌ها */
.property-tab-menu .list-group-item:hover {
    background-color: #f8f9fa;
    color: #000;
}

.property-tab-menu .list-group-item.active:hover {
    /* background-color: #007bff; */
    background-color: #c9262b;
    color: #fff;
}


.property-details-area {
    position: relative;
    top:-65px;
    /* padding-bottom: 100px; */
    margin-bottom: 40px;
    z-index: 22;
}
.property-details-area .container-fluid {
    padding: 0;
}
.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
    transition-delay: .1s;
}
[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0);
}
[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
    transition-duration: 1.5s;
}
[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity,transform;
}
.property-tab-inner {
    background: transparent;
    margin: 0px 60px;
    z-index: 1;
}

.property-tab-menu {
    margin-left: 50px;
    width: max-content;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.06);
}
.property-tab-menu .list-group {
    display: flex;
    flex-direction: initial;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0;
}
.property-tab-menu .list-group-item {
    font-size: 16px;
}
.property-tab-menu .list-group-item {
    position: relative;
    display: block;
    padding: 10px 32px;
    text-decoration: none;
    background-color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    border-radius: 8px;
}
.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.tab-content>.tab-pane {
    display: none;
}
.fade:not(.show) {
    opacity: 0;
}
.fade {
    transition: opacity .15s linear;
}
/* .property-tab-d-inner {
    background: #fff;
    padding: 20px 50px 50px 50px;
    box-shadow: 0px 13px 35px #0000000a;
    border-radius: 6px;
} */
.single-property-details {
    margin-top: 30px;
    
}
.single-property-details label {
    font-size: 15px;
}
.single-property-details label {
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}
select {
    border: 1px solid #ccc;
}
body, button, input, select, optgroup, textarea {
    color: #818790;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
body, button, input, select, optgroup, textarea {
    color: #818790;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
select {
    word-wrap: normal;
}
.single-property-details .nice-select {
    padding: 15px 20px;
}
.single-property-details .nice-select {
    width: 100%;
    height: 60px;
    border-radius: 12px;
    border: 1px solid #F1F1F1;
    box-shadow: 0px 12px 30px #00000012;
    color: #818790;
    font-size: 14px;
    padding: 15px 30px;
    font-weight: 400;
    margin: 0;
}
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 15px;
    font-weight: normal;
    height: 42px;
    line-height: 27px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
    margin-bottom: 16px;
}
.single-property-details .nice-select .list {
    margin-top: 5px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px #0000000d;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0;
}
.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}
.single-property-details .nice-select .option {
    padding: 0px 20px;
}
.single-property-details .nice-select .option {
    list-style: none;
    min-height: 40px;
    outline: none;
    text-align: left;
    transition: all 0.3s;
    display: block;
    background: transparent;
    color: #818790;
    margin: 0;
    padding: 0px 30px;
    border-radius: 0;
    border: none;
    font-size: 14px;
    font-weight: 400;
}
.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    display: inherit;
}
.single-property-details {
    margin-top: 30px;
}
.single-property-details {
    margin-top: 30px;
}
.single-property-details label {
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}
.single-property-details label {
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}
.single-property-details label {
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}
.your-location input {
    padding: 15px 20px;
}
.your-location input {
    width: 100%;
    height: 60px;
    border-radius: 12px;
    border: 1px solid #F1F1F1;
    box-shadow: 0px 12px 30px #00000012;
    color: #818790;
    font-size: 14px;
    padding: 15px 30px;
    font-weight: 400;
}
.single-property-details {
    margin-top: 30px;
}
.single-property-details {
    margin-top: 30px;
}
.single-property-details label {
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}
select {
    border: 1px solid #ccc;
}
.single-property-details .nice-select .list {
    margin-top: 5px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px #0000000d;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0;
}
.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}
.tab-content {
    padding: 0!important;
}


















/* اصلاح ساختار تب‌ها */
.property-tab-details {
    margin-top: 20px;
    clear: both;
}

.property-tab-d-inner {
    background: #fff;
    padding: 30px;
    box-shadow: 0px 13px 35px #0000000a;
    border-radius: 7px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* .tab-content {
    min-height: 200px;
} */

/* اطمینان از نمایش صحیح تب‌ها */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane.show {
    display: block;
}

/* بهبود ظاهر تب‌های فعال */
.property-tab-menu .list-group-item.active {
    background-color: #c9262b;
    color: #fff;
    border-color: #c9262b;
}

.property-tab-menu .list-group-item {
    transition: all 0.3s ease;
}

.property-tab-menu .list-group-item:hover {
    background-color: #f8f9fa;
}

/* تنظیمات برای ریسپانسیو */
@media (max-width: 768px) {
  .property-tab-menu .list-group-item{
    font-size: 10px;
    font-weight: 500;
  }
    .property-tab-inner {
        margin: 0px 20px;
    }
    
    .property-tab-menu {
        margin-left: 0;
        width: 100%;
        margin-top: 6rem;
    }
    
    .property-tab-d-inner {
        padding: 20px;
    }
    
    .property-details-area .container {
        margin-right: 0 !important;
    }
}
/* کاهش فاصله بین تب‌ها و محتوای آنها */
.property-tab-details {
    margin-top: 0 !important;
}
/* 
.property-tab-d-inner {
    padding-top: 10px !important;
    padding-bottom: 30px !important;
} */

.property-tab-inner {
    margin: 0px 60px 0px 60px !important;
}

/* کاهش فاصله تب منو از محتوا */
.property-tab-menu {
    margin-bottom: 0 !important;
}

/* اگر نیاز به کاهش بیشتر فاصله دارید */
.tab-content {
    margin-top: -10px !important;
}

/* برای موبایل */
@media (max-width: 768px) {
    .property-tab-d-inner {
        padding-top: 25px !important;
        padding-bottom: 20px !important;
    }
    
    .property-tab-inner {
        margin: 0px 20px 0px 20px !important;
    }
}
p, pre, ul, ol, dl, dd, blockquote, address, table, fieldset, form {
    margin-bottom: 0!important;
}



.pulse-only {
  position: relative;
  display: inline-block;
  /* هیچ انیمیشنی روی خود آیکون نیست! */
}

.pulse-only::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #c9262b; /* همون رنگ قرمز #a80830 با شفافیت */
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
  animation: ripple-out 1.8s infinite ease-out;
}

@keyframes ripple-out {
  to {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}












/* about index */
.pb1-70 {
    padding-bottom: 40px;
}
/* .pt-80 {
    padding-top: 80px!important;
} */
.dreamit-about-single-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.icon-thumb {
    float: left;
    margin: 17px 25px 0 0px;
}
.dreamit-about-awarded h2 {
    font-size: 24px;
    margin-bottom: 5px;
}
.pl-40 {
    padding-left: 40px;
}
.dreamit-section-title h4 {
    font-size:28px!important;
    font-weight: 800!important;
    color: #c9262b;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    padding: 0;
    letter-spacing: 1px;
    z-index: 1;
}
.dreamit-section-title h4:before {
    position: absolute;
    content: "";
    right: 100px;
    top: 15px;
    height: 4px;
    width: 80px;
    background: #c9262b;
    border: 4px solid transparent;
    border-bottom: 0;
    border-radius: 0 0px 15px 15px;
}
.dreamit-section-title h3 {
    font-size: 38px;
    font-weight: 800;
    margin-top: 0;
    line-height: 1.2;
}
.dreamit-section-title p {
    font-size: 17px;
}
.pt-15 {
    padding-top: 15px;
}
.dreamit-about-content {
    margin-top: 28px;
}
.dreamit-about-title h2 {
    font-size: 22px;
    font-family: 'Montserrat';
    margin: 16px 0 7px;
    transition: .5s;
}
.dreamit-about-title p {
    color: #63636b;
    margin-bottom: 25px;
}
.dreamit-about-icon i {
    display: inline-block;
    font-size: 40px;
    color: #c9262b;
    transition: .5s;
}
.flaticon-developer:before {
    content: "\f11f";
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-size: inherit;
    font-style: normal;
}

.dreamit-about-content-box {
    border-radius: 30px 30px 0 0;
    background: #fff;
    position: relative;
    padding: 20px 30px 28px 30px!important;
    border-top: 9px solid #c9262b;
    box-shadow: 0 8px 65px rgba(12,12,12,.19);
    z-index: 1;
    width: 70%;
    margin: auto;
    margin-left: 100px;
    margin-top: -80px;
    margin-bottom: 30px;
    padding-bottom: 2rem;
}
.dreamit-about-awarded h2 {
    font-size: 24px;
    margin-bottom: 5px;
}













/* .dreamit-about-single-img::before {
    content: "";
    border: none;
    width: 75%;
    height: 85%;
    background: #a80830;
    position: absolute;
    z-index: -1;
    left: 62px;
    bottom: 100px;
    border-radius: 10px;
} */

.dreamit-about-single-img::before {
    content: "";
    border: none;
    width: 75%;
    height: 85%;
    background-color: #c9262b; /* رنگ پایه قرمز */
    background-image: radial-gradient(circle, white 1px, transparent 1px); /* نقطه‌چین سفید */
    background-size: 10px 10px; /* فاصله بین نقاط */
    position: absolute;
    z-index: -1;
    left: 62px;
    bottom: 100px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}




.dst1{
  display: flex!important;
}
.dreamit-about-content {
    display: flex;
    align-items: flex-start; /* آیکون و متن از بالا همتراز شوند */
    margin-top: 28px;
    gap: 15px; /* فاصله بین آیکون و متن */
      align-items: center; /* آیکون وسط محتوای متنی شود */
}

.dreamit-about-icon {
    flex-shrink: 0; /* جلوگیری از کوچک شدن آیکون */
}

.dreamit-about-icon i {
    font-size: 32px; /* کمی کوچک‌تر برای تناسب بیشتر */
    color: #c9262b;
    line-height: 1; /* فاصله عمودی بهتر */
}
.dreamit-about-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
}
.dreamit-about-icon {
    flex-shrink: 0;
}
.dreamit-about-icon i,
.dreamit-about-icon span {
    font-size: 40px;
    line-height: 1;
}

















/* portfolio index */


/* انیمیشن هاله نوری */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(176, 2, 8, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(176, 2, 8, 0.6);
  }
  100% {
    box-shadow: 0 0 5px rgba(176, 2, 8, 0.3);
  }
}

/* اعمال روی باکس پرتفولیو */
.portfolio-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  animation: glow 2s infinite;
  /* برای جلوگیری از لرزش ظاهری، می‌توانید animation با hover فعال شود */
  /* animation: none; ← پیش‌فرض بدون انیمیشن */
}

/* بهتر است هاله فقط در hover فعال شود (اختیاری ولی پیشنهادی) */
.portfolio-item:hover {
  animation: glow 1.8s infinite;
}
/* کاهش ارتفاع تصویر */
.portfolio-img {
  width: 100%;
  height: auto;
  max-height: 300px; /* ← این مقدار را بر اساس نیاز تنظیم کنید */
  object-fit: cover;
}

/* کاهش ارتفاع تیتر در حالت عادی */
.portfolio-title-glass {
  min-height: 40px; /* مثلاً از 44 به 40 کاهش یافت */
}

/* کاهش ارتفاع تیتر در حالت hover */
.portfolio-item:hover .portfolio-title-glass {
  min-height: 90px; /* یا هر مقدار کمتری که بخواهید */
}



 .nav-pills .nav-link {
      border-radius: 20px;
      padding: 8px 20px;
      font-weight: 600;
    }
    .nav-pills .nav-link.active {
      background-color: #c9262b;
    }

    .portfolio-item {
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .portfolio-img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* .portfolio-title-glass {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px;
      background: rgba(163, 17, 17, 0.25);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      color: #430212;
       text-align: center;
      text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    } */

    .portfolio-title-glass h5 {
      margin: 0;
      font-size: 1.1rem;
    }

    .portfolio-title-glass .categories {
      font-size: 0.85rem;
      opacity: 0.9;
    }

    /* Hide filtered items */
    .portfolio-item.hidden {
      display: none;
    }
    .portfolio-tabs {
  display: flex;
  flex-direction: row-reverse; /* برعکس کردن جهت → اولین آیتم سمت راست */
  justify-content: flex-end;   /* چسبیدن به راست */
  padding: 0;
  margin: 0 auto 30px auto;
  flex-wrap: wrap;
  gap: 0; /* بدون فاصله */
}

.portfolio-tabs .nav-item {
  margin: 0;
}

.portfolio-tabs .nav-link {
  /* border: 1px solid #0d6efd; */
  color: rgb(103, 102, 102);
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 0;
  margin: 0;
  transition: all 0.2s;
}

/* گرد کردن فقط اولین و آخرین (اما با توجه به row-reverse!) */
.portfolio-tabs .nav-item:first-child .nav-link {
  /* این الان آخرین تب ظاهری (سمت چپ) است */
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.portfolio-tabs .nav-item:last-child .nav-link {
  /* این اولین تب ظاهری (سمت راست) است */
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.portfolio-tabs .nav-link.active {
  background-color: #c9262b;
  color: white;
}
.dreamit-section-title1 h4 {
    font-size: 28px!important;
    font-weight: 800!important;
    color: #c9262b;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    padding: 0;
    letter-spacing: 1px;
    z-index: 1;
}
.dreamit-section-title1 h4:before {
    position: absolute;
    content: "";
    right:250px;
    height: 4px;
    width: 80px;
    background: #c9262b;
    border: 4px solid transparent;
    border-bottom: 0;
    border-radius: 0 0px 15px 15px;
    top: 15px;
}
.dreamit-section-title1 h4:after {
    position: absolute;
    content: "";
    left:250px;
    height: 4px;
    width: 80px;
    background: #c9262b;
    border: 4px solid transparent;
    border-bottom: 0;
    border-radius: 0 0px 15px 15px;
    top: 15px;
}
.dreamit-section-title2 h4 {
    font-size: 28px!important;
    font-weight: 800!important;
    color: #c9262b;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    padding: 0;
    letter-spacing: 1px;
    z-index: 1;
}
.dreamit-section-title2 h4:before {
    position: absolute;
    content: "";
    right:180px;
    height: 4px;
    width: 80px;
    background: #c9262b;
    border: 4px solid transparent;
    border-bottom: 0;
    border-radius: 0 0px 15px 15px;
    top: 15px;
}
.dreamit-section-title2 h4:after {
    position: absolute;
    content: "";
    left:180px;
    height: 4px;
    width: 80px;
    background: #c9262b;
    border: 4px solid transparent;
    border-bottom: 0;
    border-radius: 0 0px 15px 15px;
    top: 15px;
}
.mt-lg{
  margin-top: 3rem;
}
.portfolio-title-glass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(176, 2, 8, 0.9); /* پس‌زمینه قرمز/نیمه‌شفاف */
  color: white;
  text-align: center;
  padding: 12px;
  /* فقط ارتفاع اولیه را محدود کن تا فقط تیتر جا شود */
  height: auto;
  min-height: 44px; /* کافی برای یک خط تیتر */
  overflow: hidden; /* مهم: محتوای اضافه مخفی شود */
  transition: height 0.4s ease, min-height 0.4s ease;
}

.portfolio-title-glass h5 {
  margin: 0;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 8px;
}

/* محتوای اضافی در حالت عادی مخفی است */
.portfolio-title-glass .extra-description {
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  padding: 0 8px;
  line-height: 1.4;
}

/* در حالت hover */
.portfolio-item:hover .portfolio-title-glass {
  min-height: 100px; /* یا هر مقداری که نیاز داری */
}

.portfolio-item:hover .portfolio-title-glass .extra-description {
  opacity: 1;
  max-height: 150px; /* باید کافی باشه برای نمایش متن */
}








/* ravan ghale footer */
div.row>div img.img-responsive {
    width: 50%!important;
}
.owl-centered .owl-stage {
    display: flex !important;
    justify-content: center !important;
}



 /* <!-- blogs --> */
 
  /* استایل عمومی برای اسلایدر و باکس‌ها */
  #news .owl-carousel .img-hover {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(182, 7, 19, 0.267); /* سایه آبی ملایم */
    transition: all 0.3s ease;
    padding: 15px;
    border: 1px solid #e0f0f7;
  }

  #news .owl-carousel .img-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(164, 15, 15, 0.25);
    border-color: #c9262b;
  }

  #news .owl-carousel .img-hover img {
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  #news .owl-carousel .img-hover:hover img {
    transform: scale(1.05);
  }

  #news .owl-carousel h4 a {
    color: #c9262b;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  #news .owl-carousel h4 a:hover {
    color: #c9262b;
  }

  #news .owl-carousel p {
    color: #495057;
    line-height: 1.6;
    font-size: 14px;
  }

  #news .owl-carousel ul {
    margin-top: 10px;
  }

  #news .owl-carousel ul li i {
    color: #dcb55e;
  }

  #news .owl-carousel ul li a {
    color: #6c757d;
  }

  #news .owl-carousel ul li a span {
    color: #c9262b !important;
  }

  /* هدر و خط */
  #news h2.t-c {
    color: #c9262b;
    font-weight: 600;
  }

  #news .hrstyle {
    border: 1px solid #c9262b;
    width: 60px;
    margin: 10px auto 30px;
  }

  /* دکمه‌های اسلایدر (Navigation) */
  #news .owl-buttons div {
    background-color: #c9262b !important;
    border: 2px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #news .owl-buttons div:before {
    color: white !important;
    font-size: 18px;
  }

  #news .owl-buttons div:hover {
    background-color: #c9262b !important;
  }




/* callout */
.callout-theme-color {
  background-color: #c9262b !important;
  /* background-image: radial-gradient(circle, rgb(187, 184, 184) 1px, transparent 1px); */
  background-size: 20px 20px; 
  background-repeat: repeat;
  background-position: 0 0;
}



/* footer */
.btn-c1{
  background-color: #c9262b;
  color: white;
}
#footer form .input-group-addon {
    color: #c9262b!important;
    background-color: rgba(0,0,0,.4);
    border-color: rgba(0,0,0,.25);
}
#footer a {
    color: #c9262b!important;
    text-decoration: none;
}






/* brands */
.brand-logo {
  max-width: 105px;      /* عرض حداکثر لوگو */
  height: auto;         /* نسبت تصویر حفظ شود */
  display: block;
  margin: 0 auto;
}
/* .brands-carousel .owl-item {
  padding: 0 !important;
  margin: 0 !important;
} */














/* aboutuspage */
section.page-header.page-header-xs {
    padding: 95px 0 20px 0!important;
}
.about-section {
    position: relative;
}
.padding {
    padding: 50px 0;
}
.section-heading h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    display: block;
    letter-spacing: -1px;
}
.about-content p {
    margin-bottom: 20px;
}
.about-list {
    margin-bottom: 20px;
}
.about-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 19px;
}
.about-list li i {
    color: #c9262b;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #c9262b;
    display: inline-block;
    margin-right: 20px;
    margin-top: 5px;
}
.fa-check:before {
    content: "\f00c";
}

.about-list-content {
    flex: 1;
}
.about-list li h3 {
    margin-bottom: 0;
}
.about-content p {
    margin-bottom: 20px;
}
.about-list li:last-child {
    margin-bottom: 0;
}
.about-btn li {
    display: inline-flex;
    align-items: center;
}
.about-btn li a {
    margin-right: 30px;
}
.default-btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    font-family: "Albert Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 50px;
    line-height: 50px;
    padding: 0 35px;
    letter-spacing: 0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    transition: all ease 700ms;
    -moz-transition: all ease 700ms;
    -webkit-transition: all ease 700ms;
    -ms-transition: all ease 700ms;
    -o-transition: all ease 700ms;
    z-index: 1;
}
.default-btn span {
    background: var(--primary) none repeat scroll 0 0;
    border-radius: 50%;
    display: block;
    height: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -moz-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -webkit-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -ms-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -o-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    width: 0;
    z-index: -1;
}
.about-btn li .whatsapp {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}
.about-btn li .whatsapp {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}
.fa-solid, .fas {
    font-weight: 900;
}
.about-bg-wrap {
    position: relative;
    z-index: 1;
}
.about-bg-wrap {
    position: relative;
    z-index: 1;
}
.about-bg-wrap .exp-box h3 {
    color: var(--secondary);
    display: block;
    font-size: 62px;
    line-height: 42px;
    margin: 0;
}
.about-bg-wrap .front {
    transform: translateY(120px);
}
.about-bg-wrap .exp-box {
    background-color:#c9262b;
    padding: 30px;
    border-radius: 2px;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 140px;
    top: 40px;
    z-index: 1;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
}
.about-bg-wrap .exp-box h3 {
    color: var(--secondary);
    display: block;
    font-size: 62px;
    line-height: 42px;
    margin: 0;
}
.about-bg-wrap .exp-box h3 span {
    color: var(--primary);
    display: block;
    font-size: 15px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 600;
    line-height: 20px;
    margin-top: 10px;
}
element.style {
    will-change: transform;
    transform: translate3d(0px, -17px, 0px);
    transition: transform 0.4s cubic-bezier(0, 0, 0, 1);
}
.about-bg-wrap .img-2 {
    width: 370px;
    height: auto;
    position: absolute;
    left: 290px;
    top: 0;
    border-radius: 2px;
    z-index: -1;
}







@keyframes rotateIn {
    from {
        transform: rotate(-90deg) scale(0);
        opacity: 0;
    }
    to {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

.rotateIn {
    animation: rotateIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}
/* افکت hover برای عکس‌های داخل about-bg-wrap */
.about-bg-wrap .img-1,
.about-bg-wrap .img-2 {
    transition: all 0.4s ease;
    box-shadow:rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(5, 13, 242, 0.12) 0px -12px 30px, rgba(4, 64, 205, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border: 3px solid transparent; /* برای جلوگیری از جابجایی هنگام hover */
}

/* .about-bg-wrap .img-1:hover,
.about-bg-wrap .img-2:hover {
    transform: scale(1.05); /* بزرگ‌تر شدن ملایم */
  /* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(7, 25, 223, 0.12) 0px -12px 30px, rgba(5, 73, 209, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */
    /* border-color: #012970; حاشیه آبی برای برجسته‌تر شدن */
    /* z-index: 10; بالا آمدن روی سایر المان‌ها */
    /* position: relative; برای کار کردن z-index */
/* } */

.stylish-red-btn {
    background: #c9262b; /* رنگ قرمز سایت شما */
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'B Yekan', 'Lato', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(201, 38, 43, 0.4);
    letter-spacing: 1px;
    outline: none;
}

.stylish-red-btn:hover {
    background: #a11d22;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(201, 38, 43, 0.6);
}

.stylish-red-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(201, 38, 43, 0.4);
}

/* افکت موج دار هنگام کلیک (اختیاری ولی جذاب) */
.stylish-red-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.stylish-red-btn:active::after {
    width: 300px;
    height: 300px;
}


















/* blogpage */

/********************************
        BLOG CONTAINER
*********************************/
section {
    display: block;
    position: relative;
    padding: 0 0;
    /* border-bottom: rgba(0,0,0,0.1) 1px solid; */
   
}
.blog_container{
width:100%;
display:flex;
align-items:top;
/* background-color:#f1f1f1; */
}

/*BLOG LEFT CONTENT*/
.blog_content{
padding:6rem;
width:100%;
padding-top: 3.5rem;
padding-bottom: 3.5rem;
}

.blog_content .load-btn{
display:block;
width:150px;
margin:5vh auto;
}

.left_content{
display:flex;
align-items:top;
justify-content: space-between;
flex-wrap:wrap;
column-count: 2;
gap: 20px 10px;
flex:0 0 70%;
}

.right_content{
flex:0 0 30%;
padding-right: 25px;
}

.blog_card{
width:100%;
flex:0 0 48.5%;
overflow:hidden;
background-color:white;
box-shadow: rgba(233, 12, 12, 0.259) 0px 3px 8px;
border-radius: 5px;
}

.blog_card:nth-child(1){
flex:0 0 100%;
}

.blog_card .figure{
display:block;
width:100%;
height:250px;
position:relative;
overflow:hidden;
}

.blog_card:nth-child(1) .figure{
height:300px;
}

.blog_card .figure img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s;
}

.blog_card .tag{
padding:10px 10px;
background-color:#c9262b;
color:white;
position:absolute;
right:1%;
top:3%;
font-size:12px;
border-radius: 3px;
}

.blog_card section{
padding:1.5rem;
position:relative;
background-color:white;
}

.blog_card section .title{
font-weight:600;
font-size:18px;
color:#c9262b;
width:auto;

}

.blog_card section a:hover{
color:#c9262b;
}

.blog_card:hover > .figure img{
transform:scale(1.1);
}

.share_icon{
position:absolute;
bottom:-30px;
left:10px;
background-color:red;
color:white;
display:flex;
align-items:center;
padding-right:5px;
font-size:13px;
cursor:pointer;
transition:0.5s;
}

.share_icon .fa{
padding:5px;
background-color:darkred;
margin-right:10px;
}

.blog_card section img{
width:30%;
margin-right:20px;
object-fit:cover;
border:5px solid rgba(1,1,1,0.1);
}

.blog_card section img:nth-child(even){
float:left;
}

.blog_card section img:nth-child(odd){
float:right;
}




/*BLOG RIGHT CONTENT*/
.columns{
display:block;
margin-bottom:4vh;
background-color:white;
}

.columns section{
padding:1rem;
}

.columns .title{
background-color:#c9262b;
color:white;
padding:1rem;
text-align:left;
width:100%;
display:block;
transition:0.2s;
border-left:0px solid gray;
}

.columns:hover > .title{
border-left:5px solid gray
}

.columns .title a{
float:right;
}

.columns .title a:hover{
color:gray;
}

.search form{
width:100%;
display:flex;
align-items:center;
}

.search fieldset:nth-child(2){
width:10%;
}

.search form input{
border:1px solid rgba(1,1,1,0.1);
padding:1rem;
width:100%;
font-weight:600;
color:rgba(1,1,1,0.5);
}
.search .btn1 {
    /* border: 1px solid #c9262b; */
    border-radius: 0;
    padding-right: 11px;
    
}


/*BOOKS*/
.books .cards {
position: relative;
width: 100%;
height:46vh;
overflow: hidden;
border-radius: 5px;
background-color:#f1f1f1;
}

.books .cards::after {
content: '';
position: absolute;
left: 0;
top: 0;
z-index: 900;
display: block;
width: 100%;
height: 100%;
}

.books .card_part {
position: absolute;
top: 0;
left: 0;
z-index: 7;
display: flex;
align-items: center;
width: 100%;
height: 100%;
background-size:100% 100%;
background-position:center;
transform: translateX( 700px );
background-repeat:no-repeat;
animation: opaqTransition 28s cubic-bezier(0, 0, 0, 0.97) infinite;
background-color:#f1f1f1;
}

.books .card_part.card_part-two {
z-index: 6;
animation-delay: 7s;
background-repeat:no-repeat;
}

.books .card_part.card_part-three {
z-index: 5;
animation-delay: 14s;
background-repeat:no-repeat;
}

.books .card_part.card_part-four {
z-index: 4;
animation-delay: 21s;
background-repeat:no-repeat;
}

@keyframes opaqTransition {
3% { transform: translateX( 0 ); }
25% { transform: translateX( 0 ); }
28% { transform: translateX( -700px ); }
100% { transform: translateX( -700px ); }
}




/*CATEGORIES*/
.categories a{
display:inline-block;
padding:0.2rem 1rem;
border-radius:40px;
background-color:rgba(1,1,1,0.3);
margin:5px 3px;
font-size:12px;
white-space:nowrap;
color:var(--white);
}

.categories a:hover{
background-color:var(--dark);
}


/*POSTS*/
.posts a{
display:flex;
align-items:center;
margin:0.4rem 0;
}

.posts a img{
width:100px;
margin-right:10px;
}

.posts a:hover > p{
color:var(--black);
}



/*COMMENTS*/
.comments{
position:relative;
overflow:hidden;
max-height:60vh;
}

.marquee2 {
position: relative;
overflow:hidden;
line-height:1.6em;
}

.marquee2 p{
border-bottom:1px solid rgba(1,1,1,0.1);
position:relative;
padding:0.4rem 0;
}

.marquee2 p:before{
content:"\f10d";
font-family:"FontAwesome";
margin-right:5px;
position:relative;
top:-5px;
}

@keyframes marquee1 {
0% {
top: 10%;
}
100% {
top: -100%;
}
}


/*SOCIAL MEDIA*/
.social_icons{
display:flex;
align-items:center;
justify-content:center;
column-gap: 15px;
background-color:transparent;
}

.social_icons .fa{
padding:7px 13px;
background-color:#f1f1f1;
color:var(--white);
transition:0.2s;
}

.social_icons a:hover > .fa{
transform:scale(1.1);
}

.social_icons .fa-facebook{
background-color:#3b5998;
}

.social_icons .fa-instagram{
background-color:#fb3958;
}

.social_icons .fa-youtube{
background-color:#c4302b;
}

.social_icons .fa-whatsapp{
background-color:#25d366;
}

.social_icons .fa-telegram{
background-color:#3399ff;
}


@media (max-width:1000px){
.blog_container{
flex-wrap:wrap;
}
.blog_content{
padding:0;
order:2;
}
.left_content{
flex:0 0 100%;
order:2;
padding:1rem;
}
.right_content{
flex:0 0 100%;
order:1;
padding:1rem;
}
.books,.posts, .comments, .categories{
display:inline-block;
width:47%;
margin:1.3%;
margin-bottom:0;
vertical-align:top;
height:63vh;
}
.posts{
overflow-y:auto;
}
.right_content{
flex:0 0 100%;
}
}

@media (max-width:740px){
.blog_card{
flex:0 0 100%;
}
.posts, .comments, .books, .categories{
width:100%;
margin:0;
height:auto;
margin-bottom:4vh;
}
}






/*REMOVE THIS*/
.credits{
position:fixed;
right:0;
bottom:2%;
background-color:#1e1e1e;
padding:0.5rem;
font-size:12px;
z-index:999;
color:rgba(255,255,255,0.7);
}

.credits a{
color:rgba(255,255,255,0.7);
}

.credits a:hover{
color:white;
}

.credits .btn0{
background-color:white;
color:#000;
padding:5px;
border-radius:5px;
border:0;
display:block;
margin:1vh auto;
width:100px;
text-align:Center;
}

.credits .btn0:hover{
color:black;
background-color:#b8bca7;
}




/*============= CONTACT ===============*/
:root{
    /* --main-color:#4070f4;
    --secondary-color:#0e2431; */
    --main-padding:60px;
    --pure:#ffffff;
    --ternary:#898989;
    --section-light:#f2f2f2;
}
/* Font Size  */
:root{
    --big-font:2rem;
    --h2-font:1.25rem;
    --normal-font:0.938rem;
}
.contact{
    background-color: var(--main-color);
    padding: 48px ;
    min-height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact::before{
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background-color: var(--secondary-color);
    left: 0;
    top: 0;
}
.contact   .contact-content{
    min-width: 1000px;
    min-height: 512px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
}
.contact    .shape{
    position: absolute;
    content: "";
    width: 350px;
    top: 40px;
    z-index: 1;
    padding: 40px;
    left: 0;
    /* background-color: var(--main-color); */
    height: calc(100% - 80px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 25px rgba(0,0,0,0.15);
    background-image: linear-gradient(to top,#c9262b,#5c0c0f);
     border-radius: 5px;
}
.contact    .contact-form{
    position: absolute;
    content: "";
    background-color: #fff;
    padding: 70px 50px;
    padding-left: 250px;
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 100%;
    /* box-shadow: 0 50px 50px rgba(0,0,0,0.35); */
    box-shadow: rgba(178, 13, 13, 0.689) 0px 5px 15px;
    border-radius: 5px;
}

.contact    .contact-form::before{
    position: absolute;
    content: "Send A Message";
    top: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 8px;
    z-index: -1;
    border-bottom-left-radius: 25px;
}
@media(max-width:805px){
    .contact .contact-form::before{
        font-size:14px ;
    }
}
.contact    .info{
margin: 10px 0px;
}
.contact    .info li{
display: flex;
margin-bottom: 30px;
}
.contact    .info span{
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact    .info   i{
    font-size: 35px;
    width: 45px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact    .social{
    width: 100%;
}
.contact    .social ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    list-style: none;
}
.contact    .social li{

}
.contact    .social a{
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40%;
    background: white;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 6px 17px -2.5px #000;
}
/* SOCIAL STYLE */
.contact    .social a::before{
    position: absolute;
    content: "";
    width: 120%;
    height: 120%;
    background-color: #333;
    transform: rotate(45deg);
    left: -145%;
    top: 90%;
}
.contact    .social a:hover{
    /* background-color: var(--secondary-color); */
}
.contact    .social a:hover i{
    color: white;
    transform: scale(1.2);
}

.contact    .social i{
    font-size: 29px;
    color: #300506;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
}
.social a:hover::before{
    animation: aaa 0.7s 1;
    top: -10%;
    left: -10%;
}
@keyframes aaa{
    0%{
        top: -110%;
        left:90%;
        }
        50%{
            top: 10%;
            left: -30%;
        }
        100%{
            top: -10%;
        left: -10%;
        }
    }
    .social li:nth-child(1) a::before{
        background-color: #25D366;
    }
    .social li:nth-child(2) a::before{
        background-color: #1877F2;
    }
    .social li:nth-child(3) a::before{
        background-color: #CD201F;
    }
/* END SOCIAL STYLE */

.contact    .form-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px 30px;
}
.contact    .form-box   .box{
    flex-basis: calc(50% - 30px);
    position: relative;
}
.contact    .form-box   .box    input{
    width: 100%;
    outline: none;
    border: 0;
    border-bottom: 1px solid #777;
    padding: 10px 0px;
    font-size: 20px;
    color: #333;
    font-weight: 300;
}
.contact    .form-box   .box span{
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-20px);
    pointer-events: none;
    padding: 5px 0px;
    font-size: 17px;
    font-weight: normal;
    color: #777;
    transition: 0.3s;
}

.contact    .form-box   .box    textarea{
    width: 100%;
    height: 120px;
    outline: none;
    border: 0;
    border-bottom: 1px solid #777;
    padding: 10px;
}
.contact    .form-box   .box    textarea,
.contact    .form-box   .box   input{
    font-size: 20px;
    color: #333;
    font-weight: 300;
}
.contact    .form-box    div:nth-child(5){
    flex-basis: 100%;
}

.contact    .form-box   .box    textarea:focus ~ span,
.contact    .form-box   .box   input:focus ~ span,
.contact    .form-box   .box    textarea:valid ~ span,
.contact    .form-box   .box   input:valid ~ span{
    transform: translateY(-40px);
    font-size: 15px;
    font-weight: 100;
    /* letter-spacing: 1px; */
    color: var(--main-color);
}

.contact    .form-box   .box   input[type="submit"]{
    background-color: #c9262b;
    cursor: pointer;
    color: white;
    width: fit-content;
    padding: 15px 30px;
    border: 1px solid var(--main-color);
    border: none;
    border-radius: 5px;
}
.contact    .form-box    div:nth-child(6){
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
}
.contact    .form-box   .box   input[type="submit"]:hover{
    background-color: #88171b;
}

/* Media */
@media(min-width:950px) and (max-width:1070px){
    .contact   .contact-content{
        min-width: 885px;
    }
    .contact    .shape{
        top: 0;
        height: 100%;
    }
}
@media(min-width:0px) and (max-width:960px){
    .contact   .contact-content{
        flex-direction: column !important;
    display: flex;
    flex-wrap: wrap;
    /* background-color: red; */
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 100%;
    }
    .contact    .shape{
        display: none;
    }
    .contact    .contact-form{
        position: absolute;
        content: "";
        background-color: #fff;
        padding: 70px 50px;
        padding-left: 30px;
        margin-left: 0px;
        width: calc(98% - 150px);
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media(max-width:767px){
    .mb-smm{
        margin-bottom: 4rem;
    }
    .contact   .contact-content {
        min-height: 675px;
    }
    .contact    .form-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 50px 0px;
        min-height: 600px;
    }
    .contact    .form-box   .box {
        position: relative;
        width: 100%;
        flex-basis: calc(100% );
    }
    .contact    .contact-form {
        width: calc(98% - 40px);
    }
    .contact    .form-box   .box    textarea, .contact    .form-box   .box   input {
        font-size: 15px;
    }
    .contact    .form-box   .box    input {
        padding: 8px 0px;
    }
    .contact    .form-box   .box    textarea {
        height: 100px;
    }
    .contact {
        min-height: 107vh;
    }
}
.contact    .last-shape{
    width: 100%;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 10px 10px 20px 10px;
    align-items: center;
    background-image: linear-gradient(to top,#c9262b,#5c0c0f);
}
.contact    .last-shape .social {
    width: 48%;
    justify-self: center;
    align-self: flex-end;
    position: relative;
    transform: translateY(-245%);
}
.contact    .last-shape .info {
    margin: 10px 0px;
    align-self: self-start;
    padding: 13px;
}
.contact    .last-shape h2{
    color: var(--main-color);
    margin: 13px 0px;
}
.contact    .last-shape    .info li {
    display: flex;
    /* margin-bottom: 16px; */
    color: var(--ternary);
}
.contact    .last-shape    .info span {
    margin-right: 25px;
}
@media(max-width:720px){
    .contact    .last-shape .social {

        align-self: center;

        transform: translateY(0);
    }
    .contact    .last-shape .info {
        margin: 10px 0px;
        align-self: center;
        padding: 13px;
    }
    .contact    .last-shape{
        /* border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 10px; */
    }
    .contact    .contact-form{
        /* border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px; */
    }
}
@media(max-width:960px){
    .last-shape{
        display: flex !important;
    }
}
@media(max-width:500px){
    .contact .last-shape{
        width: 125%;
    }
    .contact    .contact-form {
        width: calc(120% );
    }
    .contact    .form-box   .box span {
        font-size: 15px;
    }
}


.contact .form-box .box {
    text-align: right; /* برای راست‌چین کردن محتوا */
    direction: rtl;    /* برای پشتیبانی کامل RTL */
}

.contact .form-box .box span {
    left: auto;       /* غیرفعال کردن left */
    right: 0;         /* جابه‌جایی به سمت راست */
    text-align: right;
}
/* رنگ تیترهای فرم */
.contact .form-box .box span {
    color: #88171b !important;
}

/* رنگ تیترها وقتی فیلد فعال یا پر است */
.contact .form-box .box input:focus ~ span,
.contact .form-box .box input:valid ~ span,
.contact .form-box .box textarea:focus ~ span,
.contact .form-box .box textarea:valid ~ span {
    color: #c9262b !important;
}






/* تنظیم رگ ایکون های هدر وفزودن بقیه ایکونه های هدر */



/* آیکون سرچ در هدر */
.search-icon {
  font-size: 1.3rem;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  position: absolute;
  left: 70px; /* فاصله از چپ، کنار سبد خرید */
  display: flex;
  align-items: center;
  height: 100%;
}

.search-icon:hover {
  color: #1e88e5;
  transform: scale(1.1);
}

/* مودال سرچ تمام‌صفحه */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  position: relative;
  width: 90%;
  max-width: 600px;
}

.search-box input {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  outline: none;
  text-align: center;
  direction: rtl;
  font-family: 'B Yekan', Tahoma, sans-serif;
}

.search-box .close-search {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

/* .search-box .close-search:hover {
  color: white;
} */


/* استایل آیکون زبان */
.language-icon {
    font-size: 1.3rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    position: absolute;
    left: 115px; /* فاصله از چپ، بین سرچ و یوزر */
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.language-icon:hover {
    color: #1e88e5;
    transform: scale(1.1);
}

/* اگر از تصویر پرچم استفاده می‌کنید */
.language-icon img {
    border-radius: 2px;
    transition: transform 0.3s;
}

.language-icon:hover img {
    transform: scale(1.1);
   
}

/* تنظیم مجدد موقعیت آیکون‌های دیگر */
.cart-icon {
    left: 25px !important;
}

.search-icon {
    left: 70px !important;
}

/* برای حالت اسکرول شده */
.navbar.scrolled .language-icon {
    left: 145px !important;
}

.navbar.scrolled .cart-icon {
    left: 100px !important;
}

.navbar.scrolled .search-icon {
    left: 190px !important;
}

/* هاور قرمز برای آیکون کاربر */
.cart-icon:hover {
    color: #c9262b !important;
    transform: scale(1.1);
}

/* هاور قرمز برای آیکون زبان */
.language-icon:hover {
    color: #c9262b !important;
    transform: scale(1.1);
}

/* هاور قرمز برای آیکون سرچ */
.search-icon:hover {
    color: #c9262b !important;
    transform: scale(1.1);
}














/* رفع مشکل حرکت آیکون‌ها در حالت اسکرول موبایل */
@media (max-width: 768px) {
    .navbar.scrolled .nav-container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    
    .navbar.scrolled .cart-icon {
        left: 25px !important;
    }
    
    .navbar.scrolled .search-icon {
        left: 70px !important;
    }
    
    .navbar.scrolled .language-icon {
        left: 115px !important;
    }
    
    /* اطمینان از ثابت ماندن موقعیت در حالت موبایل */
    .cart-icon,
    .search-icon,
    .language-icon {
        transition: none !important;
        transform: none !important;
    }
    
    .navbar.scrolled {
        padding: 0 !important;
    }
    
    .navbar.scrolled .nav-container {
        width: 95% !important;
        border-radius: 10px !important;
    }
}

/* برای حالت‌های دیگر (تبلت و دسکتاپ) */
@media (min-width: 769px) {
    .cart-icon,
    .search-icon,
    .language-icon {
        position: absolute !important;
        transition: all 0.3s ease !important;
    }
    
    /* جلوگیری از حرکت در حالت اسکرول برای دسکتاپ */
    .navbar.scrolled .cart-icon,
    .navbar.scrolled .search-icon,
    .navbar.scrolled .language-icon {
        transform: translateX(0) !important;
    }
}








