/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow: hidden;
  color: white;
  animation: gradientBG 10s ease infinite;
  background: linear-gradient(270deg, #1a2a6c, #b21f1f, #fdbb2d);
  background-size: 600% 600%;
}

/* Background animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 8px #00ffff;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  height: 2px;
  width: 0%;
  background: #00ffff;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.section {
  display: none;
  height: 100vh;
  padding: 100px 30px 30px;
  animation: fadeZoom 0.7s ease;
}

.section.active {
  display: block;
}

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: calc(100vh - 80px);
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.hero-text span {
  color: #00ffff;
  font-weight: bold;
}

.hero-img img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.social-links a {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 8px 14px;
  border: 2px solid #00ffff;
  border-radius: 5px;
  text-decoration: none;
  color: #00ffff;
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.social-links a:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

footer {
  text-align: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

.skills-list li {
  padding: 8px 15px;
  background-color: rgba(0, 255, 255, 0.15);
  border: 1px solid #00ffff;
  border-radius: 20px;
  color: #00ffff;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(0, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.skills-list li:hover {
  transform: scale(1.05);
  background-color: rgba(0, 255, 255, 0.3);
}
.blog-list {
  margin-top: 20px;
  padding-left: 20px;
  list-style: none;
}

.blog-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

