/* ============================
   HERO SECTION 4 - FABRICS & DRESS MATERIALS
============================ */
.dr1049hero4 {
	width: 100%;
	background: linear-gradient(135deg, #fff8e1, #ffe0b2);
	padding: 60px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.hero4-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 */
.hero4-text {
	flex: 1;
	min-width: 280px;
}

.hero4-text h1 {
	font-size: 2.4rem;
	color: #bf360c;
	font-weight: 900;
	margin-bottom: 15px;
}

.hero4-text p {
	font-size: 1.1rem;
	color: #e64a19;
	margin-bottom: 10px;
}

.hero4-text .telugu-text {
	font-family: 'Noto Serif Telugu', serif;
	font-weight: 600;
	color: #bf360c;
}

/* Buttons */
.hero4-buttons {
	margin-top: 20px;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero4-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: #bf360c;
	color: #fff;
}

.btn-call:hover {
	background: #8c2d0f;
}

/* Hero Image */
.hero4-image {
	flex: 1;
	min-width: 280px;
	display: flex;
	justify-content: center;
}

.hero4-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;
}

.hero4-image img:hover {
	transform: scale(1.03);
}

/* RESPONSIVE */
@media ( max-width : 900px) {
	.hero4-content {
		flex-direction: column-reverse;
		text-align: center;
	}
	.hero4-buttons {
		justify-content: center;
	}
}

/* ============================
   FADE-IN ANIMATION ON SCROLL
============================ */
.fade-right-on-scroll.in-view {
	opacity: 1 !important;
	transform: translateX(0) !important;
}