@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');

:root {
    --main-color: #7371fc;
    --secondary-color: #e2e8f0;
    --dark: #0f172a;
    --darker: #0a0f1c;
    --darkerGlass: rgba(50, 65, 101, 0.231);
    --glass: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
}

header {
    background-color: var(--darker);
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
}

section {
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1700px;
}

.header {
    display: flex;
    justify-content: center; 
    padding: 1.5rem;
    gap: 10rem;
}

.logo {
    display: flex;
}

.logo img {
    width: 8rem;
    height: 8rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1.2rem;
    font-size: 1.3rem;
}

.navbar {
    display: flex;
    align-items: center;
}

.menu-button {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#menu-icon {
    font-size: 3rem;
    color: var(--main-color);
    display: none;
    transition: 0.5s ease;
}

#menu-icon:hover {
    color: var(--secondary-color);
}

.menu-mobile {
    background-color: var(--darker);
    height: 100vh;
    width: 0%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    overflow: hidden;
    transition: 0.5s;
    cursor: pointer;
}

.menu-mobile.open-menu {
    width: 75%;
}

.menu-mobile.open-menu ~ .overlay-menu {
    display: block;
}

.menu-mobile nav ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-mobile nav ul li a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    padding: 20px;
    display: block;
    transition: 0.1s ease;
}

.menu-mobile nav ul li a:hover {
    background-color: var(--main-color);
}

 .overlay-menu {
        background-color: #0a0f1cd0;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 8888;
        display: none;
    }

#menu-close {
    color: var(--main-color);
    font-size: 3rem;
    padding: 0.5rem;
    margin-top: 1rem;
    transition: 0.5s ease;
}

#menu-close:hover {
    color: var(--secondary-color);
}

.menu-desktop {
    display: flex;
    font-size: 1.5rem;
    gap: 3rem;
}

.menu-desktop a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
    display: inline-block;
}

.menu-desktop a:hover {
    transform: scale(1.1);
}

.menu-desktop a::after {
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
    transition: width 0.5s ease;
}

.menu-desktop a:hover::after {
    width: 100%;
}

