
html{
    scroll-behavior: smooth;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
    list-style: none;
    text-decoration: none;
}

:root{
    --bg-color: #1f1f21;
    --text-color: #fff;
    --main-color: #187cff;
    --big-font: 6rem;
    --p-font: 1.1rem;
}

body{
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

header{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 15%;
    transition: all ease .45s;
}

.logo{
    color: var(--text-color);
    font-size: 43px;
    font-weight: 600;

}

.logo span{
    color: var(--main-color);
}

.navbar{
    display: flex;
}

.navbar a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 30px;
    transition: all ease .50s;
}

.navbar a:hover{
    color: #187cff;
    font-size: 1.4rem;
    transition: all 0.2s ease-in-out;
    border-bottom: 2px solid #187cff;
    border-radius: 5px;

}

.navbar a.active{
    color: #187cff;
}

.menu-btn{
    background: linear-gradient(130.08deg, #383528 0%, #191919 100%);
    box-shadow: 0px 20px 40px #00000070;
    border: 1px solid #3b3b3b;
    padding: 10px 20px;
    border-radius: 100px;
    display: none;
    align-items: center;
    cursor: pointer;
}

#menu-icon{
    font-size: 28px;
    margin-left: 10px;
    z-index: 6;
    display: none;
}

section{
    padding: 0 15%;
}

.textst{
    color: #fff;
    padding: 5px 25px;
    background: #187cff;
    box-shadow: 0px 10px 40px #8097ff70;
    border: 1px solid #3b3b3b;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 65px;

}
.home{
    position: relative;
    width: 100%;
    height:100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

home-img{
    width: 730px;
    height: 730px;
}

home-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}




/*.home-text span{
    padding: 5px 25px;
    background: linear-gradient(130.08deg, #383528 0%, #191919 100%);
    box-shadow: 0px 20px 40px #00000070;
    border: 1px solid #3b3b3b;
    padding: 10px 20px;
    border-radius: 100px;
    color: var(--text-color);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;

}*/

.home-text h1{
    font-size: var(--big-font);
    margin: 23px 0;
}
.home-text p{
    font-size: var(--p-font);
    font-weight: 600;
    color: #c3c3c3;
    line-height: 30px;
    margin-bottom: 30px;
}

.btn{
    display: inline-block;
    padding: 14px 34px;
    background:#187cff;
    color: white;
    border: 2 solid #187cff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.6s ease-in-out;
}

.btn:hover{
    transform: translateY(-5px);
    background: transparent;
    color: #187cff;
    border: 2 solid blue;
}

.two{
    background: #141414;
    border: 2px solid #141414;
    color: var(--main-color);
    margin-left: 25px;
}

.two:hover{
    color: #141414;
    background: var(--text-color);
    border: 2px solid var(--text-color);
}

.share{
    position: relative;
    bottom: 3rem;
    left: 15%;
    display: flex;
    align-items: center;
}

.share p{
    font-size: 17px;
    color: var(--text-color);
    margin-right: 25px ;
}

/*.social i{
    display: inline-block;
    align-items: center;
    justify-content: center;
    height: 35px;
    width:35px;
    background: linear-gradient(130.08deg, #383528 0%, #191919 100%);
    box-shadow: 0px 20px 40px #00000070;
    border: 1px solid #3b3b3b;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 20px;
    margin: 100px 7px;
    transition: all 0.6s ease-in-out;
    text-align: center;
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.social i:hover{
    transform: translateY(-10px);
}
*/
.about{
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    width: 100%;
    height: auto;
    
}

.about-img img{
    padding-bottom: 2%;
    max-width: 480px;
    height: auto;   
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: contain;
}

.about-img img:hover{
    transform: scale(1.1);
    transition: all 1s ease-in;
}

.about-p h2{
        font-size: 40px;
        margin-left: 0;

}

#Services{
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
   
}
.sub-tittle{
    text-align: center;
    font-size: 60px;
    padding-bottom: 70px;

}
.container{
    padding: 80px;
    margin-top: 10px;
}

.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(259px,1fr));
    grid-gap:60px ;
    margin-top: 10px;
    margin-left: 10px;
    align-items: center;
    text-align: center;
}

.services-list div{
    background: transparent;
    padding: 40px;
    font-size: 16px;
    font-weight: 13px;
    border-right: 10px;
    border-radius: 20px;
    transition: background 0.5s transform 0.5s;
    box-shadow: 1px 1px 20px #012290f7, 1px 1px 30px #0053b8f7; 
    width: 340px;
    height: 400px;
    
}

