@charset "UTF-8";
:root {
  --radius: 1px;
  --bg-dark: #151515;
  --shadow-color: rgba(74, 144, 255, 0.1);
  --border-radius-active: 5px;
  --text-muted: #797979;
  --border-color: hsla(0, 0%, 100%, .075);
}

.divider-vertical {
  height: 30px;
  background-color: var(--border-color);
  width: 1px;
}

.fs-7 {
  font-size: 14px;
}

.fs-8 {
  font-size: 12px;
}

.theme-color {
  color: var(--theme-color);
}

.resize-no {
  resize: none;
}

@font-face {
  font-family: "IRANYekan";
  src: url("../fonts/eot/iranyekanwebregular(fanum).eot"), url("../fonts/ttf/iranyekanwebregular(fanum).ttf"), url("../fonts/woff/iranyekanwebregular(fanum).woff"), url("../fonts/woff2/iranyekanwebregular(fanum).woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/poppins-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
body {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  padding: 0;
  margin: 0;
  background: #ffffff;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.hero-bg-text,
.logo-header {
  font-weight: bold;
  font-family: "Poppins" !important;
}

.font-en {
  font-family: "Poppins";
}

::selection {
  background: #000000; /* پس‌زمینه انتخاب */
  color: #ffffff; /* رنگ متن انتخاب‌شده */
}

::-moz-selection {
  background: #000000;
  color: #ffffff;
}

.bg-black {
  background: #151515 !important;
}

* {
  font-family: "IRANYekan";
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--theme-color);
}

.btn:focus {
  box-shadow: none;
}

.hover-style:hover {
  color: var(--theme-hover-color);
  cursor: pointer;
}

* {
  scrollbar-color: white var(--bg-dark); /* دسته قرمز، پس‌زمینه خاکستری */
  scrollbar-width: thin;
}

body {
  scroll-behavior: smooth;
}

.theme-color {
  color: var(--theme-color-100);
}

/* کل نوار کنترل */
/* دکمه پلی/پاز */
.border-radius {
  border-radius: var(--border-radius-active);
}

.radius-none {
  border-radius: 0;
}

.border-t {
  border-top: 1px solid var(--white-color-2);
}

.border-l {
  border-left: 1px solid var(--border-color);
}

.border-b {
  border-bottom: 1px solid var(--border-color);
}

.border-r {
  border-bottom: 1px solid var(--border-color);
}

.mt-section {
  margin-top: 100px;
}

.mt-sm {
  margin-top: 50px;
}

.mt-lg {
  margin-top: 100px;
}

.mt-xl {
  margin-top: 150px;
}

.mt-xxl {
  margin-top: 200px;
}

.loading-btn {
  border: none;
  position: relative;
}
.loading-btn .spinner-border {
  width: 1rem;
  height: 1rem;
  margin-left: 8px;
  vertical-align: middle;
}

.button-style {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: white;
  background: none;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  transition: all 0.15s;
  user-select: none;
  border: none;
}
.button-style:hover {
  font-weight: bold;
}

.button-style-shadow {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: white;
  background: #0b0b0b;
  text-transform: uppercase;
  border: 1px solid #444;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  transition: all 0.15s;
  user-select: none;
  outline: none;
  padding: 10px;
}
.button-style-shadow:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hr-section {
  border: none;
  height: 1px;
  background-color: hsla(0, 0%, 100%, 0.22);
  width: 0;
  margin: 0; /* حذف فاصله بالا و پایین */
  transition: width 2s ease;
}

/* کلاس فعال وقتی خط در دید است */
.hr-section.active {
  width: 100%;
}

.text-theme {
  color: var(--theme-color-100);
}

.text-hover:hover {
  color: var(--theme-color-200);
}

.background-none {
  background: none;
}

.bg-theme {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.title-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px; /* فاصله بین خط و دکمه */
  margin: 20px 0;
}

.title-section .line {
  flex: 1;
  height: 1px;
  background-color: var(--border-color);
  transform: scaleX(0); /* شروع از صفر */
  transform-origin: center; /* از وسط شروع به کشیده شدن */
  animation: lineGrow 1s forwards; /* انیمیشن 1 ثانیه */
}

@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}
.title-section {
  color: white;
  padding: 5px 15px;
  background: none;
  cursor: pointer;
  border-radius: 0;
  /* انیمیشن border */
  border-width: 0;
  animation: borderGrow 1s forwards;
  animation-delay: 0.5s; /* کمی بعد از خط ظاهر شود */
}
.title-section .middle-button {
  border: 1px solid var(--border-color);
  background: none;
  padding: 5px 20px;
  color: white;
  transition: 0.5s;
}
.title-section .middle-button:hover {
  color: #b3b3b3;
}

.title-section-style {
  font-size: 2.5rem;
  color: white;
  font-weight: bold;
}
@media screen and (max-width: 426px) {
  .title-section-style {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 321px) {
  .title-section-style {
    font-size: 1.4rem;
  }
}

@keyframes borderGrow {
  to {
    border-width: 1px;
  }
}
@media (max-width: 768px) {
  .title-section .divider-container .title-box {
    font-size: 15px;
    padding: 4px 14px;
  }
  .title-section .divider-container .view-all {
    font-size: 13px;
  }
  .title-section .divider-container .view-all i {
    font-size: 12px;
  }
  .title-section .right-box i {
    font-size: 15px;
  }
}
.active-menu {
  color: var(--theme-color-100);
  font-weight: bold;
}

/* فقط container رو استایل می‌کنیم، نه body یا html */
.main-loader {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 0, 0); /* بک‌گراند مشکی */
  color: white;
  z-index: 100000; /* بالاتر از همه عناصر */
  position: fixed; /* مهم: برای فیکس کردن لودر */
  top: 0;
  left: 0;
  width: 100%; /* کل عرض */
  transition: opacity 2s ease-out; /* نرمی در محو شدن */
  opacity: 1; /* لودر در ابتدا visible است */
}

.main-loader.simple {
  background-color: var(--bg-dark);
}

.main-loader.simple .loader-container {
  display: none;
}

/* این که لودر کاملاً ناپدید بشه */
.fadeOut {
  opacity: 0;
  visibility: hidden; /* پنهان کردن */
  pointer-events: none; /* جلوگیری از هر گونه تعامل با لودر */
}

/* سایر استایل‌ها */
.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; /* جلوگیری از نمایش محتویات بیرون از صفحه */
}
@media screen and (max-width: 769px) {
  .loader-container {
    margin-top: -50px;
  }
}

.loader-logo {
  position: absolute;
  animation: moveLogo 4s forwards;
  z-index: 100;
}

.loader-logo img {
  width: 70px;
  height: 70px;
  position: absolute;
  animation: moveLogo 4s forwards;
  z-index: 100;
}
@media screen and (max-width: 1025px) {
  .loader-logo img {
    width: 80px;
    height: 80px;
  }
}

.company-name {
  margin-top: 68px;
  font-size: 2rem;
  font-weight: bold;
  margin-left: -160px;
  opacity: 0;
  transform: translateX(30%); /* متن از سمت راست شروع میشه */
  transition: opacity 2s ease-in-out, transform 1s ease-out; /* انیمیشن تغییر موقعیت و opacity */
  z-index: 10;
}
@media screen and (max-width: 1025px) {
  .company-name {
    transform: translateX(30%);
    margin-top: 83px;
  }
}
@media screen and (max-width: 769px) {
  .company-name {
    margin-left: -100px;
    margin-top: 75px;
  }
}
@media screen and (max-width: 321px) {
  .company-name {
    margin-left: -90px;
    margin-top: 75px;
    font-size: 1.8rem;
  }
}

@keyframes moveLogo {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50px); /* اندازه حرکت لوگو */
  }
}
@media screen and (max-width: 1026px) {
  @keyframes moveLogo {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(60px); /* اندازه حرکت لوگو */
    }
  }
}
@media screen and (max-width: 769px) {
  @keyframes moveLogo {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(80px); /* اندازه حرکت لوگو */
    }
  }
}
@media screen and (max-width: 376px) {
  @keyframes moveLogo {
    0% {
      transform: translateX();
    }
    100% {
      transform: translateX(78px); /* اندازه حرکت لوگو */
    }
  }
}
@media screen and (max-width: 321px) {
  @keyframes moveLogo {
    0% {
      transform: translateX();
    }
    100% {
      transform: translateX(70px); /* اندازه حرکت لوگو */
    }
  }
}
/* زمانی که انیمیشن حرکت لوگو تمام شد، متن ظاهر میشه */
/* انیمیشن برای حرکت متن از راست به چپ */
.logo-move-complete .company-name {
  opacity: 1;
  transform: translateX(0); /* وقتی که انیمیشن تموم بشه، متن به جایگاه اولیه میاد */
}

/* محو شدن لودر بعد از 2 ثانیه */
.logo-move-complete {
  opacity: 1;
  transition: opacity 1s ease-out 2s; /* 2 ثانیه ثابت بمونه بعد محو بشه */
}