.main-text {
    min-height: 100vh;
    padding-top: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-text h2{
    font-size: 2rem;
}

p {
    font-size: 1.5rem; 
}

.btn {
    background-color: var(--main-color);
    padding: 1.5rem 2rem;
    border-radius: 20rem;
    max-width: 25rem;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: 0.5s ease;
    margin-top: 4rem;
}

i.bxl-whatsapp {
    font-size: 5rem;
}

i.bx-envelope {
    font-size: 4.2rem;
}

i.bx-copyright {
    font-size: 2.5rem;
    padding-top: 0.2rem;
}

.btn:hover {
    transform: scale(1.1);  
    box-shadow: 0px 0px 30px 1px rgba(115,113,252,0.49);
    -webkit-box-shadow: 0px 0px 30px 1px rgba(115,113,252,0.49);
    -moz-box-shadow: 0px 0px 30px 1px rgba(115,113,252,0.49); 
}

/*Types of title*/

.title {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.secondary-title {
    font-size: 5rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    text-align: center;
}

/*-----------------------------------------------------------*/

/*Types of Span*/

.basic-span { 
    color: var(--main-color);
}

.neon-span {
    color: var(--main-color);
    text-shadow: 0px 0px 25px rgba(115,113,252,0.6);
    font-weight: bold;
}

/*-----------------------------------------------------------*/

.about-box {
    border: 0.1rem solid var(--main-color);
    padding: 2rem;
    border-radius: 1rem;
    line-height: 3rem;
    background-color: var(--darker);
    max-width: 100rem;
    margin: 0 auto;
}

.services-box {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.services-card {
    display: flex;
    text-align: left;
    align-items: center;
    border: 0.1rem solid var(--main-color);
    border-radius: 1rem;
    background-color: var(--darker);
    cursor: pointer;
    transition: 0.5s ease;
}

.services-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 30px 1px rgba(115,113,252,0.49);
    -webkit-box-shadow: 0px 0px 30px 1px rgba(115,113,252,0.49);
    -moz-box-shadow: 0px 0px 30px 1px rgba(115,113,252,0.49);
}

.services-card img {
    width: 20rem;
    height: auto;
    padding: 3rem;
    border-right: 0.1rem solid var(--main-color);
}

.services-text-box {
    padding: 3rem;
    font-style: italic;
}

.title-card {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.paragraph-card {
    font-size: 1.5rem;
    font-weight: 300;
}



.form {
    max-width: 800px;
    margin: 0 auto;
    border: rgba(255, 255, 255, 0.1) solid 0.1rem;
    padding: 2rem;
    border-radius: 1rem;
    background-color: var(--darker);
}

.form-divs {
    margin-bottom: 1.5rem;
}

.form-elements {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    background-color: var(--darkerGlass);
    outline: none;
    
}

.error-message {
    color: rgb(130, 10, 10);
    font-size: 0.9rem;
}

.form-elements:focus {
    border: var(--main-color) solid 0.1rem;
    box-shadow: 0px 0px 5px 1px rgba(115,113,252,0.49);
    -webkit-box-shadow: 0px 0px 5px 1px rgba(115,113,252,0.49);
    -moz-box-shadow: 0px 0px 5px 1px rgba(115,113,252,0.49);
}

.form-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.5s ease;
}

.form-button:hover {
    transform: translateY(-4px);
    box-shadow: 0px 0px 5px 1px rgba(115,113,252,0.49);
    -webkit-box-shadow: 0px 0px 5px 1px rgba(115,113,252,0.49);
    -moz-box-shadow: 0px 0px 5px 1px rgba(115,113,252,0.49);
}

footer {
    background-color: var(--darker);
}

.footer {
    margin-top: 4rem;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-box {
    display: flex;
}

.footer-number {
    display: flex;
    align-items: center;
}

.footer-email {
    padding-top: 0.6rem;
    padding-left: 0.4rem;
}

.footer-rights {
    padding-left: 0.4rem;
    padding-top: 0.4rem;
}

@media screen and (max-width: 1270px) {

    #menu-icon {
        display: block;
    }

    section {
    padding: 1.7rem 1rem;
    margin: 0 auto;
    max-width: 1700px;
}

    .header {
    justify-content: space-between;
    padding: 0.5rem;
    margin-left: 0.5rem;
    gap: 0;
    }

    .logo img {
    width: 5rem;
    height: 5rem;
    }

    .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0.5rem;
    font-size: 0.9rem;
    }

    .navbar {
    display: none;
    }

    .main-text {
        min-height: 100vh;
        padding-top: 8rem;
    }

    .main-text h2{
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    p {
        font-size: 1rem; 
    }

    .btn {
        font-size: 1.5rem;   
        margin: 0 auto;
        margin-top: 2rem;
        width: 18rem;
        height: auto;
    }

    i.bxl-whatsapp {
        font-size: 3rem;
    }

    i.bx-envelope {
        font-size: 2.5rem;
    }

    i.bx-copyright {
    font-size: 1.5rem;
    padding-top: 0.4rem;
}

    /*Types of title*/

    .title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .secondary-title {
        font-size: 2rem;
    }

    /*-----------------------------------------------------------*/

    .about-box {     
        line-height: 1.5rem;     
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .services-card {
        flex-direction: column;
        text-align: left;
    }

    .services-card img {
        width: 15rem;
        height: auto;
        padding: 1.5rem;
        border-right: none;
        border-bottom: 0.1rem solid var(--main-color);;
    }

    .services-text-box {
        padding: 3rem;

    }

    .title-card {
        font-size: 1.5rem;
    }

    .paragraph-card {
        font-size: 1.2rem;
    }

    .footer {
        padding: 0.5rem;
        display: flex;  
        flex-direction: column;
    }

    .footer-number {
        font-size: 1rem;
    }

    .footer-email {
        font-size: 1rem;
        padding-top: 0.5rem;
        padding-left: 0.4rem;
    }

    .footer-rights {
        font-size: 1rem;
        justify-content: center;
    }
}





















































