/* ===== About Me Section ===== */
.dr1044aboutushome {
  width: 100%;
  background: linear-gradient(135deg, #e0f0ff 0%, #f0f4f8 100%);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Arial', sans-serif;
}

.dr1044aboutushome .about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 50px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 40px rgba(0,0,0,0.15);
  padding: 40px;
}

/* Image */
.dr1044aboutushome .about-image {
  flex: 1;
  opacity: 0;
  transform: translateX(50px);
}

.dr1044aboutushome .about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.dr1044aboutushome .about-image img:hover {
  transform: scale(1.03);
}

/* Content */
.dr1044aboutushome .about-content {
  flex: 1;
  opacity: 0;
  transform: translateX(50px);
}

.dr1044aboutushome .about-content h2 {
  font-size: 2.2rem;
  color: #0b1d2e;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.dr1044aboutushome .about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* Buttons */
.dr1044aboutushome .about-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.dr1044aboutushome .about-buttons .btn {
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.dr1044aboutushome .about-buttons .btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.dr1044aboutushome .about-buttons .btn.whatsapp:hover {
  background: #1ebe57;
  transform: scale(1.08);
}

.dr1044aboutushome .about-buttons .btn.call {
  background: #f0c14b;
  color: #0b1d2e;
}

.dr1044aboutushome .about-buttons .btn.call:hover {
  background: #ffd700;
  transform: scale(1.08);
}

/* Fade-in animation */
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .dr1044aboutushome .about-container {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .dr1044aboutushome .about-image {
    order: -1;
  }

  .dr1044aboutushome .about-buttons {
    justify-content: center;
  }
}