/* =========================
   TEAM PAGE (ULTRA PREMIUM CA STYLE)
========================= */
.dr1059team {
	background: #f8fafc;
	padding: 90px 20px;
}

/* CONTAINER */
.dr1059team-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* HERO */
.dr1059team-hero {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 40px;
}

.dr1059team-media img {
	width: 100%;
	border-radius: 18px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
	transition: 0.4s ease;
}

.dr1059team-media img:hover {
	transform: scale(1.03);
}

/* TEXT */
.dr1059team-badge {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid #d4af37;
	background: #fff;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 15px;
}

.dr1059team-hero-content h1 {
	font-size: 40px;
	font-weight: 800;
	color: #071422;
	margin-bottom: 10px;
}

.dr1059team-subtitle {
	font-size: 16px;
	color: #4b5563;
	line-height: 1.8;
	margin-bottom: 20px;
}

/* LINK */
.dr1059team-link {
	display: inline-block;
	padding: 10px 16px;
	background: #0a66c2;
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	transition: 0.3s ease;
}

.dr1059team-link:hover {
	background: #084a8a;
}

/* SECTIONS */
.dr1059team-about, .dr1059team-expertise, .dr1059team-icai,
	.dr1059team-experience, .dr1059team-future {
	background: #fff;
	padding: 30px;
	border-radius: 14px;
	border: 1px solid #e5e7eb;
	margin-bottom: 25px;
}

.dr1059team h2 {
	font-size: 22px;
	margin-bottom: 15px;
	color: #071422;
}

/* LISTS */
.dr1059team ul {
	padding-left: 18px;
	color: #4b5563;
}

.dr1059team ul li {
	margin-bottom: 8px;
	line-height: 1.6;
}

/* ICAI GRID */
.dr1059team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.dr1059team-grid div {
	background: #f8fafc;
	padding: 15px;
	border-radius: 10px;
	border: 1px solid #e5e7eb;
}

/* RESPONSIVE */
@media ( max-width : 992px) {
	.dr1059team-hero {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.dr1059team-grid {
		grid-template-columns: 1fr;
	}
}

@media ( max-width : 768px) {
	.dr1059team {
		padding: 70px 20px;
	}
	.dr1059team-hero-content h1 {
		font-size: 28px;
	}
}