

 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  width: 100%;
}

#base {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #333333 100%);
  background-attachment: fixed;
}

#navbar {
  height: 70px;
  width: 80%;
  padding: 0 40px;
  position: sticky;
  top: 50px;
  display: flex;
  align-items: center;
  z-index: 1000;
  margin: 0 auto;
  border-radius: 40px;
  border: 0.1px solid #323232;
  background-color: #1E1E1E;
}

#logo {
  font-weight: bold;
  font-size: 26px;
  color: rgb(0, 238, 255);
}

#nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

#nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

#nav-links a:hover {
  color: #00f2ff;
  transform: scale(1.1);
}

#about-section {
  display: flex;
  align-items: flex-start;
  gap: 10px; 
  margin-top: 130px;
  padding: 0 10%;
}


#left-side {
  width: 45%;
  display: flex;
  justify-content: flex-start;
}

.profile-img {
  height: 400px;
  width: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid #00f2ff;
  box-shadow:
    0 0 10px rgba(0, 242, 255, 0.5),
    0 0 20px rgba(0, 242, 255, 0.3);
  margin-top: -40px;  
}


#right-side {
  width: 85%;
}

#right-side h1{
  font-size: 28px;
  color: #00f2ff;
  margin-bottom: 15px;
}

#right-side p {
  line-height: 1.7;
  font-size: 16px;
  color: #dcdcdc;
  margin-bottom: 15px;
}

#right-side strong { color: #ff6f91; font-size: 20px; font-weight: bold; }
.highlight-role { color: #00f2ff; font-weight: 600; }
.highlight-tech { color: #7CFFB2; font-weight: 600; }
.highlight-frameworks { color: #FFD166; font-weight: 600; }
.highlight-domain { color: #C77DFF; font-weight: 600; }

#button-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

 .btn {
  height: 50px;
  width: 160px;
  background-color: #1E1E1E;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  border: 1px solid #00f2ff;
  color: #00f2ff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #00f2ff;
  color: #1E1E1E;
  box-shadow:
    0 0 8px #00f2ff,
    0 0 16px rgba(0, 242, 255, 0.6);
  transform: scale(1.05);
} 


