/* =============================
   KIDS WEAR SECTION
============================= */
.dr1049services3 {
	background: #fffaf5; /* Soft pastel peach */
	padding: 70px 20px;
	text-align: center;
	width: 100%;
	overflow-x: hidden;
	font-family: 'Poppins', sans-serif;
}

/* =============================
   TITLE & SUBTITLE
============================= */
.services-title {
	font-size: 2.3rem;
	font-weight: 900;
	color: #ff6f61; /* Cute coral pink */
	margin-bottom: 10px;
}

.services-subtitle {
	font-size: 1.2rem;
	color: #6b4f91; /* Soft purple */
	margin-bottom: 40px;
	font-weight: 500;
}

/* =============================
   GRID
============================= */
.services-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	max-width: 1200px;
	margin: auto;
}

/* =============================
   CARD
============================= */
.service-card {
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
	padding-bottom: 20px;
	transition: 0.35s ease;
	border: 2px solid #ffe6f2; /* soft kid pastel border */
}

.service-card:hover {
	transform: translateY(-6px) scale(1.03);
	border-color: #ffd1dc;
}

/* =============================
   IMAGE
============================= */
.service-card img {
	width: 100%;
	max-height: 250px;
	object-fit: contain;
	background: #fdfdff;
	border-top-left-radius: 18px;
	border-top-right-radius: 18px;
}

/* =============================
   TEXT
============================= */
.service-card h3 {
	margin-top: 15px;
	font-size: 1.4rem;
	font-weight: 800;
	color: #3d7bd8; /* Baby blue heading */
}

.service-card p {
	padding: 0 15px;
	margin: 6px 0;
	color: #555;
	font-size: 0.95rem;
}

.telugu-text {
	font-family: 'Noto Serif Telugu', serif;
	color: #444;
	font-size: 1rem;
	font-weight: 500;
}

/* =============================
   BUTTONS
============================= */
.card-buttons {
	margin-top: 14px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.card-buttons a {
	padding: 10px 18px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	text-align: center;
}

/* Kids Theme Buttons */
.btn-whatsapp {
	background: #24c45a;
	color: #fff;
}

.btn-whatsapp:hover {
	background: #1a9c46;
}

.btn-call {
	background: #ff9f29; /* Cute orange shade */
	color: #fff;
}

.btn-call:hover {
	background: #e58921;
}

/* =============================
   RESPONSIVE
============================= */
@media ( max-width : 768px) {
	.services-title {
		font-size: 1.9rem;
	}
	.service-card img {
		max-height: 210px;
	}
	.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 {
		max-height: 180px;
	}
}