@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: 'Poppins',sans-serif;
    padding: 0px;
    
    
    

}


:root{
    --bg-color: #fdfdfd;
    --text-color:rgb(44,44,46);
    --main-color:#007bff;
    --white-color: #fdfdfd;
    --shadow-color: rgba(0, 0, 0, .2);
    --blue: #007aff;
    /* --blue: #e38528; */
    --primary:#fdfdfd;
    --nav-text:rgb(99 99 101);

}

.dark-mode {
    --bg-color:rgb(28,28,30);
    --primary:rgb(28,28,30);
    --text-color:#fdfdfd;
    --shadow-color: var(--bg-color);

}




   

html {
    font-size: 62.5%;
    
   
}

body {
    background:var(--primary);
    color:var(--text-color);
    overflow-x: hidden;
    
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 7%;
    background: transparent;
    display: flex;
    align-items: center;
    z-index: 100;
    transition: .5s ease;
    justify-content: space-between;
    
    
}

.header.sticky {
    background:var(--bg-color);
    box-shadow: 0 .1rem 1rem var(--shadow-color);
}



.header.sticky .navbar a {
    color: var(--text-color);
}
.header.sticky .navbar a.active {
    color: var(--main-color);
}

.header .logo-app {
    position: relative;
    width: 13rem;
   
}

.header .navbar a { 
    position: relative;
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 3rem;
    transition: .8s ease;
    
    
}
.navbar a.active {
    color: var(--main-color);
}


.navbar a.active::before {
    
    position:absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: .1rem;
    background:var(--main-color);


}


.header.sticky .navbar a::before {
    background: var(--blue);
    opacity: .7;
    
}

#darkMode-icon {
    font-size: 2.4rem ;
    color: var(--text-color);
    cursor: pointer;
}
.header.sticky #darkMode-icon {
    color: var(--text-color);
    opacity: .9;
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
}

section {
    min-height: 100vh;
    padding: 10rem 7% 5rem;
    
}

.home {
    display: flex;
    align-items: center; 
    height: 760px;
    min-height: auto;
   
    
}

.home-image {
    max-width: 700px;
}

.home .home-content {
    max-width: 42rem;
    gap: 10rem;
}

.home-content h3 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: .8;
    margin-bottom: .9rem;
    
}

.home-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: .7rem;
    color: var(--blue);
}

.home-content p {
    font-size: 2rem;
    margin-bottom: .7rem;

}

.home-content .social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid var(--blue);
    border-radius: 50%;
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 2rem;
    color: var(--blue);
    margin: 2.5rem 1.5rem 3rem 0;
    transition: .5s ease;

}
.home-content .social-media a:hover {
    background: var(--blue);
    color: var(--white-color);
}


.home .profession h3 {
    font-size: 3rem ;
    line-height: 1 ;
    font-weight: 500;
    
}



 





.home-image .image {
    
    width: 100%;
    
    animation: floatImage 4s ease-in-out infinite;
    
    
}


span {
    color: var(--blue);
}



.about .row-1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding-top: 5rem;
  
    
}


.about-img img {
    width: 40vw;
    border-radius: 20%;
} 

.heading {
    font-size: 4.5rem;
    text-align: center;
}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
}

.about-content h3 {
    font-size: 2rem;

}
.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--blue);
    border-radius: 1rem;
    box-shadow: 0 .2rem .5rem var(--shadow-color);
    font-size: 1.4rem;
    color: var(--white-color);
    letter-spacing: .1rem;
    border: .2rem solid transparent;
    font-weight: 600px;
    transition: .5s ease;

}
.btn:hover {
    background: transparent;
    color: var(--blue);
}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

.app {
    min-height: auto;
    padding-bottom: 7rem;
   
   
}


.app h2 {
    text-align: center;
    padding-bottom: 5rem;
}
.app .app-container {
    display: flex;
    justify-content:center ;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    
}



