<style>
		html {
			scroll-padding-top: 140px;
			/* adjust if needed */
			scroll-behavior: smooth;
}

		header {
			background: #0a6ebd;
			color: white;
			padding: 8px 40px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			box-sizing: border-box;
			z-index: 1000;
}

		body {
			margin: 0;
			font-family: Arial, Helvetica, sans-serif;
			background: #f5f9ff;
			padding-top: 100px;
}

		header h1 {
			margin: 0;
}
#about {
	scroll-margin-top: 50px;
}
#services {
	scroll-margin-top: 50px;
}
#FAQs {
	scroll-margin-top: 30px;
}
		.logo img {
			height: 60px;
			/* adjust size */
			width: auto;
			margin-left: 0px;
			/* adjust value as needed */
}

		.logoFooter img {
			height: 60px;
			/* adjust size */
			width: auto;
			min-width: 220px;
}

		nav a {
			color: white;
			margin-left: 20px;
			text-decoration: none;
			font-weight: bold;
}

.floating-appointment-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #1ebe5d; /* WhatsApp green */
    color: #fff;

    padding: 14px 18px;
    border-radius: 50px;

    font-weight: bold;
    text-decoration: none;
    font-size: 16px;

    box-shadow: 0 6px 15px rgba(0,
    0,
    0,
    0.25);
    z-index: 9999;

    transition: all 0.3s ease;

    animation: pulse 2s infinite;
}
/* Icon circle */
.floating-appointment-btn .icon {
    background: white;
    color: #25D366;
    border-radius: 50%;
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
}
/* Hover */
.floating-appointment-btn:hover {
    background: #169c4a; /* even darker on hover */
    transform: scale(1.05);
}
/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,
        211,
        102,
        0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37,
        211,
        102,
        0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,
        211,
        102,
        0);
    }
}
/* Mobile */
@media (max-width: 768px) {
    .floating-appointment-btn {
        right: 15px;
        bottom: 15px;
        padding: 10px 14px;
    }

    .floating-appointment-btn .text {
        display: none; /* only icon like WhatsApp */
    }
}
.address {
    font-size: 16px;
    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;
}
/* Move column 3 slightly left */
.contact-col:nth-child(3) {
	margin-left: -12px;
}

/* Move column 4 slightly left */
.contact-col:nth-child(4) {
	margin-left: -12px;
}
		.contact {
			background: #0a6ebd;
			color: white;
			padding: 50px 80px;
}

.contact-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 18px;
	align-items: flex-start;
}

.contact-col {
	flex: 0 0 20%;
	min-width: 0;
}
		.contact h2 {
			margin-bottom: 10px;
}

		.contact h3 {
			margin-bottom: 15px;
			border-bottom: 2px solid rgba(255,
    255,
    255,
    0.5);
			display: inline-block;
			padding-bottom: 5px;
}

		.contact p {
			font-size: 15px;
			margin: 8px 0;
}

		.contact p1 {
			font-size: 18px;
			margin: 8px 0;
}
/* Optional hover effect */
		.contact p:hover {
			opacity: 0.8;
			cursor: pointer;
}

		.contact a {
			color: white;
			text-decoration: none;
}

		.contact a:hover {
			text-decoration: underline;
			opacity: 0.9;
}

		.page {
			display: none;
}

		.page.active {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 30px;
}
.contact-group-right {
	display: flex;
	gap: 18px;
	margin-left: auto;
}
		.pagination {
			margin-top: 20px;
			text-align: center;
}

		footer {
			background: #222;
			color: white;
			text-align: center;
			padding: 4px;
}
.contact {
	background: linear-gradient(135deg, #0a6ebd, #085a9d);
	color: white;
	padding: 20px 40px;
}

.contact-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
	align-items: flex-start;
}

.contact-brand {
	flex: 0 0 20%;
	min-width: 0;
}
@media (max-width: 768px) {
	.contact-container {
		flex-wrap: wrap;
		flex-direction: column;
	}

	.contact-col,
	.contact-brand {
		width: 100%;
		flex: 0 0 100%;
	}
}

.brand-card {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	padding: 10px 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
	width: 90%;
}

.contact-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	margin-bottom: 14px;
	padding: 8px 12px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}
.contact-badge .icon {
    background: white;
    color: #25D366;
    border-radius: 50%;
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
}
.contact-brand h2 {
	margin: 0 0 12px;
	font-size: 30px;
	line-height: 1.2;
	color: #fff;
}

.brand-desc {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 18px;
}

.brand-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	transition: 0.3s ease;
}

.brand-link:hover {
	color: #dff1ff;
	transform: translateX(4px);
	text-decoration: none;
}

.brand-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	font-size: 16px;
	flex-shrink: 0;
}

.brand-btn {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 20px;
	background: #ffffff;
	color: #0a6ebd !important;
	text-decoration: none;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	transition: 0.3s ease;
}

.brand-btn:hover {
	background: #eaf4ff;
	transform: translateY(-2px);
	text-decoration: none !important;
}

		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;
    }
}
</style>