.swiper {
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  height: 750px;
}
@media screen and (max-width: 1025px) {
  .swiper {
    height: 600px;
  }
}
@media screen and (max-width: 769px) {
  .swiper {
    border-bottom: none;
    height: 480px;
  }
}
@media screen and (max-width: 426px) {
  .swiper {
    height: 280px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 376px) {
  .swiper {
    height: 250px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 321px) {
  .swiper {
    height: 180px;
    margin-top: 50px;
  }
}
.swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  overflow: hidden;
}
.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transition: filter 0.8s ease;
  border-bottom: 1px solid var(--border-color);
}
.swiper .swiper-slide.swiper-slide-active img {
  filter: blur(0);
}
.swiper .swiper-slide .text-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}
.swiper .swiper-slide .text-content h2 {
  text-align: right;
  font-size: 2rem;
  margin-bottom: 10px;
}
.swiper .swiper-slide .text-content p {
  font-size: 1.2rem;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  font-size: 20px;
}
@media (max-width: 992px) {
  .swiper .slide-first .col-12 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .swiper .text-content {
    text-align: center;
  }
  .swiper .swiper-slide img {
    height: auto;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.company-stats {
  background: #151515;
}
@media screen and (max-width: 321px) {
  .company-stats .stats-header {
    margin-top: 10px;
  }
}
.company-stats .stats-header h3 {
  color: white;
  font-weight: 700;
}
.company-stats .stat-card {
  box-shadow: none;
}
.company-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}
@media screen and (max-width: 769px) {
  .company-stats .stat-number {
    font-size: 2rem;
  }
}
@media screen and (max-width: 426px) {
  .company-stats .stat-number {
    font-size: 1.1rem;
  }
}
.company-stats .stat-title {
  font-size: 1.1rem;
  color: var(--text-muted);
}
@media screen and (max-width: 321px) {
  .company-stats .stat-title {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 300px) {
  .company-stats .stat-title {
    font-size: 0.7rem;
  }
}
@media (max-width: 992px) {
  .company-stats .stat-card {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .company-stats .stat-number {
    font-size: 2rem;
  }
}

#about-us {
  background: #151515;
  position: relative;
  overflow: hidden;
}
#about-us .container {
  position: relative;
  z-index: 2;
}
#about-us .container .about-right p {
  margin-top: 30px;
  line-height: 3rem;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (max-width: 1025px) {
  #about-us .container .about-right p {
    font-size: 1.1rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 769px) {
  #about-us .container .about-right p {
    line-height: 2rem;
  }
}
@media screen and (max-width: 426px) {
  #about-us .container .about-right p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 376px) {
  #about-us .container .about-right p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 321px) {
  #about-us .container .about-right p {
    font-size: 0.7rem;
  }
}
#about-us .container .about-left p {
  font-size: 1.2rem;
  margin-bottom: 70px;
  color: var(--text-muted);
}
@media screen and (max-width: 1025px) {
  #about-us .container .about-left p {
    font-size: 0.8rem;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 769px) {
  #about-us .container .about-left p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  #about-us .container .about-left p {
    font-size: 0.8rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 376px) {
  #about-us .container .about-left p {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 321px) {
  #about-us .container .about-left p {
    font-size: 0.6rem;
  }
}
#about-us .bg-typo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 0;
  pointer-events: none;
}
#about-us .bg-typo-wrap .bg-typo {
  margin-top: 100px;
  font-size: 16rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 12px;
  text-transform: uppercase;
  user-select: none;
  white-space: nowrap;
}
@media screen and (max-width: 426px) {
  #about-us .bg-typo-wrap {
    display: none;
  }
}
#about-us .fade-text {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(40px);
}
@media (max-width: 992px) {
  #about-us .bg-typo-wrap .bg-typo {
    font-size: 7rem;
  }
  #about-us .row {
    text-align: center;
  }
}

