* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

body{
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    line-height: 1.6;
}

.Parent{
    scroll-behavior: smooth;
}
/*buttom*/





section#Home{
    overflow: hidden;
    background: url(https://images.unsplash.com/photo-1612192666307-8dbd0c8a535a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1740&q=80) no-repeat center center/cover;
}
section#About{
    overflow: hidden;
    background: #ab6010;
}
section#Service{
    overflow: hidden;
    background: url(https://images.unsplash.com/photo-1529566260205-50597c058463?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80) no-repeat center center/cover;
}
section#Contact{
    overflow: hidden;
    background: rgb(38, 51, 49) no-repeat center center/cover;
}

.hamburger .material-symbols-outlined{
  display: none;
  margin: 2rem 2rem;
}


.head{
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.21);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.9px);
    -webkit-backdrop-filter: blur(7.9px);
    color: rgb(255, 255, 255);
    position: fixed;
    width: 100%;
    z-index: 10;
}

.head .title {
    padding: 2rem 3rem;
    font-size: 25px;
}
.head .links {
    display: flex;
    align-items: center;
    margin-right: 3rem;
}
.head .hamburger{
  display: none;
}

.head .links li{
    padding: 0px 0.3rem;
}


.head .links li a {
    color: white;
    font-size: 15px;
}

@media(max-width: 600px){
    .head .title {
        font-size: 17px;
        padding: 2rem 2rem;
    }
    .head .links li a {
        font-size: 10px;
    }
    .head .links {
        margin-right: 2px;
    }
}

/* section*/


section {
    display: flex;
    flex-direction: column;
    align-items: center;   
    text-align: center;    
    width: 100%;
    height: 100vh;
}

section p {
    margin: 0px 2rem;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 500;
}

.home h1{
    margin: 15rem 0px 5rem;
    font-size: 130px;
    color: white;
}


.home p{
    margin: 0px 1.8rem;
    color: rgb(255, 255, 255);
}

/*about*/

.custom-shape-divider-top-1667550315 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;

}

.custom-shape-divider-top-1667550315 svg {
    position: relative;
    display: block;
    width: calc(116% + 1.3px);
    height: 143px;
}

.custom-shape-divider-top-1667550315 .shape-fill {
    fill: #091113;
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-top-1667550315 svg {
        width: calc(148% + 1.3px);
        height: 145px;
    }
}


.about .title_About {
    margin-top: 12rem;
    font-size: 100px;
}
.about .dis_about{
    margin-top: 1rem;
}
.about p{
    margin-top: 3rem;
    font-weight: 500;
}

@media (min-width: 600px){
    .about .title_About {
        margin-top: 25rem;
    }
}

.service .bottom {
    background:none;
    position: absolute;
    top: 0px;
    color: #ab6010;
    width: 100rem;
}

@media (max-width: 767px) {
    .service .bottom {
        width: 70rem;
    }
}

.service h2{
    margin: 0rem 0px 2rem;
}

