/* General styling */
body {
    background-color: #f8f9fa;
    color: #333;
}










/* Navbar styling */
.navbar {
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2), 0px 4px 15px rgba(0, 0, 0, 0.1); /* 3D shadow effect */
    background: linear-gradient(145deg,  #b1f3ff, #ffffff); /* Subtle gradient for depth */
    padding: 5px 20px; /* Adds space around the navbar for emphasis */
    margin-top: 8px;
}

.navbar-nav {
    align-items: center;
    margin-left: 5%;
    margin-right: 40%;
    width: 100%;
    justify-content: space-between;
    position: sticky;
}

.navbar-nav .nav-link {
    color: #045f73;
    font-size: large;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}

.navbar-nav .nav-link:hover {
    color: darkred; /* Optional: darkens color when hovered */
}







/* Jumbotron styling */

.jumbotron-margin {
    /* background-image: url(../home/images/background_jumbotron.jpg); */
    /* background: linear-gradient(145deg, #ffffff, #b1f1ff); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff; 
    border-radius: 8px; */
    margin-top: 100px;
}


#home_jumbotron_head {
    color: #042962;
}
#home_jumbotron_para {
    color: #045f73;
    font-size: large;
}








#submit-btn {
    background-color: #045f73;
}







/* About Us section styling */
.aboutus-section {
    background-color: #f0f0f0;
    padding: 40px 0;
}

.map-container {
    margin-top: 20px;
}

/* Social icons */
.social-icons img {
    width: 30px;
    margin: 5px;
}











/* Sitemap and Footer styling (same as homepage) */

.sitemap {
    padding: 20px 0;
    color: #555;
}

.sitemap ul {
    list-style-type: none;
    padding: 0;
}

.sitemap ul:hover {
    color: darkred; /* Optional: darkens color when hovered */
}

.sitemap h4 {
    font-weight: bold;
    color: #042962;
}

.sitemap a {
    font-weight: bold;
    color: #045f73;
}

.sitemap a:hover {
    font-weight: bold;
    color: darkred;
}






.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}





.custom-jumbotron-gap {
    margin-top: 150px;
    margin-bottom: 75px;
}

.custom-jumbotron-ii-gap {
    margin-top: 75px;
    margin-bottom: 75px;
}

.custom-sitemap-gap {
    margin-top: 50px;
    margin-bottom: 30px;
}

#please-contactus-title {
    color:#042962
} 

#our-address-title {
    color:#042962
} 







/* Contact Card */
.contact-card {
    position: fixed;
    top: 90%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    background-color:#e9ecef;
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #f5f5f5;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.contact-icon:hover {
    transform: scale(1.1);
    background-color: #e6e6e6;
}

.contact-icon img {
    width: 60%;
    height: 60%;
}