*{
    margin: 0;
    padding: 0;
    font-family:'poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background: #080808;
    color: #fff;
}

    .header {
        display: flex;
        justify-content: flex-end; 
        align-items: flex-start;
        padding: 20px;
    }
    .about-col-2 .tab-titles{
        margin-left: 120px;
    }
    .about-col-2 .tab-contents{
        margin-left: 120px;
    }

.about-col-2 .subtitiles{
    margin-left: 130px;
}

.about-col-1 .img2{
    margin-left: 130px;
}
    
.hero-img {
    width: 500px; 
    margin: 0px 70px;
   
}

.containerhead{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.head{
    padding: 10px 20px;
}
.contain{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}.containerhead ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
.containerhead h1{
   font-family: Verdana, Geneva, Tahoma, sans-serif;
   font-size: 50px;

   margin-left: 90px;
   
    
}
.containerhead span{
    color: red;
}
.containerhead ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    position: relative;
  
}
.containerhead ul li a::after{
content: '';
width: 0;
height: 3px;
background: #ff004f;
position: absolute;
left: 0;
bottom: -6px;
transition: 0.5s;
}
.containerhead ul li a:hover::after{
    width: 100%;
}
.headertext{
    margin-top: 200px;
    font-size: 30px;
    margin-left: 90px;
}
.headertext h1{
    font-size: 60px;
    margin-top: 20px;
}
.headertext h1 span{
    color: #ff004f;
}
.about{
    padding: 88px 0;
    color: #ababab;
}


.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1{
    flex-basis: 35%;
}
.about-col-2{
  
    flex-basis: 60%;
}
.about-col-1 img{
    width: 100%;
    border-radius: 15px 15px;
    margin-left: 20px;
}
.subtitile{
    font-size: 60px;
    font-weight: 600px;
    color: #fff;
}
.tab-titles{
    display: flex;
    margin: 20px 40px;
}
.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight:500 ;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background:#ff004f ;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width: 50%;
}
.tab-contents ul li{
    list-style: none;
    margin: 10px 0;

}
.tab-contents ul li span{
color: #ff004f;
font-size: 14px;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
  display: block;
}
#services{
    padding: 30px 0;

}
.services-list{
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
   grid-gap: 10px;
    margin-top: 50px;
   margin-left: 80px;
}
.container{
    padding-left: 50px;
}
.services-list div{
    background: #262626;
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
 border-radius: 10px;
    transition: backgroun 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: #fff;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}


.services-list div:hover{
    background: #ff004f;
    transform: translateY(-10px);
}
.subtitile{
    margin-top: 200px;
    margin-left: 90px; 
}
#services .anyone{
    width: 400px;
    height: 300px;
}
.portfolio{
margin-left: 100px;

padding: 50px;

}

.contaner-card .sub{
    margin-top: 150px;
 margin-left: 10px;
    font-size: 60px;
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit),minmax(250px, 1fr);
    grid-gap: 40px;
    margin-top: 40px;
}
.work-list{
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
   grid-gap: 100px;
    margin-top: 50px;
   margin-left: 12px;
   margin-right: 100px;
   max-height: 50%;
   
   
}
.work img{
    width: 100%;
    border-radius: 25px;
    display: block;
    transition: transform 0.5s;
}
.work{
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.layer{
    width: 100%;
    height: 100%;
   background: linear-gradient(rgba(0,0,0,0.6),#42454d );
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
   
}
.layer h3{
    font-weight: 500;
    margin-bottom: 20px;
}
.layer a{
    margin-top: 20px;
color:#b7b13f;
text-decoration: none;
font-size: 18px;
background: #fff;
width: 60px;
height: 60px;
border-radius: 50px;
text-align: center;
padding-top: 20px;

}
.layer .blue{
    color:#3315c6;
}
.work:hover img{
    transform: scale(1.1);
}
.btn{
    display: flex;
margin-bottom: 35px;
    width: fit-content;
    border: 1px solid #ff004f;
    padding: 14px 50px;
    border-radius: 6px;
justify-content: center;
margin-top: 1px;
margin-left: 45%;
text-decoration: none;
color: #fff;
transition:  0.5s;

}
.btn:hover{
    background: #ff004f;
}



.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: transparent;
    color: #000;
}
.contact-left .con{
    color: #fff;
    
}

.cont {
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.tow {
    display: flex;
    gap: 20px;
}
.contact-left{
    margin-left: 180px; 
    flex: 1;
}

.contact-right{
margin-bottom: 20px;
flex: 1;

}
.contact-right input{
    width:80%;
}
.contact-right textarea{
    width:80%;
}
.contact-left p {
    margin-top: 30px;
    color: #fff;
}

.contact-left p i {
    color: #ff004f;
    margin-right: 15px;
    font-size: 25px;
}

.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: #ff004f;
    transform: translateY(-5px);
}

.contact-right form {
    width: 100%;
}

form input, form textarea {
 
    padding: 10px;
    background-color: #393535;
    border: 1px solid #ccc;
    margin: 10px 0;
    color: #000;
    font-size: 16px;
    border-radius: 5px;
}

.form-group button {
    padding: 10px 20px;
    background-color: #ff004f;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.form-group button:hover {
    background-color: #ff3366;
}
.foot{

width: 100%;
background: white;
text-align: center;
padding: 25px 0;
background: #262626;
font-weight: 300px;
margin-top: 20px;

}