.feature-section {
  background: #151515;
}
.feature-section .feature-box {
  text-align: center;
  padding: 0 20px;
}
.feature-section .feature-box svg {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  color: white;
}
.feature-section .feature-box .title-feature {
  display: block;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-family: "Poppins";
}
@media screen and (max-width: 769px) {
  .feature-section .feature-box .title-feature {
    font-size: 1.2rem;
  }
}
.feature-section .feature-box p {
  line-height: 1.7rem;
  font-family: "Poppins";
  color: var(--text-muted);
  margin-bottom: 20px;
}
@media screen and (max-width: 1025px) {
  .feature-section .feature-box p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 376px) {
  .feature-section .feature-box p {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 321px) {
  .feature-section .feature-box p {
    font-size: 0.6rem;
  }
}
.feature-section .divider {
  border-left: 1px solid var(--border-color);
  height: 150px;
  width: 1px;
  margin-top: 50%;
}
@media (max-width: 767px) {
  .feature-section .divider {
    display: none;
  }
}

.main-contact .service-hero {
  z-index: 1; /* لایه پایین‌تر */
  height: 500px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.main-contact .service-hero .hero-bg-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  font-weight: 900;
  white-space: nowrap;
  z-index: 1;
  letter-spacing: 25px;
  overflow: hidden;
}
.main-contact .service-hero .hero-bg-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotate(-10deg);
  animation: slideIn 1s forwards;
}
.main-contact .service-hero .hero-bg-text span:nth-child(1) {
  animation-delay: 0s;
}
.main-contact .service-hero .hero-bg-text span:nth-child(2) {
  animation-delay: 0.05s;
}
.main-contact .service-hero .hero-bg-text span:nth-child(3) {
  animation-delay: 0.1s;
}
.main-contact .service-hero .hero-bg-text span:nth-child(4) {
  animation-delay: 0.15s;
}
.main-contact .service-hero .hero-bg-text span:nth-child(5) {
  animation-delay: 0.2s;
}
.main-contact .service-hero .hero-bg-text {
  /* همینطور تا تعداد حروف متن شما */
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(50px) rotate(-10deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}
@media screen and (max-width: 1025px) {
  .main-contact .service-hero {
    height: 400px;
  }
  .main-contact .service-hero .hero-bg-text {
    font-size: 140px;
    top: 40%;
  }
}
@media screen and (max-width: 769px) {
  .main-contact .service-hero {
    height: 370px;
  }
  .main-contact .service-hero .hero-bg-text {
    font-size: 100.5px;
    top: 40%;
  }
}
@media screen and (max-width: 426px) {
  .main-contact .service-hero {
    height: 400px;
  }
  .main-contact .service-hero .hero-bg-text {
    font-size: 60px;
    top: 37%;
    letter-spacing: 10px;
  }
}
@media screen and (max-width: 376px) {
  .main-contact .service-hero {
    height: 400px;
  }
  .main-contact .service-hero .hero-bg-text {
    font-size: 60px;
    top: 40%;
    letter-spacing: 10px;
  }
}
@media screen and (max-width: 321px) {
  .main-contact .service-hero {
    height: 400px;
  }
  .main-contact .service-hero .hero-bg-text {
    font-size: 60px;
    top: 40%;
    letter-spacing: 10px;
  }
}

.contact-options-main {
  margin-top: -170px;
  position: relative;
  z-index: 2;
  background: none;
}
@media screen and (max-width: 426px) {
  .contact-options-main {
    margin-top: -200px;
  }
}
.contact-options-main .section-subtitle {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}
.contact-options-main .contact-card {
  z-index: 9999;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-options-main .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.contact-options-main .contact-card .contact-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  color: #000000;
}
.contact-options-main .contact-card .contact-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.contact-options-main .contact-card .contact-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-form-section {
  padding: 20px 18px;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .contact-form-section {
    padding: 0px 0px;
  }
}
.contact-form-section .contact-form-card {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}
.contact-form-section .contact-form-card .contact-form-text {
  flex: 1 1 0;
}
.contact-form-section .contact-form-card .contact-form-text .contact-form-lead-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: 0.2px;
}
.contact-form-section .contact-form-card .contact-form-text .contact-form-sub-text {
  color: black;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.95rem;
}
.contact-form-section .contact-form-card .contact-form-text .contact-form-mini-title {
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}
@media screen and (max-width: 427px) {
  .contact-form-section .contact-form-card .contact-form-text .contact-form-mini-title {
    margin-top: 0;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 376px) {
  .contact-form-section .contact-form-card .contact-form-text .contact-form-mini-title {
    margin-top: 0;
    font-size: 1rem;
  }
}
@media screen and (max-width: 316px) {
  .contact-form-section .contact-form-card .contact-form-text .contact-form-mini-title {
    margin-top: 0;
    font-size: 0.8rem;
  }
}
.contact-form-section .contact-form-card .contact-form-text .contact-form-mini-desc {
  padding: 5px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9rem;
  margin-bottom: 0.85rem;
}
.contact-form-section .contact-form-card .contact-form-fields {
  flex: 1 1 0;
  padding: 20px;
  background: #151515; /* پس‌زمینه مشکی */
  border: 1px solid #222;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
  /* لیبل‌ها */
}
.contact-form-section .contact-form-card .contact-form-fields .contact-form-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  display: block;
  color: #fff; /* سفید */
  transition: all 0.3s ease;
}
.contact-form-section .contact-form-card .contact-form-fields {
  /* فیلدهای فرم */
}
.contact-form-section .contact-form-card .contact-form-fields .contact-form-control {
  border-radius: 0;
  width: 100%;
  border: 1px solid #444;
  background: #0b0b0b;
  color: #fff;
  padding: 0.7rem 0.9rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.contact-form-section .contact-form-card .contact-form-fields .contact-form-control:focus {
  outline: none;
  border: 1px dashed var(--border-color);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.contact-form-section .contact-form-card .contact-form-fields .contact-form-control::placeholder {
  color: #aaa;
  opacity: 0.8;
}
.contact-form-section .contact-form-card .contact-form-fields textarea.contact-form-control {
  resize: none;
}
.contact-form-section .contact-form-card .contact-form-fields {
  /* ردیف دکمه */
}
.contact-form-section .contact-form-card .contact-form-fields .contact-form-submit-row {
  margin-top: 1.5rem;
  text-align: left;
}
.contact-form-section .contact-form-card .contact-form-fields .contact-form-submit-row .contact-form-btn,
.contact-form-section .contact-form-card .contact-form-fields .contact-form-submit-row .button-style-dark {
  border-radius: 0;
  background: #fff;
  color: #000;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
}
.contact-form-section .contact-form-card .contact-form-fields .contact-form-submit-row .contact-form-btn:hover,
.contact-form-section .contact-form-card .contact-form-fields .contact-form-submit-row .button-style-dark:hover {
  background: #e3e3e3;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.25);
}
.contact-form-section .contact-form-card .contact-form-fields .contact-form-submit-row .contact-form-btn:active,
.contact-form-section .contact-form-card .contact-form-fields .contact-form-submit-row .button-style-dark:active {
  transform: translateY(0);
  box-shadow: none;
}
@media screen and (max-width: 992px) {
  .contact-form-section .contact-form-card {
    flex-direction: column;
  }
  .contact-form-section .contact-form-card .contact-form-text,
  .contact-form-section .contact-form-card .contact-form-fields {
    padding: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 426px) {
  .contact-form-section .contact-form-card {
    flex-direction: column;
  }
  .contact-form-section .contact-form-card .contact-form-text {
    padding: 0px;
    width: 100%;
  }
}

.main-product .service-hero {
  border-bottom: 1px solid var(--border-color);
  z-index: 1; /* لایه پایین‌تر */
  height: 500px;
  background: #000;
  position: relative;
  overflow: hidden;
}
.main-product .service-hero .hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  font-weight: 900;
  white-space: nowrap;
  z-index: 1;
  letter-spacing: 25px;
  overflow: hidden;
}
.main-product .service-hero .hero-bg-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotate(-10deg);
  animation: slideIn 1s forwards;
}
.main-product .service-hero .hero-bg-text span:nth-child(1) {
  animation-delay: 0s;
}
.main-product .service-hero .hero-bg-text span:nth-child(2) {
  animation-delay: 0.05s;
}
.main-product .service-hero .hero-bg-text span:nth-child(3) {
  animation-delay: 0.1s;
}
.main-product .service-hero .hero-bg-text span:nth-child(4) {
  animation-delay: 0.15s;
}
.main-product .service-hero .hero-bg-text span:nth-child(5) {
  animation-delay: 0.2s;
}
.main-product .service-hero .hero-bg-text {
  /* همینطور تا تعداد حروف متن شما */
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(50px) rotate(-10deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}
@media screen and (max-width: 1200px) {
  .main-product .service-hero {
    height: 300px;
  }
  .main-product .service-hero .hero-bg-text {
    font-size: 140px;
    top: 55%;
  }
  .main-product .service-hero h2 {
    font-size: 150px;
    top: -1px;
  }
  .main-product .service-hero h3 {
    font-size: 50px;
    bottom: 60px;
  }
}
@media screen and (max-width: 992px) {
  .main-product .service-hero {
    height: 250px;
  }
  .main-product .service-hero .hero-bg-text {
    font-size: 100.5px;
    top: 60%;
  }
  .main-product .service-hero h2 {
    font-size: 130px;
    top: -1px;
  }
  .main-product .service-hero h3 {
    font-size: 50px;
    bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .main-product .service-hero {
    height: 200px;
  }
  .main-product .service-hero .hero-bg-text {
    font-size: 60px;
    top: 65%;
    letter-spacing: 10px;
  }
}
@media screen and (max-width: 424px) {
  .main-product .service-hero {
    height: 200px;
  }
  .main-product .service-hero .hero-bg-text {
    font-size: 50px;
    top: 68%;
    letter-spacing: 10px;
  }
}
@media screen and (max-width: 374px) {
  .main-product .service-hero {
    height: 160px;
  }
  .main-product .service-hero .hero-bg-text {
    font-size: 50px;
    top: 68%;
    letter-spacing: 10px;
  }
}
@media screen and (max-width: 300px) {
  .main-product .service-hero {
    height: 200px;
  }
  .main-product .service-hero .hero-bg-text {
    font-size: 40px;
    top: 68%;
    letter-spacing: 10px;
  }
}
.main-product .search-input i {
  transition: 0.2s ease;
}
.main-product .loading {
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.main-product .empty-state {
  min-height: 40vh;
  animation: fadeUp 0.8s ease forwards;
}
.main-product .empty-card {
  background: none;
  padding: 40px 0px;
  border-radius: 28px;
  color: #000000;
  max-width: 420px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.main-product .empty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 60%);
}
.main-product .icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(6px);
  animation: floatIcon 3s ease-in-out infinite;
}
.main-product .icon-wrapper svg {
  width: 40px;
  height: 40px;
  color: #000000;
  animation: pulseIcon 1.8s infinite;
}
.main-product .empty-card h4 {
  font-weight: 700;
}
.main-product .empty-card p {
  opacity: 0.9;
  font-size: 15px;
}
.main-product {
  /* Animations */
}
@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulseIcon {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.75;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= Layout ================= */
.portfolio-section {
  overflow-x: hidden;
  overflow-y: hidden;
}

.search-bar-row {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.search-input {
  flex: 0 0 60%;
  background: #fff;
}
.search-input input {
  font-size: 1rem;
}

.category-container {
  flex: 0 0 40%;
  height: 70px;
  background: #000;
  color: #fff;
  position: relative;
}

.category-toggle {
  cursor: pointer;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
}

.category-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: #fff;
  color: #000;
  z-index: 20;
  height: 200px;
  overflow-y: auto;
  border-top: 1px solid #eee;
  font-family: "IRANSans", sans-serif;
  counter-reset: item;
}
.category-menu.show {
  display: block;
}
.category-menu li {
  position: relative;
  padding: 12px 40px 12px 45px;
  cursor: pointer;
  border-bottom: 1px solid #f4f4f4;
  font-weight: 600;
  letter-spacing: -0.3px;
  transition: background 0.25s ease, color 0.25s ease, padding-right 0.25s ease;
}
.category-menu li::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: #999;
  font-weight: 600;
  transition: color 0.3s ease;
}
.category-menu li:hover {
  background: #111;
  color: #fff;
  padding-right: 45px;
}
.category-menu li:hover::before {
  color: #fff;
  font-size: 1.3rem;
}
.category-menu::-webkit-scrollbar {
  width: 6px;
}
.category-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.category-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

i.transition {
  transition: transform 0.3s ease;
}

i.rotate {
  transform: rotate(180deg);
}

/* ================= کارت ================= */
/* ================= Skeleton Shimmer ================= */
/* ریسپانسیو */
@media (max-width: 426px) {
  .category-container {
    width: 100%;
  }
  .search-bar-row {
    flex-direction: column;
  }
  .card-portfolio .carousel {
    height: 200px;
  }
  .label {
    top: 170px;
  }
  .portfolio-section .title {
    margin-top: 2rem;
    font-size: 1rem;
  }
}
.gallery-img {
  width: 100%;
  height: 100%;
}

.gallery-section {
  transition: background-color 0.3s ease-in-out;
}
.gallery-section .main-display {
  /* 🎯 استایل مخصوص main-image-wrapper */
}
.gallery-section .main-display .main-image-wrapper {
  width: 100%;
  height: 495px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .gallery-section .main-display .main-image-wrapper {
    height: 395px;
  }
}
@media screen and (max-width: 992px) {
  .gallery-section .main-display .main-image-wrapper {
    height: 300px;
  }
}
.gallery-section .main-display .main-image-wrapper .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}
.gallery-section .main-display .main-image-wrapper .main-image.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}
.gallery-section .main-display .main-image-wrapper .main-image.next {
  z-index: 3;
}
.gallery-section .main-display .main-image-wrapper:hover .main-image.active {
  transform: scale(1.05);
}
.gallery-section .main-display .main-image-wrapper .title-project {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}
.gallery-section .main-display .main-image-wrapper .title-project .main-title {
  margin-top: 10px;
  color: #000;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 14px;
}
.gallery-section .main-display .main-image-wrapper .title-project .main-subtitle {
  font-size: 12px;
  color: #0c72ce;
}
.gallery-section .main-display .main-image-wrapper .title-project:hover {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
}
.gallery-section .main-display {
  /* 🎯 استایل مخصوص main-image-wrapper-2 */
}
.gallery-section .main-display .main-image-wrapper-2 {
  width: 100%;
  height: 607px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 992px) {
  .gallery-section .main-display .main-image-wrapper-2 {
    height: 300px;
  }
}
.gallery-section .main-display .main-image-wrapper-2 .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}
.gallery-section .main-display .main-image-wrapper-2 .main-image.active {
  opacity: 1;
  z-index: 2;
}
.gallery-section .main-display .main-image-wrapper-2:hover .main-image.active {
  transform: scale(1.03);
}
.gallery-section .main-display .main-image-wrapper-2 .title-project {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}
.gallery-section .main-display .main-image-wrapper-2 .title-project .main-title {
  margin-top: 10px;
  color: #000;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 14px;
}
.gallery-section .main-display .main-image-wrapper-2 .title-project .main-subtitle {
  font-size: 12px;
  color: #0c72ce;
}
.gallery-section .main-display .main-image-wrapper-2 .title-project:hover {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
}
.gallery-section .small-images .image-box {
  width: 100%;
  height: 240px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .gallery-section .small-images .image-box {
    height: 180px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 992px) {
  .gallery-section .small-images .image-box {
    height: 120px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-section .small-images .image-box {
    height: 100px;
  }
}
@media screen and (max-width: 424px) {
  .gallery-section .small-images .image-box {
    height: 80px;
  }
}
@media screen and (max-width: 374px) {
  .gallery-section .small-images .image-box {
    height: 60px;
  }
}
.gallery-section .small-images .image-box img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  object-fit: cover;
  object-position: center;
}
.gallery-section .small-images .image-box:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.gallery-section .small-images .image-box:hover img {
  transform: scale(1.1);
}
.gallery-section .small-images .image-box.active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
}
.gallery-section .small-images .image-box-2 {
  position: relative;
  width: 100%;
  height: 192px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-section .small-images .image-box-2 span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 2;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 992px) {
  .gallery-section .small-images .image-box-2 {
    height: 120px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-section .small-images .image-box-2 {
    height: 100px;
  }
}
@media screen and (max-width: 424px) {
  .gallery-section .small-images .image-box-2 {
    height: 80px;
  }
}
@media screen and (max-width: 374px) {
  .gallery-section .small-images .image-box-2 {
    height: 60px;
  }
}
.gallery-section .small-images .image-box-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-section .small-images .image-box-2:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.gallery-section .small-images .image-box-2:hover img {
  transform: scale(1.08);
}
.gallery-section .small-images .image-box-2.active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
}
.gallery-section .title-section-project span {
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (max-width: 420px) {
  .gallery-section .title-section-project span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 380px) {
  .gallery-section .title-section-project span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 300px) {
  .gallery-section .title-section-project span {
    margin-top: 5px;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 992px) {
  .gallery-section .Box-Specifications {
    margin-bottom: 100px;
  }
}
.gallery-section .Box-Specifications .title {
  direction: ltr;
}
.gallery-section .Box-Specifications {
  position: relative;
}
.gallery-section .Box-Specifications ul {
  direction: ltr;
  position: absolute;
  left: 10px;
  top: 0;
}
.gallery-section .Box-Specifications ul li {
  font-size: 10px;
}
@media screen and (max-width: 992px) {
  .gallery-section .Box-Specifications ul li {
    font-size: 10px;
    margin-left: 10px;
  }
  .gallery-section .Box-Specifications ul li svg {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-section .Box-Specifications ul li {
    font-size: 15px;
    margin-left: 10px;
  }
  .gallery-section .Box-Specifications ul li svg {
    width: 24px;
    height: 24px;
  }
}
.gallery-section .Box-Specifications ul li svg {
  width: 24px;
  height: 24px;
}
.gallery-section .description-project {
  color: var(--text-muted);
  line-height: 2rem;
}
@media screen and (max-width: 1200px) {
  .gallery-section .description-project {
    font-size: 15px;
  }
}
@media screen and (max-width: 425px) {
  .gallery-section .description-project {
    font-size: 10px;
    line-height: 1.7rem;
  }
}
@media screen and (max-width: 375px) {
  .gallery-section .description-project {
    font-size: 9px;
    line-height: 1.5rem;
  }
}

.gallery-section {
  transition: background-color 0.3s ease-in-out;
}
.gallery-section .main-display {
  /* 🎯 استایل مخصوص main-image-wrapper */
}
.gallery-section .main-display .main-image-wrapper {
  width: 100%;
  height: 495px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .gallery-section .main-display .main-image-wrapper {
    height: 395px;
  }
}
@media screen and (max-width: 992px) {
  .gallery-section .main-display .main-image-wrapper {
    height: 300px;
  }
}
.gallery-section .main-display .main-image-wrapper .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}
.gallery-section .main-display .main-image-wrapper .main-image.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}
.gallery-section .main-display .main-image-wrapper .main-image.next {
  z-index: 3;
}
.gallery-section .main-display .main-image-wrapper:hover .main-image.active {
  transform: scale(1.05);
}
.gallery-section .main-display .main-image-wrapper .title-project {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}
.gallery-section .main-display .main-image-wrapper .title-project .main-title {
  margin-top: 10px;
  color: #000;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 14px;
}
.gallery-section .main-display .main-image-wrapper .title-project .main-subtitle {
  font-size: 12px;
  color: #0c72ce;
}
.gallery-section .main-display .main-image-wrapper .title-project:hover {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
}
.gallery-section .main-display {
  /* 🎯 استایل مخصوص main-image-wrapper-2 */
}
.gallery-section .main-display .main-image-wrapper-2 {
  width: 100%;
  height: 607px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 992px) {
  .gallery-section .main-display .main-image-wrapper-2 {
    height: 300px;
  }
}
.gallery-section .main-display .main-image-wrapper-2 .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}
.gallery-section .main-display .main-image-wrapper-2 .main-image.active {
  opacity: 1;
  z-index: 2;
}
.gallery-section .main-display .main-image-wrapper-2:hover .main-image.active {
  transform: scale(1.03);
}
.gallery-section .main-display .main-image-wrapper-2 .title-project {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}
.gallery-section .main-display .main-image-wrapper-2 .title-project .main-title {
  margin-top: 10px;
  color: #000;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 14px;
}
.gallery-section .main-display .main-image-wrapper-2 .title-project .main-subtitle {
  font-size: 12px;
  color: #0c72ce;
}
.gallery-section .main-display .main-image-wrapper-2 .title-project:hover {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
}
.gallery-section .small-images .image-box {
  width: 100%;
  height: 240px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .gallery-section .small-images .image-box {
    height: 180px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 992px) {
  .gallery-section .small-images .image-box {
    height: 120px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-section .small-images .image-box {
    height: 100px;
  }
}
@media screen and (max-width: 424px) {
  .gallery-section .small-images .image-box {
    height: 80px;
  }
}
@media screen and (max-width: 374px) {
  .gallery-section .small-images .image-box {
    height: 60px;
  }
}
.gallery-section .small-images .image-box img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  object-fit: cover;
  object-position: center;
}
.gallery-section .small-images .image-box:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.gallery-section .small-images .image-box:hover img {
  transform: scale(1.1);
}
.gallery-section .small-images .image-box.active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
}
.gallery-section .small-images .image-box-2 {
  position: relative;
  width: 100%;
  height: 192px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-section .small-images .image-box-2 span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 2;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 992px) {
  .gallery-section .small-images .image-box-2 {
    height: 120px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-section .small-images .image-box-2 {
    height: 100px;
  }
}
@media screen and (max-width: 424px) {
  .gallery-section .small-images .image-box-2 {
    height: 80px;
  }
}
@media screen and (max-width: 374px) {
  .gallery-section .small-images .image-box-2 {
    height: 60px;
  }
}
.gallery-section .small-images .image-box-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-section .small-images .image-box-2:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.gallery-section .small-images .image-box-2:hover img {
  transform: scale(1.08);
}
.gallery-section .small-images .image-box-2.active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
}
.gallery-section .title-section-project span {
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (max-width: 420px) {
  .gallery-section .title-section-project span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 380px) {
  .gallery-section .title-section-project span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 300px) {
  .gallery-section .title-section-project span {
    margin-top: 5px;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 992px) {
  .gallery-section .title-section-project a {
    margin-top: 5px;
  }
}
@media screen and (max-width: 426px) {
  .gallery-section .title-section-project a {
    margin-top: 8px;
  }
}
@media screen and (max-width: 380px) {
  .gallery-section .title-section-project a {
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .gallery-section .Box-Specifications {
    margin-bottom: 100px;
  }
}
.gallery-section .Box-Specifications .title {
  direction: ltr;
}
.gallery-section .Box-Specifications {
  position: relative;
}
.gallery-section .Box-Specifications ul {
  direction: ltr;
  position: absolute;
  left: 10px;
  top: 0;
}
.gallery-section .Box-Specifications ul li {
  font-size: 10px;
}
@media screen and (max-width: 992px) {
  .gallery-section .Box-Specifications ul li {
    font-size: 10px;
    margin-left: 10px;
  }
  .gallery-section .Box-Specifications ul li svg {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-section .Box-Specifications ul li {
    font-size: 15px;
    margin-left: 10px;
  }
  .gallery-section .Box-Specifications ul li svg {
    width: 24px;
    height: 24px;
  }
}
.gallery-section .Box-Specifications ul li svg {
  width: 24px;
  height: 24px;
}
.gallery-section .description-project {
  color: var(--text-muted);
  line-height: 2rem;
}
@media screen and (max-width: 1200px) {
  .gallery-section .description-project {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .gallery-section .description-project {
    font-size: 14px;
  }
}
@media screen and (max-width: 425px) {
  .gallery-section .description-project {
    font-size: 12px;
    line-height: 1.7rem;
  }
}

.gallery-img {
  height: 200px; /* ارتفاع دستی */
}

@media screen and (max-width: 992px) {
  .gallery-img {
    height: 150px; /* ارتفاع دستی */
  }
}
@media screen and (max-width: 426px) {
  .gallery-img {
    height: 80px; /* ارتفاع دستی */
  }
}
.gallery-img img.custom-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover; /* کراپ حرفه‌ای */
  display: block;
}

.gallery-img-right {
  height: 415px;
}

@media screen and (max-width: 992px) {
  .gallery-img-right {
    height: 350px;
  }
}
.Project-Management {
  display: inline;
}
.Project-Management .fixed-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  cursor: pointer;
  transition: 0.3s ease;
}
.Project-Management .fixed-nav-btn.fixed-prev {
  left: 25px;
}
.Project-Management .fixed-nav-btn.fixed-prev .hover-preview {
  left: 75px;
}
.Project-Management .fixed-nav-btn.fixed-next {
  right: 25px;
}
.Project-Management .fixed-nav-btn.fixed-next .hover-preview {
  right: 75px;
}
.Project-Management .fixed-nav-btn:hover .hover-preview {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.Project-Management .fixed-nav-btn .hover-preview {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  background: var(--bg-dark);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  box-shadow: rgba(255, 255, 255, 0.12) 0px 2px 4px 0px, rgba(255, 255, 255, 0.32) 0px 2px 16px 0px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.Project-Management .fixed-nav-btn .hover-preview .preview-img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}
.Project-Management .fixed-nav-btn .hover-preview .preview-title {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}
.Project-Management .fixed-nav-btn .hover-preview .preview-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}
@media screen and (max-width: 992px) {
  .Project-Management {
    display: none;
  }
}

.main-product-Details {
  margin-top: 90px;
}
@media screen and (max-width: 374px) {
  .main-product-Details {
    margin-top: 70px;
  }
}
.main-product-Details .right-section .product-Details .title-feature {
  color: white;
  font-weight: bold;
}
.main-product-Details .right-section .product-Details .description-project {
  color: #c1c1c1;
  line-height: 2.3rem;
}
@media screen and (max-width: 992px) {
  .main-product-Details .right-section .product-Details .description-project {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .main-product-Details .right-section .product-Details .description-project {
    font-size: 12px;
  }
}
.main-product-Details .right-section .main-large-image {
  position: relative;
}
.main-product-Details .right-section .main-large-image:hover {
  cursor: pointer;
}
.main-product-Details .right-section .main-large-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .main-product-Details .right-section .main-large-image img {
    height: 300px;
  }
}
@media screen and (max-width: 424px) {
  .main-product-Details .right-section .main-large-image img {
    height: 300px;
  }
}
.main-product-Details .right-section .main-large-image {
  /* لایه دودی هنگام هاور */
}
.main-product-Details .right-section .main-large-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: 0.3s ease;
  z-index: 1;
}
.main-product-Details .right-section .main-large-image {
  /* آیکون ذره‌بین */
}
.main-product-Details .right-section .main-large-image::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  color: #fff;
  font-size: 2.2rem;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 2;
}
.main-product-Details .right-section .main-large-image {
  /* هاور */
}
.main-product-Details .right-section .main-large-image:hover::before, .main-product-Details .right-section .main-large-image:hover::after {
  opacity: 1;
}
.main-product-Details .right-section .img-box {
  position: relative;
}
.main-product-Details .right-section .img-box img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
@media screen and (max-width: 992px) {
  .main-product-Details .right-section .img-box img {
    height: 100px;
  }
}
@media screen and (max-width: 424px) {
  .main-product-Details .right-section .img-box img {
    height: 80px;
  }
}
@media screen and (max-width: 374px) {
  .main-product-Details .right-section .img-box img {
    height: 60px;
  }
}
.main-product-Details .right-section .img-box .const {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.main-product-Details .right-section .img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}
.main-product-Details .right-section .img-box:before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  color: white;
  font-size: 1.8rem;
  opacity: 0;
  transition: 0.3s;
  z-index: 3;
}
.main-product-Details .right-section .img-box:hover::before, .main-product-Details .right-section .img-box:hover::after {
  opacity: 1;
}
.main-product-Details .right-section .img-box:hover .const {
  font-size: 30px;
  transition: 0.5s;
  padding-top: 60px;
}
.main-product-Details .right-section .project-info li {
  font-size: 15px;
}
@media screen and (max-width: 1200px) {
  .main-product-Details .right-section .project-info li {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .main-product-Details .right-section .project-info li {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .main-product-Details .right-section .project-info li {
    font-size: 12px;
  }
}
.main-product-Details .right-section .project-info li .title {
  color: rgb(233, 232, 232);
}
.main-product-Details .left-section {
  margin-top: 72px;
  height: 100%;
  padding: 10px 0;
  border: none;
  margin-right: 5px;
}
@media screen and (max-width: 992px) {
  .main-product-Details .left-section {
    margin-right: 0px;
    margin-top: 0;
  }
}
.main-product-Details .left-section .section-title {
  color: white;
  font-weight: bold;
}
.main-product-Details .left-section .related-box {
  position: relative;
  padding: 10px 20px;
  border: 1px solid #282828;
}
@media screen and (max-width: 992px) {
  .main-product-Details .left-section .related-box {
    padding: 10px;
  }
}
.main-product-Details .left-section .related-box .title {
  font-size: 1rem;
  font-weight: bold;
  color: white;
}
.main-product-Details .left-section .related-box .title:hover {
  transition: 0.2s;
  color: #0a58ca;
}
.main-product-Details .left-section .related-box span {
  color: var(--text-muted);
}
.main-product-Details .left-section .related-box .related-img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  transition: 0.3s ease;
}
.main-product-Details .left-section .related-box .related-img:hover {
  transform: scale(1.08);
  filter: brightness(1.15);
}
.main-product-Details .left-section .Tags {
  position: relative;
  padding: 10px 20px;
}
.main-product-Details .empty-related {
  background: none;
  border-radius: 18px;
  animation: fadeUp 0.6s ease forwards;
}
.main-product-Details .empty-related .empty-icon {
  width: 70px;
  height: 70px;
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcon 3s ease-in-out infinite;
}
.main-product-Details .empty-related .empty-icon i {
  font-size: 32px;
  color: #fff;
  animation: pulseGlow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.6));
}
@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}
.main-product-Details .empty-related .empty-title {
  color: #fff;
}
.main-product-Details .empty-related .empty-Details {
  color: #cfcfcf;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 426px) {
  .main-large-image img {
    height: 300px;
  }
  .img-box img {
    height: 120px;
  }
}
.main-project-gallery {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}
.main-project-gallery .project-gallery-section .empty-related {
  background: none;
  border-radius: 18px;
  animation: fadeUp 0.6s ease forwards;
}
.main-project-gallery .project-gallery-section .empty-related .empty-icon {
  width: 70px;
  height: 70px;
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcon 3s ease-in-out infinite;
}
.main-project-gallery .project-gallery-section .empty-related .empty-icon i {
  font-size: 32px;
  color: #fff;
  animation: pulseGlow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.6));
}
@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}
.main-project-gallery .project-gallery-section .empty-related .empty-title {
  color: #fff;
}
.main-project-gallery .project-gallery-section .empty-related .empty-Details {
  color: #cfcfcf;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.main-project-gallery .project-gallery-section {
  overflow-x: hidden;
  margin-top: 69px;
}
@media screen and (max-width: 321px) {
  .main-project-gallery .project-gallery-section {
    margin-top: 53px;
  }
}
.main-project-gallery .project-gallery-section .carousel:hover .carousel-info-overlay {
  opacity: 100;
}
.main-project-gallery .project-gallery-section .carousel .carousel-info-overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 25px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  z-index: 10;
  text-align: right;
}
@media screen and (max-width: 992px) {
  .main-project-gallery .project-gallery-section .carousel .carousel-info-overlay {
    opacity: 100;
  }
}
@media screen and (max-width: 767px) {
  .main-project-gallery .project-gallery-section .carousel .carousel-info-overlay {
    padding: 10px 15px;
  }
}
.main-project-gallery .project-gallery-section .carousel .carousel-info-overlay .gallery-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 767px) {
  .main-project-gallery .project-gallery-section .carousel .carousel-info-overlay .gallery-title {
    font-size: 1rem;
  }
}
.main-project-gallery .project-gallery-section .carousel .carousel-info-overlay .photo-counter {
  font-size: 1.1rem;
  opacity: 0.9;
}
.main-project-gallery .project-gallery-section .gallery-main-column {
  padding-left: 15px; /* $padding-base: 15px; */
}
.main-project-gallery .project-gallery-section .height-img {
  height: 700px;
}
@media screen and (max-width: 1200px) {
  .main-project-gallery .project-gallery-section .height-img {
    height: 430px;
  }
}
@media screen and (max-width: 767px) {
  .main-project-gallery .project-gallery-section .height-img {
    height: 200px;
  }
}
.main-project-gallery .project-gallery-section .left-section {
  border: 1px solid #282828;
}
@media screen and (max-width: 992px) {
  .main-project-gallery .project-gallery-section .left-section {
    border: 1px solid #282828;
    margin-top: 0;
  }
}
.main-project-gallery .project-gallery-section .left-section {
  margin-top: 50px;
  height: 100%;
  padding-bottom: 10px;
  margin-right: 5px;
}
.main-project-gallery .project-gallery-section .left-section .section-title {
  color: white;
  font-weight: bold;
}
.main-project-gallery .project-gallery-section .left-section .Tags {
  position: relative;
  padding: 10px 20px;
}
.main-project-gallery .project-gallery-section .carousel {
  /* ===================================== */
  /* اصلاح بخش Carousel */
  /* ===================================== */
}
.main-project-gallery .project-gallery-section .carousel .carousel {
  /* ... سایر استایل‌های کاروسل ... */
}
.main-project-gallery .project-gallery-section .carousel .carousel .carousel-inner {
  width: 100%;
  /* ارتفاع‌های شما در مدیا کوئری‌ها درست هستند */
  height: 600px;
}
.main-project-gallery .project-gallery-section .carousel .carousel {
  /* --- اصلاح مهم: اضافه کردن این بخش --- */
  /* این باعث می‌شود آیتم دربرگیرنده عکس، کل ارتفاع inner را پر کند */
}
.main-project-gallery .project-gallery-section .carousel .carousel .carousel-inner .carousel-item {
  height: 100%;
}
.main-project-gallery .project-gallery-section .carousel .carousel {
  /* ------------------------------------- */
}
@media screen and (max-width: 1200px) {
  .main-project-gallery .project-gallery-section .carousel .carousel .carousel-inner {
    height: 430px;
  }
}
@media screen and (max-width: 767px) {
  .main-project-gallery .project-gallery-section .carousel .carousel .carousel-inner {
    height: 270px;
  }
}
.main-project-gallery .project-gallery-section .carousel .carousel {
  /* بخش عکس اصلی */
}
.main-project-gallery .project-gallery-section .carousel .carousel .gallery-img {
  width: 100%;
  height: 100%; /* حالا این 100% به درستی کار می‌کند */
  object-fit: cover; /* این خط باعث می‌شود عکس دفرمه نشود */
  object-position: center; /* مرکز عکس را نشان می‌دهد */
  display: block; /* برای اطمینان از حذف فواصل اضافی */
}
.main-project-gallery .project-gallery-section .carousel .carousel {
  /* ... بقیه کدهای کاروسل ... */
}
.main-project-gallery .project-gallery-section .carousel {
  /* نکته: اگر در مدیا کوئری آخر (شماره 6) هم ارتفاعی دارید، آن هم درست کار خواهد کرد */
}
@media screen and (max-width: 1200px) {
  .main-project-gallery .project-gallery-section .carousel .carousel-inner {
    height: 430px;
  }
}
@media screen and (max-width: 767px) {
  .main-project-gallery .project-gallery-section .carousel .carousel-inner {
    height: 200px;
  }
}
.main-project-gallery .project-gallery-section .carousel .carousel-control-prev, .main-project-gallery .project-gallery-section .carousel .carousel-control-next {
  width: 15%;
  opacity: 1;
}
.main-project-gallery .project-gallery-section .carousel .carousel-control-prev-icon, .main-project-gallery .project-gallery-section .carousel .carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: black;
  border-radius: 50%;
  padding: 10px;
  filter: none;
  transition: background-color 0.3s;
}
.main-project-gallery .project-gallery-section .carousel .carousel-control-prev:hover .main-project-gallery .project-gallery-section .carousel .carousel-control-prev-icon, .main-project-gallery .project-gallery-section .carousel .carousel-control-prev:hover .main-project-gallery .project-gallery-section .carousel .carousel-control-next-icon, .main-project-gallery .project-gallery-section .carousel .carousel-control-next:hover .main-project-gallery .project-gallery-section .carousel .carousel-control-prev-icon, .main-project-gallery .project-gallery-section .carousel .carousel-control-next:hover .main-project-gallery .project-gallery-section .carousel .carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.6);
}
.main-project-gallery .project-gallery-section {
  /* ===================================== */
  /* 4. Related Projects (پروژه‌های مرتبط) */
  /* ===================================== */
}
.main-project-gallery .project-gallery-section .related-projects-column {
  padding-right: 15px; /* $padding-base: 15px; */
}
.main-project-gallery .project-gallery-section .related-projects-column .related-projects-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #212529; /* $text-color: #212529; */
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid #0d6efd; /* $primary-color: #0d6efd; */
}
.main-project-gallery .project-gallery-section .related-projects-column .related-item {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  background-color: #fff;
  transition: all 0.2s;
}
.main-project-gallery .project-gallery-section .related-projects-column .related-item:hover {
  background-color: #f1f3f5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.main-project-gallery .project-gallery-section .related-projects-column .related-item .related-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}
.main-project-gallery .project-gallery-section .related-projects-column .related-item .related-project-title {
  font-weight: 600;
  color: #212529; /* $text-color: #212529; */
}
.main-project-gallery .project-gallery-section .related-projects-column .related-item .related-project-subtitle {
  font-size: 0.9rem;
}
.main-project-gallery .project-gallery-section {
  /* ===================================== */
  /* 6. Responsive (ریسپانسیو) */
  /* ===================================== */
}
@media (max-width: 991.98px) {
  .main-project-gallery .project-gallery-section .carousel-inner {
    height: 400px; /* $carousel-height-mobile: 400px; */
  }
  .main-project-gallery .project-gallery-section .gallery-main-column, .main-project-gallery .project-gallery-section .related-projects-column {
    padding-left: 12px;
    padding-right: 12px;
  }
  .main-project-gallery .project-gallery-section .related-projects-column {
    margin-top: 30px;
  }
}
.main-project-gallery .related-box {
  position: relative;
  padding: 10px 20px;
  border: 1px solid #282828;
}
@media screen and (max-width: 992px) {
  .main-project-gallery .related-box {
    padding: 10px;
  }
}
.main-project-gallery .related-box .title {
  font-size: 1rem;
  font-weight: bold;
  color: white;
}
.main-project-gallery .related-box .title:hover {
  transition: 0.2s;
  color: #0a58ca;
}
.main-project-gallery .related-box span {
  color: var(--text-muted);
}
.main-project-gallery .related-box .related-img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  transition: 0.3s ease;
}
.main-project-gallery .related-box .related-img:hover {
  transform: scale(1.08);
  filter: brightness(1.15);
}

