/* =============================
   MEN'S WEAR SECTION
============================= */
.dr1049services2 {
	background: #eef3f9; /* Soft masculine blue-grey */
	padding: 50px 20px;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	width: 100%;
	overflow-x: hidden;
}

/* =============================
   SECTION TITLE STYLING
============================= */
.services-title {
	font-size: 2.3rem;
	font-weight: 900;
	color: #0d47a1; /* Royal navy blue */
	margin-bottom: 10px;
}

.services-subtitle {
	font-size: 1.2rem;
	color: #2c3e50; /* Steel grey */
	margin-bottom: 40px;
	font-weight: 500;
}

/* =============================
   GRID WRAPPER
============================= */
.services-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	max-width: 1200px;
	margin: auto;
}

/* =============================
   CARD
============================= */
.service-card {
	background: white;
	border-radius: 14px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
	padding-bottom: 20px;
	transition: transform .35s ease;
}

.service-card:hover {
	transform: scale(1.03);
}

/* =============================
   CARD IMAGE
============================= */
.service-card img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	background: #f7f9fb;
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
}

/* =============================
   CARD TEXT
============================= */
.service-card h3 {
	margin-top: 15px;
	font-size: 1.4rem;
	font-weight: 700;
	color: #004d40; /* Deep teal */
}

.service-card p {
	padding: 0 15px;
	margin: 6px 0;
	color: #444;
}

/* Telugu Translation Text */
.telugu-text {
	font-family: 'Noto Serif Telugu', serif;
	color: #444;
	font-size: 0.95rem;
}

/* =============================
   BUTTONS
============================= */
.card-buttons {
	margin-top: 14px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.card-buttons a {
	padding: 10px 18px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	display: block;
	text-align: center;
}

/* Button Styles */
.btn-whatsapp {
	background: #25d366;
	color: #fff;
}

.btn-whatsapp:hover {
	background: #1da851;
}

.btn-call {
	background: #0d47a1; /* Navy Blue */
	color: #fff;
}

.btn-call:hover {
	background: #083270;
}

/* =============================
   RESPONSIVE
============================= */
@media ( max-width : 768px) {
	.services-title {
		font-size: 1.9rem;
	}
	.service-card img {
		height: 180px;
	}
	.card-buttons a {
		width: 100%;
		max-width: 300px;
	}
}

@media ( max-width : 480px) {
	.services-title {
		font-size: 1.6rem;
	}
	.services-subtitle {
		font-size: 1rem;
	}
	.service-card h3 {
		font-size: 1.2rem;
	}
	.service-card img {
		height: 160px;
	}
}