body{
  margin: 0;
  font-family: Arial, Sans-Serif;
}
button{
  border-radius: 10px;
  border: 2px solid rgba(31,143,224,0.034);
  background: rgba(122,155,180,0.22));
}
.hero{

  height: 100vh;
  background: #fdf6f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.hero h1{
  font-size: 40px;
}
.hero p{
  font-size:18px;
  max-width: 400px;
}
button{
  margin-top: 20px;
  padding:12px 24px;
  font-size:16px;
  cursor: pointer;
}
.hero.active{
  background: #333;
  color: white;
}
.hero.active h1,
.hero.active p{
  color: white;
}
.hero.active .heroBtn {
  background: white;
  color: #333;
}
/*about*/
.about {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about p {
  max-width: 500px;
  margin: auto;
  font-size: 16px;
}

.about button {
  margin-top: 15px;
  padding: 10px 20px;
}

.services {
  padding: 60px 20px;
  text-align: center;
  background: #fdf6f9;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  padding: 30px;
  width: 180px;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card.active {
  background: lightcoral;
  color: white;
}
.projects{
  padding:60px 40px;
  text-align: center;
}
.status {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.status.completed {
  background: #2ecc71;
  color: #fff;
}
#projectList{
  display: flex;
  justify-content: center;
  gap: 20px;
  background:#fff;
  flex-wrap: wrap;
}
.project-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 20px auto;
}

.project-card h3 {
  margin-bottom: 10px;
}

.project-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.project-links {
  margin-top: 15px;
}

.project-links a {
  display: inline-block;
  margin-right: 15px;
  text-decoration: none;
  font-weight: 600;
  color: #0d6efd;
}

.project-links a:hover {
  text-decoration: underline;
}

.skills {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.skill {
  margin-bottom: 20px;
}

.bar {
 max-width: 500px;
  height: 8px;
  background: #f9f4;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px auto;
}

.progress {
  height: 100%;
  width: 0;
  background: lightblue;
  border-radius: 10px;
  transition: width 1s ease;
}
.journey {
  padding: 60px 20px;
  background: #fdf6f9;
  text-align: center;
}

.step {
  max-width: 500px;
  margin: 20px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.details {
  display: none;
  margin-top: 10px;
}
.testimonials {
  background-color: #fff;
  padding: 60px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-box {
min-width: 100px;
  max-width: 500px;
  background:#c3a8a8;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.contact {
  padding: 60px 20px;
  text-align: center;
  background: #fdf6f9;
}

.contact form {
  max-width: 400px;
  margin: auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

#successMsg {
  color: green;
  margin-top: 10px;
}