.app-container .app-box {
    flex: 1 1 23rem;
    background: var(--bg-color);
    padding: 3rem 2rem 4rem;
    border-radius: 5rem;
    
    text-align: center;
    border-top: .0.5rem solid var(--text-color);
    border-bottom: .3rem solid var(--text-color);
   
    
    

}

.app-box .img-app {
    width: 30%;
    border: 0.2rem solid var(--white-color);
    object-fit: cover;
    border-radius: 20%;
}
.app-box .img-app-cloud {
    border-radius: 20%;
    border: 1px solid #065fd4;
    width: 30%;
}

/* .app-container .app-box:hover {
    box-shadow: 0 .1rem 2rem var(--shadow-color);
    
} */

.app-box h3 {
    font-size: 2.3rem;
    transition: .5s ease;

}

.app-box:hover h3 {
    color: var(--blue);
}
.app-box p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
}


/* Cliens Testimonial */


.testimonial-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-bottom: 10rem;
    
}   

.testimonial-container .testimonial-wrapper {
    position: relative;
    max-width: 80rem;
    width: 100%;
    padding: 2rem;
}
.testimonial-wrapper .testimonial-box {
    
    padding: 1rem;
    border-radius: 2rem;
    overflow: hidden;

}

.testimonial-box .swiper-pagination-bullet {
    background: rgba(0, 0, 0, .8);
}

.testimonial-box .swiper-pagination-bullet-active {
    background: var(--blue);
}

.testimonial-container .testimonial-slide {
    display: flex;
    align-items: center;
    flex-direction: column;
   
    border-radius: 5rem;
   
    padding: 3rem 5rem;
    
    border-bottom: .4rem solid var(--text-color);
    
}

.testimonial-slide img {
    width: 14rem;
    height: 14rem;
    object-fit: cover;
    border-radius: 20%;
    border: .2rem solid var(--white-color);
    outline: .2rem solid var(--blue);
}




.testimonial-slide h3 {
    font-size: 2.5rem;
    margin: 2rem 0 ;
}
.testimonial-slide i {
    font-size: 3.5rem;
    
    opacity: .8;
    color:var(--blue);
}
.testimonial-slide p {
    font-size: 1.4rem;
    text-align: center;
}

.swiper-button-next {
    font-size: 100px;
    
}

.testimonial-box .swiper-button-next,
.testimonial-box .swiper-button-prev {
    color:black ;
    
}

/* videos youtube */

.videos-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-bottom: 10rem;
    
}   

.videos-container .videos-wrapper {
    position: relative;
    max-width: 80rem;
    width: 100%;
   
    
}
.videos-wrapper .videos-box {
    
    padding: 1rem;
    border-radius: 2rem;
    overflow: hidden;

}

.videos-box .swiper-pagination-bullet {
    background: rgba(0, 0, 0, .8);
}

.videos-box .swiper-pagination-bullet-active {
    background: black;
    
}

.videos-container .videos-slide {
    display: flex;
    align-items: center;
    flex-direction: column;
   
    border-radius: 2rem;
   
   
    
}



.videos-box .swiper-button-next,
.videos-box .swiper-button-prev {
    color:var(--bg-color) ;
    
}

.videos-guide {
    width: 100%;
    height: 50rem;
    border-radius: 20px;
    
}





.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 7%;
    background: var(--blue);

}

.footer-text p {
    font-size: 1.6rem;
    color: var(--white-color);
}

.footer-icontTop a {
    display: flex;
    justify-content: center;
    padding: .8rem  ;
    align-items: center;
    background: var(--white-color);
    border-radius: .8rem;
    border: .2rem solid var(--blue);
    outline: .2rem solid transparent;
    transition:.5s ease ;


}

.footer-icontTop a:hover {
    outline-color: var(--white-color);

} 

.footer-icontTop a i {
    font-size: 2.4rem;
    color: #333;

}

@media screen and (max-width: 1200px){
    html {
        font-size: 55%;
    }

    .home .profession-container {
        height: 85.8rem;

    }

    .home .profession-container .profession-box {
        right: -12rem;
        height: 85.8rem;
    }

    .home .profession-container .overlay{
        right: -9rem;
    }
}

