/* ================= HERO SECTION ================= */
.dr1050hero {
	position: relative;
	background: linear-gradient(135deg, #0a3cff, #001c8f);
	color: #ffffff;
	text-align: center;
	padding: 100px 16px 80px;
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	overflow: hidden;
}

/* Background Overlay Image */
.dr1050hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		url('/rospdr/2/1050/static/image/hero/home/1/1.png')
		center/cover no-repeat;
	opacity: 0.18;
	z-index: 0;
}

/* ================= CONTENT ================= */
.dr1050hero .hero-content {
	position: relative;
	z-index: 1;
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* ================= BRAND ================= */
.dr1050hero .hero-brand {
	margin-bottom: 28px;
}

.dr1050hero .hero-brand img {
	height: 140px; /* BIG BRAND IMAGE */
	width: auto;
	border-radius: 18px;
	margin-bottom: 18px;
	background: rgba(255, 255, 255, 0.08);
	padding: 10px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
	filter: drop-shadow(0 0 18px rgba(255, 213, 79, 0.6));
	transition: transform 0.4s ease;
}

.dr1050hero .hero-brand img:hover {
	transform: scale(1.06);
}

.dr1050hero .hero-brand h1 {
	font-size: 34px;
	font-weight: 800;
	color: #FFD54F;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

.dr1050hero .telugu {
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.95;
	max-width: 720px;
}

/* ================= MAIN TITLE ================= */
.dr1050hero h2 {
	font-size: 38px;
	font-weight: 800;
	margin: 20px 0 10px;
}

.dr1050hero .subtitle {
	font-size: 17px;
	color: #eaeaea;
	margin-bottom: 24px;
}

/* ================= LOCATION ================= */
.dr1050hero .location {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 15px;
	margin-bottom: 34px;
}

.dr1050hero .location i {
	color: #FFD54F;
	font-size: 18px;
}

/* ================= BUTTONS ================= */
.dr1050hero .hero-btns {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

.dr1050hero .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.dr1050hero .call-btn {
	background: linear-gradient(to right, #ff9800, #ff6f00);
}

.dr1050hero .whatsapp-btn {
	background: linear-gradient(to right, #25d366, #1da851);
}

.dr1050hero .btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 768px) {
	.dr1050hero {
		padding: 80px 14px 60px;
	}
	.dr1050hero .hero-brand img {
		height: 100px; /* Balanced mobile size */
		padding: 8px;
	}
	.dr1050hero .hero-brand h1 {
		font-size: 26px;
	}
	.dr1050hero h2 {
		font-size: 26px;
	}
	.dr1050hero .subtitle {
		font-size: 14px;
	}
	.dr1050hero .telugu {
		font-size: 13.5px;
	}
	.dr1050hero .hero-btns {
		flex-direction: column;
		gap: 14px;
	}
	.dr1050hero .btn {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}
}

@media ( max-width : 480px) {
	.dr1050hero .hero-brand img {
		height: 88px;
	}
	.dr1050hero h2 {
		font-size: 23px;
	}
}