header{
    background: rgb(183, 219, 241);
}
#menu li a{
    color: black;
    margin-left: 15px;
}
header h1{
    font-size: 50px;
    margin-top: 180px ;
    margin-bottom: 180px;

}
.banner-img img{
    margin-top: 20px;

}
.about-section{
    padding: 60px 0px;

}
.about-section h2{
    font-weight: bold;
}
.about-section p{
    font-size: 18px;
    padding: 30px 0px ;
    line-height: 30px;
}
.about-section ul li {
    list-style: none;
    padding: 7px 0px;
}
.our-services{
    background: #f3f5fa;
    padding: 50px 0px;
    
}
.our-services h2{
    font-weight: bold;
    padding-bottom: 20px;
}
.card-icon{
    display: table;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin: auto;
    line-height: 100px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
}
.call-to{
    background: rgba(40, 58,90, 0.9);
    padding: 120px 0px;
    color: white;
}
.call-to button{
    color: white;
    border-color: white;
    padding: 15px 50px;
    border-radius:30px;
    margin-top: 40px;
}
.contact-info{
    box-shadow: 0px 0px 10px 2px lightgray;
    border-top: 3px solid blue;
    border-bottom: 3px solid blue;
    padding: 40px 30px 40px 80px;
}
.contact-info-in{
    margin-bottom: 30px;
}
.contact-info1{
    box-shadow: 0px 0px 10px 2px lightgray;
    border-top: 3px solid blue;
    border-bottom: 3px solid blue;
    padding: 40px 30px 40px 40px;
}
.footer{
    background: #f3f5fa;
    padding: 50px 0px ;
}
.footer .footer-left p{
    margin-bottom: 0px;
    padding-left: 15px;
}
.footer-left2{
    padding-left: 10px;
}
.footer-left2 ul{
    margin-left:0px ;
    padding: 0px;
}
.footer-left2 ul li{
    display: block;

}
.footer-left2 ul li a{
    color: gray;
    display:block;
    margin-bottom: 10px;
}
 /* Responsive adjustments */
 @media (max-width: 768px) {
    .about-section .row > div,
    .our-services .row > div,
    .footer .row > div {
        margin-bottom: 20px;
    }
}

/* Professional color scheme for Join Us */
.call-to {
    background: linear-gradient(135deg, #232b85, #2196f3);
    color: white;
}
.call-to h2,
.call-to p {
    color: white;
}
.call-to .btn-outline-primary {
    color: #fff;
    border-color: #fff;
}
.call-to .btn-outline-primary:hover {
    background-color: #fff;
    color: #1a237e;
}

/* Popup styles */
.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
}
/* Hover effect for menu bar */
.navbar-nav .nav-link {
    transition: all 0.3s ease;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1565c0; /* Blue hover underline */
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}
.navbar-nav .nav-link:hover {
    color: #1565c0 !important; /* Blue text on hover */
}
.banner-image {
    height: 200px;       /* Set desired professional height */
    object-fit: cover;   /* Ensures image fills area without distortion */
    width: auto;         /* Keeps original aspect ratio */
    max-width: 100%;     /* Responsive on smaller screens */
}


