@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --color1: #fbb034;
    --color2: #213e8cff;
    --color3: #08171e;
    --color4: #fdfffc;
    --color5: #00c16e;
    --color6: #ababab;
    --color7: #f62727;
    --color8: var(--color2);
    --bordercolor1: #ececec;

    --color-success: #3c763d;
    --color-success-bg: #dff0d8;
    --color-success-border: #d6e9c6;

    --color-info: #31708f;
    --color-info-bg: #d9edf7;
    --color-info-border: #bce8f1;

    --color-warning: #8a6d3b;
    --color-warning-bg: #fcf8e3;
    --color-warning-border: #faebcc;

    --color-danger: #a94442;
    --color-danger-bg: #f2dede;
    --color-danger-border: #ebccd1;

}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    min-height: 90px;
    width: 100%;
    color: var(--color4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color3);
}

.navbar > div {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar > div > img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

.navbar > div > p {
    font-size: 28px;
    text-align: center;
    display: flex;
    padding: 0 10px;
    font-weight: 500;
}

.navbar > ul > li > a {
    font-weight: 500;
    text-decoration: none;
    color: var(--color4);
    transition: all 0.3s;
}

.navbar > ul > li > a:hover {
    color: var(--color1);
}

.navbar > ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    font-weight: 500;
}

.navbar > button {
    height: fit-content;
    width: 100px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: transparent;
    display: none;
    color: var(--color4);
    font-size: 24px;
    cursor: pointer;
}


.alert {
    padding: 15px;
    margin: 10px;
    margin-bottom: 0;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: var(--color-success);
    background-color: var(--color-success-bg);
    border-color: var(--color-success-border);
}

.alert-info {
    color: var(--color-info);
    background-color: var(--color-info-bg);
    border-color: var(--color-info-border);
}

.alert-warning {
    color: var(--color-warning);
    background-color: var(--color-warning-bg);
    border-color: var(--color-warning-border);
}

.alert-danger, .alert-error {
    color: var(--color-danger);
    background-color: var(--color-danger-bg);
    border-color: var(--color-danger-border);
}


.footer {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: var(--color4);
    background-color: var(--color3);
    gap: 20px;
    padding: 20px;
}

.footer > div:first-child {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 50px;
    gap: 50px;
}

.footer > div > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer > div > div > p {
    font-size: 25px;
    font-weight: 500;
}

.footer > div > div > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer > div > div > span,
.footer > div > div > ul > li > a,
.copyright {
    color: var(--color6);
    text-decoration: none;
}

.copyright {
    padding-top: 20px;
    text-align: center;
}

.footer > div > div > ul > li > a:hover {
    color: var(--color1);
}

.contact-us {
    height: 120px;
    width: 100%;
    background-image: linear-gradient(to left, #11d5ff 0%, #0089cd 100%);
    margin-bottom: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
    padding: 20px;
    color: var(--color3);
}

.contact-us > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-us > div > p {
    font-size: 30px;
    font-weight: 500;
}

.contact-us > p {
    font-size: 30px;
    font-weight: 500;
}

.contact-us > button {
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--color3);
    background-color: var(--color4);
    font-size: 20px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
}

.contact-us > button:hover {
    background-color: var(--color3);
    color: var(--color4)
}

.google-map {
    height: 400px;
    width: 50%;
    position: relative;
}

.google-map iframe {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color3);
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style: none;
}

.dropdown-content a {
    color: var(--color4);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background-color: var(--color1);
    color: var(--color4);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover > a {
    color: var(--color1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 1300px) {
    .navbar {
        height: 110px;
    }
    
    .home-section-1 {
        padding-top: 110px !important;
    }

    .navbar > ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 110px;
        right: 0;
        background-color: var(--color3);
        width: 300px;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 20px;
        height: calc(100dvh - 110px);
        overflow-y: auto;
        transition: all 0.3s;
        
    }

    .navbar > ul.responsive {
        display: flex;
    }

    body.menu-open {
        transition: all 0.3s;
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:#08171ecc ; /* Black overlay with 20% opacity */
        z-index: 999; /* Ensure it sits behind the navbar but above other content */
        pointer-events: all; /* Allow clicks to pass through */
    }

    .navbar > button {
        display: block;
    }

    .navbar .dropdown {
        position: relative;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown > a{
        display: none;
    }

    .navbar .dropdown-content {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
    }

    .dropdown-content{
        background-color: #0c212b;
    }

    

    .dropdown-content a:hover{
        background-color: transparent;
        color: var(--color1);
    }

    .footer {
        height: fit-content;
    }

    .footer > div:first-child {
        display: grid;
        grid-template-columns: auto auto;
    }

    .google-map {
        grid-column-start: 1;
        grid-column-end: 3;
        height: 250px;
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .contact-us {
        flex-direction: column;
        height: fit-content;
        text-align: center;
        gap: 20px;
    }
}


aside{
    height: 200px;
    width: 40px;
    position: fixed;
    left: 0;
    bottom: calc(50vh - 145px);
    background-color: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 2;
}

aside i{
    color: var(--color4);
    font-size: 18px;
    font-weight: 500;
}

