body {
    background-color: #f4f4f9;
    width: 100%;
    margin: 0;
    height: 100%;
    color: #333;
    overflow-x: hidden;

}
.navbar {
    background-color: #0056b3;
}
.navbar-brand, .nav-link {
    color: #fff !important;
}
.navbar-brand:hover, .nav-link:hover {
    color: #d4d4d4 !important;
}
.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath fill="none" stroke="%23ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M1 4h14M1 8h14M1 12h14"/%3E%3C/svg%3E');
}
.banner {
    position: relative;
    text-align: center;
    color: #fff;
}
.banner img {
    width: 100%;
    height: auto;
}
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #0056b3;
}
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}
.about-section img {
    margin-right: 20px;
}
h2 {
    color: #0056b3;
}
.accordion-button {
    background-color: #e9ecef;
    color: #0056b3;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #0056b3;
}
footer {
    background-color: #0056b3;
    color: #fff;
}
.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}
.footer-links a:hover {
    color: #ffffff;
}
.carousel-item img {
    width: 100%;
    height: auto;
}
.floating-widget {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background-color: #333;
    padding: 10px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
.floating-widget a {
    color: white;
    text-decoration: none;
    margin: 10px 0;
    font-size: 24px;
}
.floating-widget a:hover {
    color: #007bff;
}
.navbar.navbar-expand-lg.navbar-light {
    background-color: #0056b3;
}
.img-top {
    width: 40px;
    height: 40px;
    position: fixed; /* Change to fixed to stay in place */
    right: 20px; /* Position from the right */
    bottom: 20px; /* Initial position from the top */
    display: none; /* Initially hidden */
    z-index: 1000; 
}