body {
    font-family: 'Kumbh Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 /* Header Section */
header {
    display: flex;
    background-color: white;
    height: 100px;
    border-bottom: 1px solid #ddd;
    padding: 0 20px;
}
.section1 {
    display: flex;
    flex: 1;
    align-items: center;
}
.logo {
    width: 120px;
    height: auto;
}
.section2 {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.socialicon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    fill: white;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 3px;
}
.headder-socialicon {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    fill: rgb(113, 117, 128);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 3px; 
}
.headder-socialicon:hover {
    background-color: #043D5D;
    fill: white;
    
}
.socialicon:hover {
    background-color: white;
    fill: #043D5D;
    
}
.section3 {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}
.firstcolumn {
    display: flex;
    align-items: center;
}
.secondcolumn {
    display: flex;
    flex-direction: row;
    margin-left: 10px;
    align-items: center;
    gap: 5px;
}
.firstline {
    font-size: 15px;
    color: rgb(113, 117, 128);
    font-weight: 700;
    cursor: pointer;
}
.firstline:hover {
    color: #043D5D;
    text-decoration: underline;
}
/* Navigation Bar */
nav {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    height: 50px;
    gap: 15px;
    border-top: 0.2px solid rgb(167, 169, 176);
    padding: 0 20px;
    background-color: white;
}
.navbarlogo {
    width: 100px;
    height: auto;
}
.navinglinks {
    display: flex;
    background-color: white;
    gap: 25px;
    
}
.navigation-links {
    font-size: 15px;
    color: rgb(88, 89, 90);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.navigation-links:hover {
    color: #043D5D;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #043D5D;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.fixed-buttons {
    position: fixed; /* Makes the buttons fixed on the screen */
    bottom: 20px; /* Distance from the bottom of the screen */
    right: 20px; /* Distance from the right edge of the screen */
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Space between buttons */
    z-index: 1000; /* Ensures the buttons appear above other elements */
}
.fixed-buttons a svg {
    width: 25px; /* Icon size */
    height: 25px;
    background-color: rgb(9, 135, 9);
    border-radius: 50%; /* Makes the icons circular */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Adds a shadow effect */
    cursor: pointer;
    padding: 6px;
    transition: transform 0.3s ease; /* Smooth hover animation */
}
/* Mobile Styles */
@media (max-width: 600px) {
    #headerbar {
        display: none;
    }

    .navbarlogo {
        display: block;
    }

    .navinglinks {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 10px;
        background-color: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px;
        z-index: 1000;
        border-radius: 5px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .navinglinks.active {
        display: flex;
        width: 100px;
        align-items: center;
    }
    nav {
        align-items: center;
        justify-content: space-between;
    }
}
@media (min-width: 601px) {
    #headerbar {
        display: flex;
    }

    .navbarlogo {
        display: none;
    }

    .navinglinks {
        display: flex;
        
    }
}