.gallery-close-btn {
  margin-top: 10px;
}

.AboutCompany .bg-typo-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.AboutCompany .bg-typo-wrap .bg-typo {
  position: absolute;
  font-size: 12vw;
  font-weight: 800;
  opacity: 0.9;
  transform-origin: center;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 426px) {
  .AboutCompany .bg-typo-wrap {
    display: none;
  }
}
.AboutCompany .black-bg {
  background-color: var(--bg-dark);
}
.AboutCompany h2.title {
  font-size: 272px;
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  user-select: none;
  pointer-events: none;
}
.AboutCompany p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
}
.AboutCompany .common-btn img {
  width: 24px;
}
.AboutCompany {
  /* ========================= */
  /* Dark Theme */
  /* ========================= */
}
.AboutCompany .theme-dark h2.title {
  color: rgba(255, 255, 255, 0.08);
}
.AboutCompany .theme-dark p {
  color: #cccccc;
}
.AboutCompany {
  /* ========================= */
  /* Banner */
  /* ========================= */
}
.AboutCompany .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.AboutCompany .banner-text h2 {
  font-size: 104px;
  font-weight: 400;
  color: #ffffff;
}
.AboutCompany .banner-text h3 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
}
.AboutCompany {
  /* ========================= */
  /* Designer */
  /* ========================= */
}
.AboutCompany .designer-section {
  padding: 220px 0 0;
}
@media screen and (max-width: 426px) {
  .AboutCompany .designer-section {
    padding: 120px 0 0;
  }
}
.AboutCompany .designer-box {
  width: 100%;
  height: 605px;
  position: relative;
}
@media screen and (max-width: 1025px) {
  .AboutCompany .designer-box {
    height: 500px;
  }
}
@media screen and (max-width: 769px) {
  .AboutCompany .designer-box {
    height: 400px;
  }
}
.AboutCompany .designer-box .box-border {
  position: absolute;
  border: 2px solid #ffffff;
  height: 88%;
  width: 90%;
}
.AboutCompany .designer-box .team-member {
  aspect-ratio: 1/1;
  width: 315px;
  position: absolute;
}
.AboutCompany .designer-box .team-member img {
  width: 100%;
  transition: filter 0.8s ease, transform 0.8s ease;
}
.AboutCompany .designer-box .team1 {
  top: -22%;
  left: 4%;
}
.AboutCompany .designer-box .team2 {
  top: 12%;
  right: 6%;
}
.AboutCompany .designer-box .team3 {
  bottom: 0;
  left: 8%;
}
.AboutCompany {
  /* ========================= */
  /* Projects */
  /* ========================= */
}
.AboutCompany .project-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.AboutCompany .project-content p {
  font-size: 16px;
  margin-bottom: 8px;
}
.AboutCompany .project-content .common-btn {
  padding: 8px 19px;
}
.AboutCompany .project-content .common-btn img {
  position: relative;
}
.AboutCompany {
  /* ========================= */
  /* Testimonial */
  /* ========================= */
}
.AboutCompany .testimonial-section .content h3 {
  font-size: 20px;
  color: #333333;
}
.AboutCompany .testimonial-section .content p {
  font-size: 16px;
  font-style: italic;
  color: #333333;
}
.AboutCompany .testimonial-section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.AboutCompany {
  /* ========================= */
  /* Contact */
  /* ========================= */
}
.AboutCompany .contact-us h4 {
  font-size: 32px;
  color: #333333;
}
.AboutCompany .contact-us .nav .nav-item img {
  position: absolute;
  width: 32px;
  top: -2px;
}
.AboutCompany .contact-info h3 {
  font-size: 64px;
  text-transform: uppercase;
  color: #2e4413;
}
.AboutCompany .contact-info p {
  font-size: 16px;
  color: #2e4413;
}
.AboutCompany {
  /* ========================= */
  /* Responsive */
  /* ========================= */
}
@media (max-width: 1399px) {
  .AboutCompany .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .AboutCompany .container {
    max-width: 960px;
  }
  .AboutCompany h2.title {
    font-size: 148px;
    top: -20px;
  }
  .AboutCompany .common-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
  .AboutCompany .common-btn img {
    width: 20px;
  }
  .AboutCompany .banner-text h2 {
    font-size: 85px;
  }
  .AboutCompany .designer-box .team-member {
    width: 260px;
  }
  .AboutCompany .project-content p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .AboutCompany .container {
    max-width: 720px;
  }
  .AboutCompany h2.title {
    font-size: 110px;
    top: -17px;
  }
  .AboutCompany p {
    font-size: 16px;
  }
  .AboutCompany .banner-text h2 {
    font-size: 65px;
  }
  .AboutCompany .designer-box {
    height: 390px;
  }
  .AboutCompany .designer-box .team-member {
    width: 190px;
  }
}
@media (max-width: 767px) {
  .AboutCompany .container {
    max-width: calc(100% - 12px);
  }
  .AboutCompany h2.title {
    font-size: 52px;
  }
  .AboutCompany p {
    font-size: 12px;
  }
  .AboutCompany .banner-text h2 {
    font-size: 36px;
  }
  .AboutCompany .designer-box {
    height: 300px;
  }
  .AboutCompany .designer-box .team-member {
    width: 152px;
  }
  .AboutCompany .project-content p {
    font-size: 8px;
  }
  .AboutCompany .testimonial-section .content {
    border: 2px solid #1c1c1c !important;
  }
}
@media (max-width: 426px) {
  .AboutCompany .designer-box {
    height: 300px;
  }
  .AboutCompany .designer-box .team-member {
    width: 200px;
  }
  .AboutCompany .project-content p {
    font-size: 8px;
  }
  .AboutCompany .testimonial-section .content {
    border: 2px solid #1c1c1c !important;
  }
}
@media (max-width: 376px) {
  .AboutCompany .designer-box {
    height: 330px;
  }
  .AboutCompany .designer-box .team-member {
    width: 200px;
  }
  .AboutCompany .project-content p {
    font-size: 8px;
  }
  .AboutCompany .testimonial-section .content {
    border: 2px solid #1c1c1c !important;
  }
}
.AboutCompany {
  /* ========================================================== */
  /* 📌 MOBILE TYPOGRAPHY (ABOUT ME) + GSAP BACKGROUND EFFECT   */
  /* ========================================================== */
}
@media (max-width: 768px) {
  .AboutCompany .about-bg {
    position: relative;
    overflow: hidden;
  }
  .AboutCompany .mobile-typo {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22vw;
    font-weight: 800;
    letter-spacing: -2px;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
  }
  .AboutCompany {
    /* تمام محتوا روی تایپوگرافی قرار گیرد */
  }
  .AboutCompany .about-bg .container,
  .AboutCompany .about-bg .designer-box {
    position: relative;
    z-index: 5;
  }
}

