body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fb6f92; 
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 70px;
  background: #fb6f92;     
  color: white;            
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;          

  border-radius: 100px;
  margin: 20px 40px;    
}

.navbar .logo {
  font-weight: bold;
  font-size: 20px;
  color: #ffe5ec;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar ul li a {
  text-decoration: none;
  color: #ffe5ec;            
  font-weight: 500;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: black;          
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  gap: 50px;
  margin-top: 80px;
}

.hero-img img {
  width: 250px;
  height: 250px;
  border-radius: 0%;
  background: white;
  padding: 10px 10px 30px 10px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-text h1 {
  font-size: 40px;
  margin: -5px 0;
}

.hero-text p {
  margin: 5px 0;
}

#typing-text {
  font-size: 18px;
  color: #ff5f91;
  font-family: 'Poppins', sans-serif;
  border-right: 2px solid #ff5f91; 
  white-space: nowrap;
  overflow: hidden;
  width: fit-content;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: #ff5f91 }
}

.buttons {
  margin: 20px 0;
}

.btn-outline {
  padding: 10px 20px;
  border: 2px solid #fb6f92;
  border-radius: 25px;
  text-decoration: none;
  color: #ffe5ec;
  margin-right: 15px;
}

.btn-fill {
  padding: 10px 20px;
  background: #fb6f92;
  color: #ffe5ec;
  border-radius: 25px;
  text-decoration: none;
}

.socials a {
  margin-right: 15px;
}

.about {
  padding: 80px 60px;         
  text-align: center;         
  background: #fff0f3;        
  border-radius: 20px;        
  margin: 40px 60px;          
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fb6f92;             
}

.about p {
  font-size: 18px;
  font-family: "Macondo", sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 700px;           
  margin: 0 auto;
}

.experience {
  padding: 80px 60px;
  background: #fff;
  margin: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.experience h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  color: #fb6f92;
}

.exp-item {
  margin-bottom: 30px;
  padding: 20px;
  border-left: 5px solid #fb6f92; 
  background: #ffe5ec;
  border-radius: 10px;
}

.exp-item h3 {
  margin: 0;
  color: #fb6f92;
}

.exp-date {
  font-size: 14px;
  color: #777;
}

.exp-item p {
  margin-top: 10px;
  font-family: "Macondo", sans-serif;
  color: #333;
  line-height: 1.6;
}

.projects {
  padding: 80px 60px;
  background: #fff0f3;
  margin: 40px 60px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.projects h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: fb6f92;
}

.projects p {
  color: #777;
  font-family: "Macondo", sans-serif;
  font-size: 18px;
}


#contact {
  text-align: center;
  padding: 50px 20px;
}

#contact h3 {
  color: gray;
  font-weight: normal;
  margin-bottom: 5px;
}

#contact h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.contact-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 40px;
  border: 2px solid #ddd;
  border-radius: 20px;
  max-width: 800px;
  margin: auto;
}

.contact-box a {
  text-decoration: none;
  font-size: 1.2em;
  color: black;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-box i {
  font-size: 1.5em;
}