.dr1030hero4 {
  background: linear-gradient(to right, #f5f5f5, #e0e0e0);
  color: #424242;
  padding: 100px 20px;
  font-family: 'Noto Serif Telugu', 'Poppins', sans-serif;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background-image: url('https://www.transparenttextures.com/patterns/white-diamond.png');
}

.hero4-content {
  max-width: 1150px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  background: rgba(255, 255, 255, 0.6);
  padding: 40px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.hero4-content.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero4-text {
  flex: 1 1 48%;
  text-align: left;
}

.hero4-text h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #5e35b1;
  margin-bottom: 15px;
  line-height: 1.3;
  text-shadow: 1px 1px 5px rgba(240, 240, 255, 0.6);
}

.telugu-subtitle {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #7e57c2;
  display: block;
  margin-top: 10px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.hero4-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #424242;
}

.telugu-desc {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 1.05rem;
  color: #5d4037;
  display: block;
  margin-top: 6px;
  opacity: 0.95;
}

.hero4-button {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(to right, #9e9e9e, #757575);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(128, 128, 128, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero4-button:hover {
  background: linear-gradient(to right, #616161, #424242);
  transform: translateY(-2px);
}

.hero4-image-wrapper {
  flex: 1 1 48%;
  display: flex;
  justify-content: center;
}

.hero4-image {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  animation: floatSoft 6s ease-in-out infinite;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero4-content {
    flex-direction: column;
    text-align: center;
  }

  .hero4-text {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero4-text h1 {
    font-size: 2.2rem;
  }

  .telugu-subtitle {
    font-size: 1.3rem;
  }

  .hero4-text p {
    font-size: 1rem;
  }

  .telugu-desc {
    font-size: 0.95rem;
  }

  .hero4-button {
    margin-top: 15px;
  }

  .hero4-image {
    max-width: 380px;
  }
}