.team-area {
  padding: 60px 0;
  background-color: #fff;
}
.team-area .team-items .single-item {
  margin-bottom: 30px;
}
.team-area .item {
  position: relative;
}
.team-area .item:hover .thumb::after {
  opacity: 0.7;
}
.team-area .item:hover .thumb img {
  opacity: 0.6;
}
.team-area .item:hover .thumb .overlay {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team-area .item .thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.team-area .item .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #232323;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}
.team-area .item .thumb img {
  width: 100%;
  transition: all 0.35s ease-in-out;
}
.team-area .item .thumb .overlay {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  z-index: 1;
  transition: all 0.35s ease-in-out;
}
.team-area .item .thumb .overlay h4 {
  color: #fff;
  text-transform: uppercase;
}
.team-area .item .thumb .overlay p {
  color: #fff;
  font-size: 13px;
  line-height: 1.5rem;
}
.team-area .item .info {
  position: relative;
  background: #fff;
  padding: 40px 20px 20px;
  text-align: center;
  z-index: 9;
  box-shadow: 0 0 10px #ccc;
}
.team-area .item .info h4 {
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.team-area .item .info span {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}
.team-area .item .info .message {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  text-align: center;
}
.team-area .item .info .message a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  color: var(--text-muted);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #ccc;
}
.team-area .item .info .message a i {
  font-weight: 500;
}
.team-area .social li {
  display: inline-block;
}
.team-area .social li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
}
.team-area .social li.twitter a {
  background-color: #00b6f1;
}
.team-area .social li.pinterest a {
  background-color: #bd081c;
}
.team-area .social li.facebook a {
  background-color: #3b5998;
}
.team-area .social li.google-plus a {
  background-color: #df4a32;
}
.team-area .social li.vimeo a {
  background-color: #1ab7ea;
}
.team-area .social li.instagram a {
  background-color: #cd486b;
}

