/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    text-decoration: none;
    list-style: none;
   
  }
  
  /* Global Styles */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: white;
  
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Navbar */
  nav {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
      padding: 8px 60px;
      background:hsl(250, 28%, 50%);
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  /* Style the logo */
  .logo img {
      width: 40px; 
      height: auto;
      margin: 10px 0; 
   
      
  }
  
  
  .navbar{
    position: relative;
    display: flex;
  }
  .navbar a{
    font-size: 1rem;
    padding: 10px 20px;
    font-weight: 500;
    color:#fff;
  }
  .navbar a:hover{
    color: #333;
  }
  #menu-icon{
    font-size: 2rem;
    cursor: pointer;
    display: none;
  }
  
 
  

  
  
  
  /* Home Section */

  
  
  .circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color:hsl(250, 28%, 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  
  .profile-image {
    width: 200px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
  }
  #home {
    background-color:white;
    padding: 160px 0;
    text-align: center;
  }
  .content h1{
    color: hsl(250, 28%, 50%);
  }
  .content p{
    color: hsl(250, 28%, 50%);
    margin-top: 10px;
  }
  
  
  .social-icons {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  .social-icons a {
    display: inline-block;
    margin: 0 10px;
    color:#333;
    font-size: 20px;
  }
  
  .social-icons a:hover {
    color:hsl(250, 66%, 75%);
  }
  
  
  .btn {
 border: 1px solid hsl(250, 28%, 50%);
 background: none;
 padding: 10px 20px;
 font-size: 15px;
 cursor: pointer;
border-radius: 5px;

  }
  .btn:hover{
  background-color: hsl(250, 28%, 50%);
  color: #fff;
  }
  /* Skill Section */
  

  
  .skill-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: hsl(250, 28%, 50%);
  }
  
  .skill-progress {
    display: flex;
    flex-direction: column;
  }
  
  .progress-bar {
    margin-bottom: 10px;
  }
  
  .progress-bar-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: hsl(250, 28%, 50%);
  }
  
  .progress {
    background-color: #f2f2f2;
    height: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }
  
  .progress-fill {
    background-color:hsl(250, 28%, 50%);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
  }
  
 
  

  
  
  
  /* Work Section */
  #work {
    background-color:white;
    padding: 80px 0;
  }
  .container h2{
    text-align: center;
    margin-bottom: 40px;
    color: hsl(250, 28%, 50%);
  }
  .container a{
    text-align: center;
    justify-content: center;
  }
  
  .image-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .work-image {
    position: relative;
    width: calc(33.33% - 10px);
    margin-bottom: 20px;
  }
  
  .work-image img {
    width: 100%;
    height: auto;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .work-image:hover .overlay {
    opacity: 1;
  }
  .btn-work {
    border: 1px solid hsl(250, 28%, 50%);
    background: none;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
   border-radius: 5px;
   color: #fff;
   
   
     }
     .btn-work:hover{
     background-color: hsl(250, 28%, 50%);
     color: #fff;
     }


     /* Services Section */



#services {
  background-color: white;
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-card {
  width: calc(25% - 20px);
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}


.service-card i {
  font-size: 36px;
  margin-bottom: 15px;
  color:hsl(250, 28%, 50%);
}

.service-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.service-card p {
  color: #777;
}

  
 
  
  
  
    
    /* Contact Section */
    #contact {
    background-color: white;
    padding: 80px 0;
    }
    
    .form-group {
    margin-bottom: 20px;
    }
    
    label {
    display: block;
    margin-bottom: 5px;
    color: hsl(250, 28%, 50%);
    }
    
    input,
    textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    }
    
    
    /* Footer Section */
    footer {
    background-color:hsl(250, 28%, 50%);
    padding: 20px 0;
    color: #fff;
    text-align: center;
    }
    
    footer p {
    margin-bottom: 10px;
    }
    .social-icons-footer {
      text-align: center;
      margin-bottom: 20px;
      margin-top: 20px;
    }
    
    .social-icons-footer a {
      display: inline-block;
      margin: 0 10px;
      color:#fff;
      font-size: 20px;
    }
    
    .social-icons-footer a:hover {
      color:#333;
    }
  


    /* responsive design  */

    /* for large screen */

@media (max-width:1198px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 40px;
  }
}

    /* for medium screen */



    /* for small screen */
@media (max-width:550px){

  .circle{
    width: 210px;
    height: 220px;
  }
  .profile-image{
    width: 178px;
    height: 214px;
  }

  .image-row,.services-cards,.review-cards {
  flex-direction: column;
  align-items: center;
 
  }
  .work-image,.service-card,.review-card {
  width: 100%;
  }
 
  #menu-icon{
    display: initial;
    color: #fff;
  }
  nav .navbar{
    position: absolute;
    top: -500px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background:hsl(250, 28%, 50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    text-align: center;
  }
  .navbar a{
    padding: 1.5rem;
  display: block;
  color: #fff;
}
.navbar.active{
  top: 100%;
 }
 .navbar a:hover{
  color:#fff;
  background: hsl(250, 28%, 50%);
}
 


}
    /* for responsive nav bar  */

