/* ============================
   HERO SECTION 2 - MENS WEAR
============================ */
.dr1049hero2 {
  width: 100%;
  background: linear-gradient(135deg, #dbe6ff, #c8e1ff);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero2-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease-out;
}

/* Text Section */
.hero2-text {
  flex: 1;
  min-width: 280px;
}

.hero2-text h1 {
  font-size: 2.4rem;
  color: #0d47a1;
  font-weight: 900;
  margin-bottom: 15px;
}

.hero2-text p {
  font-size: 1.1rem;
  color: #1a237e;
  margin-bottom: 10px;
}

.hero2-text .telugu-text {
  font-family: 'Noto Serif Telugu', serif;
  font-weight: 600;
  color: #0d47a1;
}

/* Buttons */
.hero2-buttons {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero2-buttons a {
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1da851;
}

.btn-call {
  background: #0d47a1;
  color: #fff;
}

.btn-call:hover {
  background: #08306b;
}

/* Hero Image */
.hero2-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.hero2-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform .3s ease;
}

.hero2-image img:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero2-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero2-buttons {
    justify-content: center;
  }
}

/* ============================
   FADE-IN ANIMATION ON SCROLL
============================ */
.fade-right-on-scroll.in-view {
  opacity: 1 !important;
  transform: translateX(0) !important;
}