* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #0a1628;
  color: #e8f0fe;
  min-height: 100vh;
}
.navbar {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(100, 180, 255, 0.08);
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-brand i {
  -webkit-text-fill-color: initial;
  color: #4facfe;
  margin-right: 8px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  transition: all 0.3s;
  border-radius: 40px;
  padding: 0.5rem 1.2rem;
}
.nav-link:hover,
.nav-link.active {
  color: #4facfe;
  background: rgba(79, 172, 254, 0.08);
}
.hero {
  background: linear-gradient(145deg, #0a1628 0%, #142a4a 50%, #0a1628 100%);
  padding: 90px 0 50px;
  border-radius: 0 0 50px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(79, 172, 254, 0.06),
    transparent 70%
  );
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.04), transparent 70%);
  border-radius: 50%;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  padding: 4px;
  margin: 0 auto 1.2rem;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 0 60px rgba(79, 172, 254, 0.15);
}
.profile-pic:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 0 80px rgba(79, 172, 254, 0.25);
}
.profile-pic .inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.profile-pic .inner i {
  font-size: 65px;
  color: #4facfe;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #4facfe, #00f2fe, #4facfe);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero .title {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
.hero .title i {
  color: #4facfe;
}
.badge-glow {
  display: inline-block;
  background: rgba(79, 172, 254, 0.12);
  border: 1px solid rgba(79, 172, 254, 0.2);
  padding: 0.3rem 1.5rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4facfe;
  box-shadow: 0 0 30px rgba(79, 172, 254, 0.05);
}
.social-icons a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 1.1rem;
}
.social-icons a:hover {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #0a1628;
  transform: translateY(-4px) scale(1.05);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(79, 172, 254, 0.25);
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #e8f0fe;
}
.section-title .highlight {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}
.skill-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e8f0fe;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.skill-tag:hover {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #0a1628;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 172, 254, 0.2);
}
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.8rem;
  transition: all 0.3s;
  height: 100%;
}
.glass-card:hover {
  border-color: rgba(79, 172, 254, 0.2);
  box-shadow: 0 8px 40px rgba(79, 172, 254, 0.05);
  transform: translateY(-4px);
}
.glass-card i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass-card h6 {
  font-weight: 700;
  color: #e8f0fe;
}
.glass-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}
.form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  color: #e8f0fe;
  transition: all 0.3s;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: #4facfe;
  box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.08);
  color: #e8f0fe;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.btn-submit {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  border: none;
  color: #0a1628;
  font-weight: 700;
  padding: 0.7rem 2rem;
  border-radius: 60px;
  transition: all 0.3s;
  font-size: 1rem;
}
.btn-submit:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 40px rgba(79, 172, 254, 0.3);
  color: #0a1628;
}
.footer {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.8rem 0;
  margin-top: 2.5rem;
  border-radius: 40px 40px 0 0;
  text-align: center;
}
.footer p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}
.footer .heart {
  color: #4facfe;
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  .profile-pic {
    width: 120px;
    height: 120px;
  }
  .profile-pic .inner i {
    font-size: 50px;
  }
}