.main-Awards {
  position: relative;
  z-index: 2;
  background: none;
}
.main-Awards .DetailsSection {
  padding-bottom: 20px;
  background: white;
  text-align: right;
}
.main-Awards .DetailsSection .label-light {
  font-size: 14px;
  color: #777;
  margin-bottom: 6px;
}
.main-Awards .DetailsSection .main-title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 25px;
  color: black;
}
@media screen and (max-width: 1025px) {
  .main-Awards .DetailsSection .main-title {
    font-size: 17px;
  }
}
@media screen and (max-width: 376px) {
  .main-Awards .DetailsSection .main-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 321px) {
  .main-Awards .DetailsSection .main-title {
    font-size: 12px;
  }
}
.main-Awards .DetailsSection .desc-text {
  line-height: 2rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}
@media screen and (max-width: 1025px) {
  .main-Awards .DetailsSection .desc-text {
    font-size: 13px;
  }
}
@media screen and (max-width: 426px) {
  .main-Awards .DetailsSection .desc-text {
    line-height: 1.7rem;
    font-size: 13px;
  }
}
@media screen and (max-width: 376px) {
  .main-Awards .DetailsSection .desc-text {
    font-size: 11px;
    line-height: 1.5rem;
  }
}
@media screen and (max-width: 321px) {
  .main-Awards .DetailsSection .desc-text {
    font-size: 9px;
    line-height: 1.3rem;
  }
}
.main-Awards .section-subtitle span {
  font-weight: bold;
  font-size: 1.5rem;
  color: black;
}

