.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image-container {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image-container:hover .about-img {
  transform: scale(1.03);
}

.about-text-content {
  flex: 1;
  padding: 30px;
}
.about-btn {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid transparent;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d84e35 0%, #b13737 100%); 
  margin-left: 20px;
  box-shadow: 0 4px 15px rgba(216, 78, 53, 0.3); 
}

.about-btn:hover {
  background: linear-gradient(135deg, #c9452e 0%, #9e2f2f 100%); 
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(177, 55, 55, 0.4); 
}

.section-subtitle {
  color: #ec6708;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #FF6B00 0%, #FFA500 100%);
}

.about-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}




@media (max-width: 992px) {
  .about-content-wrapper {
      flex-direction: column;
  }

  .about-image-container {
      width: 100%;
  }

  .about-img {
      height: 400px;
  }

  
}

@media (max-width: 768px) {
  .about-section {
      padding: 50px 0;
  }

  .section-title {
      font-size: 2rem;
  }

  .about-img {
      height: 300px;
  }

}