.services-list div i{
    font-size: 50px;
    margin-bottom: 30px;
}

.services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.services-list div:hover{
    transform: scale(1.1);
    z-index: 2;
    cursor: default;
    transition: all 0.5s linear;
    box-shadow: 2px 2px 40px #012290f7, 2px 2px 50px #0053b8f7;
}


.main-tittle{
    max-width: 700px;
    margin: 0px auto;
    text-align: center;
    margin-top: 20px;
}

.main-tittle h1{
    position: relative;
    font-size: 60px;
    margin-bottom: 30px;
    display: inline-block;
}

.main-tittle h1::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 125%;
    left: 0;
    background-color: #808080;

}

.main-tittle h1::after{
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #187cff;
    top: calc(125% - 1px);
    left: 50%;
    transform: translatex(-50%);
}

.main-tittle p{
    color: #808080;
    margin-bottom: 50px;
}
.row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.row .col{
    flex-basis: 80%;
   
}


.row .min-tittle h2{
    position: relative;
    color: #fff;
    font-size: 22px;
    display: inline-block;
    margin-bottom: 30px;
}
.row .min-tittle h2::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    top: 125%;
    left: 0;
    background-color: #808080;
}

.row .min-tittle h2::after{
    content: '';
    position: absolute;
    width: 25%;
    height: 3px;
    top: calc(125% - 1px);
    left: 0;
    background-color: #187cff;
}

.subject{
    font-size: 18px;
    font-weight: thin;
    color: #cac7c7;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.subject:hover{
    font-size: 22px;
    cursor: default;
}

.progress-bar{
    position: relative;
    width: 100%;
    height: 5px;
    background-color: #808080;
    border-radius: 15px;
    margin-bottom: 20px;
}

.progress-bar::after{
    position: absolute;
    content: attr(value);
    top: -35px;
    right: 0;
    color:#808080;
    font-size: 18px;
}

.progress-line{
    position: absolute;
    width: 0%;
    height: 7px;
    background-color: #187cff;
    border-radius: 15px;
    top: -1px;
    animation: animate 1.5s cubic-bezier(1, 0.2, 0.2, 1) forwards;
}
 @keyframes animate{
    100%{
        width: 100%;
    }
 }



.progress-line::after{
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    background-color: #187cff;
 }

 
#blog{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-heading{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.blog-heading .blue{
    color: #fff;
}

.blog-heading .white{
    color: #187cff;
}

.blog-heading h3{
    font-size: 60px;
    font-weight: 600;
}

.blog-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.blog-box{
    width: 350px;
    height: 530px;
    background-color: #fff;
    border: 1px solid #ececec;
    margin: 20px;
    
}

.blog-box:hover{
        transform: scale(1.1);
        z-index: 2;
        cursor: default;
        transition: all 0.5s linear;
        box-shadow: 1px 1px 15px #fffffff7, 1px 1px 20px #fffffff7;
    
}

.box-img{
    width: 100%;
    height: auto;
}

.blog-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blog-img img:hover{
    transform: scale(1.02);
    transform: rotate(-1deg);
}

