body {
  margin: 0;
  font-family: 'Poppins', sans-serif; 
  background-color: #1e1e1e; 
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  background-color: #b77777; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 4px 6px rgba (0, 0, 0, 0, 1);
  z-index: 10;
}
.logo {
  font-size: 2rem; 
  font-weight: bold;
  margin-right: auto; 
}
nav ul {
  list-style: none;
  justify-content: right;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 50px;
}
nav li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 20px;
  font-weight: bold;
}
nav li a:hover {
  color: #00d1b2; 
}
.hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}
.hero-content {
  text-align: left;
}
.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.hero-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 5px solid #00d1b2;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 209, 178, 0.5); 
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section {
  display: flex;
  justify-content: space-around; 
  align-items: center; 
  padding: 2rem; 
  min-height: 100vh; 
}
.about-content {
  flex: 1; 
  max-width: 600px; 
  padding-right: 2rem; 
}
.about-content h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #00d1b2; 
}
.about-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.about-content p {
  line-height: 1.6;
  font-size: 23px;
}
.about-image {
  width: 300px; 
  height: 300px;
  border-radius: 50%;
  border: 5px solid #00d1b2;
  box-shadow: 0 0 50px rgba(0, 209, 178, 0.5); 
  overflow: hidden; 
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-section {
      flex-direction: column; 
      align-items: center;
  }
  .about-content {
      padding-right: 0;
      margin-bottom: 2rem; 
  }
}
.skills-section {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
  padding: 5.5rem;
  background-color: #1e1e1e;
  color: #fff;
}
.skills-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #00d1b2;
}
.skills-section p{
  font-size: 15px;
}
.skill-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.skill-item {
  background-color: #333;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}
.skill-item img {
  width: 40px;
  height: 40px;
}
.skill-item p {
  font-weight: bold;
}
.contact-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}
.contact-text {
  flex: 1;
}
.contact-text p{
  font-size: 20px;
}
.contact-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  margin-bottom: 1rem;
}
.contact-title h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #00d1b2; 
}
.contact-title p {
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.contact-info {
  margin-bottom: 2rem;
}
.contact-info p {
  font-size: 20px;
  margin-bottom: 0.5rem;
}
.contact-info i {
  margin-right: 0.5rem;
}
.contact-form {
  background-color: #333;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 209, 178, 0.3);
  width: 400px;
}
.form-group {
  margin-bottom: 1rem;
}
label {
  display: block;
  margin-bottom: 0.5rem;
}
input,
textarea {
  width: 100%;
  padding: 0.8rem;
  background-color: #444;
  border: none;
  border-radius: 5px;
  color: #fff;
}
button[type="submit"] {
  background-color: #00d1b2;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
  background-color: #00b79e;
}
@media (max-width: 768px) {
  .contact-section {
      flex-direction: column;
      align-items: center;
  }
  .contact-form {
      width: 100%;
  }
}
section {
  opacity: 0;
  transition: opacity 0.5s ease;
}
section.active {
  opacity: 1;
}
section.transitioning {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}