/********** common setting **********/


.advantages-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: bold;
}

.advantages-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.advantages-description {
  font-size: small;
  font-weight: normal;
  text-align: justify;
}
.advantages-title{
  font-weight: bold;
  font-size: large;
  text-align: justify;

}
h2 {
  font-size: 2.8rem !important;
  font-weight: 700;
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  cursor: pointer;
}


.jumbotron {
  margin-bottom: 0 !important;
}

.atlas-cta {
  border-radius: 22px !important;
  padding: 12px 30px !important;
  font-weight: 700;
  transition: 0.3s ease-in-out !important;
}

.atlas-cta:hover {
  text-decoration: none;
  transform: translateY(-5px);
}

.atlas-cta-wide {
  width: 100%;
}

.cta-green {
  background: #fb7601;
  color: #ffffff;
  border: 2px solid #ffffff !important;

}

.cta-green:hover {
  color: #ffffff;
  background: #fb7601;
}

.cta-blue {
  background: #ffffff;
  color: #192440;
}

.cta-blue:hover {
  color: #ffffff;
  background: #121a2e;
}

.cta-ghost {
  border: 2px solid #fb7601 !important;
  color: #fb7601;
  background-color: white;
}

.cta-ghost:hover {
  color: #ffffff;
  background: #fb7601;
}

#banner {
  background-size: cover;
}

/********** banner **********/
#banner header {
  overflow: hidden;
}

#banner header img {
  max-width: 80px;
}

/********** feature (skew background) **********/
.feature img {
  width: 100%;
  max-width: 480px;
}

#feature-first {
  background: linear-gradient(168deg, #ffffff 55%, #fb7601 0);
}

#feature-last {
  background: #fb7601;
}

/********** price table **********/
#price-table {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.plan-table {
  transition: 0.3s ease-in-out !important;
}
.plan-table:hover {
  transform: translateY(-10px);
  /*outline: 5px solid #fb7601;*/
}
#price-table__premium {
  background: #192440;
  color: #ffffff;
}

#price-table ul li {
  padding: 5px 0;
}

/********** contact **********/
#contact {
  background-size: cover;
}

#contact ul li {
  padding: 3px 0;
}

#contact form {
  color: #00ffad;
}

#contact form input,
#contact form textarea {
  background: transparent;
  border: 1px solid #00ffad;
  color: #ffffff;
}

/********** copyright **********/
#copyright {
  background: #192440;
  padding: 2rem 3rem;
}

#copyright #social-media a {
  width: 40px;
  height: 40px;
  border-radius: 99%;
  background: #ffffff;
  transition: 0.4s ease;
}

#copyright #social-media a i {
  color: #192440;
  font-size: 1.2rem;
  line-height: 40px;
}

#copyright #social-media a:hover {
  background: #fb7601;
}

#copyright #social-media a:hover i {
  color: #ffffff;
}

/* تعریف انیمیشن fadeInUp */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px); /* از پایین صفحه وارد شود */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* به موقعیت اصلی خود برسد */
  }
}

/* Toast Styling */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  min-width: 250px;
  padding: 15px 20px;
  background-color: #1db954; /* Success color */
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1000;
  font-size: 16px;
  display: none;
}

.toast.error {
  background-color: #e63946; /* Error color */
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

button.disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

/********** RWD **********/
@media (max-width: 575px) {
  #banner h1 {
    font-size: 3.6rem;
  }
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7); /* Darker background */
}