@media screen and (max-width: 1024px){
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;

    }

}

@media screen and (max-width: 991px){




    .navbar a.active::before {
        background: var(--blue);
        opacity: .7;
    }
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }
    
    .footer {
        padding: 2rem 3%;
    }


    

    .app,
    .portfolio {
        padding-bottom: 7rem;
    }
    .footer {
        padding: 2rem 3%; 
    }
    
}

@media screen and (max-width: 768px){
    #menu-icon {
        display: block;
    
    }

    .testimonial-slide img {
        width: 7rem;
        height: 7rem;
        object-fit: cover;
        border: .2rem solid var(--bg-color);
        outline: .1rem solid var(--blue);
        border-radius: 20%;
    }

    .header .logo-app {
        position: relative;
        width: 20%;
       
    }

    .app-box h3 {
        font-size: 2.3rem;
    }

    .app-box p {
        font-size: 1.9rem;
    }

    .testimonial-container .testimonial-wrapper {
        position: relative;
        max-width: 80rem;

        width: 100%;
        
    }

    .testimonial-slide h3 {
        font-size: 2.3rem;
        margin: 2rem 0 ;
    }
    .testimonial-slide i {
        font-size: 1.8rem;
        
        opacity: .8;
        color:var(--blue);
    }
    .testimonial-slide p {
        font-size: 1.8rem;
        text-align: center;
    }

    

    #darkMode-icon {
        position: absolute;
        right: 7rem;
        font-size: 2.6rem;
        color: var(--text-color);
        margin-bottom: .1rem;
    }

    

    
    .navbar a.active {
        color: var(--main-color);
    }

    .navbar a::before {
        display: none;
    }

    .header .navbar {
        position: absolute;
        top:90%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background:var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        display: none;
        transition: 8s;
        z-index: 3;
    }
    .navbar.active {
        display: block;
        transition: .8s;

    }
    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0 ;
        color: var(--text-color);
    }


    .home {
        
        justify-content: center;
        text-align: center;
        flex-direction: column;

    }
    .home-content h3 {
        font-size: 2.4rem;
    }
    .home-content h1 {
        font-size: 4rem;
        
    }

    

    .home-image .image {
       
        width: 60%;
        margin-top: 3rem;
    }
    
    .home .profession-container {
        left: 0;
        width: 100%;
        height: 100%;
    } 

    .testimonial-box .testimonial-slide {
        padding: 3rem 2rem;
    }

    .testimonial-box .testimonial-wrapper {
        padding: 5rem;
    }

    .testimonial-box .swiper-button-next,
    .testimonial-box .swiper-button-prev {
        display: none;

    }

    .videos-guide {
        width: 100%;
        
        border-radius: 20px;
        
    }

    

}

@media screen and (max-width: 617px) {
    
    .app .app-container {
        grid-template-columns: repeat(1, 2fr);
    }

    .videos-guide {
        width: 100%;
        
        border-radius: 20px;
        
    }
    
}

@media screen and (max-width: 450px) {

    html {
        font-size: 50%;
    }

    #darkMode-icon {
        right: 6rem;

    }

    .videos-guide {
        width: 100%;
        
        border-radius: 20px;
        
    }

    

    span {
        font-size: 2.3rem;
        
    }
    .heading {
        font-size: 2.3rem;
        
    }
    
    .testimonial-slide img {
        width: 7rem;
        height: 7rem;
        object-fit: cover;
        border-radius: 50%;
        border: .2rem solid var(--white-color);
        
    }

    .contact form .input-box input {
        width: 100%;
        box-shadow: black;
    }
}

@media screen and (max-width: 380px) {
    .videos-guide {
        height: 35rem;
        width: 100%;
        
        border-radius: 20px;
        
    }
}

@media screen and (max-width: 100px) {
    .about-img img {
        width: 70vw;
    }

    .app .heading {
        text-align: center;
    }

    .footer {
        flex-direction: column-reverse;
    }
    
    
    .footer p {
        text-align: center;
        margin-top: 2rem;
    }
}

