@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,500;0,600;0,700;1,200&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
}
:root {
  --bg-color: #e3edf7;
}
a {
  text-decoration: none;
  color: white;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-color);
  
}

section {
    padding: 0 5%;
    padding-top: 60px;
    padding-bottom: -30px;
   

  }
header {
  border-bottom: 2px solid white;
  height: 80px;
  position: fixed;
  padding: 15px 8%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:#989897;
  z-index: 100;
  transition: 0.3s;
}

header .logo {
  
  position: relative; 
  font-size: 1.7rem;
  font-weight: 700;
 
}
header .logo img {
  top: 27px;
  position: relative;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  
}

header span {
  background:white;
  -webkit-background-clip: text;
  color: transparent;
}
header .navlist {
  display: flex;
}
.navlist li {
  margin: 0 1rem;
}
.navlist li a {
  display: inline-flex;
  font-weight: 600;
  color:white;
}
.navlist li a:hover {
  background:#FF385C;
  -webkit-background-clip: text;
  color: transparent;
  
}
.right-header {
  display: flex;
  align-items: center;
  justify-content: end;
  grid-gap: 0.8rem;
  
}
.btn {
  background:#FF385C;
  color: white;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  
}
.btn i{
padding-left: 5px;

}
.btn:hover,
.btn-box .d-CV:hover {
}
.menu-icon {
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  cursor: pointer;
  /* background-color: blue; */
}

.menu-icon .bar,
.menu-icon::after,
.menu-icon::before {
  content: "";
  display: none;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: #FF385C;
  margin: 6px 0;
  transition: 0.4s;
}
.menu-icon.active::before {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.menu-icon.active::after {
  transform: rotate(45deg) translate(-8px, -8px);
}
.menu-icon.active .bar {
  opacity: 0;
}

/* animation in header */
.anim{
opacity: 0;
transform: translateY(30px);
animation: move 0.7s linear forwards;
}
@keyframes move{
  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}

.animat{
  opacity: 0;
  transform: translateX(-300px);
  animation: moveup 0.8s linear forwards;
  }
  @keyframes moveup{
    100%{
      opacity: 1;
      transform: translateX(0px);
    }
  }


/* ==================================Home section ======================= */
  .home-section {
    top: 50px;
    position: relative;
    height: 90vh;
    overflow: hidden;
  }
  
  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/home_backgournd.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7); /* Adjust as needed */
  }
  
  .content {
    top: 30%;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 20px;
  }

  .content h1{
    padding-bottom: 20px;
    font-size: 2rem;
  }
  .content p{
    padding-bottom: 20px;
    font-size: 1.5rem;
  }
  
  .buttons {
    margin-top: 20px;
    text-align: center;
  }
  
  .btn {
    padding: 8px 10px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
   
  }
  
  .btn-primary {
    background-color: #FF385C;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    color: #fff;
 
    

  }
  
  .btn-secondary {
    background-color:#FF385C;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    color: #fff;
    
  }
  

section .heading{
    position: relative;
    text-align: center;

}
section .heading h1{
  padding-top: 20px;
    padding-bottom: 20px;
    font-size: 2rem;
}
section .heading h1:hover{
text-decoration: underline;
color: #FF385C;
}

.featured {
  margin: 30px 0;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;

}
.featured .features{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:20px;
  width: 100%;
 
}



.left , .right{
  background: #FFFFFF;
  gap: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.19)0px 5px 20px,
  rgba(244, 36, 95, 0.23)0px 6px 6px;
  border-radius: 20px;
  
}
.info{
  margin: 20px;
  text-align: center;
}
.info h2{
  font-size: 1.2rem;
}
.info hr{ 
   width: 100%;
  border: 0;
  border-bottom: 3px solid #FF385C;
  margin: 0px auto;
}
.info span{
  color: #FF385C;
  font-size: 15px;
  font-weight: 800;
  padding: 10px;
}
.info p{
  font-weight: 800;
  padding: 5px;
  color: #424240;
}

.image img{
  position: relative;
  width: 300px;
  height:220px;
  border-radius: 20px;
  padding: 10px;
  object-fit: cover;
}

.btn{
  align-items: center;
}

.choose{
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  
}
.close{
  
  text-align: center;
  width: 100%;
  padding: 10px;
  margin: 10px;
  box-shadow: rgba(0, 0, 0, 0.19)0px 5px 20px,
  rgba(244, 36, 95, 0.23)0px 6px 6px;
  border-radius: 20px;
}

.close .image img{

  width: 100px;
  height: 100px;
  object-fit: cover;
  
}
.close .intro p{
  width: 100%;
  text-align: justify;
  padding-top: 15px;
}


