* { margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
}
body { 
    background: #f9fafb; 
    color: #020617; 
    line-height: 1.7; 
}
a { 
    color: #0f766e; 
    text-decoration: none; 
}
header { 
    padding: 90px 20px 70px; 
    text-align: center; 
    background: #ffffff; 
    border-bottom: 1px solid #e5e7eb; 
}
.profile-pic {
    width: 400px; 
    height: 400px; border-radius: 50%; 
    object-fit: cover; 
    margin-bottom: 25px; 
    border: 4px solid #0f766e; 
}
header h1 { font-size: 2.8rem; font-weight: 700; }
header p { margin-top: 12px; font-size: 1.15rem; color: #334155; }

.bttn { 
    display: inline-block; 
    margin-top: 30px; 
   
    padding: 12px 32px; 
    background: #0f766e; 
    color: #ffffff; 
    border: 2px solid #0f766e; 
    border-radius: 6px; 
    font-weight: 600; 
}
.btn-secondary { 
    display: inline-block; 
    margin-top: 30px; 
    margin-left: 12px; 
    padding: 12px 32px; 
    background: transparent; 
    color: #0f766e; 
    border: 2px solid #0f766e; 
    border-radius: 6px; 
    font-weight: 600; 
}
    section { padding: 80px 10%; }
    

    h2 { font-size: 2rem; margin-bottom: 35px;  text-align: center; font-weight: 600; }
    .about, .skills, .projects, 
    .contact { max-width: 1100px; margin: auto; }
    .education { max-width: 1100px; margin: auto; }
    
    .about p { max-width: 800px; margin: auto; text-align: center; color: #334155; }
    .skills-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
    .skill { background: #ffffff; padding: 22px; border-radius: 10px; text-align: center; border: 1px solid #d1fae5; font-weight: 500; }
    .skill i { font-size: 2rem; margin-bottom: 10px; display: block; }
    .fa-html5{color:#e34f26;} 
    .fa-css3-alt{color:#1572b6;} 
    .fa-js{color:#f7df1e;} 
    .fa-python{color:#3776ab;} 
    .fa-bootstrap{color:#7952b3;} 
    .fa-github{color:#181717;}
    .projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px;}
    .project { background: #ffffff; padding: 28px; border-radius: 14px; border: 1px solid #d1fae5; }
    .project h3 { margin-bottom: 12px; font-size: 1.2rem; }
    .project p { color: #475569; }
    .contact p { text-align: center; margin-bottom: 18px; color: #334155; }
    
footer { 
      text-align: center; 
      padding: 35px; 
      color: black; 
      border-top: 1px solid #e5e7eb; 
      background: #2ca99e; 
      height: 80px;
    
}

     /* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

/* Initial hidden state for scroll reveal */
section {
  opacity: 0;
  transform: translateY(30px);
}

section.show {
  animation: fadeUp 0.9s ease forwards;
}

.profile-pic {
  opacity: 0;
  animation: zoomIn 1.1s ease forwards;
  
}

.skill, .project {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill:hover, .project:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

