.dr1048hero3 {
  background: linear-gradient(to right, #fffaf0, #fce8c3);
  color: #4e342e;
  padding: 100px 20px;
  font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background-image: url('https://www.transparenttextures.com/patterns/gold-scale.png');
}

.hero3-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  background: rgba(255, 255, 255, 0.55);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero3-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero3-text {
  flex: 1 1 50%;
  text-align: left;
}

.hero3-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #8e6f1f;
  line-height: 1.3;
  text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.5);
}

.telugu-line {
  display: block;
  font-size: 1.5rem;
  color: #b28900;
  font-weight: 600;
  margin-top: 10px;
  font-family: 'Noto Serif Telugu', serif;
}

.hero3-subtitle {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #5d4037;
}

.telugu-subtitle {
  display: block;
  font-size: 1.05rem;
  color: #795548;
  font-family: 'Noto Serif Telugu', serif;
  margin-top: 8px;
  opacity: 0.95;
}

.hero3-button {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.2s ease;
  border: 1px solid #fff8dc;
}

.hero3-button:hover {
  background: linear-gradient(135deg, #c79a2b, #a57c00);
  transform: translateY(-2px);
}

.hero3-image-wrapper {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero3-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero3-content {
    flex-direction: column;
    text-align: center;
  }
  .hero3-text {
    text-align: center;
  }
  .hero3-title {
    font-size: 2.2rem;
  }
  .telugu-line {
    font-size: 1.3rem;
  }
  .hero3-subtitle,
  .telugu-subtitle {
    font-size: 1rem;
  }
  .hero3-button {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
  .hero3-image {
    max-width: 380px;
  }
}