.service .T_service {
    margin: 10rem 0px 0px;
    font-size: 100px;
}
/*card*/
.card {
    width: 200px;
    height: 400px;
    position: relative;
    background: url(https://images.unsplash.com/photo-1612204103209-fb81a3384c78?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=742&q=80)
    center;
    transition: box-shadow .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    border: solid 4px rgb(196, 135, 21);
   }

   @media (min-width: 600px){
    .card {
        width: 600px;
    }
   }
   
   .card-img {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000000;
    bottom: 0px;
   }
   
   .card-info {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
   }
   
   .card-icon {
    opacity: 0;
    transform: translateX(-100%);
    width: 2em;
    height: 2em;
    transition: all .3s ease-in-out;
   }
   
   svg {
    --size: 20px;
    width: var(--size);
    height: var(--size);
   }
   
   /*Text*/
   p {
    line-height: 140%;
   }
   
   .text-title {
    font-weight: 900;
    font-size: 18px;
    color: #ffffff;
   }
   
   .text-subtitle {
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 16px;
   }
   
   /*Hover*/
   .card:hover {
    box-shadow: 0 10px 20px 4px rgba(35, 35, 35, .1);
   }
   
   .card:hover .card-icon {
    opacity: 1;
    transform: translateX(-100%);
   }



/*this is the contact part*/


   *, *:before, *:after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body {
    background: linear-gradient(to right, #ea1d6f 0%, #eb466b 100%);
    font-size: 12px;
  }
  
  body, button, input {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.4px;
  }
  
  .background {
    display: flex;
    min-height: 100vh;
  }
  
  .container {
    flex: 0 1 700px;
    margin: auto;
    padding: 10px;
  }
  
  .screen {
    position: relative;
    background: #3e3e3e;
    border-radius: 15px;
  }
  
  .screen:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 0;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    z-index: -1;
  }
  
  .screen-header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #4d4d4f;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  
  .screen-header-left {
    margin-right: auto;
  }
  
  .screen-header-button {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 3px;
    border-radius: 8px;
    background: white;
  }

  .screen-header-button.close {
    background: #ed1c6f;
  }
  
  .screen-header-button.maximize {
    background: #e8e925;
  }
  
  .screen-header-button.minimize {
    background: #74c54f;
  }
  
  .screen-header-right {
    display: flex;
  }
  
  .screen-header-ellipsis {
    width: 3px;
    height: 3px;
    margin-left: 2px;
    border-radius: 8px;
    background: #999;
  }
  
  .screen-body {
    display: flex;
  }
  
  .screen-body-item {
    flex: 1;
    padding: 50px;
  }
  
  .screen-body-item.left {
    display: flex;
    flex-direction: column;
  }
  
  .app-title {
    display: flex;
    flex-direction: column;
    position: relative;
    color: #ea1d6f;
    font-size: 26px;
  }
  
  .app-title:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 25px;
    height: 4px;
    background: #ea1d6f;
  }
  
  .app-contact {
    margin-top: auto;
    font-size: 8px;
    color: #888;
  }
  
  .app-form-group {
    margin-bottom: 15px;
  }
  
  .app-form-group.message {
    margin-top: 40px;
  }
  
  .app-form-group.buttons {
    margin-bottom: 0;
    text-align: right;
  }
  
  .app-form-control {
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #666;
    color: #ddd;
    font-size: 14px;
    text-transform: uppercase;
    outline: none;
    transition: border-color .2s;
  }
  
  .app-form-control::placeholder {
    color: #666;
  }
  
  .app-form-control:focus {
    border-bottom-color: #ddd;
  }
  
  .app-form-button {
    background: none;
    border: none;
    color: #ea1d6f;
    font-size: 14px;
    cursor: pointer;
    outline: none;
  }
  
  .app-form-button:hover {
    color: #b9134f;
  }
  
  .credits {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    color: #ffa4bd;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: normal;
  }
  
  .credits-link {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
  }
  
  .dribbble {
    width: 20px;
    height: 20px;
    margin: 0 5px;
  }
  
  @media screen and (max-width: 520px) {
    .screen-body {
      flex-direction: column;
    }
  
    .screen-body-item.left {
      margin-bottom: 30px;
    }
  
    .app-title {
      flex-direction: row;
    }
  
    .app-title span {
      margin-right: 12px;
    }
  
    .app-title:after {
      display: none;
    }
  }
  
  @media screen and (max-width: 600px) {
    .screen-body {
      padding: 40px;
    }
  
    .screen-body-item {
      padding: 0;
    }
  }
  

@media (max-width: 734px){


  .head .links{
    display: none;  
    align-items: center;
    margin-top: 10rem;
    padding: 0px 5rem 100vh;

  }
  .head .hamburger{
    display: block;
  }

  .head .links li a{
    font-size: large;
    
  }
  .head .links li{
    padding: 2rem 0px;
  }

  .hamburger .material-symbols-outlined{
    display: block;
  }
  
}
@media (min-width:734px){
  .head .links{
    display: flex;
  }

}

