* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}  

body {
  font-family: Arial, sans-serif;
  color: #d1d5db;
  background-color: #0a192f;
  line-height: 1.5;
}}

#i {
  padding-top: 20px;
  font-size: 50px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  color: #d1d5db;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.text-section {
  max-width: 600px;
}

header h1 {
  font-size: 3rem;
  color: #ccd6f6;
}

header h2 {
  font-size: 1.5rem;
  color: #8892b0;
}

header p {
  color: #8892b0;
  margin-top: 0.5rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  font-size: 20px;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.nav-links a {
  color: orange;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #64ffda;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.social-links img:hover {
  transform: scale(1.1);
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid orange;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  margin-bottom: 2rem;
}

section h3 {
  color: #ccd6f6;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

section p {
  color: #8892b0;
}
strong{
  color: orange;
}

#gap{
  padding-right: 20px;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #8892b0;
  border-top: 1px solid #8892b0;
  margin-top: 2rem;
}


/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .profile-pic {
    margin: 1.5rem 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  header h1 {
    font-size: 2.5rem;
  }

  header h2 {
    font-size: 1.2rem;
  }

  section h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .text-section {
    max-width: 100%;
    padding: 0 1rem;
  }

  header h1 {
    font-size: 2rem;
  }

  header h2 {
    font-size: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  section h3 {
    font-size: 1.4rem;
  }
}


.contact-info a {
  text-decoration: none;
  color: orange;
  font-size: 18px;
  margin-right: 15px;
  display: block;
}


.contact-info i {
  margin-right: 8px;
}

.contact-info a:hover {
  color: #0077b5;
  /* LinkedIn blue */
}