

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Sans-Serif';
    box-sizing: border-box;
  }
  
  html{
    scroll-behavior: smooth;
  }
  
  body{
    background: #080808;
    color: #fff;
  }
  
  #hearder{
    width: 100%;
    height: 100vh;
    background: #333;
    background-size: cover;
    background-position: center;
  }
  
  .container{
    padding: 10px 10%;
  }
  
  nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  nav h1{
    font-size: 40px;
  }
  
  nav h1 span{
    color: #ff004f;
  }

  nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
  }
  
  nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    position: relative;
  }

  nav ul li .active{
    color: #ff004f;
  }
  
  nav ul li a::after{
    content: "";
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: all 0.5s ease;
  }

  nav ul li .active::after{
    content: "";
    width: 100%;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: all 0.5s ease;
  }
  
  nav ul li a:hover::after{
    width: 100%;
  }

  /*----------- corp Start ---------*/

  .hearder-text{
    margin-top: 20%;
    margin-left: 10%;
    font-size: 40px;
  }
  
  .hearder-text h1{
    letter-spacing: 2px;
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 25px;
  }

  
  .hearder-text h1 span{
    
    color: #ff004f;
  }

  .hearder-text a{
    font-size: 20px;
    background: #b54769;
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 26px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
  }

  .hearder-text a:hover{
    background: #ff004f;
  }

  .hearder-text .ligne{
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hearder-text .ligne .second {
    
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hearder-text .ligne .second h1{
    color: #478778;
    font-size: 40px;
    font-weight: 400;
  }

  .hearder-text .ligne .second p{
    font-size: 13px;
    margin-top: 15px;
    margin-left: 10px;
  }

  
  /*--------- Corp End ---------*/
  
  /*-- About--*/
  #about{
    padding: 70px 0;
    color: #ababab;
  }
  
  .row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .about-col-1{
    flex-basis: 35%;
  }
  
  .about-col-1 img{
    width: 100%;
    border-radius: 15px;
  }
  
  .about-col-2{
    flex-basis: 60%;
  }
  
  .sub-title{
    font-size: 60px;
    font-weight: 600;
    color: #fff;
  }
  
  .tab-titles{
    display: flex;
    margin: 20px 0 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 ease;
  }
  
  .tab-links .active-link::after{
    width: 50%;
  }
  
  .tab-links::after{
    content: "";
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: all 0.5s ease;
  }
  
  .tab-links:hover::after{
    width: 100%;
  }
  
  .tab-links.active-link::after{
    width: 50%;
  }
  
  .tab-contents ul li{
    list-style: none;
    margin: 10px 0;
  }
  
  .tab-contents ul li span{
    color: #b54769;
    font-size: 14px;
  }
  
  .tab-contents{
    display: none;
  }
  
  .tab-contents.active-tab{
    display: block;
  }
  
  /*------------------ 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: 400;
    border-radius: 10px;
    transition: all 0.4s ease;
  }
  
  .services-list div i{
    font-size: 45px;
    margin-bottom: 30px;
  }
  
  .services-list div h2{
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 15px;
  }
  
  .services-list div a{
    text-decoration: none;
    font-size: 12px;
    color: #fff;
    margin-top: 20px;
    display: inline-block;
  }
  
  .services-list div:hover{
    background: #ff004f;
    transform: translateY(-10px);
  }
  
  /*------------------ portfolio ------------------*/
  
  #portfolio{
    padding: 50px 0;
  }
  
  .work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 45px;
  }
  
  .work-list .work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }

  
  .work-list .work img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: all 0.5s ease;
  }
  
  .work-list .work .layer{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0,0,0,0.6), #ff004f);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    text-align: center;
    transition: all 0.5s ease;
  }
  
  .layer h3{
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .layer p{
    font-size: 14px;
  }
  
  .layer a{
    margin-top: 20px;
    color: #ff004f;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
  }
  
  .layer a i{
    
  }
  
  .work-list .work:hover img{
    transform: scale(1.1);
  }
  
  .work-list .work:hover .layer{
    height: 100%;
  }
  
  .btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #ff004f;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: all 0.5s;
  }
  
  .btn:hover{
    background: #ff004f;
  }
  
  
  /*-------------------------------- Contact Me -------------------------------------*/
  
  .contact-left{
    flex-basis: 35%;
  }
  
  .contact-right{
    flex-basis: 60%;
  }
  
  .contact-left p{
    margin: 30px 0 0 0;
  }
  
  .contact-left p i{
    color: #ff004f;
    margin: 0 15px 0 0;
    font-size: 25px;
  }
  
  .social-icon{
    margin: 30px 0 0 0;  
  }
  
  .social-icon a{
    text-decoration: none;
    font-size: 30px;
    margin: 0 15px 0 0;
    color: #ababab;
    display: inline-block;
    transition: all 0.4s;
  }
  
  .social-icon a:hover{
    color: #ff004f;
    transform: translateY(-5px);
  }
  
  .contact-left .btn2{
    display: inline-block;
    
  }
  
  .contact-right form{
    width: 100%;
  }
  
  form input, form textarea{
    width: 100%;
    border: none;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
  }
  
  .contact-right form .btn.btn2{
    display: inline-block;
    background: none;
  }
  
  .contact-right form .btn.btn2:hover{
    cursor: pointer;
    background: #ff004f;
  }
  
  .copyright{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff004f;
    width: 100%;
    padding: 10px 0 10px 0;
  }
  
  #hearder nav .fa-solid{
    display: none;
  }
  
  #hearder nav .fa-solid.fa-circle-xmark{
    font-size: 30px;
  }
  
  
  #hearder nav .fa-solid.fa-bars{
    font-size: 25px;
  }
  
  #hearder nav .fa-solid.fa-bars{
    font-size: 25px;
  }
  
  /*-------------------------------- CSS for small Screen -------------------------------------*/
  @media only screen and (max-width: 600px){
    .hearder-text{
      margin-top: 100%;
      font-size: 15px;
    }
  
    .hearder-text h1{
      font-size: 30px;
    }
    
    #hearder nav .fa-solid{
      display: block;
    }
    
    #hearder nav ul{
      background: #ff004f;
      position: fixed;
      top: 0;
      right: -200px;
      width: 190px;
      height: 100vh;
      padding-top: 50px;
      z-index: 2;
      transition: all 0.7s;
    }
    
    #hearder nav ul li{
      display: block;
      margin-top: 30px;
    }
    
    
    
    #hearder nav ul .fa-solid{
      position: absolute;
      top: 25px;
      left: 25px;
      cursor: pointer;
    }
    
    nav ul li a{
      color: #fff;
      font-size: 19px;
      position: relative;
      
    }
  
    nav ul li a::after{
      content: "";
      width: 0;
      height: 3px;
      background: #333;
      position: absolute;
      left: 0;
      bottom: -6px;
      transition: all 0.5s ease;
    }
    
    .sub-title{
      font-size: 40px;
      margin: 10px 0;
    }
    
    .about-col-1, .about-col-2{
      flex-basis: 100%;
    }
    
    about-col-2{
      font-size: 14px;
    }
    
    .tab-links{
      font-size: 16px;
      margin-right: 20px;
    }
    
    .contact-left, .contact-right{
      flex-basis: 100%;
    }
    
    .copyright{
      font-size: 14px;
    }
    .hearder-text .ligne{
      margin-left: -10px;
    }
    
    .hearder-text .ligne .second h1{
      font-size: 13px;
    }
    
    .hearder-text .ligne .second p{
      font-size: 9px;
      margin-top: -14px;
      margin-left: px;
    }
    
    
    .hearder-text .ligne .second{
      margin-top: -10px;
      
    }
    
    .hearder-text .ligne .second.no{
      display: none;
    }
  }
  
  
  @media only screen and (max-width: 840px) and (min-width: 740px) {
    nav ul{
      position: absolute;
      right: 2px;/* Modify this size as per your design preference */
    }
  }

  #msg{
    color: #61b752;
    margin-top: -35px;
    display: block;
  }
  