/* Reset & General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #fff;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
}

/* Background Animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Glitter Text Effect */
.glitter-text {
  background: linear-gradient(45deg, #ff00cc, #3333ff, #00ffcc, #ff9900);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glitter 6s linear infinite;
}

@keyframes glitter {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0,0,0,0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00e6ff;
  text-shadow: 0 0 10px #00e6ff;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text h2 {
  font-size: 2.8rem;
}

.hero-text span {
  font-weight: bold;
}

.hero-text button {
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(45deg, #ff00cc, #3333ff);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.hero-text button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #ff00cc, 0 0 35px #3333ff;
}

/* About Section */
.about {
  padding: 80px 20px;
  text-align: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: auto;
  gap: 40px;
}

.profile-pic {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 0 20px #ff00cc;
}

.about-text {
  max-width: 500px;
  text-align: left;
}

.about-text h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.about-text button {
  padding: 10px 20px;
  background: linear-gradient(45deg, #00ffcc, #ff00cc);
  border: none;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.about-text button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #00ffcc, 0 0 30px #ff00cc;
}

/* Projects */
.projects {
  padding: 80px 20px;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 25px #ff00cc, 0 0 35px #00ffcc;
}

/* Contact */
.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  margin: auto;
}

.contact input,
.contact textarea {
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 10px;
  outline: none;
}

.contact button {
  padding: 12px;
  background: linear-gradient(45deg, #ff00cc, #3333ff);
  border: none;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.contact button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #ff00cc, 0 0 35px #3333ff;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background: rgba(0,0,0,0.7);
  color: #fff;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Skills Section */
.skills {
  padding: 80px 20px;
  text-align: center;
}

.skill {
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}

.skill p {
  margin-bottom: 8px;
  font-weight: bold;
}

.skill-bar {
  width: 100%;
  height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ff00cc, #3333ff, #00ffcc);
  border-radius: 10px;
  transition: width 2s ease;
  box-shadow: 0 0 10px #00ffcc;
}
/* CV Button */
.cv-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(45deg, #00ffcc, #ff00cc);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0,255,200,0.8);
}

.cv-btn:hover {
  background: linear-gradient(45deg, #ff00cc, #00ffcc);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255,0,200,0.9);
}
button{
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(45deg, #00ffcc, #ff00cc);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0,255,200,0.8);
}

