* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
}

.hero {
  position: relative;
  background: url('image9.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex; justify-content: center; align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  color: #00ffcc;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.btn {
  background: #00ffcc;
  color: #000;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.about, .skills, .blog, .contact {
  padding: 4rem 2rem;
  text-align: center;
}

.about h2 {
  font-size: 2.8rem;
  color: #00ffcc;
  margin-bottom: 1rem;
  position: relative;
  animation: glow 2s ease-in-out infinite alternate;
}

.about p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

/* Glow animation for heading */
@keyframes glow {
  from {
    text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
  }
  to {
    text-shadow: 0 0 15px #00ffcc, 0 0 25px #00ffff;
  }
}

/* Fade-in from bottom */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery {
  padding: 4rem 2rem;
  background: #0e0e0e;
  text-align: center;
}

.gallery h2 {
  color: #00ffcc;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  border: 3px solid #00ffcc;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}


 

.skills .card, .blog-card {
  background: #1a1a1a;
  margin: 1rem;
  padding: 1.5rem;
  border-radius: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.skills .card:hover, .blog-card:hover {
  transform: scale(1.05);
  background: #00ffcc;
  color: #000;
}

 

footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  margin-top: 2rem;
}

.social-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons a {
  color: #00ffcc;
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

 

.whatsapp-btn {
  background-color: #00ffcc;
  color: #000;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0,255,204,0.3);
}

.whatsapp-btn:hover {
  background-color: #00e6b8;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,255,204,0.5);
}
