@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSansWeb(FaNum).eot");
  src: url("../fonts/IRANSansWeb(FaNum).eot?#iefix") format("embedded-opentype"),
    url("../fonts/IRANSansWeb(FaNum).ttf") format("truetype"),
    url("../fonts/IRANSansWeb(FaNum).woff") format("woff"),
    url("../fonts/IRANSansWeb(FaNum).woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "IRANSans_Light";
  src: url("../fonts/IRANSansWeb(FaNum)_Light.eot");
  src: url("../fonts/IRANSansWeb(FaNum)_Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/IRANSansWeb(FaNum)_Light.ttf") format("truetype"),
    url("../fonts/IRANSansWeb(FaNum)_Light.woff") format("woff"),
    url("../fonts/IRANSansWeb(FaNum)_Light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "IRANSans_Medium";
  src: url("../fonts/IRANSansWeb(FaNum)_Medium.eot");
  src: url("../fonts/IRANSansWeb(FaNum)_Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/IRANSansWeb(FaNum)_Medium.ttf") format("truetype"),
    url("../fonts/IRANSansWeb(FaNum)_Medium.woff") format("woff"),
    url("../fonts/IRANSansWeb(FaNum)_Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "IRANSans_Bold";
  src: url("../fonts/IRANSansWeb(FaNum)_Bold.eot");
  src: url("../fonts/IRANSansWeb(FaNum)_Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/IRANSansWeb(FaNum)_Bold.ttf") format("truetype"),
    url("../fonts/IRANSansWeb(FaNum)_Bold.woff") format("woff"),
    url("../fonts/IRANSansWeb(FaNum)_Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}


body {
  font-family: 'IRANSans';
  font-size: 12px;
}

html {
  scroll-behavior: smooth;
}

.top-bar {
  background-color: #343a40;
  color: #f8f9fa;
  font-size: 0.9rem;
  padding: 5px 15px;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar .nav-link {
  font-size: 1rem;
  font-weight: 500;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.animate-slide {
  animation: slideIn 1s ease-out;
  display: flex;
  align-items: center;
}

.animate-slide.delay {
  animation-delay: 0.5s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  height: 90px;
  transition: transform 0.2s;
}

.price-card:hover {
  transform: translateY(-3px);
}

.text-justify {
  text-align: justify;
}