@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: rgb(1, 14, 34);
}

/* -------- overall ------- */
.overall {
    background-color: rgb(1, 14, 34);

    width: 100%;

}

/* --------- nav --------- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    background-color: rgb(1, 14, 34);
    padding: 20px;
    width: 100%;
    color: white;
    border-bottom: 1.3px solid white;
}

.left {
    margin-left: 8%;
}

.left h1 {
    font-size: 38px;
}

.left span {
    background-color: #FFC107;
}

.right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-right: -3%;
}

.right a {
    gap: 20px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.right a:hover {
    text-decoration: underline;
    color: #FFC107;
}

.right div a {

    padding: 14px 20px;
    /* background-color: rgb(1, 14, 34); */
    background-color: #FFC107;
    font-size: 15px;
    font-weight: 600;
    color: black;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;

}

.right div a:hover {
    text-decoration: none;
    color: black;
    transform: scale(1.1);
}

.butt button {
    padding: 8px;
    border: none;
    border-radius: 8px;
    margin-top: -10px;
    background-color: #FFC107;
    margin-right: 15px;
}


.whatsapp-float:hover {
    transform: scale(1.1);
}

.contactbox {
    padding-top: 20px;
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.container {
    width: 500px;
    padding: 30px;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    background-color: #003b5b;
}

h4 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #FFC107;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

textarea {
    width: 100%;
    padding: 10px;
    resize: vertical;
    border-radius: 10px;
}

#submit {
    border: none;
    background-color: #FFC107;
    color: white;
    width: 200px;
    font-size: 17px;
    margin-top: 10px;
    border-radius: 5px;
    font-weight: 700;
    /* letter-spacing: 0.8px; */
}

#submit:hover {
    background-color: rgb(173, 173, 34);
}

/* Footer  */


footer {
    background-color: rgb(20, 35, 63);
    color: #FFC107;
}

.foot-top {
    padding: 30px;
    color: aliceblue;
}

.foot-top span {
    background-color: #FFC107;
    color: aliceblue;
}

.foot-over {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding: 20px;
}

.foot-link,
.foot-social,
.foot-contact {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
}

.foot-link a,
.foot-social a,
.foot-contact a {
    color: aliceblue;
    text-decoration: none;
}

.foot-link a:hover {
    scale: 1.1;
}

@media only screen and (min-width:600px) and (max-width:900px) {
    .left h1 {
        font-size: 20px;
    }

    .right div a {
        padding: 8px 10px;
    }

    nav {
        padding: 10px;
    }

    .left {
        margin-left: 0%;
    }

    .right {
        gap: 20px;
    }
}

@media screen and (min-width:440px) and (max-width:600px) {

    
    .whatsapp-float {
        position: fixed;
        z-index: 99;
        bottom: 40px;
        right: 20px;
    }

    .left h1 {
        font-size: 20px;
    }

    .right div a {
        padding: 5px 5px;
        font-size: 10px;
    }

    nav {
        padding: 20px;
    }

    .left {
        margin-left: 0%;
    }

    .right {
        gap: 20px;

    }

    .right a {
        font-size: 14px;
    }

    .container {
        width: 400px;
    }

    .foot-over {
        flex-wrap: wrap;
    }

    .foot-link,
    .foot-social {
        justify-content: center;
        align-items: center;
    }

    .foot-contact h1 {
        text-align: center;
    }

}

@media screen and (min-width:300px) and (max-width:440px) {


    .whatsapp-float {
        position: fixed;
        z-index: 99;
        bottom: 40px;
        right: 20px;
    }

    .right {

        gap: 10px;
    }

    .right a {
        font-size: 10px;
    }

    .left h1 {
        font-size: 10px;
    }

    .right div a {
        padding: 5px 5px;
        font-size: 9px;
    }

    nav {
        height: 90px;
        padding: 15px;
    }

    .left {
        margin-left: 0%;
    }

    .right {

        gap: 10px;
    }

    .right a {
        font-size: 10px;
    }

    .container {
        width: 90%;
    }

    .foot-over {
        flex-wrap: wrap;
    }

    .foot-link,
    .foot-social,
    .foot-contact {
        justify-content: center;
        align-items: center;
        font-size: 13px;
    }
}