.blog-text{
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.blog-text span{
    
    font-size: 0.9rem;

}

.blog-text .blog-tittle{
    font-size: 1.3rem;
    font-weight: 500;
    color: #272727;

}

.blog-text .blog-tittle:hover{
    color: #187cff;
    transition: all ease-in 0.3s;
}

.blog-text p{
    color: #000;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px 0px;
}

.contact{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact .content{
    max-width: 800px;
    text-align: center;
}
.contact .content span{
    color: #187cff;
    font-weight: 600;
    font-size: 60px;
}


.contact .content h2{
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .content p{
    font-weight: 300;    
}

.contact-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.contact-container .contactInfo{
    width: 30%;
    display: flex;
   flex-direction:column;
}

.contact-container .contactInfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}

.contact-container .contactInfo .box .icon{
    width: 50px;
    height: 50px;
    color: #187cff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    font-size: 26px;
}

.contact-container .contactInfo .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    flex-direction: column;
    font-weight: 300;
}

.contact-container .contactInfo .box .text h3{
    font-weight: 500;
    color: #63a7ff;
}

.contactform{
    width: 30%;
    padding: 40px;
    background-color: #fff;
    display: flex;
    border-radius: 10px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contactform h2{
    font-size: 30px;
    color: #187cff;
    font-weight: 500;

}

.contactform .inputbox{
    position: relative;
    width: 100%;
    margin-top: 10px;

}

.contactform .inputbox input,
.contactform .inputbox textarea {
    width: 400px;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
   
}

.contactform .inputbox span{
    position: absolute;
    left: 0;
    color: #666;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
}

.contactform .inputbox input:focus ~ span,
.contactform .inputbox input:valid ~ span,
.contactform .inputbox textarea:focus ~ span,
.contactform .inputbox textarea:valid ~ span{
    color: #63a7ff;
    font-size: 12px;
    transform: translateY(-17px);
}

.contactform .inputbox input[type="submit"]{
    width: 150px;
    background: #187cff;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 15px;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.contactform .inputbox input[type="submit"]:hover{
    box-shadow: 0 0 10px #187cff;
    transform: scale(1.04);
}


.inputbox .error-text{
    color: red;
    font-size: 13px;
    display: none;
}




footer {
    position: relative;
    width: 100%;
    background: #3586ff;
    min-height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;  
    flex-direction: column;  
}

footer .social_icon, footer .footer_menu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .social_icon li, footer .footer_menu li{
    list-style: none;

}

footer .social_icon li a{
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

footer .social_icon li a:hover{
    transform: translateY(-10px);
}

footer .footer_menu li a{
    font-size: 1.2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
}

footer .footer_menu li a:hover{
    opacity: 1;
}

footer p{
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

footer .wave{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(wave.png);
    background-size: 1000px 100px;
}
footer .wave#wave1{
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;    
}

footer .wave#wave2{
    z-index: 999;
    opacity: 0.5;
    bottom: 15px;
    animation: animateWave_02 4s linear infinite;    
}

footer .wave#wave3{
    z-index: 1000;
    opacity: 0.2;
    bottom: 0;
    animation: animateWave 3s linear infinite;    
}

footer .wave#wave4{
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;    
}
@keyframes animateWave{
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;
    }
}

@keyframes animateWave_02{
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: 1000px;
    }
}

.gotopbtn{
    position: fixed;
    width: 45px;
    height: 45px;
    background: #187cff;
    bottom: 30px;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    border-radius: 15px;
}

.gotopbtn:hover{
    width: 50px;
    height: 50px;
}

.gotopbtn.active{
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}










@media (max-width: 570px){
    .contactform .inputbox input,
.contactform .inputbox textarea {

    width: 300px;
}
}
@media (max-width: 470px){
    .contactform .inputbox input,
.contactform .inputbox textarea {

    width: 200px;
}
}

@media (max-width: 370px){
    .contactform .inputbox input,
.contactform .inputbox textarea {

    width: 150px;
}
}







@media (max-width: 1850px){
    header{
        padding: 15px 8%;
        transition: .2s;

    }
    section{
        padding: 0 8%;
        transition: .2s;
    }

    .share{
        left: 8%;
        transition: .2s;
    }
}

@media (max-width: 1370px){
    header{
        padding: 15px 4%;
        transition: .2s;

    }
    section{
        padding: 0 4%;
        transition: .2s;
    }

    .share{
        left: 4%;
        transition: .2s;
    }

    :root{
        --big-font: 5.5rem;
        --p-font:1rem;
        transition: .2s;
    }
}

@media (max-width: 1020px){
    .navbar a{
        margin: 0 15px;

    }
    
    :root{
        --big-font: 5.5rem;
        --p-font:1rem;
        transition: .2s;
    }
}

@media (max-width: 1020px){

    .share{
        display: none;

    }

    section{
        padding: 70px 4%;
    }
    header{
        padding: 11px 4%;
        background: #2d2d2d;
    }

    .home{
        height: auto;
        display: flex;
        flex-wrap: wrap;
        
    }
    .home .home-text .textst{
        font-size: 13px;
    }

    .home-text{
        order: 2;
    }

    .home-img{
        margin: auto;
        height: auto;
        width: auto;

    }

    .home-img img{
        max-width: 450px;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 850px){
    .menu-btn{
        display: flex;
    }

    .menu-btn #menu-icon{
        display: flex;
    }
    .navbar{
        position: absolute;
        width: 100%;
        height: 100vh;
        padding: 40px 50px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        background: #2d2d2d;
        transition: all 0.4s ease-in-out;

    }

    .navbar a{
        display: block;
        color: #c3c3c3;
        padding: 0px;
        margin: 0px 0px 40px 0px;
        font-size: 2rem;
        font-weight: 400;
    }

    .navbar.open{
        left: 0;
    }
}

