
	<style>
		html {
			scroll-padding-top: 70px;
			/* adjust if needed */
			scroll-behavior: smooth;
}
		body {
			margin: 0;
			font-family: Arial, Helvetica, sans-serif;
			background: #f5f9ff;
			padding-top: 70px;
}
.address {
    font-size: 16px;
    line-height: 1.5;
}
.OurClinic {
    white-space: pre-line;
	line-height: 1.5;
}
.map-link {
    display: inline-block;
    margin-top: 6px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 500;

    text-decoration: none;
    border-bottom: 1px solid rgba(255,
    255,
    255,
    0.6);

    transition: 0.3s ease;
}

.map-link:hover {
    color: #d6e9ff;
    border-bottom: 1px solid #ffffff;
    letter-spacing: 0.5px;
}
		.hero {
			background: linear-gradient(rgba(0,
    0,
    0,
    0.5), rgba(0,
    0,
    0,
    0.5)),
				url("../images/hero-bg.jpg");
			background-size: cover;
			background-position: center;
			height: 400px;
			display: flex;
			justify-content: center;
			align-items: center;
			color: white;
			text-align: center;
}
/* Optional: also center the nav horizontally */
		nav {
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 20px;
			flex-wrap: wrap;
}

		.hero h2 {
			font-size: 40px;
}

		.section {
			padding: 60px 40px;
			text-align: center;
}

		.services {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 30px;
}

		.service-card {
			background: white;
			padding: 25px;
			width: 250px;
			border-radius: 10px;
			box-shadow: 0 5px 15px rgba(0,
    0,
    0,
    0.1);
}

		.section {
			padding: 40px;
			background: #f5f7fa;
}

		.about {
			display: flex;
			gap: 30px;
			background: #ffffff;
			padding: 25px;
			border-radius: 15px;
			box-shadow: 0 8px 25px rgba(0,
    0,
    0,
    0.08);
			max-width: 900px;
			margin: auto;
			align-items: flex-start;
}

		.about img {
			width: 220px;
			height: 260px;
			object-fit: cover;
			border-radius: 12px;
			border: 4px solid #e6f0ff;
}

		.about-content {
			flex: 1;
}

		.about-content h3 {
			margin: 0;
			font-size: 24px;
			color: #2c3e50;
}

		.about-content .designation {
			color: #3498db;
			font-weight: 600;
			margin-bottom: 10px;
}

		.about-content p {
			color: #555;
			line-height: 1.6;
			margin-bottom: 15px;
}

		.info {
			display: flex;
			gap: 20px;
			margin-top: 15px;
}

		.service-link {
			text-decoration: none;
			color: inherit;
}

		.service-card {
			transition: 0.3s;
}

		.service-card:hover {
			transform: translateY(-8px);
			box-shadow: 0 10px 25px rgba(0,
    0,
    0,
    0.15);
			cursor: pointer;
}

		.info div {
			background: #f0f6ff;
			padding: 10px 15px;
			border-radius: 8px;
			font-size: 14px;
}

		.page.active {
			display: flex;
			grid-template-columns: repeat(4,
    1fr);
			gap: 30px;
			justify-items: center;
}

		@media (max-width: 768px) {
			.page.active {
				grid-template-columns: repeat(2,
        1fr);
    }
}

		.info strong {
			display: block;
			color: #2c3e50;
}

@media (max-width: 768px) {
	nav {
		flex-direction: column;
		gap: 10px;
    }
    .page.active {
        grid-template-columns: repeat(1, 1fr);
    }
	.logo img {
		margin-left: 0;
		height: 50px;
    }
}
/* Responsive */
		@media (max-width: 768px) {
			.about {
				flex-direction: column;
				align-items: center;
				text-align: center;
    }

			.info {
				flex-direction: column;
				align-items: center;
    }
}

.clinic-gallery {
    padding: 30px 20px;
    background: #f5f9ff;
    text-align: center;
}
.slider-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.slider-track img {
    width: calc(25% - 15px);
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}
/* Buttons OVER images */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,
    0,
    0,
    0.5);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev { left: 10px;
}
.next { right: 10px;
}

.slider-btn:hover {
    background: rgba(0,
    0,
    0,
    0.7);
}

@media (max-width: 768px) {
    .slider-track img {
        width: calc(50% - 10px);
        height: 140px;
    }
}

.clinic-gallery h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
		.page {
			display: none;
}

		.page.active {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 30px;
}

		.pagination {
			margin-top: 20px;
			text-align: center;
}

		button {
			padding: 12px 25px;
			border: none;
			background: #0a6ebd;
			color: white;
			border-radius: 5px;
			font-size: 16px;
			cursor: pointer;
	transition: 0.3s ease;
}

		button:hover {
			background: #084f88;
	transform: scale(1.05);
}

		@media(max-width: 768px) {

			.services {
				flex-direction: column;
				align-items: center;
    }

			.hero h2 {
				font-size: 42px;
	font-weight: bold;
    }
.hero p {
	font-size: 18px;
    }
}
.faq-section {
    padding: 30px 20px;
    background: #f5f9ff; 
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: visible;
    border: none;
}

.faq-question {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: #0a6ebd; /* brand color */
    color: #ffffff; /* white text */
    border: none;
    outline: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.faq-question::after {
    content: "+";
color: #ffffff; 
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

/* When active → show − */
.faq-question.active::after {
    content: "−";
color: #ffffff; 
}

.faq-question:hover {
color: #fff;
    background: #084f88; 
transform: none; 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}
.faq-question.active {
    background: #084f88; /* same as hover or slightly darker */
}
.faq-answer p {
    margin: 15px 0;
}

	</style>

