/* ==========================================
   WHY US - CHARTERED ACCOUNTANT SECTION
   Andhavarapu Sridhar & Co.
========================================== */

.dr1059whyus {
	background: #f8fafc;
	padding: 90px 20px;
	overflow: hidden;
}

/* MAIN LAYOUT (IMAGE + CONTENT) */
.dr1059whyus-grid-layout {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;

	/* animation base */
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.9s ease;
}

/* ACTIVE STATE (JS TRIGGER) */
.dr1059whyus.active .dr1059whyus-grid-layout {
	opacity: 1;
	transform: translateY(0);
}

/* =========================
   IMAGE SECTION
========================= */
.dr1059whyus-media img {
	width: 100%;
	border-radius: 18px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
	transition: transform 0.4s ease;
	display: block;
}

.dr1059whyus-media img:hover {
	transform: scale(1.03);
}

/* =========================
   HEADER
========================= */
.dr1059whyus-header {
	margin-bottom: 25px;
}

.dr1059whyus-badge {
	display: inline-block;
	padding: 8px 16px;
	background: #ffffff;
	border: 1px solid #d4af37;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
	color: #071422;
	margin-bottom: 15px;
}

.dr1059whyus-header h2 {
	font-size: 38px;
	font-weight: 800;
	color: #071422;
	line-height: 1.3;
	margin-bottom: 12px;
}

.dr1059whyus-subtitle {
	font-size: 16px;
	color: #4b5563;
	line-height: 1.8;
	max-width: 700px;
}

/* =========================
   GRID CARDS
========================= */
.dr1059whyus-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

/* CARD DESIGN */
.dr1059whyus-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 22px;
	transition: all 0.3s ease;
	position: relative;
}

.dr1059whyus-card:hover {
	transform: translateY(-6px);
	border-color: #d4af37;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.dr1059whyus-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: #071422;
	margin-bottom: 8px;
}

.dr1059whyus-card p {
	font-size: 13.8px;
	color: #6b7280;
	line-height: 1.6;
}

.dr1059whyus-media {
	position: relative;
}

.dr1059whyus-media img {
	border-radius: 18px;
}

.dr1059whyus-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(7, 20, 34, 0.25);
	border-radius: 18px;
}

/* =========================
   TABLET VIEW
========================= */
@media (max-width: 992px) {

	.dr1059whyus-grid-layout {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.dr1059whyus-subtitle {
		margin: 0 auto;
	}

	.dr1059whyus-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 768px) {

	.dr1059whyus {
		padding: 70px 20px;
	}

	.dr1059whyus-header h2 {
		font-size: 28px;
	}

	.dr1059whyus-grid {
		grid-template-columns: 1fr;
	}

	.dr1059whyus-card {
		padding: 18px;
	}
}