body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(-45deg, #c2e9fb, #a0d2eb, #f7faff, #ffffff);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color: #333;
  scroll-behavior: smooth;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


header.hero {
  text-align: center;
  background: linear-gradient(to right, #a0d2eb, #c2e9fb);
  padding: 60px 20px;
}

header.hero h1 {
  font-size: 2.5rem;
}

header.hero span {
  color: #0077cc;
}

section {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.about {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about img {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
  border: 4px solid #a0d2eb;
}

.skill-tags span {
  display: inline-block;
  background: #0077cc;
  color: white;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.skill-tags span:hover {
  transform: scale(1.1);
  background: #005fa3;
}

.project-card {
  background: #e8f4fd;
  padding: 20px;
  border-left: 5px solid #0077cc;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.resume a {
  background: #0077cc;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.resume a:hover {
  background: #005fa3;
}

.contact p {
  font-size: 1.1rem;
  margin: 5px 0;
}

footer {
  text-align: center;
  background: #0077cc;
  color: white;
  padding: 20px 10px;
  margin-top: 40px;
}


.btn-view {
  display: block;
  margin-top: 15px;
  text-decoration: none;
  background-color: #0077cc;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.3s ease;
  font-weight: 500;
}

.btn-view:hover {
  background-color: #005fa3;
}
/* Hover Animation for Skills */
.skill-tags span {
  display: inline-block;
  background: #0077cc;
  color: white;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.skill-tags span:hover {
  transform: scale(1.1);
  background: #005fa3;
}

/* Hover Effect for Project Cards */
.project-card {
  background: #e8f4fd;
  padding: 20px;
  border-left: 5px solid #0077cc;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Resume Download Button */
.resume a,
.btn-view {
  background: #0077cc;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.resume a:hover,
.btn-view:hover {
  background: #005fa3;
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgba(0, 119, 204, 0.3);
}
  h1 {
      text-align: center;
      font-weight: bold;
    }

    .education-section {
      max-width: 900px;
      margin: 0 auto;
      border-left: 2px dashed #ccc;
      padding-left: 20px;
    }

    .edu-item {
      position: relative;
      margin-bottom: 40px;
    }

    .edu-item::before {
      content: "✔";
      position: absolute;
      left: -30px;
      top: 0;
      color: gray;
      font-size: 24px;
    }

    .edu-item h4 {
      font-size: 22px;
      font-weight: bold;
      color: #333;
    }

    .edu-item p {
      margin: 5px 0;
      color: #666;
    }

    .edu-item span {
      font-size: 14px;
      color: #888;
    }

    .about-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
      gap: 30px;
    }

    .about-img img {
      max-width: 400px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .about-text h1 {
      font-size: 36px;
      font-weight: 300;
    }

     


    
