/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

   * {
    box-sizing: border-box;
  }
  
  html {
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: #0f172a;
    background: #F4F4F4;
    padding-bottom: 55px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  ::-webkit-scrollbar {
    display: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  a:visited {
    color: inherit;
  }
  
  p {
    margin: 0.5rem 0;
    text-align: justify;
  }
  
  
  /* ==========================================================================
     HEADER NAVIGATION
     ========================================================================== */
  
  .header {
    background: #F6F6F6;
    z-index: 1000;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
  }

  .header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      #DEDEDE 0px,
      #DEDEDE 6px,
      transparent 6px,
      transparent 12px
    );
  }

  .header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 35px;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .left-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .right-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0px;
  }

  .header__button {
    padding: 8px 14px;
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    background: #FFFFFF;
    font-size: 0.875rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    transition: transform 0.15s ease;
    cursor: pointer;
  }

  .header__button:hover { transform: scale(1.02); }

  .header-buttons {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-left: 25px;
  }

  .social-link {
    color: rgba(33,33,33,0.6);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    padding: 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
  }

  .social-link:hover {
    color: #212121;
  }

  .social-link ion-icon {
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: block;
    transition: color 0.3s ease;
  }

  .social-link:hover ion-icon {
    color: #212121;
  }

  .social-icon-img {
    width: 16px;
    height: 16px;
    display: block;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%);
  }

  .social-link:hover .social-icon-img {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(13%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%);
  }

  .resume-btn {
    background: white;
    border: 1px solid #DEDEDE;
    color: #212121;
    padding: 8px 12px;
    border-radius: 25px;
    font-weight: 400;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .resume-btn:hover {
    transform: scale(1.05);
  }

  .lets-talk-btn {
    background: #212121;
    margin-left: 8px;
    color: white;
    padding: 8px 12px;
    border-radius: 25px;
    border: none;
    font-weight: 400;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .lets-talk-btn:hover {
    background: #212121;
    color: white;
    transform: scale(1.05);
  }

  .whatsapp-btn {
    background: white;
    border: 1px solid #DEDEDE;
    color: #212121;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    margin-left: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-btn:hover {
    transform: scale(1.05);
  }

  .whatsapp-btn-icon {
    width: 18px;
    height: 18px;
    display: block;
  }

  /* Hero CTA (name + buttons) */
  .hero-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 35px 0;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-cta__left {
    flex: 0 0 auto;
  }

  .hero-cta__name {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 200;
    color: #212121;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .hero-cta__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .resume-btn--hero {
    font-size: 0.9375rem;
    padding: 10px 16px;
  }
  
  
  /* ==========================================================================
     MAIN LAYOUT
     ========================================================================== */
  
  .layout {
    display: flex;
    padding: 3rem;
    gap: 2rem;
  }
  
  .sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .main-content {
    flex: 2;
  }

/* Spacing between right-column cards */
.main-content .card + .card { margin-top: 1rem; }
  
  
  /* ==========================================================================
     CARD COMPONENT (Base styles for all sections)
     ========================================================================== */
  
  .card {
    padding: 1.5rem;
    padding-bottom: 55px;
    border-radius: 15px;
    background: #F6F6F6;
    border: 1px solid #DEDEDE;
    color: #0f172a;
    font-weight: 400;
    box-shadow: -1px 1px 0px 0px rgba(255, 255, 255, 1);
  transition: background-color 0.3s ease-in-out;
  }
.card:hover { background: #ffffff; }
  
  .card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .card__icon {
    width: 40px;
    height: 40px;
    border: 1px solid #DEDEDE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .card__icon img {
    width: 20px;
    height: 20px;
  }
  
  .card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #787878;
  }
  
  .card__description {
    margin-top: 2rem;
    line-height: 1.2;
    font-size: 0.875rem;
  }
  
  
  /* ==========================================================================
     PERSONAL INFORMATION SECTION
     ========================================================================== */
  
  .contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2rem;
  }
  
  .contact-list__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: transform 0.15s ease;
    cursor: pointer;
  }
  
  .contact-list__item:hover {
    transform: scale(1.02);
  }
  
  .contact-list__icon {
    width: 32px;
    height: 32px;
    border: 1px dashed #DEDEDE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .contact-list__icon img {
    width: 14px;
    height: 14px;
  }
  
  .contact-list__text {
    line-height: 1;
  }
  
  
  /* ==========================================================================
     ABOUT SECTION
     ========================================================================== */
  
  .card--about .card__icon img {
    width: 16px;
    height: 16px;
  }
  
  
  /* ==========================================================================
     PRIMARY DESIGN TOOL SECTION
     ========================================================================== */
  
  .card--primary-tool .card__icon img {
    width: 16px;
    height: 16px;
  }
  
  .tool-featured {
    margin-top: 2rem;
    display: flex;
    align-items: center;
  }
  
  .tool-featured__icon {
    width: 24px;
    height: 24px;
  }
  
  .tool-featured__name {
    font-size: 1.3rem;
    color: #212121;
    padding-left: 10px;
  }
  
  .design-principles {
    margin-top: 2rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
  }
  
  .design-principles__item {
    color: #212121;
  }
  
  .design-principles__highlight {
    border: 1px solid #DEDEDE;
    border-radius: 500px;
    padding: 4px 10px;
  }
  
  
  /* ==========================================================================
     OTHER TOOLS SECTION
     ========================================================================== */
  
  .card--other-tools .card__icon img {
    width: 16px;
    height: 16px;
  }
  
  .tools-grid {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.6rem;
  }
  
  .tool {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  
  .tool__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #DEDEDE;
    border-radius: 12px;
    flex-shrink: 0;
  }
  
  .tool__icon img {
    width: 20px;
    height: 20px;
  }
  
  .tool__icon img[alt="HTML/CSS"] {
    width: 24px;
    height: 24px;
  }
  
  .tool__content {
    display: flex;
    flex-direction: column;
    gap: 0.03rem;
  }
  
  .tool__name {
    font-size: 1.1rem;
    color: #212121;
  }
  
  .tool__category {
    font-size: 0.875rem;
    color: #787878;
  }