.introduction-awards .service-hero {
  z-index: 1; /* لایه پایین‌تر */
  height: 500px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.introduction-awards .service-hero .hero-bg-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  font-weight: 900;
  white-space: nowrap;
  z-index: 1;
  letter-spacing: 25px;
  overflow: hidden;
}
.introduction-awards .service-hero .hero-bg-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotate(-10deg);
  animation: slideIn 1s forwards;
}
.introduction-awards .service-hero .hero-bg-text span:nth-child(1) {
  animation-delay: 0s;
}
.introduction-awards .service-hero .hero-bg-text span:nth-child(2) {
  animation-delay: 0.05s;
}
.introduction-awards .service-hero .hero-bg-text span:nth-child(3) {
  animation-delay: 0.1s;
}
.introduction-awards .service-hero .hero-bg-text span:nth-child(4) {
  animation-delay: 0.15s;
}
.introduction-awards .service-hero .hero-bg-text span:nth-child(5) {
  animation-delay: 0.2s;
}
.introduction-awards .service-hero .hero-bg-text {
  /* همینطور تا تعداد حروف متن شما */
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(50px) rotate(-10deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}
@media screen and (max-width: 1200px) {
  .introduction-awards .service-hero {
    height: 300px;
  }
  .introduction-awards .service-hero .hero-bg-text {
    font-size: 140px;
    top: 55%;
  }
  .introduction-awards .service-hero h2 {
    font-size: 150px;
    top: -1px;
  }
  .introduction-awards .service-hero h3 {
    font-size: 50px;
    bottom: 60px;
  }
}
@media screen and (max-width: 992px) {
  .introduction-awards .service-hero {
    height: 250px;
  }
  .introduction-awards .service-hero .hero-bg-text {
    font-size: 100.5px;
    top: 60%;
  }
  .introduction-awards .service-hero h2 {
    font-size: 130px;
    top: -1px;
  }
  .introduction-awards .service-hero h3 {
    font-size: 50px;
    bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .introduction-awards .service-hero {
    height: 200px;
  }
  .introduction-awards .service-hero .hero-bg-text {
    font-size: 60px;
    top: 60%;
    letter-spacing: 10px;
  }
}

/* ---------------------- Awards Section ---------------------- */
.main-Awards {
  border-bottom: 1px solid var(--border-color);
}
.main-Awards .awards-section {
  position: relative;
  padding: 10px 15px;
}
.main-Awards .awards-section .section-title {
  margin-bottom: 10px;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
}
.main-Awards .awards-section {
  /* Award item */
}
.main-Awards .awards-section .award-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  background: var(--bg-dark);
  transition: all 0.5s ease;
}
.main-Awards .awards-section .award-item.right {
  flex-direction: row-reverse;
}
.main-Awards .awards-section .award-item .award-image {
  width: 45%;
  position: relative;
  overflow: hidden;
  height: 300px;
}
.main-Awards .awards-section .award-item .award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.main-Awards .awards-section .award-item .award-image img.active {
  opacity: 1;
}
.main-Awards .awards-section .award-item .award-image .slider-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
  z-index: 10;
}
.main-Awards .awards-section .award-item .award-image .slider-controls .slider-btn {
  padding: 6px 12px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}
.main-Awards .awards-section .award-item .award-image .slider-controls .slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.main-Awards .awards-section .award-item {
  /* ---------------------- افکت توضیحات ---------------------- */
}
.main-Awards .awards-section .award-item .award-content {
  width: 50%;
  padding: 0 30px;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}
.main-Awards .awards-section .award-item .award-content.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.main-Awards .awards-section .award-item .award-content span {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 25px;
  color: white;
}
@media screen and (max-width: 1025px) {
  .main-Awards .awards-section .award-item .award-content span {
    font-size: 17px;
  }
}
@media screen and (max-width: 376px) {
  .main-Awards .awards-section .award-item .award-content span {
    font-size: 14px;
  }
}
@media screen and (max-width: 321px) {
  .main-Awards .awards-section .award-item .award-content span {
    font-size: 12px;
  }
}
.main-Awards .awards-section .award-item .award-content p {
  line-height: 2rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}