@media (max-width: 640px){
    .menu-btn{
        display: flex;
    }

    .menu-btn #menu-icon{
        display: flex;
    }
    .navbar{
        position: absolute;
        width: 100%;
        height: 100vh;
        padding: 40px 50px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        background: #2d2d2d;
        transition: all 0.4s ease-in-out;

    }

    .navbar a{
        display: block;
        color: #c3c3c3;
        padding: 0px;
        margin: 0px 0px 40px 0px;
        font-size: 2rem;
        font-weight: 400;
    }

    .navbar.open{
        left: 0;
    }
}

@media (max-width: 500px){

    :root{
        --big-font: 4rem;
        --p-font:15px;
        transition: .2s;
    }

    .btn{
        display: flex;
        padding: 9px 28px;
    }
}

@media (max-width:800px){
    .about{
     margin-bottom: 10px;
    }
    
     .about-img img{
         max-width: 289px;
         height: auto;
         margin-bottom: 0;
     }
     .about-p{
         order: 2;
         font-size: 15px;
         margin-bottom: 0;
     }
 }
 
 
 @media (max-width: 600px){
 
     .about{
         height: auto;
         display: flex;
         flex-wrap: wrap;
         margin-bottom: 10px;
     }
 
     .about-p{
         order: 2;
         font-size: 15px;
     }
 
     .about-p h2{
         font-size: 40px;
     }
 
     .about-img{
         margin: auto;
         height: auto;
         width: 430px;
         text-align: center;
 
     }
 
     .about-img img{
         max-width: 450px;
         width: 100%;
         height: auto;
     }
 }
 
 @media (max-width: 460px){
     .about{
         
         height: auto;
         display: flex;
         flex-wrap: wrap;
         margin-bottom: 10px;
     }
 }
 
 @media (max-width: 768px){
    .row{
        padding: 10px 10px;
    }
}

@media (max-width: 600px){
.row{
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px 0px 10px 0px;
}
.row{
    margin-top: 30px;
}
}


@media(max-width:1020px){
    .services h1{
        margin-bottom: 40px;
        font-size: 60px;
        text-align: center;  
    }
}

@media(max-width: 450px){
    .services{
        margin-top: 20px;
    }


    .services-list{
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .main-tittle h1{
        text-align: center;
        font-size: 40px;
    }

    .main-tittle p{
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width:300px){
    .services .services-list h2{
        font-size: 10px;
    }

    .services h1{
        margin-bottom: 40px;
        font-size: 40px;
        text-align: center;  
    }
    
    .services-list{
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
   
}


@media(max-width: 600px){
    .service{
        margin: 10px 10px;
        font-size: 20px;
    }

    .services-list{
        width: auto;
        height: auto;
    }
}

@media(max-width:800){
    .blog-container .bolg-box{
        width: 650px;
        height: auto;
    }
}

@media(max-width:420px){
    .blog{
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .blog-container{
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .blog-container .blog-box{
        width: 250px;
        height: auto;
    }

   .blog-container .blog-img img{
    width: 248px;
    height: auto;
   }
}


@media(max-width:350px){
    .blog-container{
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .blog-container .blog-box{
        width: 250px;
        height: auto;
    }

   .blog-container .blog-img img{
    width: 248px;
    height: auto;
   }
}

@media (max-width:1570px){
    .contact{
        padding: 50px;
       
    }
    .contact-container{
        flex-direction: row;
    }
    .contact-container .contactInfo{
        margin-bottom: 40px;
        width: 100%;
    }
    .contact-container .contactform{
        width: 100%;
    }
}



@media (max-width:1080px){
    .contact{
        padding: 50px;
       
    }
    .contact-container{
        flex-direction: row;
    }
    .contact-container .contactInfo{
        margin-bottom: 40px;
        width: 100%;
    }
    .contact-container .contactform{
        width: 150%;
    }
}


@media (max-width:768px){
    .contact{
        padding: 50px;
       
    }
    .contact-container{
        flex-direction: column;
    }
    .contact-container .contactInfo{
        margin-bottom: 40px;
        width: 100%;
    }
    .contact-container .contactform{
        width: 100%;
    }
}

































.home-img img{
    animation: imgg 2s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes imgg {
    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-22px);
    }

    100%{
        transform: translateY(0);
    }
}

