*{
    /* border: 1px solid red; */
    box-sizing: border-box;
    font-weight: 300;
    /* letter-spacing: 1px; */
    font-size: 16px;
    scroll-behavior: smooth;
    font-family: var(--font-family-sans);
}

:root {
    --primary-offset-color: #A5ADC4;
    --primary-color: #D8DEE1;
    --light-primary-color: #FFF;

    --secondary-color: #0B2240;
    --dark-secondary-color: #345DAE;

    --font-family-sans: "Work Sans", serif;
}

html {
    scroll-behavior: smooth;
}

body{
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    background-color: var(--primary-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



::-webkit-scrollbar {
    width: 0; 
    height: 0;
}

.transition-y {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease-in-out, transform 0.6s ease-in-out;
}

.transition-y.animate {
    opacity: 1;
    transform: translateY(0);
}

.transition-x {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1s ease-in-out, transform 0.6s ease-in-out;
}

.transition-x.animate {
    opacity: 1;
    transform: translateX(0);
}


input,
textarea, 
select,
button{
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
}

button{
    letter-spacing: 3px;
}

h1{
    font-size: 36px;
    margin: 8px auto;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-family-sans);
}

h2{
    font-size: 30px;
    font-weight: 400;
    margin: 8px auto;
    text-transform: capitalize;
    font-family: var(--font-family-sans);
}

h3{
    font-size: 24px;
    text-transform: capitalize;
    font-family: var(--font-family-sans);
}

/* top-info-bar */
.top-info-bar{
    width: 100%;
    padding: 8px 4px;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.top-info-bar .price,
.top-info-bar .email,
.top-info-bar .location{
    width: 100%;
    text-align: center;
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
}

.top-info-bar i{
    width: 15%;
}


/* Mobile */
@media screen and (max-width: 900px) {
    .top-info-bar .price,
    .top-info-bar .location{
        display: none;
    }
}


/* Navigation */
.navigation{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav-logo-bar{
    width: 100%;
    height: auto;
    padding: 16px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.nav-logo{
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.logo{
    width: 60px;
    height: 60px;
    margin: 6px 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    background-image: url('../../imgs/logo.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.logo-name{
    width: 70%;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 30px;
    text-decoration: none;
}

.toggle, .nav-world{
    display: none;
}

.nav-buttons{
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.nav-btn-icon{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 8px 4px;
    color: var(--primary-color);
    transition: all .3s ease-in-out;
}

.nav-btn-icon:hover{
    background-color: var(--dark-secondary-color);
}

.nav-inquiry{
    width: 50%;
    padding: 16px 16px;
    margin: 8px 8px;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 3px;
    background-color: var(--dark-secondary-color);
    transition: all 0.3s ease-in-out;
}

.nav-buttons button i{
    font-size: 18px;
    padding: 1px 0 0 2px;
}

.nav-inquiry:hover{
    background-color: var(--secondary-color);
    color: var(--light-primary-color);
}

.nav-bar {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(233, 233, 233, 0.3);
    border-bottom: 1px solid rgba(233, 233, 233, 0.3);
}

.nav-bar-anchors {
    width: 50%;
    height: auto;
    margin: 8px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content : center;
    position: relative;

}

.anchors {
    width: 60%;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: var(--primary-color);
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.anchors i {
    margin: 8px 8px;
}

.anchors:hover{
    transform: scale(1.1);
}

.nav-dropdown {
    width: 100%;
    height: auto;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 99;
    background-color: var(--primary-offset-color);
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

#services,
#projects{
    width: 100%;
    text-align: center;
}

#services:hover .nav-dropdown,
#projects:hover .nav-dropdown  {
    transform: scale(1);
}


.anchors:hover i {
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}

.nav-dropdown-content{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start ;
}

.nav-dropdown-content a{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 8px auto;
    padding: 16px 16px;
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.nav-dropdown-content a:hover{
    background-color: var(--primary-color);
}

.nav-dropdown-img{
    width: 30%;
    height: 20vh;
    background-color: var(--secondary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.nav-dropdown-details{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-dropdown-name{
    font-size: 900;
    font-size: 16px;
    text-transform: uppercase;
}

.nav-dropdown-details p{
    width: 90%;
    font-size: 14px;
}

#mobile,
#mobile-cta{
    display: none;
}


/* Mobile */
@media screen and (max-width: 900px) {


    .nav-logo-bar{
        padding: 0 0;
    }
    
    .nav-logo{
        width: 100%;
    }

    .logo-name{
        font-size: 24px;
    }
    
    .nav-buttons{
        width: 20%;
    }

    .nav-btn-icon i{
        padding: 3px 0 0 0;
    }

    .nav-inquiry, .anchors i{
        display: none;
    }

    .nav-btn-icon{
        margin: 4px 4px;
    }

    .toggle, .nav-world{
        display: flex;
        width: 30px;
        height: 30px;
        margin-top: 3px;
        border-radius: 50%;
        color: var(--primary-color);
        transition: all .3s ease-in-out;
    }
    
    .toggle{
        z-index: 999;
    }


    .nav-bar{
        display: none;
        height: 100vh;
        position: absolute;
        top: 0;
        background-color: var(--secondary-color);
    } 
    
    .nav-dropdown-content{
        display: none;
    }

    .nav-bar-anchors{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .anchors{
        width: 100%;
        padding: 16px 16px;
        border-bottom: 1px solid var(--accent-color);
        margin: 8px 0 8px 0;
        text-align: left;
    }

    #mobile{
        width: 100%;
        display: flex;
        padding: 16px 16px;
        border-bottom: 1px solid var(--accent-color);
        color: var(--primary-color);
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    #mobile i{
        width: 6%;
    }

    #mobile-cta{
        width: 90%;
        display: flex;
        margin: 30px auto;
        padding: 16px 16px;
        color: var(--primary-color);
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

}


/* Hero section */
.hero-section {
    width: 100%;
    height: 100%; 
    background-color: var(--secondary-color);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
}


.hero-section::after {
    content: "";
    position: absolute;
    background: linear-gradient(to bottom, #000, transparent, #000);
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0; 
    z-index: 1; 
}

.hero-img{
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section-content{
    width: 70%;
    margin: auto auto;
    position: absolute;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section-content h2{
    color: var(--primary-color);
    text-align: center;
}

.hero-section-content h1{
    width: 100%;
    letter-spacing: 3px;
    text-align: center;
    font-size: 60px;
    font-family: var(--font-family-sans);
    font-weight: 500;
    margin: 30px auto;
    color: var(--primary-color);
}

.hero-cta{
    width: 30%;
    background-color: var(--dark-secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 16px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    transition: all 0.3s ease-in-out;
}


.hero-cta:hover{
    background-color: var(--secondary-color);
    color: var(--light-primary-color);
}



/* Mobile */
@media screen and (max-width: 900px) {
    
    .hero-section-content, 
    .hero-cta{
        width: 90%;
    }

    .hero-cta{
        margin: 30px auto;
    }

    .hero-section-content h1{
        font-size: 36px;
    }
}

/* Basic WhatsApp button styling */
.whatsapp {
    position: fixed;
    z-index: 99;
    bottom: 0;
    right: 0;
    text-decoration: none;
    color: var(--accent-color);
    margin: 16px;
}

/* Pulsing animation for the icon */
.whatsapp i {
    font-size: 25px;
    animation: pulse 1.2s infinite;
}


/* Keyframes for the pulsing animation */
@keyframes pulse {
    0% {
        color: #039e0b;
    }
    50% {
        color: #00ff0d;
    }
    100% {
        color: #039e0b;
    }
}

/* footer */
.footer{
    width: 100%;
    height: auto;
    padding: 60px 16px;
    background-color: var(--primary-offset-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-content{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
}

.footer-subscription,
.footer-links,
.footer-policy,
.footer-contact,
.footer-copy{
    width: 100%;
    height: auto;
    margin: 16px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-subscription h2{
    margin: 30px auto auto auto;
    color: var(--accent-color);
}

.footer-subscription p{
    margin: 16px auto;
    color: var(--secondary-color);
}

.footer-logo{
    width: 100%;
    height: auto;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}


.footer-logo-img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    background-image: url('../../imgs/logo.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer-logo-name{
    font-size: 40px;
    color: var(--secondary-color);
}

.footer-input{
    width: 100%;
    margin: 30px auto;
}

.input-block{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--primary-color);
}

.input-block input{
    width: 100%;
    padding: 16px 16px;
    color: var(--secondary-color);
}

.input-block button{
    width: 50%;
    padding: 16px 16px;
    margin: 8px 8px;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 3px;
    background-color: var(--dark-secondary-color);
    text-decoration: none;
    z-index: 2;
}

.footer-links a, 
.footer-policy a{
    width: 90%;
    text-align: center;
    padding: 16px 16px;
    text-decoration: none;
    color: var(--secondary-color);
}

.footer-socials{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.footer-socials a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--secondary-color);
    background-color: var(--accent-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-socials a:hover{
    background-color: var(--primary-color);
}

.footer-contact-info{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-contact-info{
    margin: 30px auto;
}

.footer-contact-info a{
    width: 100%;
    padding: 16px 4px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-contact-info a:hover{
    color: var(--dark-secondary-color);
}

.footer-contact-info a i{
    width: 10%;
}

.footer-policy a{
    padding: 4px 16px;
}

.footer-copy{
    margin: 30px 0 0 0;
    border-top: 1px solid var(--primary-color);
}

.footer-copy p{
    color: var(--secondary-color);
    font-size: 14px;
    text-align: center;
}

.footer-copy p a{
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 900;
}

/* Mobile */
@media screen and (max-width: 900px) {
    .footer-content{
        flex-direction: column;
    }
    .footer-logo-name{
        font-size: 30px;
    }
    .footer-contact-info{
        width: 100%;
    }

    .footer-subscription p{
        font-size: 14px;
    }
}