
*{
    margin: opx;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
}
body{
    background-color:rgb(41, 40, 40) ;
}
nav{
    background-color:black;
    display: flex;
    align-items: center;
    justify-content: space-around;
    top: 0;
    width: 100%;
    color: white;
    font-size: larger;
    overflow: hidden;
    padding: 10px;
    position:fixed ;
    z-index: 1000;
}
.nav_head{
    font-size: 35px;
    letter-spacing: 1px;
}

li{
    display: flex;
    float: inline-start;
    overflow: hidden;
}
li a{
    padding: 15px;
    display: block;
    color: white;
}
li a:hover{
    color: #ED2279;
}
.contact-btn{
    padding: 10px 30px;
    color: black;
    margin-left: 8rem;
    color: #ED2279;
    border-radius: 30px;
    font-size: large;
    cursor:pointer;
    transition: .5s ease-in-out;
}
.contact-btn:hover{
    color: white;
    border: 2px solid #ED2279;
    background-color: transparent;

}
.checkbtn{
    font-size: 30px;
    float: right;
    margin-right: 30px;
    cursor: pointer;
    display: none;
}
.checkbox{
    display: none;
}
@media screen and(max-width:952px) {
    .nav-head{
        font-size: 30px;
    }
    nav li a{
        font-size: 18px;

    }
    nav.contact-btn{
      margin-left: 20px;
    }
    @media screen and(max-width:820px){
        .checkbtn{
            display: block;
            margin-left: 150px;
        }
    }
    .nav-head{
        padding-left: 10px;
    }
    nav ul{
        z-index: 1000;
        position: fixed;
        width: 60%;
        height: 50vh;
        background-color: black;
        top: 50px;
        right: -100px;
        padding: 20px;
        transition:all .5s ;
    }
    nav li{
        display: block;
        text-align: center;
        float: left;
        width: 350px;
        height: 60px;
        padding: 5px;

    }
    nav .contact-btn{
        width: 90%;
    }
    nav li a{
        font-family: 20px;
        color: white;
    }
    .checkbox:checked ~ul{
        right: 0;
    }
    
}
.home{
    padding: 200px 100px;
    color: white;
    display: flex;
    justify-content: space-evenly;
    gap: 5rem;
}
.description{
    padding-top:20px ;   
}
.description h1{
    font-size: 30px;
    font-weight: 700;
}
.description h1 span{
    color: #ED2279;
    font-size: 55px;

}
.description h2{
    margin-top: 20px;
    font-size: 30px;
    font-weight: 900;
}
.description h2 span{
    color: #ED2279;
    position: relative;
}
.description h2 span:after{
    content: " ";
    position: absolute;
    left: 0;
    right: 0px;
    height: 100%;
    border-left: 4px solid #ED2279;
    background-color: rgb(20, 20, 20);
    animation: text 3s infinite backwards steps(10);
}
 @keyframes text{
    0%{
        left: 0;

    }
    50%{
        left: 100%;
    }
    100%{
        left: 0; 
    }
} 
 .description p{
    width: 500px;
    margin-top: 20px;

}
.font a{
    margin: 25px 1px;
    border: 3px solid #ED2279;
    border-radius: 50%;
    padding: 6px;
    font-size: 20px;
    cursor: pointer;
    transition: .4s ease-in-out;
}
.font a:hover{
    background-color: #ED2279;
    transform: translateY(-15);
    box-shadow: 0px 0px 15px #ED2279;
} 
.description button{
    padding: 20px 10px;
    font-size: 20px;
    border-radius: 10p;
    background: linear-gradient(145deg ,#ED2279,rgb(231,201,35));
    cursor: pointer;
    border: none;

}
.home img{
    background-color: #ED2279;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 0px 30px #ED2279;
    filter: brightness(1.1);
    transition: .4s ease-in-out;
    animation: animate 2s ease-in-out forward infinite;
}
.home img:hover{
    box-shadow: 0px 0px 50px;
}
@keyframes animate{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0px);
    }
}
@media screen and (max-width:820px){
    .home img{
        margin-top: -7rem;
        margin-left: -1rem;
        margin-bottom: -5rem;
        width: 390px;
        height: 350px;

    }
    .home{
        grid-template-columns: 1fr;
        flex-wrap: wrap;
    }
    description{
        margin-left: -4rem;

    }
    .description h1{
        font-size: 25px;

    }
    .description h1 span{
        font-size: 40px;
    }
    .description h2{
        font-size: 25px;
    }
    .description p{
        font-size: 15px;
    }
    
}
.about{
    display: flex;
    justify-content: space-around;
    margin: 100px 150px;
    gap: 60px;
    padding-top: 100px;
    color: white;
}
.about_photo img{
    background-color: #ED2279;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 0px 30px #ED2279;
    filter: brightness(1.1);
    animation: animate1 2.5s ease-in-outforwards infinite;
}
@keyframes animate1{
    0%{
        transform:translateY(0%);
    }
    50%{
        reansform:translateY(-15px);
    }
    100%{
        transform: translateY(0px);
    }
}
.about-section{
    margin-top: 30px;
}
.about-section h1{
    font-size: 50px;
}
.about-section h2{
    margin-top:10px
}
.about-section span{
    color: #ED2279;
}
.about-section p{
    margin-top: 15p;

}
.about_btn{
    padding: 13px 25px;
    font-size: 20px;
    background-color: #ED2279;
    margin-top: 25px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px #ED2279;
    border: none;
    cursor: pointer;
}
@media screen and (max-width:820px) {
    .about{
        display: block;
        margin-top:-13rem ;
    }
    .about-section{
        margin-left: -6rem;
        width: 470px;

    }
    .about-section h1{
        font-size: 35px;
    }
    .about_photo{
        width: 200px;
        height: 250px;
        margin: 50px -70px;
    }
    .about_btn{
        padding: 10px 20px;
        font-size: 18px;
    }
    
}
h1.service_section{
    margin-top: 15rem;
    color: white;
    font-size: 50px;
    padding-top: 100px;
    text-align: center;
}
h1.service_section span{
    color: #ED2279;
}
div.card{
    display: flex;
    justify-content: space-around;
    gap: 20px;
    text-align: justify;
    margin: 70px;
    color: white;
}
.service_card{
    background-color: rgb(49, 47, 47);
    padding: 30px;
    border-radius: 10px;
    transition: .5s ease;

}
.service_card:hover{
    border: 2px solid #ED2279;
    background-color: #ab1757;
    transform: translateY(-20px);

}
.service_card i{
    font-size: 40px;
    color: #ED2279;
}
.service_card h2{
    font-size: 30px;
    margin-top: 10px;
}
.service_card p{
    margin-top: 10px;
}
.service_card a{
    font-size: large;
    color: #ED2279;
}
@media screen and(max-width:820px) {
    h1.service_section{
        font-size: 35px;
        margin-bottom: -40px;
    }
    .card{
        grid-template-columns: 1fr;
        flex-wrap: nowrap;
    }
    .service_card{
    margin-top: 20px;
    }
    .service_card h2{
        font-size: 25px;
    }
}
h1.port_section{
    margin-top: 200px;
    text-align: center;
    color: white;
    font-size: 45px;
    padding-top: 80px;
}
h1.port_section span{
    color: #ED2279;
}
 .project{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;

}
.port_card img{
    transition: .4s ease-in-out;

}
.port_card img:hover{
    transform: translateY(-20px) scale(1.1);
}
.port_card{
    object-fit: cover;
    overflow:hidden;
    box-sizing: border-box;
}
.port_card .content{
    border-image: fill 0 linear-gradient(#0001,#ED2279);
    position: relative;
    bottom: 100px;
    height: 100px;
    text-align: center;
    color: white;
    padding-top: 50px;
}
.content h1{
    font-size: 25px;
    margin-top: 20px;
}
.content p{
    width: 350px;
}
.port_card {
      position: relative;
      width: 300px;
      height: 200px;
      margin: 20px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .port_card img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      opacity: 0;
      transition: 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .port_card:hover .overlay {
      opacity: 1;
    }

    .overlay a {
      color: white;
      background-color: #007bff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .overlay a:hover {
      background-color: #0056b3;
    }
@media screen and(max-width:820px){
    h1.port_section{
        font-size: 35px;
    }
    .project{
        grid-template-columns: 1fr;
        margin-bottom: 200px;
        flex-wrap: wrap;

    }
}
.form h1{
    margin: 40px 0px 15px 0px;
    text-align: center;
    color: white;
    font-size: 50px;
    padding-top: 80px;
}
.form h1 span{
    color: #ED2279;
}
.form input,textarea{
    width: 550px;
    margin: 10px 340px;
    padding: 10px;
    background-color: rgb(63,63,63);
    font-size: 18px;
    color: white;
    border: none;
    border-radius: 5px;
}
.form .form-btn{
    padding: 15px 50px;
    font-size: 30px;
    background-color: #ED2279;
    margin: 1.5rem 33rem;
    border-radius: 10px;
    box-shadow: 0px 0px 0px #ED2279;
    cursor: pointer;
    border: none;
    transition: .3s ease;
}
.form .form-btn:hover{
    background: transparent;
    border: 2px solid #ED2279;
    color: white;
}