


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}



#hero {
    text-align: center;
    padding: 10px 20px;   
}

#hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}


#hero p {
    font-size: 1.2rem;
    font-weight: 400; 
    color: #555;
}





#about {
    max-width: 850px;
    margin: 10px auto;
    padding: 20px 20px;
    text-align: center;
    background: #fff; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}



#about h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

#about p {
    font-size: 1rem;
    line-height: 1.8;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}









section {
    padding-top: 20px;
    padding-bottom: 20px;
}




h2 {
    font-weight: bold;
}





.profile-pic {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 50%;
    margin-top: 20px;
}




#contact {
  padding: 0;
}

.contact-container {
  max-width: 850px;
  margin: 20px auto;
  padding: 0 20px;
}

.contact-box {
  background: #f2f2f2;
  padding: 20px 20px 10px; 
  text-align: center;
  border-radius: 8px; 
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-box h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-box li {
  font-size: 1.1rem;
  margin: 10px 0;
}

.contact-box a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-box a:hover {
  color: #555;
}

#contact li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;        
    font-size: 1.1rem;
    margin: 10px 0;
}

#contact i {
    font-size: 1.2rem;
    color: #000;
}

#contact li:hover i {
    color: #555;
}


