/* ریست اولیه */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* @font-face {
  font-family: 'yekan';
  src: url('../fonts/BYekan.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */
@font-face {
  font-family: 'IRANSansWeb';
  src: url('/static/fonts/IRANSansWeb.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;

}

body {
  font-family: 'IRANSansWeb', sans-serif;
  background: linear-gradient(135deg,  rgba(226,226,226,1) 0%,rgba(219,219,219,1) 50%,rgba(209,209,209,1) 50%,rgba(209,209,209,1) );
  color: #333;
  direction: rtl;
  line-height: 1.6;
  padding-bottom: 200px;
  
}

a {
  color: inherit;
  text-decoration: none;
}

/* .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

.nav-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nav-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #0191ff3a;
  transition: height 0.3s ease;
  z-index: -1;               /* به پشت برده می‌شه */
  pointer-events: none;      /* کلیک رو نمی‌گیره */
}

.nav-item:hover::before {
  height: 100%;
}

.nav-item:hover {
  color: white;
}
/* هدر */
.site-header {
  background-color: #fff;
  padding: 10px 10px;  
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  width: 120px;
  height: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav ul li a {
  font-weight: 500;
  color: #00B38F;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #008a70;
  border-bottom: 2px solid #00B38F;
}

.blink-warning {
  color: red;
  font-weight: bold;
  animation: blink 1s linear infinite;
  padding: 5%;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}







.btn-cta {
  background-color: #00bcd4;
  border: none;
  color: white;
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #009faf;
  color: #fff;
}

.hero-text {
  min-height: 150px;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* بهبود مودال */
#loginModal .modal-content {
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1rem;
}

#loginModal label {
  font-weight: 500;
  margin-top: 8px;
  display: block;
}

#loginModal input {
  font-size: 0.95rem;
  direction: ltr;

}

#loginModal .btn {
  font-size: 0.95rem;
}

@media (max-width: 576px) {
  .hero-banner h1 {
    font-size: 1.5rem;
  }

  .hero-banner p {
    font-size: 0.95rem;
  }
}

.home-hero {
  background: linear-gradient(135deg, #3b3dbb, #4657e2);
  color: #fff;
  padding: 100px 20px 60px;
  text-align: center;
  border-radius: 24px;
  margin: 10px;
}


.home-btn {
  background-color: #ff3d02;
  color: #ffffff;

  padding: 12px 32px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(255, 87, 34, 0.4);
  transition: all 0.3s ease-in-out;
  display: inline-block;
  margin-top: 30px;
}

.home-btn:hover {
  background-color: #e64a19;
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(255, 87, 34, 0.6);
}

.home-box {
  background: #fff;
  padding: 24px 16px;
  margin: -40px auto 0;
  border-radius: 15px;
  max-width: 860px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.home-list {
  padding-right: 1.5rem;
  list-style: none;
}

.home-list li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 12px;
}

.home-list li::before {
  content: "✔";
  position: absolute;
  right: 0;
  color: #0d6efd;
  font-weight: bold;
}
















.user-section .btn-login {
  background-color: #00B38F;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.user-section .btn-login:hover {
  background-color: #008a70;
}


.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 179, 143, 0.3);
}

.btn-glow {
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 10px rgba(0, 179, 143, 0.5);
}

.btn-glow:hover {
  background-color: #00B38F;
  box-shadow: 0px 0px 15px rgba(0, 179, 143, 0.8);
  transform: scale(1.1);
}

.product-card {
  max-width: 280px;
  /* 🚀 جلوگیری از کشیدگی کارت‌ها */
  min-width: 250px;
  flex-grow: 1;
  margin-bottom: 20px;
  /* 🚀 فاصله بین کارت‌ها */
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 12px;
}

.container-lg {
  max-width: 1200px;
  /* 🚀 جلوگیری از کشیدگی بیش‌ازحد در صفحه‌های بزرگ */
}

.row {
  gap: 24px;
  /* 🚀 فاصله استاندارد بین کارت‌ها */
}

.card-img-top {
  max-height: 180px;
  object-fit: cover;
}

.welcome-message {
  font-size: 12px;
  /* 👈 فونت کوچک‌تر */
  color: red;
  /* 👈 رنگ قرمز */
  font-weight: bold;
  /* 👈 متن برجسته */
}

.hover-link {
  transition: all 0.3s ease-in-out;
  position: relative;
}

.hover-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff008c;
  transition: width 0.3s;
}

.hover-link:hover {
  color: #0d6efd !important;
}

.hover-link:hover::after {
  width: 80%;
}

.site-footer {
  box-shadow: 0 -4px 10px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  font-size: 10px;
  opacity: 0.95;
  transition: all 0.3s ease-in-out;

}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
}