/* =================================client ========================= */
.client{
  display: grid;
  place-items: center;
}
.client .container{
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
}
.client  .container .box{
  width: calc(32% - 20px);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  border-radius: 5px;
}

.client .container .box .image{
  margin: 10px 0;
  height: 150px;
  width: 150px;
  background:  #FF385C;
  padding: 3px;
  border-radius: 50%;
}
.client  .box .image img{
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}
.client .box p{
  text-align: justify;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
}
.client  .box .name_job{
  margin: 10px 0 3px 0;
  color:  #FF385C;
  font-size: 18px;
  font-weight: 600;
}

.client  .btns{
  margin-top: 20px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.client .btns button{
  background:  #FF385C;
  width: 100%;
  padding: 9px 0px;
  outline: none;
  border: 2px solid  #FF385C;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  color: white;
  transition: all 0.3s linear;
}
.client.btns button:first-child{
  background: none;
  margin-right: 5px;
}
.client  .btns button:last-child{
  color: #fff;
  margin-left: 50px;
}
.client.btns button:first-child:hover{
  background:  #FF385C;
  color: white;
}
.client .btns button:hover{
  color: #2c2c2c;
}
@media (max-width:1045px){
  .client .container .box{
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}
@media (max-width:710px){
  .client .container .box{
    width: 100%;
  }
}

/* ===========================footer===========================  */
  footer {
    position: relative;
    /* background: url(footer-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center; */
    background: #FF385C;
      width: 100%;
      color: white;
      padding: 50px 0 30px;
      font-size: 13px;
      line-height: 20px;
    }
    .row {
      width: 85%;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
    }
    .col {
      flex-basis: 25%;
      padding: 10px;
    }
    .col:nth-child(2),
    .col:nth-child(3) {
      flex-basis: 15%;
    }
    .footer_logo {
      width: 200px;
      border-radius: 50%;
      height: 100px;
      position: relative;
      top: -18px;
      left: 20px;
    }
    .footer_about {
      position: relative;
      top: -23px;
    }
    .col h3 {
      width: fit-content;
      margin-bottom: 40px;
      position: relative;
    }
    .footer_email {
      width: fit-content;
      border-bottom: 1px solid white;
      margin: 20px 0;
    }
    .col ul li {
      list-style: none;
      margin-bottom: 12px;
    }
    .col ul li a {
      text-decoration: none;
      /* color: #fff; */
      color: white;
    }
    .col form {
      padding-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* border-bottom: 1px solid #fee140; */
      border-bottom: 1px solid white;
      margin-bottom: 50px;
    }
    .col form .icon {
      font-size: 18px;
      margin-right: 10px;
    }
    .col form input {
      width: 100%;
      background: transparent;
      color: #ccc;
      border: 0;
      outline: none;
    }
    .col form button {
      background: transparent;
      border: 0;
      outline: none;
      cursor: pointer;
    }
    .col form button .icon_right {
      font-size: 16px;
      color: #ccc;
    }
    
    .social-media {
      display: flex;
      justify-content: space-between;
      width: 220px;
      height: 45px;
    }
    
    .social-media a {
      width: 42px;
      height: 42px;
      font-size: 1.5rem;
      color: var(--main-color);
      border-radius: 50%;
      background: #fff;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: 0.2s;
      z-index: 1;
    }
    
    .social-media a{
      color: green;
    }
    .social-media #inst {
      color: red;
    }
    .social-media #what {
      color: rgb(76, 242, 76);
    }
    .social-media #fb {
      color: blue;
    }
    .social-media #you {
      color: red;
    }
    .social-media a:hover{
      background-color:#989897;
    }
    
    hr {
      width: 90%;
      border: 0;
      border-bottom: 1px solid white;
      margin: 0px auto;
    }
    footer .copyright {
      text-align: center;
    }
   
    .bottom_line {
      width: 100%;
      height: 5px;
      background: #03205E;
      border-radius: 3px;
      position: absolute;
      top: 25px;
      left: 0;
      overflow: hidden;
    }
    .bottom_line span {
      width: 15px;
      height: 100%;
      /* background: #fee140; */
      background:white;
      border-radius: 3px;
      position: absolute;
      top: 0;
      left: 10px;
      animation: moveline 2s linear infinite;
    }
    @keyframes moveline {
        0% {
          left: -20px;
        }
        100% {
          left: 100%;
        }
      }
      
      @media screen and (max-width: 866px) {
        .col {
          flex-basis: 110%;
          padding: 10px;
        }
        .bottom_line ul {
          display: flex;
        }
        .footer_logo {
          top: -67;
          left: 80px;
        }
        .footer_about {
          top: -10px;
        }
      }