*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'poppins', sans-serif;
}
:root{
    --bg-color: #1f242d;
    --second-bg-color:#323946;
    --text-color:#fff;
    --main-color:#0ef;
}
html{
    font-size:62.5%;
    overflow-x:hidden;
}

body{
    background: var(--bg-color) ;
    color: var(--text-color);
}
section{
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background:var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

}
.logo{
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 600;
    cursor: default;
}

.home-img .img-box{
    position: relative;
    width: 32vw;
    height: 32vw;
    
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
 .home-img .img-box::before,
 .home-img .img-box::after{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: conic-gradient(transparent,transparent,transparent,#0ef);
    transform: rotate(0deg);
    animation: rotate-border 10s linear infinite;
}
.home-img .img-box::after{
    animation-delay: -5s;
}
@keyframes rotate-border{
    100%{
        transform: rotate(360deg);
    }
}
.home-img .img-box .img-item{
position: relative;
width: 100%;
height: 100%;
background: #1f242d;
border-radius: 50%;
border:.1px solid #1f242d;
display: flex;
justify-content: center;
z-index: 1;
overflow: hidden;

}
.home-img .img-box .img-item img{
    position: absolute;
    top: 30px;
    display: block;
    width: 85%;
    object-fit: cover;
    mix-blend-mode: lighten;
}

nav{
    display: flex;
     position: fixed;
     background-color: #1f242d;
    padding: 2% 6%;
    top: 0;
    width: 100%;
    height: 3.5%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 220px;
}
.nav-links ul li
{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a
{
    color: white;
    text-decoration: none;
    font-size: 17px;
}
.nav-links ul li::after
{
    content: '';
    width: 0%;
    height:3px;
    background-color:#0ef;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after
{
    width: 100%;
}


nav .bx{
    display: none;
}

@media(max-width:900px){
    .text-box h1{
    font-size: 30px;
  }
  .txt-box h1{
    font-size: 22px;
  }
   .text-box-col img{
    width: 100%;
    border-radius: 10px;
}
  .nav-links ul li{
    display: block;
  }
  .nav-links{
    position: absolute;
    background:#ff994f;
    height: 55vh;
    width: 190px;
    top: 0;
    right: -220px;
    text-align: left;
    z-index: 6;
    transition: 1s;
  }
  nav{
    height: 8%;
  }
  nav .bx{
    display: block;
    color:#fff;
    margin:10px;
    font-size: 22px;
    cursor:pointer;
  }
  .nav-links ul{
    padding: 25px;

  }

}


.home{
    display:flex;
    justify-content: center;
    align-items: center;
}
.home-content h3{
    font-size: 3.2rem;
    color: white;
    font-weight: 700;
}
.home-content h3:nth-of-type(2){
    margin-bottom: 2rem;
}
.home-img img{
    width: 35vw;
}
span{
    color: #0ef;
}
.home-content h1{
    font-size:4.6rem ;
    font-weight: 500;
    line-height: 1.3;
}
.home-content p{
    font-size: 1.6rem;
}
.social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5%;
    height: 16%;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
}
.social-media a:hover{
    background: var(--main-color);
    color: var(--second-bg-color);
    box-shadow: 0 0 1rem var(--main-color);
}
@media(max-width: 700px){
    .social-media a{
        width: 11%; ;
    }
}

    


.btn{
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 4rem;
    box-shadow: 0 0 1rem var(--main-color);
    font-size: 1.6rem;
    color: var(--second-bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
}
.btn:hover{
    box-shadow: none;
}


.services h2{
    margin-bottom: 5rem;
}
.services-col{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem
;

}
.services-col .services-box{
    flex: 1 1 30rem;
    background: var(--second-bg-color);
    padding: 3rem 2rem 4rem 3rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid var(--bg-color);
    transition: 0.5s ease;
}

.services-col .services-box:hover{
    border-color: var(--main-color);
    transform: scale(1.02);
}

.services-box i{
    font-size: 7rem;
    color: var(--main-color);
}

.services-box h3{
    font-size: 2.6rem;

}
.services-box p{
    font-size: 1.6rem;
    margin: 1rem;
}

.about{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--second-bg-color);
}

.about-img img{
    width: 35vw;

}
.heading{
    text-align: center;
    font-size: 4.5rem;

}
.about-content h2{
     text-align: left;
     line-height: 1.2;
}

.about-content h3{
    font-size: 2.6rem;
}

.about-content p{
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

.contact
{
    width: 90%;
    color:white;
    position:absolute;
    margin: auto;
    text-align: center;
    top:0%;
    left:0%;
    transformesd:translate(-50%,-50%);
}
.contact-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.contact-left{
    display: flex;
    flex-direction:column;
align-items: start;
gap: 20px;}

.contact-left-title h2{
 font-weight: 600;
 color: #0ef;
 font-size: 40px;
 margin-bottom: 5px;
}
.contact-left-title hr{
    border:none;
    width: 120px;
    height: 5px;
    background-color: #0ef;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-input{
    width: 650px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}
.contact-left textarea{
    height: 220px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-input:focus{
    border:2px solid #ff994f;
}
.contact-input::placeholder{
    color: pink;
}
.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
   
    color:  #323946;
    gap: 10px;
    margin: auto;
    width: 100%;
    border:none;
    border-radius: 50px;
    background-color: #0ef;
    cursor: pointer;
}

@media(max-width:700px){
    .text-box h1{
    font-size: 20px;
  }
  .contact-input{
    width: 120%;
  }
 

}

.blog{
    width: 96%;
       margin: auto;
       background-color: var(--bg-color);
       text-align: center;
       padding-top: 100px;
   }
   
   h1{
       font-size: 36px;
       font-weight: 600;
       color: #0ef;
   }
   h2{
       color: #0ef;
       font-size: 16px;
       font-weight: 300;
       line-height: 22px;
       padding: 10px;
   
   }
   .blog-col{    flex-basis: 31%;
       border-radius: 10px;
       margin-bottom: 5%;
       background-color: #323946;
       padding: 20px 12px;
       box-sizing: border-box;
   }
   .blog-col p{
    color:white;
      
      font-size: 16px;
   }

   .footer{
    width: 100%;
    height: 10%;
    background-color: #F075AC;
    text-align: center;
   }
.footer h3{
    color: white;
    font-size: 25px;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-size: 16px;
    color: white;
}
.footer p{
    color: white;

}
.icons .bx{
    color: white;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
    font-size: 30px;
}
.bx-heart{
    color: red;
}

@media(max-width: 700px){
    .footer{
        height: 40%;
    }
    .footer h3{
        font-size: 24px;
    }
}
