* { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      background: #f8f9fa;
      scroll-behavior: smooth;
    }
    header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 10%;
      background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      position: sticky; top: 0; z-index: 100;
    }
    header h1 { font-size: 1.4rem; color: #0077b6; }
    nav a {
      margin-left: 20px; text-decoration: none; color: #333; font-weight: 500;
      transition: color 0.3s;
    }
    nav a:hover { color: #0077b6; }

    section { padding: 80px 10%; }

    /* HERO */
    #hero {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
      gap: 40px; min-height: 80vh;
    }
.stack-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  margin-left: 62px;
}
.testimonial-image {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 37px;
    justify-content: flex-end;
}
.testimonial-header {
  display: flex;
  align-items: center;      /* vertically centers image and text */
  gap: 15px;    
  align-items: flex-start;            /* space between image and text */
}

.test-image {
  width: 60px;              /* adjust as you like */
  height: 60px;
  border-radius: 50%;       /* circular image */
  object-fit: cover;
  flex-shrink: 0;           /* prevents image from shrinking */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.test-info h4 {
  margin: 0;
  font-size: 1rem;
  color: #0077b6;
}

.test-info span {
  display: block;
  font-size: 0.9rem;
  color: #666;
}

.test-image {
  width: 60px;
  height: 60px;
border-radius: 34px;
}
.timeline-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.stack-icons img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.2s ease;
  filter: grayscale(20%);
}
.job-points {
  margin-top: 10px;
  margin-left: 72px;
  color: #444;
  line-height: 1.6;
}

.job-points li {
  list-style: "• ";
  margin-bottom: 6px;
}

.stack-icons img:hover {
  transform: scale(1.15);
  filter: grayscale(0%);
}
.logo-round {
  width: 50px;
  height: 50px;
  border-radius: 11%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 2px solid #f0f0f0;
  flex-shrink: 0;
}
    #hero img  {
      width: 1.5rem; height: 1.5rem; border-radius: 50%; object-fit: cover;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    #hero .cv-img  {
      width: 15rem; height: 15rem; border-radius: 50%; object-fit: cover;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    #hero .info { max-width: 500px; }
    #hero h2 { font-size: 2.2rem; margin-bottom: 10px; color: #212529; }
    #hero p { font-size: 1rem; margin-bottom: 20px; color: #555; }
    .socials {
      display: flex; gap: 15px;
    }
    .socials a {
      width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
      border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .socials a:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    .socials img {
      width: 20px; height: 20px;
    }

    /* ABOUT */
    #education { background: #fff; border-radius: 12px; box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
    #education p { line-height: 1.7; color: #444; }

    /* EXPERIENCE & EDUCATION */
    .timeline {
      display: grid; gap: 25px; margin-top: 30px;
    }
    .timeline-item {
      background: #fff; border-left: 4px solid #0077b6;
      padding: 15px 20px; border-radius: 6px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .timeline-item h3 { margin-bottom: 5px; color: #0077b6; }
    .timeline-item span { font-size: 0.9rem; color: #666; }

    /* TESTIMONIALS */
    #testimonials {
      background: #e9f5ff;
    }
    .testimonial-grid {
      display: grid; gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      margin-top: 30px;
    }
    .testimonial {
      min-height: 20rem;
      background: #fff; border-radius: 10px; padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .testimonial h4 { color: #0077b6; margin-bottom: 5px; }
    .testimonial span { font-size: 0.85rem; color: #666; }
    .testimonial p { margin-top: 10px; font-style: italic; color: #333; }

    /* CONTACT */
    form {
      display: flex; flex-direction: column; max-width: 450px; margin: auto;
    }
    input, textarea {
      margin-bottom: 15px; padding: 10px 12px; border: 1px solid #ccc;
      border-radius: 6px; font-family: inherit;
    }
    button {
      background: #0077b6; color: #fff; border: none; padding: 12px;
      border-radius: 6px; cursor: pointer; font-weight: 600;
    }
    button:hover { background: #005f88; }

    footer {
      text-align: center; padding: 30px; background: #fff; color: #666;
    }
    
    
    
    /* Importing Google Font - Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.slider-wrapper {
  overflow: hidden;
  margin: 0 70px 55px;
    align-items: stretch; /* ensures all slides take equal height */

}
.card-list .card-item {
  color: #fff;
  user-select: none;
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.card-list .card-item .user-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 40px;
  border: 3px solid #fff;
  padding: 4px;
}
.card-list .card-item .user-profession {
  font-size: 1.15rem;
  color: #e3e3e3;
  font-weight: 500;
  margin: 14px 0 40px;
}
.card-list .card-item .message-button {
  font-size: 1.25rem;
  padding: 10px 35px;
  color: #030728;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.card-list .card-item .message-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  color: #fff;
}
.slider-wrapper .swiper-pagination-bullet {
  background: #fff;
  height: 13px;
  width: 13px;
  opacity: 0.5;
}
.slider-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}
.slider-wrapper .swiper-slide-button {
  color: #0077b6;
  margin-top: -55px;
  transition: 0.2s ease;
}
.slider-wrapper .swiper-slide-button:hover {
  color: #4658ff;
}

@media (max-width: 768px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }
  .slider-wrapper .swiper-slide-button {
    display: none;
  }
}

#form-message {
  text-align: center;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 500;
  margin-bottom: 15px;
  transition: opacity 0.5s ease;
  opacity: 1;
}

#form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.hidden {
  display: none;
}


#contact-form select,
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-bottom: 15px;
  font-family: inherit;
  box-sizing: border-box;
}

#contact-form select:focus,
#contact-form input:focus,
#contact-form textarea:focus {
  border-color: #0077b6;
  outline: none;
}

#languages {
  background: #f9f9f9;
  padding: 60px 10%;
  text-align: left;
}

#languages h2 {
  color: #0077b6;
  margin-bottom: 25px;
}

.language-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.language-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #333;
}

.language-list strong {
  color: #0077b6;
}

.flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

