@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;1,100;1,200;1,300;1,400&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Roboto Condensed',sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: #212121;
    height: 100vh;
}
nav{
    display: flex;
    padding: 0 80px;
    height: 80px;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo a{
    text-decoration: none;
    font-size: 23px;
    font-weight: 600;
    color: #00c8ff;
}
.links{
    display: flex;
    gap: 30px;
}
.links a{
    text-decoration: none;
    font-size: 19px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}
.links a:hover,
.links a.active{
    color: #00c8ff;
}
.buttons button{
    padding: 10px 20px;
    border-radius: 15px;
    border-color: transparent;
    border: none;
    background-color: black;
    color: #fff;
    transition: all 0.3s ease;
}
.buttons button:hover,
.main .main-left button:hover,
.skills-left button:hover{
    color: #2108f5;
    background-color: #00c8ff;
}
.buttons .signup{
    margin-right: -25px;
}
.blur {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #2108f5;
  filter: blur(120px);
  opacity: 0.6;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.4s ease;
}
.main-right img{
    object-fit: cover;
    width: 300px;
    background: transparent;
    border-radius: 20%;
    position: absolute;
    right: 100px;
    top: 100px;
}

.main{
    padding: 60px 90px;
    max-width: 700px;
}
.main-left .blur {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: #2108f5;
    filter: blur(120px);
    opacity: 0.6;
    border-radius: 50%;
    z-index: 0; 
    transition: all 0.4s ease;
}
.main-left {
    margin-top: 20px;
    position: relative; 
}
.main .main-left h1{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 4px;
}
.main .main-left h1 span{
    color:#00c8ff;
}
.main .main-left h2{
    margin-bottom: 20px;
    color: #fff;
    font-size: 33px;
    font-weight: 600;
    letter-spacing: 2px;
}
.main .main-left p{
    color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}
.main .main-left button{
    padding: 10px 20px;
    border-radius: 15px;
    border-color: transparent;
    border: none;
    background-color: black;
    color: #fff;
    transition: all 0.3s ease;
}
.features{
    margin-top: 100px;
}
.header{
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 60px;
}
.container{
    display: flex;
    padding: 20px 60px;
    gap: 20px;
}
.container .card{
    background-color: #27272a;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.container .card:hover{
    background-color: #323232;
    border-color: #fff;
}
.container .card span{
    display: inline-block;
    background-color: #2108f5;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.container .card span:hover,
.skills-right .item:hover{
    border-color: #fff;
}
.container .card h4{
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #ededed;
}
.container .card p{
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 600;
}
.container .card a{
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #ededed;
    background-color: transparent;
    border-radius: 10px;
    border:2px solid #fff;
    padding: 10px 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.container .card a:hover{
    border-color: #fff;
    background-color: #2108f5;
}
.container .card a i{
    margin-left: 5px;
}
.skills{
    margin-top: 100px;
}
.skills-main{
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
}
.skills-left{
    min-width: 600px;
    padding: 20px 30px;
}
.skills-left h3{
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ededed;
}
.skills-left p{
    color: #ededed;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}
.skills-left button{
    padding: 10px 20px;
    border-radius: 15px;
    border-color: transparent;
    border: none;
    background-color: black;
    color: #fff;
    transition: all 0.3s ease;
}
.skills-right{
    width: 420px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.skills-right .item{
    display: flex;
    width: 50px;
    height: 50px;
    background-color: #323232;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.skills-right .item i{
    font-size: 34px; 
}
footer{
   display: flex;
   justify-content: space-between;
   padding: 20px 30px;
   margin-top: 40px;
}
.footer-blur{
    position: relative;
}
footer .footer-left{
    min-width: 500px;
    padding: 60px 40px;
    margin-right: 80px;
    position: absolute;
}
.footer-left .footer-logo {
    margin-bottom: 20px;
}
.footer-left .footer-logo a{
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    color: #00c8ff;
}
.footer-left p{
    margin-bottom: 10px;
    color: #ededed;
    font-size: 17px;
    font-weight: 600;
}
.footer-left .footer-links{
    display: inline-block;
    padding: 10px 15px;
    margin-left: -18px;
    margin-top: 10px;
}
.footer-left .footer-links a{
    color: #fff;
    padding: 10px;
    background-color: transparent;
    border: 2px solid #ededed;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-left .footer-links a:hover{
    color: #fff;
    background-color: #00c8ff;
}
.footer-right{
    display: flex;
    gap: 100px;
    margin-top: 20px;
    min-width: 600px;
    padding: 20px 30px;
}
.footer-right .footer-card{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-right .footer-card h4{
    font-size: 21px;
    font-weight: 600;
    color: #ededed;   
}
.footer-right .footer-card ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-right .footer-card li{
    list-style: none;
}
.footer-right .footer-card a{
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}
.footer-right .footer-card a:hover{
    color: #00c8ff;
}