* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #2e2e3e;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: black;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: black; /* or any accent color */
}


.nav-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

.talk-button {
  padding: 8px 16px;
  background: #a855f7;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
    display: flex;
    justify-content: center;
    padding: 60px 5%;
    background: linear-gradient(to bottom right, #6e00ff, #ffffff);
    border-radius: 25px;
    margin: 30px 5%;
    text-align: center;
  }
  
  .hero-text {
    max-width: 700px;
  }
  
  .profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-top: 30px;
    border-radius: 50%;
  }  
  
.hero-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.highlight {
  color: black;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.buttons {
  margin-bottom: 15px;
}

.btn {
  padding: 10px 20px;
  margin-right: 10px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn.dark {
  background: #222;
  color: #fff;
}

.btn.light {
  border: 2px solid #a855f7;
  color: #a855f7;
  background: transparent;
}

.social-icons img {
  margin: 0 8px;
  filter: grayscale(1);
}

.hero-img img {
  width: 300px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .hero-img {
    max-width: 100%;
  }

  .hero-img img {
    margin-top: 20px;
    width: 200px;
  }
}

.social-icons {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a {
  color: black;
  text-decoration: none;
  background-color: #f0f0f0;
  border: 2px solid transparent;
  padding: 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #6C63FF;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(108, 99, 255, 5.4);
}

.about {
  padding: 60px 20px;
  background-color: #3aafa9;
  text-align: center;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.about-img {
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
  max-width: 600px;
  text-align: left;
}

.about-text p {
  font-size: 1rem;
  color: #333;
  margin: 8px 0;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
}
.education-list {
  margin-top: 15px;
  padding-left: 20px;
  list-style-type: disc;
  color: #444;
}

.education-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.skills {
  background-color: #2e2e3e;
  padding: 60px 20px;
  text-align: center;
}

.skills-container h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: white;
  font-weight: bold;
}

.skill-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.skill-box {
  background-color: #fff;
  color: black;
  padding: 20px 30px;
  border-radius: 15px;
  width: 180px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.skill-box i {
  font-size: 2em;
  color: black;
}

.skill-box:hover {
  transform: translateY(-10px);
  background-color: #fceaea;
}

.contact {
  background-color: #1e1e2f;
  color: #ffffff;
  padding: 60px 20px;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ff6f91;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.contact-info {
  flex: 1 1 300px;
  text-align: left;
  font-size: 1.1em;
}

.contact-info p {
  margin: 15px 0;
}

.contact-info i {
  margin-right: 10px;
  color: #ff6f91;
}

.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #2e2e3e;
  color: #fff;
  font-size: 1em;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form button {
  padding: 12px;
  border: none;
  background-color: #ff6f91;
  color: #fff;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #ff4f74;
}
