@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;900&display=swap");

:root {
    --prim-color: #fbb042;
    --sec-color: #000000;
    --tert-color: #264e74;
    --text-color: #242424;
    --light-grey: #f7f7f7;
}

body {
    padding: 0px;
    margin: 0px;
    position: relative;
    font-family: "Cairo", sans-serif;
    box-sizing: border-box;
}

.content {
    min-height: 80vh;
    padding: 20px;
}

/* Navbar */

.navbar {
    width: 100%;
    padding: 10px 0;
    background-color: var(--prim-color);
}

.navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.navbar ul li {
    margin: auto 10px;
}

.navbar ul li a {
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    color: var(--text-color);
}

.navbar ul li a:hover {
    color: var(--tert-color);
}

/* Navbar Mobile */

.navbar-mob {
    display: none;
    padding: 10px 0px;
    position: sticky;
    top: 0;
    background-color: var(--prim-color);
    z-index: 2000;
    height: 30px;
    transition: all ease 0.5s;
    overflow-y: hidden;
}

.navbar-mob ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    list-style-type: none;
}

.navbar-mob ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--prim-color);
    padding: 25px 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.links-con {
    display: flex;
}

.links-col {
    display: flex;
    flex-direction: column;
    margin: auto 25px;
    justify-content: start;
    align-items: center;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media i {
    color: var(--sec-color);
    margin: auto 15px;
    font-size: 25px;
    cursor: pointer;
}

.social-media i:hover {
    color: var(--tert-color);
}

.links-col a {
    text-decoration: none;
    font-weight: bold;
    color: var(--sec-color);
}

.links-col a:hover {
    color: var(--tert-color);
}

/* FAB section*/

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 1000;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 120px;
    right: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

/* Contact section */

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.txtfield {
    width: 70%;
    padding: 15px;
    margin: 10px auto;
    outline-color: var(--tert-color);
    border: 1px solid var(--prim-color);
    font-family: "Cairo";
    border-radius: 15px;
}

.sub-btn {
    margin-top: 10px;
    width: 250px;
    height: 50px;
    color: #ffffff;
    background: var(--prim-color);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    font-family: "Cairo";
    cursor: pointer;
}

.sub-btn:hover {
    background: var(--tert-color);
}

.contact-area {
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;
}

.contact-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    width: 20%;
}

.contact-list div {
    color: var(--tert-color);
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
}

.contact-list div i {
    margin: auto 10px;
    cursor: pointer;
    font-size: 20px;
}

.contact-list div i:hover {
    color: var(--prim-color);
}

.contact-area form {
    width: 40%;
}

.success-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    background: green;
    height: 40px;
    color: white;
    text-align: center;
    font-size: 22px;
    border-radius: 15px;
    font-weight: bold;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }
    75% {
        padding: 50px;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Desltop screen */
@media screen and (min-width: 1025px) {
    .navbar-mob {
        display: none;
    }

    .navbar {
        display: block;
    }
}

/* Tablet screen */

@media screen and (min-width: 601px) and (max-width: 1024px) {
    .navbar-mob {
        display: block;
        width: 100%;
    }

    .navbar {
        display: none;
    }

    .txtfield {
        width: 80%;
    }

    .contact-area {
        align-items: start;
        justify-content: center;
        width: 100%;
    }

    .contact-list {
        width: 35%;
    }

    .contact-list div {
        font-size: 12px;
    }

    .contact-area form {
        width: 75%;
    }
}

/* Mobile screens */
@media screen and (max-width: 600px) {
    .navbar-mob {
        display: block;
        width: 100%;
    }

    .navbar {
        display: none;
    }

    .links-con {
        flex-direction: column;
    }

    .links-col {
        margin: 10px auto;
    }

    .social-media {
        margin: 10px auto;
    }

    .btn-whatsapp-pulse {
        padding: 25px;
        font-size: 30px;
    }

    .txtfield {
        width: 90%;
    }

    .contact-area {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .contact-list {
        width: 100%;
    }

    .contact-area form {
        width: 100%;
    }
}
