@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: "Poppins", "Lexend", sans-serif;
}

body {
    background-color: #e1f0ff;
    margin: 0;
    padding: 0;
}
.navigation {
    background-color: #185A9D;
}

.navigation-link {
    color: white !important;
    font-size: larger;
}

.navigation-link:hover {
    color: #0f6e56 !important;
}
.btn-main{
    color: black;
    background-color: #07df00;
}
html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 220px;
}

.contact {
    margin-top: 150px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
.hero-banner {
    position: relative;
    background-image: url("/static/water.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 45vw;

}

.sm-image {
    height: 200px;
    align-items: center;
    padding-left: 2vw;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar {
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 0;
    padding-left: 0;
    position: sticky;
    z-index: 1030;
    top: 0;
    background-color: #fff;
}

footer {
    background-color: #185A9D;
    color: #F7F4F4;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 50px;
    margin-bottom: 0;
}

.in-sec {
    background-color: #F7F4F4;
    border-radius: 10px;
    border-top: #185A9D 5px solid!important;
}


.navbar-collapse {
    visibility: visible !important;
}

.spec-info {
    overflow-wrap: anywhere;
    align-items: center;
}

.logo {
    font-size: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0070e7;
    color: white;
    border-radius: 8px;
}
/* 1. Make the overall button container smaller (dropped from 30px to 22px) */
.navbar-toggler {
    position: relative;
    width: 22px;
    height: 22px;
    padding-right: 5vw;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    padding-left: 2px;
}


.section {
    background-color: #e1f0ff;
    border-radius: 12px;
}

/* 2. Shrink the width of the lines and make them slightly thinner (2px thick) */
.custom-bar {
    position: absolute;
    left: 0;
    width: 22px;
    /* Shortened the line length to match the new width */
    height: 2px;
    /* Thinned the lines slightly for a cleaner look */
    background-color: #000000 !important;
    border-radius: 1px;
    transform-origin: center center !important;
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, top 0.25s ease-in-out;
}

/* 3. Adjust the default closed spacing for the smaller box */
.top-bar {
    top: 4px;
}

.middle-bar {
    top: 10px;
}

.bottom-bar {
    top: 16px;
}

/* 4. Pull them to the new middle row (10px) when spinning into an X */
.navbar-toggler:not(.collapsed) .top-bar {
    top: 10px;
    transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .bottom-bar {
    top: 10px;
    transform: rotate(-45deg);
}

.phone-number {
    margin-left: 75px;
    text-align: left;
}

@media (max-width: 767px) {
    .phone-number {
        margin-left: 0;
        text-align: center;
    }
}
.btn-whts{
    background-color: rgb(5, 183, 5);
    color: white;
}
.btn-whts:hover{
    background-color: #0f6e56;
    color: white;
}