@media screen and (max-width: 1025px) {
  .main-Awards .awards-section .award-item .award-content p {
    font-size: 13px;
  }
}
@media screen and (max-width: 426px) {
  .main-Awards .awards-section .award-item .award-content p {
    line-height: 1.7rem;
    font-size: 13px;
  }
}
@media screen and (max-width: 376px) {
  .main-Awards .awards-section .award-item .award-content p {
    font-size: 11px;
    line-height: 1.5rem;
  }
}
@media screen and (max-width: 321px) {
  .main-Awards .awards-section .award-item .award-content p {
    font-size: 9px;
    line-height: 1.3rem;
  }
}
.main-Awards .awards-section {
  /* ---------------------- Responsive ---------------------- */
}
@media (max-width: 992px) {
  .main-Awards .awards-section .award-item {
    flex-direction: column !important;
    text-align: center;
  }
  .main-Awards .awards-section .award-item .award-image,
  .main-Awards .awards-section .award-item .award-content {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 426px) {
  .main-Awards .awards-section .award-content span {
    font-size: 1.2rem;
  }
  .main-Awards .awards-section .award-content p {
    font-size: 0.7rem;
    line-height: 1.5rem;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #151515;
  border-bottom: 1px solid var(--border-color);
  color: white;
  transition: background 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background: #151515;
  padding: 0.5rem 1rem;
}
.navbar a.logo-header {
  color: white;
  margin-left: 30px;
  font-size: 30px;
}
@media screen and (max-width: 769px) {
  .navbar a.logo-header {
    margin-left: 10px;
  }
}
@media screen and (max-width: 376px) {
  .navbar a.logo-header {
    margin-right: 5px;
    font-size: 22px;
  }
}
@media screen and (max-width: 305px) {
  .navbar a.logo-header {
    font-size: 20px;
  }
}
@media screen and (max-width: 290px) {
  .navbar a.logo-header {
    font-size: 17px;
  }
}
@media screen and (max-width: 273px) {
  .navbar a.logo-header {
    font-size: 14px;
  }
}
.navbar .right-box span {
  font-family: "Poppins";
  display: initial;
}
@media screen and (max-width: 426px) {
  .navbar .right-box span {
    display: none;
  }
}
.navbar .login-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 1px solid #383838;
  border-radius: 5px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
  background: none;
}
@media screen and (max-width: 321px) {
  .navbar .login-btn {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 290px) {
  .navbar .login-btn {
    width: 30px;
    height: 30px;
  }
}
.navbar .login-btn i,
.navbar .login-btn span {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
}
.navbar .login-btn i {
  color: black;
  font-size: 20px;
  animation: iconLoop 4s infinite;
}
.navbar .login-btn span {
  color: #000;
  animation: textLoop 4s infinite;
}
.navbar .login-btn:hover i, .navbar .login-btn:focus i {
  animation: none;
  opacity: 0;
}
.navbar .login-btn:hover span, .navbar .login-btn:focus span {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}
.navbar .login-btn:hover, .navbar .login-btn:focus {
  border: 1px solid #4c4c4c;
}
.navbar button.btn-menu {
  font-size: 40px;
  background: none;
  color: white;
  border: none;
}
@media screen and (max-width: 321px) {
  .navbar button.btn-menu {
    font-size: 30px;
  }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9998;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  transform: translateX(-100%);
  transition: transform 0.6s;
  display: flex;
  flex-direction: row;
  z-index: 9998;
  overflow: hidden;
}
.menu-panel.open {
  transform: translateX(0);
}
.menu-panel .menu-left {
  width: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}
.menu-panel .menu-left .quote {
  z-index: 1;
  font-size: 1.1rem;
  max-width: 600px;
  color: #000;
}
.menu-panel .menu-left .quote h2 {
  font-family: "Poppins";
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.menu-panel .menu-left .quote p {
  font-family: "Poppins";
}
@media screen and (max-width: 992px) {
  .menu-panel .menu-left {
    display: none;
  }
}
.menu-panel .menu-right {
  overflow-x: hidden;
  padding-right: 0;
  width: 50%;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
@media screen and (max-width: 1025px) {
  .menu-panel .menu-right {
    margin-top: 100px;
  }
}
@media screen and (max-width: 992px) {
  .menu-panel .menu-right {
    width: 100%;
    margin-top: -60px;
    align-items: start;
    justify-content: start;
    padding-right: 100px;
  }
}
@media screen and (max-width: 767px) {
  .menu-panel .menu-right {
    width: 100%;
    margin-top: -60px;
    align-items: start;
    justify-content: start;
    padding-right: 1px;
  }
}
@media screen and (max-width: 424px) {
  .menu-panel .menu-right {
    margin-top: -120px;
  }
}
.menu-panel .menu-right .menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: menu-counter;
}
.menu-panel .menu-right .menu-links li {
  width: 550px;
  margin: 1.3rem 0;
  position: relative;
  counter-increment: menu-counter;
}
@media screen and (max-width: 426px) {
  .menu-panel .menu-right .menu-links li {
    width: 350px;
  }
}
@media screen and (max-width: 375px) {
  .menu-panel .menu-right .menu-links li {
    width: 300px;
  }
}
@media screen and (max-width: 320px) {
  .menu-panel .menu-right .menu-links li {
    width: 270px;
  }
}
.menu-panel .menu-right .menu-links li::before {
  content: "0" counter(menu-counter);
  position: absolute;
  right: 270px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.4s;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .menu-panel .menu-right .menu-links li::before {
    right: 130px;
  }
}
@media screen and (max-width: 424px) {
  .menu-panel .menu-right .menu-links li::before {
    right: 110px;
  }
}
@media screen and (max-width: 374px) {
  .menu-panel .menu-right .menu-links li::before {
    right: 100px;
  }
}
.menu-panel .menu-right .menu-links li:hover::before {
  color: #fff;
}
.menu-panel .menu-right .menu-links li a {
  display: flex;
  justify-content: space-between; /* فارسی راست، انگلیسی چپ */
  align-items: center;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 100;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.75rem 1rem;
  transition: all 0.4s;
  transform: translateX(-20px);
  opacity: 0;
  border-right: 4px solid transparent;
}
.menu-panel .menu-right .menu-links li a .fa {
  order: 2; /* فارسی دوم بیاد سمت چپ */
  direction: rtl;
  text-align: right;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .menu-panel .menu-right .menu-links li a .fa {
    position: absolute;
    right: 170px;
  }
}
@media screen and (max-width: 424px) {
  .menu-panel .menu-right .menu-links li a .fa {
    position: absolute;
    right: 150px;
  }
}
.menu-panel .menu-right .menu-links li a .en {
  margin-left: 100px;
  order: 1;
  direction: ltr;
  text-align: left;
  flex: 1;
  opacity: 0.85;
  font-family: "Poppins";
}
@media screen and (max-width: 767px) {
  .menu-panel .menu-right .menu-links li a .en {
    position: absolute;
    width: 80px;
    right: 20px;
    text-align: left;
  }
}
@media screen and (max-width: 424px) {
  .menu-panel .menu-right .menu-links li a .en {
    position: absolute;
    width: 60px;
    right: 20px;
    text-align: left;
  }
}
@media screen and (max-width: 374px) {
  .menu-panel .menu-right .menu-links li a .en {
    position: absolute;
    width: 50px;
    right: 20px;
    text-align: left;
  }
}
.menu-panel .menu-right .menu-links li a.show {
  transform: translateX(0);
  opacity: 1;
}
.menu-panel .menu-right .menu-links li a:hover, .menu-panel .menu-right .menu-links li a.active {
  color: #fff;
  transform: translateX(0);
  opacity: 1;
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .menu-panel .menu-right .menu-links li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 426px) {
  .menu-panel .menu-right .menu-links li a {
    font-size: 1.2rem;
    padding: 20px;
  }
}
@media screen and (max-width: 374px) {
  .menu-panel .menu-right .menu-links li a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 769px) {
  .menu-panel .menu-right .menu-links {
    margin-top: 140px;
  }
}
@media screen and (max-width: 424px) {
  .menu-panel .menu-right .menu-links {
    margin-top: 180px;
  }
}
@media screen and (max-width: 769px) {
  .menu-panel .menu-right {
    width: 100%;
  }
}

footer {
  border-top: 1px solid var(--border-color);
}
footer .main-footer {
  background: #151515;
  color: white;
  padding: 10px 0 0 0;
  position: relative;
}
footer .main-footer html {
  scroll-behavior: smooth;
}
footer .main-footer .footer-top {
  position: relative;
  padding: 20px 0;
}
footer .main-footer .footer-top .top-btn {
  position: absolute;
  top: 0;
  left: 10px;
}
footer .main-footer .footer-top .top-btn .scroll-top-btn {
  background: none;
  border: none;
}
footer .main-footer .footer-top .top-btn .scroll-top-btn svg {
  margin-top: 10px;
  width: 100px;
  height: 100px;
  animation: floatUpDown 2.5s ease-in-out infinite;
  color: white;
}
footer .main-footer .footer-top .footer-logo {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}
footer .main-footer .footer-top .footer-logo img {
  width: 50px;
  height: 50px;
  margin-top: 10px;
}
footer .main-footer .footer-top .footer-links a {
  font-family: "Poppins";
  color: white;
  text-decoration: none;
  font-weight: 100;
  margin: 0 30px;
  transition: color 0.3s;
  font-size: 1.2rem;
}
@media screen and (max-width: 1200px) {
  footer .main-footer .footer-top .footer-links a {
    margin: 0 25px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 992px) {
  footer .main-footer .footer-top .footer-links a {
    margin: 0 20px;
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  footer .main-footer .footer-top .footer-links a {
    font-size: 1.3rem;
  }
}
footer .main-footer .footer-top .footer-links a:hover {
  color: #ccc;
}
footer .main-footer .footer-bottom {
  padding: 10px 0;
  font-size: 0.9rem;
  color: #ccc;
}
@media (min-width: 992px) {
  footer .main-footer .footer-bottom .right-text {
    text-align: right;
  }
}
@media (min-width: 992px) {
  footer .main-footer .footer-bottom .left-text {
    text-align: left;
  }
}
@media (max-width: 991px) {
  footer .main-footer .footer-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .main-footer .footer-bottom .left-text {
    order: 1;
    margin-bottom: 5px;
  }
  footer .main-footer .footer-bottom .right-text {
    order: 2;
  }
}
@media (max-width: 767px) {
  footer .main-footer .row {
    justify-content: space-between;
  }
  footer .main-footer .footer-links {
    flex-direction: column !important;
    align-items: center;
  }
  footer .main-footer .footer-links a {
    display: block !important;
    margin: 20px 0;
  }
}

/* تعریف انیمیشن */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.main-product .skeleton-card {
  border-radius: 0;
  background: #e2e2e2;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.main-product .skeleton-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(225, 225, 225, 0) 0%, rgba(245, 245, 245, 0.6) 50%, rgba(225, 225, 225, 0) 100%);
  transform: translateX(-100%);
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/*# sourceMappingURL=style.min.css.map */
