/* Start custom CSS for html, class: .elementor-element-7a0baa6 */.about-unique {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 60px auto;
  background: #fff;
  box-shadow: 0 12px 25px rgba(255,85,0,0.3);
  border-radius: 20px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  color: #222;
}

.about-left {
  flex: 1 1 500px;
  padding: 40px 50px;
  animation: fadeInLeft 1s ease forwards;
}

.about-left h1 {
  color: #ff5500;
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.about-left p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

.about-left strong {
  color: #ff5500;
}

.about-right {
  flex: 1 1 400px;
  background: linear-gradient(135deg, #ff6600 0%, #ff3300 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease forwards;
}

.about-right img {
  max-width: 90%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255,85,0,0.5);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.about-right img:hover {
  transform: scale(1);
  box-shadow: 0 15px 45px rgba(255,85,0,0.7);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
  .about-unique {
    flex-direction: column;
  }
  .about-left, .about-right {
    flex: 1 1 100%;
    padding: 20px;
  }
  .about-left h1 {
    font-size: 2.2rem;
  }
  .about-right {
    margin-top: 30px;
  }
}/* End custom CSS */