* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #000;
  background: linear-gradient(to right, red, yellow);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.2rem;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 4rem;
}

.profile img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.intro .hello {
  color: blue;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
    background-image: url('Images/Kraakye.JPG');
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.intro h2 {
  font-size: 2rem;
  font-weight: 700;
    background-image: url('Images/Kraakye.JPG');
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.intro h3 {
  color: blue;
  font-weight: 500;
  margin-bottom: 1.5rem;
  background-image: url('Images/Kraakye.JPG');
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btn-outline, .btn-filled {
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-outline {
  border: 1px solid black;
  color: black;
}

.btn-filled {
  background-color: black;
  color: white;
}

.socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.socials img {
  width: 24px;
  height: 24px;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 2rem;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }

  main {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }

  .profile img {
    width: 200px;
    height: 200px;
  }

  .buttons {
    justify-content: center;
  }

  .socials {
    justify-content: center;
  }}
  #facebook {
    border-radius: 10px;
  }
  .service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.card {
  background: grey;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 470px;
  width: 400px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgb(34, 34, 255);
}

.card h3 {
  margin-bottom: 15px;
  color: #1abc9c;
}
.service-img {
  border-radius: 50px;
}
.projetcs-section {
  padding: 50px;
  text-align: center;
}
.projetcs-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.project-card {
  background: #1c2f45;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  transform: translateY(0);
  transition: gransform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgb(51, 51, 217);
}
.project-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform o.5s ease;
}
.project-card:hover .project-image {
  transform: scale(1.05);
}
.project-info {
  padding: 20px;
  transition: background 0.3s ease;
}
.project-card:hover .project-info {
  background: white;
}
.project-info h3 {
  margin: 0 0 10px;
}
.project-info p {
  font-size: 14px;
  color: #000;
}
.gs {
  border-radius: 100px;
  height: 45px;
  width: 150px;
  background: linear-gradient(to right, red, yellow);
  border: none;
  transition: .7s ease;
}
.gs:hover {
  background: linear-gradient(to bottom right, blue, pink);
  transform: scale(1.1);
}
#gs {
    margin-left: 5rem;
}
.skills-container {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}
.technical-skills {
  width: 45%;
}
.skill {
  margin-bottom: 20px;
}
.skill span {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.progress {
  background: #222;
  border-radius: 5px;
  overflow: hidden;
}
.progress-bar {
  background: cyan;
  height: 8px;
  text-align: right;
  padding-right: 5px;
  font-size: 12px;
  line-height: 8px;
}
.soft-skills {
  display: grid;
  grid-template-columns: repeat(2, 120px);
  gap: 30px;
}
.circle {
  position: relative;
  width: 120px;
  height: 119px;
  border-radius: 50%;
  border: 6px solid cyan;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 64rem;
}
.circle span {
  font-size: 18px;
  font-weight: bold;
}
.circle p {
  font-size: 12px;
  margin: 0;
  text-transform: capitalize;
  color: black;
}
 #facebook {
    border-radius: 10px;
  }