/* ===== Hero Section ===== */
.dr1044hero2 {
	width: 100%;
	min-height: 90vh;
	background: linear-gradient(to right, #0b1d2e, #12233e);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 50px 20px;
	overflow: hidden;
	position: relative;
	color: #fff;
	font-family: 'Arial', sans-serif;
}

.dr1044hero2 .hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	width: 100%;
	gap: 50px;
}

.dr1044hero2 .hero-text {
	flex: 1;
	opacity: 0;
	transform: translateX(50px);
	animation: fadeInText 1s ease forwards;
	animation-delay: 0.5s;
}

.dr1044hero2 .hero-text h1 {
	font-size: 2.5rem;
	color: #f0c14b;
	margin-bottom: 20px;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.dr1044hero2 .hero-text p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 25px;
	color: #ddd;
}

.dr1044hero2 .hero-buttons {
	display: flex;
	gap: 15px;
	opacity: 0;
	animation: fadeInText 1s ease forwards;
	animation-delay: 1s;
}

.dr1044hero2 .hero-buttons .btn {
	padding: 12px 25px;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.dr1044hero2 .hero-buttons .btn.whatsapp {
	background: #25D366;
	color: #fff;
}

.dr1044hero2 .hero-buttons .btn.whatsapp:hover {
	background: #1ebe57;
	transform: scale(1.05);
}

.dr1044hero2 .hero-buttons .btn.call {
	background: #f0c14b;
	color: #0b1d2e;
}

.dr1044hero2 .hero-buttons .btn.call:hover {
	background: #ffd700;
	transform: scale(1.05);
}

.dr1044hero2 .hero-image {
	flex: 1;
	text-align: center;
	opacity: 0;
	transform: translateX(50px);
	animation: fadeInText 1s ease forwards;
	animation-delay: 1.5s;
}

.dr1044hero2 .hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Fade-in Animation */
@keyframes fadeInText {
	0% { opacity: 0; transform: translateY(15px);}
	100% { opacity: 1; transform: translateY(0);}
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
	.dr1044hero2 .hero-content {
		flex-direction: column-reverse;
		text-align: center;
		gap: 30px;
	}
}

@media (max-width: 576px) {
	.dr1044hero2 .hero-text h1 {
		font-size: 2rem;
	}
	.dr1044hero2 .hero-text p {
		font-size: 0.95rem;
	}

	/* Fix button alignment on mobile */
	.dr1044hero2 .hero-buttons {
		flex-direction: column;    /* stack buttons vertically */
		align-items: center;       /* center horizontally */
		gap: 15px;                 /* spacing between buttons */
	}

	.dr1044hero2 .hero-buttons .btn {
		font-size: 0.9rem;
		padding: 10px 20px;
		width: 80%;                /* uniform width */
		max-width: 250px;
		text-align: center;
	}
}