/* Work Experience - smaller header icon */
.card--experience .card__icon img {
  width: 16px;
  height: 16px;
}

/* Work subheader (name + title + chips) */
.work-subheader {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.work-subheader__left { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.work-name { font-size: 1.3rem; color: #212121; }
.work-title-pill {
  font-size: 0.875rem;
  border: 1px dashed #787878;
  padding: 4px 10px;
  border-radius: 500px;
}

.work-subheader__right { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 500px;
  border: 1px solid #dedede;
}
.chip__icon { width: 10px; height: 10px; }
.chip__text { font-size: 0.875rem; color: #212121; }
  
/* Work Experience details */
.work-points {
  margin-top: 1.25rem;
  columns: 2;
  column-gap: 2rem;
  padding-left: 1.1rem;
  font-size: 0.875rem;
}
.work-points li { break-inside: avoid; margin: 0.25rem 0; }

  
  /* ==========================================================================
     AREA OF FOCUS SECTION
     ========================================================================== */
  
  .card--focus .card__icon img {
    width: 20px;
    height: 20px;
  }
  
  .skills-tags {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
  }
  
  .skills-tags__tag {
    border: 1px dashed #DEDEDE;
    border-radius: 500px;
    padding: 4px 10px;
  }
  
  
  /* ==========================================================================
     EDUCATION SECTION
     ========================================================================== */
  
  .education {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .education__logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #DEDEDE;
    flex-shrink: 0;
  }
  
  .education__details {
    display: flex;
    flex-direction: column;
  }
  
  .education__institution {
    color: #212121;
    font-size: 1.3rem;
  }
  
  .education__degree {
    color: #212121;
    font-size: 1.1rem;
  }
  
  .education__location,
  .education__year {
    color: #787878;
    font-size: 0.875rem;
  }
  
  
  /* ==========================================================================
     LANGUAGES SECTION
     ========================================================================== */
  
  .languages-grid {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }
  
  .language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  
  .language__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #DEDEDE;
    border-radius: 12px;
    flex-shrink: 0;
  }
  
  .language__icon img {
    width: 20px;
    height: 20px;
  }
  
  .language__info {
    display: flex;
    flex-direction: column;
  }
  
  .language__name {
    font-size: 1rem;
    color: #212121;
  }
  
  .language__proficiency {
    font-size: 0.875rem;
    color: #787878;
  }

/* Legacy sections support: hover like cards */
.section { transition: background-color 0.3s ease-in-out; }
.section:hover { background: #ffffff; }




.dashed {
  border-top: 0.5px solid #DEDEDE;
  box-shadow: -1px 1px 0px 0px rgba(255, 255, 255, 1);
}

.divider2 {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 18px;
  color: #787878;
}

.divider2::before,
.divider2::after {
  content: "";
  flex: 1;
  border-top: 0.5px solid #DEDEDE;
  box-shadow: -1px 1px 0px rgba(255, 255, 255, 1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    padding: 15px 15px;
  }

  .hero-cta {
    padding: 1.25rem 15px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-cta__left {
    display: flex;
    justify-content: center;
  }

  .hero-cta__right {
    justify-content: center;
  }

  .hero-cta__name {
    font-size: 2rem;
  }

  .header-content {
    justify-content: center;
  }

  .left-section {
    justify-content: center;
    width: 100%;
  }

  .right-section {
    width: 100%;
    justify-content: center;
  }

  .header-buttons {
    margin-top: 0px;
    margin-left: 0px;
  }

  .layout {
    flex-direction: column;
    padding: 1rem;
  }

  .main-content {
    order: 1;
  }

  .sidebar {
    order: 2;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 10px;
  }

  .hero-cta {
    padding: 1rem 10px 0;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-cta__name {
    font-size: 1.75rem;
  }

  .resume-btn--hero {
    font-size: 0.875rem;
    padding: 8px 14px;
  }

  .header-buttons {
    margin-top: 0px;
    margin-left: 0px;
  }

  .resume-btn {
    font-size: 11px;
    padding: 6px 10px;
  }

  .lets-talk-btn {
    font-size: 11px;
    padding: 6px 10px;
  }

  .whatsapp-btn {
    width: 32px;
    height: 32px;
  }

  .whatsapp-btn-icon {
    width: 16px;
    height: 16px;
  }

  .social-link {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 320px) {
  .header-container {
    padding: 8px 8px;
  }

  .header-buttons {
    margin-top: 20px;
    margin-left: 0px;
  }

  .resume-btn {
    font-size: 10px;
    padding: 5px 8px;
  }

  .lets-talk-btn {
    font-size: 10px;
    padding: 5px 8px;
  }

  .whatsapp-btn {
    width: 28px;
    height: 28px;
  }

  .whatsapp-btn-icon {
    width: 14px;
    height: 14px;
  }

  .social-link {
    font-size: 11px;
    padding: 5px 10px;
  }
}