body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #333;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* HEADER / NAVBAR */
.header {
  background-color: #111;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.header nav a {
  color: #fff;
  margin-left: 1.2rem;
  text-decoration: none;
  font-size: 0.95rem;
}

.header nav a:hover {
  text-decoration: underline;
}

/* HOME SECTION */
.home {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #6c63ff, #8f8cff);
  color: white;
  border-radius: 18px;
}

.home span {
  color: #ffeb3b;
}

.home p {
  color: #f1f1f1;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background-color: #ffeb3b;
  color: #333;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}


/* ABOUT SECTION */
.about {
  padding: 3rem 2rem;
  background-color: #fdfdfd;
}

.about h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about p {
  max-width: 800px;
  margin: 0.6rem auto;
  text-align: center;
  line-height: 1.7;
  color: #444;
}

/* PROJECTS */
.projects {
  padding: 3rem 2rem;
}

.projects h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.project-category {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #6c63ff;
  text-align: center;
}

.project-card {
  background-color: #fff;
  padding: 1.5rem;
  margin: 1.2rem auto;
  border-radius: 10px;
  max-width: 800px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.project-card h4 {
  margin-bottom: 0.5rem;
}

.project-card p {
  margin-bottom: 0.8rem;
}

.project-card a {
  margin-right: 1rem;
  color: #6c63ff;
  text-decoration: none;
  font-weight: bold;
}

/* SKILLS */
.skills {
  padding: 3rem 2rem;
  background-color: #ffffff;
}

.skills h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.skills ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.skills li {
  background-color: #6c63ff;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* CONTACT */
.contact {
  padding: 3rem 2rem;
  text-align: center;
}

.contact a {
  color: #6c63ff;
  text-decoration: none;
}

/* FOOTER */
.footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* EXPERIENCE SECTION */
.experience {
  text-align: center;
}

.experience h2 {
  font-size: 2.1rem;
  margin-bottom: 2rem;
}

.experience-card {
  background-color: #fff;
  padding: 1.8rem;
  margin: 1.5rem auto;
  border-radius: 15px;
  max-width: 900px;
  text-align: left;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.experience-card h4 {
  margin-bottom: 0.3rem;
}

.experience-org {
  font-weight: bold;
  color: #6c63ff;
  margin-bottom: 0.6rem;
}

/* PROFILE PHOTO */
.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #6c63ff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* PROJECT IMAGE */
.project-img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 1rem auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* EXPERIENCE SECTION */
.experience {
  padding: 3rem 2rem;
  background-color: #fdfdfd;
}

.experience h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.experience-card {
  background-color: #ffffff;
  max-width: 800px;
  margin: 1.2rem auto;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.experience-card h4 {
  margin-bottom: 0.3rem;
}

.experience-org {
  font-weight: bold;
  color: #6c63ff;
}

.experience-duration {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.6rem;
}

/* CERTIFICATE LINK */
.cert-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: #6c63ff;
  font-weight: bold;
  text-decoration: none;
}

.cert-link:hover {
  text-decoration: underline;
}


.objective {
  margin-top: 0.8rem;
  font-weight: 500;
  color: #555;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 1.5rem;
}

.social-icons a {
  color: #333;
  font-size: 1.8rem;
  margin: 0 0.7rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #6c63ff;
  transform: translateY(-4px);
}

