		/* General Styling */
		.topbar {
			background-color: #f8f9fa; /* Light gray background */
			padding: 10px 0;
			border-bottom: 1px solid #ddd;
			font-family: 'Arial', sans-serif;
			font-size: 14px;
			color: #333;
		}
		
		.top-link li, .top-contact li {
			display: flex;
			align-items: center;
		}
		
		.top-link li i, .top-contact li i {
			color: #28a745; /* Success green */
			font-size: 16px;
		}
		
		.top-contact li a {
			color: #333;
			text-decoration: none;
			font-weight: 600;
			transition: color 0.3s ease;
		}
		
		.top-contact li a:hover {
			color: #28a745;
		}
		
		.hover-success i {
			transition: color 0.3s ease;
		}
		
		.hover-success:hover i {
			color: #28a745;
		}
		
		.header-inner {
			padding: 20px 0;
		}

		.logo-text {
			color: #006400;
			font-weight: bold;
		}

		.main-menu {
			background-color: #006400;
			border-radius: 5px;
		}

		.main-menu .nav.menu {
			padding: 8px 10px;
		}

		.main-menu .nav.menu li a {
			color: #ffffff;
			padding: 8px 15px;
			display: inline-block;
			border-radius: 5px;
		}

		.main-menu .nav.menu li a:hover {
			background-color: #ffffff;
			color: #006400;
		}

		.main-menu .nav.menu .dropdown {
			background-color: #004d00;
		}

		.main-menu .nav.menu .dropdown li a {
			color: #ffffff;
		}

		.main-menu .nav.menu .dropdown li a:hover {
			background-color: #ffffff;
			color: #006400;
		}

		.btn.appointment-btn {
			background-color: #ffffff;
			color: #006400;
			border: 2px solid #006400;
			border-radius: 5px;
			padding: 8px 12px;
			font-weight: bold;
			display: inline-block;
			text-align: center;
		}

		.btn.appointment-btn:hover {
			background-color: #006400;
			color: #ffffff;
		}
		.appointment-btn {
			background-color: #28a745;
			color: #fff;
			padding: 8px 12px;
			font-weight: 600;
			text-decoration: none;
			border-radius: 4px;
			transition: background-color 0.3s ease;
		}
		
		.appointment-btn:hover {
			background-color: #218838;
		}

		

		/* Responsive Styling */
		@media (max-width: 768px) {
			.btn.appointment-btn {
				display: block;
				margin: 10px auto;
			}

			.main-menu {
				text-align: center;
			}
		}


		/* Footer Top Section */
.footer-top {
    background-color: #f8f9fa; /* Light background for contrast */
    color: #333333; /* Dark text for readability */
    padding: 40px 0;
    border-top: 5px solid #00796b; /* Highlighted top border */
}

/* Footer Titles */
.footer-title {
    font-size: 20px;
    font-weight: bold;
    color: #00796b; /* Highlighted title color */
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Footer Text */
.footer-text {
    font-size: 14px;
    color: #555555; /* Neutral color for text */
    line-height: 1.8;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent; /* Subtle underline effect */
}

.footer-links a:hover {
    color: #00796b; /* Highlight color on hover */
    border-bottom: 2px solid #00796b;
}

/* Social Icons */
.social li {
    display: inline-block;
    margin-right: 10px;
}

.social a {
    color: #333333;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social a:hover {
    color: #00796b; /* Highlighted icon color */
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Footer Borders */
.footer-top {
    border-top: 5px solid #00796b; /* Distinct border for the footer */
    border-bottom: 2px solid #dddddd; /* Subtle separator */
}

/* Newsletter Form */
.newsletter-inner {
    display: flex;
    margin-top: 15px;
}

.footer .common-input {
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    width: 80%;
    margin-right: 5px;
}

.common-input::placeholder {
    color: #999999;
}

.footer .button {
    background-color: #00796b; /* Footer button color */
    color: #ffffff; /* Button text color */
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer .button:hover {
    background-color: #005b4f; /* Hover effect */
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Copyright Section */
.copyright {
    background: #333333;
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    border-top: 2px solid #00796b; /* Distinct border for emphasis */
}
.footer .button i {
    font-size: 18px;
    padding-right: 5px;
}
