body {
    font-family: 'Calibri', sans-serif;
    overflow-x: hidden;
} 

.navbar {
    height: 75px; 
    display: flex;
    align-items: center; 
}

.navbar-brand img {
    max-height: 150px; 
    width: auto; 
    margin-left: -31px;
}

/* Navbar Items Styling */
.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    padding: 8px 12px;
}

.navbar-nav .nav-link:hover {
    /* font-weight: bold; */
    color: #0056b3; 
}

.navbar-nav .nav-link.active {
    /* font-weight: bold; */
    color: blue !important; 
    /* border-bottom: 3px solid #ff4500;  */
    padding-bottom: 5px;
}


.card {
    transition: transform 0.3s ease-in-out !important;
}

.card:hover {
    transform: scale(1.05) !important;
}

.serviceCard {
    transition: none !important; 
    border: 1px solid rgb(235, 232, 232);
    border-radius: 5px;
}

.serviceCard:hover {
    transform: none !important; 
}

.details p span:hover {
    font-size: 1.05rem;
    color: purple;  
    text-decoration: underline;  
    transition: color 0.3s ease-in-out;
}

.contact-link {
    text-decoration: none;
    color: blue;
    margin-left: 5px;
}

.contact-link:hover {
    font-size: 1.05rem;
    text-decoration: underline;
    color: blue; 
}

.social-icons a {
    margin-right: 10px;
}

.facebook { color: #1877F2; }   
.twitter { color: #1DA1F2; }   
.google { color: #DB4437; }     
.linkedin { color: #0A66C2; }   
.instagram { color: #E4405F; }   
.whatsapp { color: #25D366; }   
.phone { color: #34A853; }  
.email { color: #EA4335; }

a:hover { opacity: 0.7; }

p i {
    margin-right: 8px; 
}

p .fa-phone { color: #0A66C2; }       
p .fa-whatsapp { color: #25D366; }    
p .fa-envelope { color: #EA4335; }    
p .fa-facebook { color: #1877F2; }   
p .fa-instagram { color: #E4405F; }   

.contact-section {
    padding: 50px 0;
    background-color: #f4f4f4; 
}

/* Hover Effect for Contact Details */
.hover-effect {
    text-decoration: underline;
    color: blue; 
    transition: font-weight 0.3s ease;
}

.hover-effect:hover {
    font-weight: bold;
    color: blue; 
}

/* Section Styling */
.container {
    width: 100%;
    margin: auto;
    padding: 40px 0;
    margin-top: -90px;
}

.containerFooter {
    width: 100%;
    margin: auto;
    padding: 40px 0;
    margin-top: -40px; 
}
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

/* Doctor Info */
.doctor-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.doctor-photo {
    width: 14rem;
    height: 18rem;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

