* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
body
{
    background: #000000;
    color: #ffffff;

}
#header
{
    width: 100%;
    height: 100vh;
    background-image:url(images/background.jpg);
    background-size: cover;
    background-position: center;
}

.container
{
    padding: 10px 10%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo{
    width: 140px;
    height: 50px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;

}
nav ul li a::after{
    content: '' ;
    width: 0;
    height: 3px;
    background: #2515af;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;


}

.rounded-button {
    
    padding: 12px 25px;
    background-color: #4c87af; /* Green */
    color: white;
    border: none;
    border-radius: 30px; /* Makes it rounded */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .rounded-button:hover {
    background-color: #e7aae7;
    transform: scale(1.05);
  }

  .header-text{
    margin-top: 20%;
    font-size: 30px;

}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;

}
.header-text h1 span{
    color: #8280ff;
}

/*--------------services-------------*/
#services{
    padding: 30px 0;
}
.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.services-list div{
background: #262626; 
padding: 40px;
font-size: 13px;
font-weight: 300;
border-radius: 10px;
transition: background 0.5s,transform 0.5s;
}

.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 a{
        text-decoration:none;
        color:#ffffff;
        font-size:12px;
        margin-top: 20px;
        display:inline-block;

    }
    .services-list div:hover{
        background:#4c56e4;
        transform: translateY(-10px);

    }