html {
    scroll-behavior: smooth;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    font-size: 17px;
    background-color: #f4f4f4;
    color: #333;
  }
  
  header {
    background: #222;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    color: #00bcd4;
  }
  
  .section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  /* HOME SECTION */
  .home {
    background: linear-gradient(to right, #e0f7fa, #e6f9fc);
    width: 100%;
    padding: 120px 20px;
    text-align: center;
  }
  
  .home h1 {
    font-size: 3.2rem;
    font-weight: bold;
    color: #00796b;
    margin-bottom: 10px;
  }
  
  .home p {
    font-size: 1.4rem;
    color: #444;
  }
  
  .highlight {
    color: #00796b;
  }
  
  /* ABOUT */
  .about-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
  }
  
  .avatar-large {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  }
  
  .about-text {
    max-width: 800px;
    text-align: justify;
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
  }
  
  /* SKILLS */
  .skill-list {
    text-align: left;
    max-width: 700px;
    margin: 40px auto 0;
  }
  
  .skill-list li {
    margin-bottom: 14px;
    font-size: 1.15rem;
  }
  
  .skill-list i {
    color: #2196f3;
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  /* PROJECTS */
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }
  
  .project-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .project-card a {
    display: inline-block;
    margin-top: 15px;
    color: #00796b;
    font-weight: bold;
    text-decoration: none;
  }
  
  .project-card a:hover {
    text-decoration: underline;
  }
  
  /* CONTACT */
  .contact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
  
  .contact-grid a {
    background: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #00796b;
    font-weight: 500;
    transition: background 0.3s;
  }
  
  .contact-grid a:hover {
    background: #e0f7fa;
  }
  
  .contact i {
    margin-right: 8px;
    color: #00796b;
  }
  
  /* FOOTER */
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 80px;
    font-size: 0.95rem;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links {
      flex-direction: column;
      margin-top: 10px;
    }
  
    .about-box {
      flex-direction: column;
    }
  
    .about-text {
      text-align: center;
    }
  
    .home h1 {
      font-size: 2.4rem;
    }
  
    .home p {
      font-size: 1.1rem;
    }
  
    .avatar-large {
      width: 180px;
      height: 180px;
    }
  
    .project-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: left;
        transition: transform 0.3s;
        overflow: hidden;
      }
      

    .project-card a {
      display: block;
      margin-top: 12px;
    }
  
    .contact-grid {
      flex-direction: column;
      gap: 15px;
    }

      
  }
  