* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #0d0d0d;
    color: #fff;
    line-height: 1.6;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 100px;
    height: 70px;
  }
  
  .logo span {
    font-size: 24px;
    font-weight: bold;
    margin-left: 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }
  
  .container {
    padding: 20px;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffae00;
  }
  
  .menu {
    list-style: none;
    display: flex;
  }
  
  .menu li {
    margin-right: 15px;
  }
  
  .menu li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s ease;
  }
  
  .menu li a:hover {
    color: #ffae00;
  }
  
  .about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-left: 100px;
  }
  
  .about-content {
    max-width: 50%;
  }
  
  .about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .about-content h2 span {
    color: #ffae00;
  }
  
  .about-content p {
    margin-bottom: 15px;
  }
  
  .about-content ul {
    list-style: none;
  }
  
  .about-content ul li {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .image img {
    width: 400px;
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  .skills {
    text-align: center;
    padding: 50px 0;
  }
  
  .skills h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
  }
  
  .skills h2 span {
    color: #ffae00;
  }
  
  .skill-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .icon-box {
    background-color: #161616;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
  }
  
  .icon-box:hover {
    transform: scale(1.1);
    border-color: #ffae00;
  }
  
  .icon-box img {
    width: 80px;
    height: 80px;
    display: block;
  }
  
  @media (max-width: 768px) {
    .skill-icons {
      flex-direction: column;
      align-items: center;
    }
  
    .icon-box {
      margin-bottom: 15px;
    }
  }
  .certifications {
    padding: 50px;
    text-align: center;
}

.certifications h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.certificates-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.certificate {
    background-color: #1c1b33;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.certificate img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.certificate img:hover {
    transform: scale(1.05);
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1A1A40; /* Dark background color */
    color: #D1D1E9; /* Light text color */
    margin: 0;
    padding: 0;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    max-width: 60%;
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-content h1 span {
    color: #737373; /* Lighter color for 'INTRODUCE' */
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.about-content span {
    font-size: 2rem;
}

.about-content strong {
    color: #00FFAB; /* Highlight for tech names */
}

.about-content em {
    font-style: italic;
    color: #888888; /* Light grey for emphasis */
}

.about-image img {
    border-radius: 50%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
    max-width: 250px;
    max-height: 400px;
    border: 5px solid #00FFAB;
    animation: float 3s ease-in-out infinite;
}
