* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: rgb(190, 26, 116);
  }
  
  nav {
    background: #fff;
    color: #32424d;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .nav-links {
    list-style-type: none;
    display: flex;
  }
  
  .nav-links li {
    margin-right: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #01016df0;
    font-size: 18px;
  }
  
  .nav-links li a:hover {
    color: #e77dd7;
  }
  

  
  .content {
    max-width: 800px;
  }
  
  h1,
  h2 {
    margin-bottom: 20px;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .content {
    animation: fadeInUp 1s ease forwards;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
  }
  .homeimg center img{
    border-radius: 20px;
    margin-top: 10%;
    margin-left: 50%;
  }
  .home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    margin-top: 10px; 
    height: 100vh;
  }

  .home .content{
    max-width: 600px;
  }
  
  .home .content, .home .home-image {
    flex: 1;
    padding: 20px;
    border-radius: 30%;
  }
  
  .home .content h1 {
    font-size: 2.5rem; 
    font-weight: 700;
    line-height: 1.2;
  }
  
  .home .content p {
    font-size: 1.25rem; 
    margin-top: 20px;
  }
  
  @media (max-width: 768px) {
    .home {
      flex-direction: column;
      text-align: center;
    }
  
    .home .content, .home .home-image {
      padding: 10px;
      flex: none;
      border-radius: 30%;
    }
  
    .home .home-image center img {
      margin-left: 50%;
      margin-top: 8px;
      max-width: 100%;
      height: auto;
      border-radius: 30%;
      
    }
  }
  .button {
    background-color: #e77dd7; 
    border: none;
    color: #e77dd7;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 10px;
  }
  
  .button1 {
    background-color: #e77dd7; 
    color: black; 
    border: 2px solid #e77dd7;
  }
  
  .button1:hover {
    background-color: #a0006d;
    color: white;
  }
  
  .button2 {
    background-color: #a0006d; 
    color: black; 
    border: 2px solid #e77dd7;
  }
  
  .button2:hover {
    background-color: #e77dd7;
    color: white;
  }
  
  .button3 {
    background-color: white; 
    color: black; 
    border: 2px solid #f44336;
  }
  
  .button3:hover {
    background-color: #f44336;
    color: white;
  }
  
  .button4 {
    background-color: white;
    color: black;
    border: 2px solid #e7e7e7;
  }
  
  .button4:hover {background-color: #e7e7e7;}
  
  .button5 {
    background-color: white;
    color: black;
    border: 2px solid #555555;
  }
  
  .button5:hover {
    background-color: #555555;
    color: white;
  }
  
  .button-container {
    margin-top: 20px; 
    display: flex;
    justify-content: start; 
    gap: 10px; 
  }
  .button a{
    text-decoration: none;
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .button-container {
      flex-direction: column; 
      align-items: center; 
    }
  
    .button {
      width: 100%; 
      margin-bottom: 10px; 
    }
  }
  
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  

  
  .nav-links li {
    display: inline;
    margin: 0 20px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
  }
  
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .sk__heading-spacer-l {
    margin-top: 50px;
  }
  
  h1, .h1-small {
    color: #333;
  }
  
  .skills-subhead, .p-v2 {
    color: #666;
  }
  
  .sk__skill-wrap {
    margin: 20px 0;
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
  }
  
  .sk__skill-bar {
    height: 20px;
    background: #007bff;
    width: 0%; 
    border-radius: 5px;
    transition: width 2s ease-out; 
  }
  
  .sk__skill-name {
    margin: 0;
    font-weight: bold;
  }
  
  .sk__skill-number {
    margin: 0;
    text-align: right;
  }
  
  
  .sk__skill-bar.animate {
    width: 0; 
  }
  
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
  
  .features-subtext-p {
    color: #666;
    font-size: 0.8rem;
  }
.row .col p{
    color: #fff;
}
@media (max-width: 768px) {
    body {
      font-size: 14px; 
    }
  
    nav {
      padding: 10px; 
    }
  
    .logo {
      font-size: 20px; 
    }
  
.menu-toggle {
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

.nav-links {
    display: none; 
}

.nav-links.active {
    display: block; 
}

  
    .content {
      padding: 10px; 
      max-width: 100%; 
    }
  
    h1 {
      font-size: 24px; 
    }
  
    .home .content h1 {
      font-size: 2rem; 
    }
  
    .button-container {
      flex-direction: column; 
      align-items: center; 
    }
  
    .button {
      width: 100%; 
    }
  
    .home .home-image center img {
      margin-left: 0; 
      max-width: 100%; 
    }
  
    .container {
      padding: 0 10px; 
    }
  
    .sk__skill-wrap {
      margin: 10px 0; 
    }
  }
  