.footer-links li {
  display: inline;
}

.footer-hover {
  position: relative;
  transition: color 0.3s ease-in-out;
}

.footer-hover::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffc107;
  transition: width 0.3s ease-in-out;
}

.footer-hover:hover {
  color: #ffc107 !important;
}

.footer-hover:hover::after {
  width: 100%;
}

.text-gradient {
  background: linear-gradient(45deg, #0d6efd, #6f42c1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}








.auth-wrapper {
  width: 100%;
  max-width: 420px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 32px 24px;
  animation: fadeInDown 0.6s ease both;
}

.auth-wrapper h4 {
  color: #374b8c;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.form-control {
  border-radius: 8px;
  height: 44px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
}

.btn-primary {
  background: #0d6efd;
  border: none;
  border-radius: 8px;
  padding: 0.65rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #0b5ed7;
}

.otp-inputs {
  direction: ltr;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.otp-box {
  width: 36px;
  height: 44px;
  font-size: 1.25rem;
  text-align: center;
  direction: ltr;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fdfdfd;
  transition: 0.25s;
}

.otp-box:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
  outline: none;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .otp-box {
    width: 32px;
    height: 40px;
  }
}


#enamad-container {
  position: fixed;
  z-index: 1050;
}

#enamad-container img {
  width: 90px;
  /* اندازه مناسب */
  opacity: 0.9;
  /* کمی شفافیت برای مزاحم نبودن */
  transition: opacity 0.3s ease-in-out;
}

#enamad-container img:hover {
  opacity: 1;
  /* وقتی موس روش رفت، کامل واضح بشه */
}


.card-img-top-wrapper {
  aspect-ratio: 16/10;
  /* یا هر نسبت دلخواه */
  overflow: hidden;
}

.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





@import url("https://fonts.bunny.net/css?family=abel:400");

/* شروع namespace خاص ما */
.carousel-component-wrapper {
	--cc-items: 6;
	--cc-duration: 40s;
	--cc-width: min(80vw, 1200px);
	--cc-item-width: 280px;
	--cc-item-height: 450px;
	--cc-item-gap: 2rem;
	--cc-clr: rgb(0, 132, 209);
	width: var(--cc-width);
	height: var(--cc-item-height);
	overflow: clip;
	position: relative;
	margin: auto;
}

@media screen and (min-width: 600px) {
	.carousel-component-wrapper {
		--cc-duration: 30s;
	}
}

.carousel-component-wrapper[mask] {
	mask-image: linear-gradient(to right, transparent, black 10% 90%, transparent);
}

.carousel-component-wrapper:hover .carousel-component-item {
	animation-play-state: paused;
}

