*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body{
  background: #080808;
    color: white;
}
#header{
    width: 100%;
    height: 100vh;
   background-image: url(/images/wallpaperflare.com_wallpaper\ \(8\).jpg);
  background-repeat: no-repeat;
    background-position: left;
}
.container{
    padding: 5px 10%;
    margin-top: 0;
}
nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.logo{
    width: 150px;
}
nav ul li {
    display: inline-block;
    list-style: none;
    margin: 1px 20px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

nav ul li a {
  color: white;
    text-decoration: none;
    position: relative; 
}

nav ul li a::after {
    content: '';
    width: 0; 
    height: 3px;
    background: #ff0088;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: width 0.5s; 
}

nav ul li a:hover::after {
    width: 100%; 
}
.header-text{
    font-size: 20px;
    font-weight: 600;
    margin-top: 20%;
}
.header-text h1{
    font-size: 50px;
    margin-top: 10px;
}
.header-text h1 span{
    color: #ff0088;
}
.about{
    padding: 80px 0;
    color: rgb(226, 237, 237);
}
.about p{
    margin-top: 20px;
}
.row{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.about-col1{
   flex-basis: 30%;
}
.about-col-1 img{
    width: 60%;
    height: 90%;
    border-radius: 50%;
}
.about-col-2{
    flex-basis: 60%;

}
.sub-tittle{
    font-size: 50px;
    font-weight: 600;
}
.tab-tittles {
    display: flex;
}

.tab-links {
    margin-right: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.tab-links.active-link {
    position: relative;
}
.table-contents active-tab{
    display: none;
}

.tab-links.active-link::before {
    content: '';
    width: 100%;
    height: 3px;
    background: #ff0088;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.5s;
}
.table-contents ul li{
    list-style: none;
    margin: 10px 0;
}
.table-contents ul li span{
    color: #ff0088;
}#services{
    padding: 30px 0;

}
.sub-tittle{
    text-align: center;
    font-weight: 800;
}
.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 80px;
}
.services-list div{
    background: #262626;
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 10px;
    transition:  0.5s, tannsform 0.5s;
}
.services-list div i{
    font-size: 40px;
    
    margin-bottom: 30px;
}
.services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}
.services-list div a{
    text-decoration: none;
   font-size: 18px;
   margin-top: 20px;
   display: inline-block;
    font-weight: 400;
    color: rgb(255, 255, 255);
}
.services-list div:hover{
    background: #008698;
    transform: translateY(-10px);
}
#portfolio{
    padding: 50px 0;
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 80px;   
}
.work{
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.work img{
    width: 100%;
    display: block;
    border-radius: 10px;
    height: 45vh;
    transition: transform 0.5s;
}
.layer {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(196, 0, 62, 0.6));
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    text-align: center;
    padding: 20px; 
    opacity: 0; 
    transition: opacity 0.5s; 
}

.work:hover .layer {
    opacity: 6; 
}

.layer h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.layer a {
    margin-top: 20px;
    text-decoration: none;
    line-height: 60px;
   color: white;
    width: 60px;
    font-size: 19px;
    height: 60px;
    text-align: center;
}

.work:hover img {
    transform: scale(1.1);
}
.btn{
    display: block;
    margin: 50px auto;
    border: 1px solid #ff0088;
    width: fit-content;
    padding: 8px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    transition: background 0.5s;
}
.btn:hover{
    background: #a00056;
    opacity: 1;
}
#contact{
    margin-top: 20px;
}
.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin-top: 30px;
}
.contact-left p{
    color: #ff0088;
    margin-right: 15px;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
    color: #ff2599;
    transform: translateY(-5px);
}
.btn.btn2{
    display: inline-block;
    background-color: #a00457;
    font-weight: 600;
}
.contact-right form{
    width: 100%;
}
form input,form textarea{
    width: 100%;
    outline: none;
    border: 0;
    background: #262626;
    padding: 10px;
    color: white;
    font-weight: 500;
    border-radius: 10px;
    margin: 15px 0;
    border: 1px solid rgb(0, 225, 255);
}
form .btn2{
padding: 10px 30px;
cursor: pointer;
margin-top: 10px;
}
.copy-right{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    font-size: 15px;
    font-weight: 600;
    background: #262626;
}