
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
    background: #f3f3f3;
  }
  
  .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
  }
  

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .logo .dot {
    width: 20px;
    height: 20px;
    background: #ffa500;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .logo .name {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
  }
  
  .logo .role {
    font-size: 12px;
    color: #282828;
    margin-left: 4px;
  }
  
  .nav {
    display: flex;
    gap: 15px;
  }
  
  .nav a {
    text-decoration: none;
    font-size: 12px;
    color: #333;
    transition: color 0.3s;
  }
  
  .nav a:hover {
    color: #ca8f02;
  }
  

  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 7% 0;
    gap: 20px;
  }
  
  .hero > * {
    opacity: 0;
    transform: translateY(100px);
    animation: floatIn 1.5s ease-out forwards;
  }
  
 .profile-pic {
    width: 360px;
    height: 360px;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
    animation-delay: 0.2s;
  }
  
  .profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .intro-text {
    max-width: 30%;
    text-align: left;
    animation-delay: 0.6s;
  }
  
  .intro-text h1 {
    font-size: 60px;
    color: #000000;
    margin-bottom: 20px;
  }
  
  .intro-text h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000000;
  }
  
  .intro-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
  }
  
  .color-buttons {
    display: flex;
    gap: 10px;
    /* margin-top: 20px; */
    animation-delay: 1s;
  }
  
  .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 105%;
    color: rgb(0, 0, 0);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(100px);
    animation: floatIn 1.5s ease-out forwards;
  }
  
  .circle.yellow {
    background: #eea302;
    animation-delay: 1.2s;
  }
  
  .circle.red {
    background: #ff3b25;
    animation-delay: 1.6s;
  }
  
  .circle.blue {
    background: #7ed5d7;
    animation-delay: 2s;
  }
  
  .circle:hover {
    transform: scale(1.1);
    background-color: white;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  }
  
 
  footer {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    padding: 100px 60px;
    background-color: whitesmoke;
    font-family: Arial, sans-serif; 
    font-size: 14px;
    color: #000; 
}


.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    margin: 0 0 8px; 
    font-size: 16px;
    font-weight: bold;
}

.footer-column p {
    margin: 0; 
}


.footer-column .social-icons {
    display: flex;
    gap: 100px; 
}

.footer-column .social-icons a {
    text-decoration: none; 
    color: #000; 
    font-size: 18px; 
}


.copyright {
    text-align: right;
    font-size: 12px;
    color: #555; 
}

.copyright a {
    text-decoration: none;
    color: #555;
}


 
  @keyframes floatIn {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  