/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: #fff8f0; color: #111827; scroll-behavior: smooth; overflow-x: hidden; }

/* Shapes in Background */
body::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at top left, #FFE066, transparent 70%);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  z-index: -1;
}
body::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at bottom right, #FFD700, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  z-index: -1;
}

/* Navbar */
nav {
  position: fixed; top: 0; width: 100%;
  background: #fff;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 50px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); z-index: 1000;
}
nav a { margin-left: 25px; font-weight: 600; color: #111827; transition: 0.3s; }
nav a:hover { color: #FFD700; }

/* Hero Section */
#home {
  background: linear-gradient(135deg, #FFD700, #fff8f0);
  color: #111827; height: 90vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  position: relative; overflow: hidden;
}
#home h1 { font-size: 3rem; margin-bottom: 15px; }
#home p { font-size: 1.2rem; margin-bottom: 30px; }
#home a.button {
  background: #FFD700; color: #111827; padding: 14px 30px; border-radius: 40px; font-weight: bold;
  box-shadow: 0 8px 25px rgba(255, 208, 0, 0.4); transition: all 0.3s ease;
}
#home a.button:hover { transform: scale(1.05); box-shadow: 0 12px 35px rgba(255, 208, 0, 0.5); }

/* About Section */
#about { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; background: #fff; border-radius: 25px; padding: 80px 50px; box-shadow: 0 4px 25px rgba(0,0,0,0.05);}
#about img { width: 250px; border-radius: 25px; border: 3px solid #FFD700; }
#about div { flex: 1; min-width: 250px; }

/* Skills Section */
#skills { background: #fffbe6; text-align: center; border-radius: 25px; padding: 80px 50px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);}
.skills-container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.skill {
  background: #fff; padding: 20px; border-radius: 20px;
  width: 150px; font-weight: 600; text-align: center; box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}
.skill:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); }

/* Projects Section */
#projects { text-align: center; background: #fff; border-radius: 25px; padding: 80px 50px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);}
.projects-container { display: flex; flex-wrap: wrap; gap: 25px; justify-content: center; }
.project {
  background: #fff8f0; border-radius: 20px; overflow: hidden;
  width: 300px; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}
.project img { width: 100%; height: 200px; object-fit: cover; }
.project-content { padding: 15px; font-weight: 500; }
.project:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); }

/* Certificates Section */
#certificates { background: #fffbe6; text-align: center; border-radius: 25px; padding: 80px 50px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);}
.certificates-container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.certificate {
  background: #fff; padding: 20px; border-radius: 20px; width: 250px; box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}
.certificate img { width: 100%; border-radius: 15px; }
.certificate:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); }

/* Contact Section */
#contact { background: #fff; text-align: center; border-radius: 25px; padding: 80px 50px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);}
#contact form { max-width: 500px; margin: auto; display: flex; flex-direction: column; gap: 15px; }
#contact input, #contact textarea {
  padding: 14px; border-radius: 15px; border: 1px solid #FFD700; width: 100%;
}
#contact button {
  background: #FFD700; color: #111827; padding: 14px; border: none; border-radius: 40px;
  cursor: pointer; font-weight: bold; box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); transition: all 0.3s ease;
}
#contact button:hover { transform: scale(1.05); box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5); }

/* Footer */
footer { background: #fff; color: #111827; text-align: center; padding: 20px 0; box-shadow: 0 -4px 20px rgba(0,0,0,0.05); }

/* Team Cards */
.team-container { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; padding: 50px; }
.team-member {
  background: #fffbe6; border-radius: 25px; padding: 25px; text-align: center; width: 250px;
  color: #111827; box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2); transition: all 0.3s ease;
}
.team-member img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; border: 3px solid #FFD700; }
.team-member:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); }
.team-member .button {
  display: inline-block; margin-top: 10px; padding: 12px 25px; border-radius: 40px;
  background: #FFD700; color: #111827; font-weight: bold; transition: all 0.3s ease;
}
.team-member .button:hover { transform: scale(1.05); box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5); }

/* Responsive */
@media(max-width: 1024px) { 
  .projects-container, .certificates-container, .skills-container, .team-container { justify-content: center; } 
}
@media(max-width: 768px){
  nav { flex-direction: column; }
  #about { flex-direction: column; }
  #home h1 { font-size: 2.5rem; }
}
/* Add this */
#team {
  padding-top: 120px; /* adjust according to navbar height */
}




