body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: purple;
    color: white;
    padding: 10px 20px;
    border-top: 5px solid orange;
    position: relative;
}
.sticky-header {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    color: white;
    text-align: center;
    z-index: 1000; /* Ensures the header is above other content */
}
.header-logo img {
    height: 50px;
}

.header-phone {
    display: flex;
    align-items: center;
}
.header-phone img {
    margin-right: 5px;
}
nav {
    position: relative;
}

.hamburger-menu {
    cursor: pointer;
    display: inline-block;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 2px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: none; /* Hide by default */
    flex-direction: column;
    position: absolute;
    bottom: -405px; /* Dropdown from the very bottom edge of the header */
    right: 0px;
    background-color: #FF9600; /* Background color changed to orange */
    padding: 20px;
	width: 200px;
    border-radius: 5px;
    z-index: 1;
}

.nav-links.active {
    display: block; /* Show the navigation links when active */
}

.nav-links li {
    position: relative;
    margin-bottom: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    padding: 10px;
    display: block;
    color: white;
    font-size: 17px;
    font-weight: bold;
    padding-left: 0px;
    padding-right: 20px;
    border-bottom: 1px solid white; /* Add bottom border */
}

.dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    list-style: none;
    padding-left: 20px;
}

.dropdown a {
    padding: 10px;
    display: block;
    color: white; /* Ensure text color is consistent */
}

.nav-links li.active .dropdown {
    max-height: 200px; /* Adjust according to the number of items */
}
.phone-number {
    text-decoration: none; /* Remove underline */
    color: black; /* Change color to black */
    text-align: center;
    font-size: 35px;
    font-weight: 700;
}
.bg-image-table {
    background-image: url('../images/healthcare-6.jpg');
    background-size: cover;
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.priority-text {
    margin-bottom: 10px;
    background-color: orange;
    padding: 5px 10px;
    color: white;
}
/* Media Query for Mobile */
@media only screen and (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: 15px; /* Add margin to separate from logo */
    }
}
main {
    padding: 20px;
}
.intro-section {
    text-align: center;
}
.intro-text {
    background-color: orange;
    color: white;
    display: inline-block;
    padding: 0px 20px;
    margin-bottom: 0px;
    text-align: left;
}
.consultation-form {
    background-color: purple;
    color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}
.dob {
    text-align: left;
    margin-right: 5px;
}
.form-group, .form-group-inline {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.form-group-inline {
    flex-direction: row;
    justify-content: space-between;
}
.form-group-inline label, .form-group-inline input {
    width: 48%;
}
.form-submit {
    text-align: center;
}
.form-submit button {
    background-color: orange;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
.title-1 {
	font-size: 20px;
	text-align: center;
}
.who-we-are-text {
    text-align: center;
}
.about-section {
    text-align: left;
    margin: 20px 0;
}
.who-we-are-text2 {
    text-align: center;
    font-size: 15px;
}
.about-section2 {
    text-align: center;
    margin: 20px 0;
}
.logos {
    text-align: center;
}
.footer {
    background-color: purple;
    color: white;
    padding: 20px;
    border-top: 5px solid orange;
    position: relative;
	text-decoration: none;
	
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-logo {
    flex: 0 0 100px;
    text-align: center;
}
.footer-menu {
    flex: 1 1 175px;
    text-align: left;
	margin-top: 20px;
	margin-bottom: 20px;
}
.footer-menu p {
    margin: 10px 0;
	text-align: left;
}
.footer-contacts {
    flex: 1 1 100px;
    text-align: center;
	text-align: left;
}
.footer-contacts div {
    margin: 10px 0;
    display: flex;
    align-items: left;
    justify-content: left;
}
.footer-contacts img {
    margin-right: 10px;
}
.footer-menu a {
    text-decoration: none; /* Remove underline */
    color: white; /* Change color to white */
        }
.footer-menu a:hover {
    color: lightgray; /* Optional: change color on hover */
        }
.footer-contacts a {
    text-decoration: none; /* Remove underline */
    color: white; /* Change color to white */
        }
.footer-contacts a:hover {
    color: lightgray; /* Optional: change color on hover */
        }
.footer-map {
    display: block;
    text-align: center;
}
.email-text {
    font-size: 13px;
}
.map {
    border: 3px solid #FFA500;
    padding: 0;
}
.copyright-text {
    text-align: center;
    padding: 10px;
    background-color: #C5C5C5;
    color: black;
    margin-top: 10px;
}