.carousel-component-item {
	position: absolute;
	top: 0;
	left: calc(100% + var(--cc-item-gap));
	width: var(--cc-item-width);
	height: var(--cc-item-height);
	display: grid;
	grid-template-rows: 200px auto 1fr auto;
	gap: 0.25rem;
	border: 1px solid rgba(0, 0, 0, 0.25);
	padding-bottom: 1rem;
	border-radius: 10px;
	background: white;
	color: rgb(49, 65, 88);
	will-change: transform;
	animation-name: cc-marquee;
	animation-duration: var(--cc-duration);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.carousel-component-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.carousel-component-item > *:not(img) {
	padding: 0 1rem;
}

.carousel-component-item > div {
	grid-row: span 2;
	display: grid;
	font-size: 0.8rem;
}

.carousel-component-item h2 {
	font-size: 1rem;
	font-weight: 300;
	padding-block: 0.75rem 0.25rem;
	margin: 0;
}

.carousel-component-item p {
  font-size: 0.5rem;
	margin: 0;
}

.carousel-component-item a {
	text-decoration: none;
	text-transform: lowercase;
	border: 1px solid var(--cc-clr);
	color: var(--cc-clr);
	border-radius: 3px;
  font-size: 0.7rem;
	padding: 0.25rem 0.5rem;
	place-self: start;
	transition: 150ms ease-in-out;
}

.carousel-component-item a:hover,
.carousel-component-item a:focus-visible {
	background-color: var(--cc-clr);
	color: white;
	outline: none;
}

@keyframes cc-marquee {
	100% {
		transform: translateX(
			calc(var(--cc-items) * (var(--cc-item-width) + var(--cc-item-gap)) * -1)
		);
	}
}

.carousel-section {
  width: 100%;
}

.carousel-title {
  font-size: 1.6rem;
  font-weight: 500;
  
  color: rgb(0, 132, 209);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* delay برای هر آیتم */
.carousel-component-wrapper .carousel-component-item:nth-child(1) { --i: 0; animation-delay: calc(var(--cc-duration) / var(--cc-items) * -0); }
.carousel-component-wrapper .carousel-component-item:nth-child(2) { --i: 1; animation-delay: calc(var(--cc-duration) / var(--cc-items) * -1); }
.carousel-component-wrapper .carousel-component-item:nth-child(3) { --i: 2; animation-delay: calc(var(--cc-duration) / var(--cc-items) * -2); }
.carousel-component-wrapper .carousel-component-item:nth-child(4) { --i: 3; animation-delay: calc(var(--cc-duration) / var(--cc-items) * -3); }
.carousel-component-wrapper .carousel-component-item:nth-child(5) { --i: 4; animation-delay: calc(var(--cc-duration) / var(--cc-items) * -4); }
.carousel-component-wrapper .carousel-component-item:nth-child(6) { --i: 5; animation-delay: calc(var(--cc-duration) / var(--cc-items) * -5); }
.carousel-component-wrapper .carousel-component-item:nth-child(7) { --i: 6; animation-delay: calc(var(--cc-duration) / var(--cc-items) * -6); }
.carousel-component-wrapper .carousel-component-item:nth-child(8) { --i: 7; animation-delay: calc(var(--cc-duration) / var(--cc-items) * -7); }



.section_our_solution .row {
  align-items: center;
}

.our_solution_category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.our_solution_category .solution_cards_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution_cards_box .solution_card {
  flex: 0 50%;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2),
    0 5px 15px 0 rgba(37, 44, 97, 0.15);
  border-radius: 15px;
  margin: 8px;
  padding: 10px 15px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  min-height: 265px;
  transition: 0.7s;
}

.solution_cards_box .solution_card:hover {
  background: #309df0;
  color: #fff;
  transform: scale(1.1);
  z-index: 0;
}

.solution_cards_box .solution_card:hover::before {
  background: rgb(85 108 214 / 10%);
}

.solution_cards_box .solution_card:hover .solu_title h3,
.solution_cards_box .solution_card:hover .solu_description p {
  color: #fff;
}

.solution_cards_box .solution_card:before {
  content: "";
  position: absolute;
  background: rgb(85 108 214 / 5%);
  width: 170px;
  height: 400px;
  z-index: -1;
  transform: rotate(42deg);
  right: -56px;
  top: -23px;
  border-radius: 35px;
}

.solution_cards_box .solution_card:hover .solu_description button {
  background: #fff !important;
  color: #309df0;
}



.solution_card .solu_title h3 {
  color: #212121;
  font-size: 1.3rem;
  margin-top: 13px;
  margin-bottom: 13px;
}

.solution_card .solu_description p {
  font-size: 15px;
  margin-bottom: 15px;
}

.solution_card .solu_description button {
  border: 0;
  border-radius: 15px;
  background: linear-gradient(
    140deg,
    #42c3ca 0%,
    #42c3ca 50%,
    #42c3cac7 75%
  ) !important;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 16px;
}

.our_solution_content h1 {
  text-transform: capitalize;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}


.hover_color_bubble {
  position: absolute;
  background: rgb(54 81 207 / 15%);
  width: 100rem;
  height: 100rem;
  left: 0;
  right: 0;
  z-index: -1;
  top: 16rem;
  border-radius: 50%;
  transform: rotate(-36deg);
  left: -18rem;
  transition: 0.7s;
}

.solution_cards_box .solution_card:hover .hover_color_bubble {
  top: 0rem;
}

.solution_cards_box .solution_card .so_top_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution_cards_box .solution_card .so_top_icon img {
  width: 40px;
  height: 50px;
  object-fit: contain;
}

/*start media query*/
@media screen and (min-width: 320px) {
  .sol_card_top_3 {
    position: relative;
    top: 0;
  }

  .our_solution_category {
    width: 100%;
    margin: 0 auto;
  }

  .our_solution_category .solution_cards_box {
    flex: auto;
  }
}
@media only screen and (min-width: 768px) {
  .our_solution_category .solution_cards_box {
    flex: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .sol_card_top_3 {
    position: relative;
    top: -3rem;
  }
  .our_solution_category {
    width: 50%;
    margin: 0 auto;
  }
}







.btm-product-ticker {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  position: relative;
}

.btm-product-track {
  display: flex;
  gap: 2rem;
  position: relative;
  left: 100%;
  animation: scrollTicker linear infinite;
}

.btm-product-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: #333;
}

.btm-product-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
h2.customer-title {
  font-size: 1.125rem; 
  font-weight: bold;  
  margin: 0;
}



