/* ===== DOLA R. KAILASA RAO PROPRIETOR SECTION ===== */
.dr1044proprietor {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0e1f3d, #1b3b6f);
  padding: 60px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Proprietor Card */
.dr1044proprietor .proprietor-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 40px;
  max-width: 1000px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.dr1044proprietor .proprietor-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Proprietor Photo */
.dr1044proprietor .proprietor-photo img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #40c9ff;
  box-shadow: 0 0 45px rgba(64, 201, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1044proprietor .proprietor-photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 55px rgba(64, 201, 255, 0.8);
}

/* Proprietor Content */
.dr1044proprietor .proprietor-content {
  flex: 1;
}

.dr1044proprietor .proprietor-content h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: #40c9ff;
  font-weight: 700;
}

.dr1044proprietor .designation {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 15px;
  font-weight: 500;
}

.dr1044proprietor .short-desc,
.dr1044proprietor .proprietor-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #d6e6ff;
  margin-bottom: 10px;
}

/* Contact Buttons */
.dr1044proprietor .contact-btns {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.dr1044proprietor .contact-btns a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dr1044proprietor .whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.dr1044proprietor .call-btn {
  background: #ffb400;
  color: #000;
}

.dr1044proprietor .whatsapp-btn:hover {
  background: #1db954;
}

.dr1044proprietor .call-btn:hover {
  background: #ff9800;
}

/* Fade Animation */
.dr1044proprietor .proprietor-card {
  transition: opacity 1s ease, transform 1s ease;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .dr1044proprietor .proprietor-photo img {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .dr1044proprietor .proprietor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    gap: 25px;
  }

  .dr1044proprietor .proprietor-photo img {
    width: 300px;
    height: 300px;
  }

  .dr1044proprietor .contact-btns {
    justify-content: center;
    gap: 15px;
  }

  .dr1044proprietor .contact-btns a {
    padding: 12px 20px;
    font-size: 15px;
  }

  .dr1044proprietor .proprietor-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .dr1044proprietor .proprietor-photo img {
    width: 250px;
    height: 250px;
  }

  .dr1044proprietor .contact-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .dr1044proprietor .contact-btns a {
    width: 100%;
    padding: 12px 0;
  }

  .dr1044proprietor .proprietor-content h2 {
    font-size: 24px;
  }

  .dr1044proprietor .proprietor-content p {
    font-size: 14px;
  }
}