/* =========================================================================
   MAIN STYLESHEET – ObaidMalik Portfolio
   Organized and commented for quick maintenance.
   -------------------------------------------------------------------------
   Sections
   01) Reset & Base
   02) Typography & Links
   03) Utilities
   04) Layout (main/section wrappers)
   05) Header & Navigation (incl. dropdown + hamburger)
   06) Profile (hero)
   07) About
   08) Proficiencies
   09) Projects (Home featured + Projects page grid/cards)
   10) Other Platforms
   11) Contact
   12) Footer
   13) Media Queries
   
   NOTE: This file handles the main portfolio styling (Vanilla CSS).
   The blog section uses Tailwind CSS (via CDN) + Flowbite.
   ========================================================================= */

/* === 01) RESET & BASE ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
}

body:not(.has-blog) img {
  max-width: 100%;
  display: block;
}

body:not(.has-blog) p {
  color: #555;
}

/* === 02) TYPOGRAPHY & LINKS ============================================= */

body:not(.has-blog) a {
  color: #000;
  text-decoration: none;
}

body:not(.has-blog) a:hover {
  color: rgb(96, 145, 204);
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

/* Buttons */
.btn,
.submit-button {
  transition: color .3s ease, background-color .3s ease, filter .2s ease;
  background: linear-gradient(to right, #6ca0dc, #b1d3f1);
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.submit-button:hover {
  filter: brightness(0.96);
}

.btn-sm {
  padding: .48rem .9rem;
  font-size: .9rem;
  border-radius: 10px;
}

.btn-primary {
  background: linear-gradient(180deg, #8fbdf7, #6eaaf5);
  border: 1px solid #6eaaf5;
}

.btn-ghost {
  background: #f6f7fb;
  color: #333;
  border: 1px solid #e5e7ef;
}

.btn-ghost:hover {
  background: #eef1f7;
}

/* Social icons */
.social-icon {
  width: 32px;
  height: 32px;
  margin: 0 .5rem;
}

/* === 03) UTILITIES ======================================================= */

.center {
  text-align: center;
}

.section-title {
  font-size: 3rem;
  line-height: 1.2;
}

.section-subtitle {
  color: #666;
  margin-top: .25rem;
}

.btn_container {
  margin-top: 1.5rem;
  text-align: center;
}

/* === 04) LAYOUT ========================================================== */

main {
  margin-top: 60px;
}

body:not(.has-blog) section {
  padding-top: 4vh;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  min-height: fit-content;
}

/* === 05) HEADER & NAVIGATION ============================================ */

.header {
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

body .logo img {
  max-width: 100px;
  height: auto;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  margin-right: 20px;
}

nav ul li {
  margin: 0 15px;
}

.nav-links {
  list-style: none;
  margin-top: 0;
  font-size: 1.1rem;
  display: flex;
  gap: 1rem;
}

.nav-links a:hover {
  text-decoration: none;
}

.nav-links>li>a,
.nav-link {
  font-weight: 500;
  padding: 0.25rem 0;
  text-decoration: none;
  color: #111;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link.is-active {
  color: #4c6ef5;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 3px;
  background: #4c6ef5;
  border-radius: 999px;
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown .caret {
  margin-left: 0.35rem;
  font-size: 0.9rem;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
  z-index: 1000;
}

.nav-item.has-dropdown:hover .dropdown-panel,
.nav-item.has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: block;
  padding: 0.65rem 1.1rem;
  color: #111;
  font-size: 0.95rem;
  white-space: nowrap;
}

.dropdown-link:hover,
.dropdown-link.is-active {
  background: #f5f7fb;
  color: #4c6ef5;
}

/* Hamburger (mobile) */
#hamburger-nav {
  display: none;
}

.hamburger-menu {
  position: relative;
  display: inline-block;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background: #000;
  transition: all .3s ease;
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  width: fit-content;
  max-height: 0;
  overflow: hidden;
  transition: all .3s ease;
}

.menu-links a {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 1.2rem;
  color: #000;
}

.menu-links a:hover {
  color: rgb(96, 145, 204);
}

.menu-links li {
  list-style: none;
}

.menu-links.open {
  max-height: 300px;
}

.hamburger-icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -5px);
}

.pagesection {
  position: relative;
  /* ensures ::before is positioned correctly */
  background-color: #f0f4ff;
  /* very light gray-blue tint */
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}

.pagesection::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  top: -1px;
  /* how far above the section the line sits */
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  /* subtle hairline */
}

/* === 06) PROFILE (HERO) ================================================= */

#profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  height: auto;
  padding: 0;
}

.section_pic_container img {
  border-radius: 50%;
  object-fit: cover;
  width: 300px;
  height: 300px;
}

.section_text {
  align-self: center;
  text-align: center;
}

.section_text p {
  font-weight: 600;
}

.section_text_p1 {
  text-align: center;
  margin-bottom: 1rem;
}

.section_text_p2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.title_1 {
  font-size: 3rem;
  text-align: center;
}

/* === 07) ABOUT ========================================================== */

#about {
  padding: 4rem 0;
  text-align: center;
  background-color: #fff;
}

.title_2 {
  position: relative;
  display: inline-block;
}

.title_2::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  margin: .5rem auto 0;
  background: linear-gradient(to right, #6ca0dc, #b1d3f1);
  border-radius: 2px;
  margin-bottom: 0rem;
}

.text_container {
  margin: 2rem auto;
  text-align: center;
}

.text_container p {
  color: #555;
  line-height: 1.6;
  text-align: left;
}

/* === 08) PROFICIENCIES ================================================== */

/*#proficiencies { padding: 3rem 0; text-align: center; }
#proficiencies::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  top: -1px;
  height: 4px;
  background: rgba(0,0,0,0.08);
}*/
#proficiencies {
  background-color: #f0f4ff;
  /* very light gray-blue tint */
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-radius: 0;
  /* keep edges flush */
  text-align: center;
}

.article_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2.5rem;
}

article_container .icon {
  width: 300px;
  height: 300px;
}

/*.article_container .icon { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; border-radius: 10px;}*/
article {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  text-align: center;
}

article .icon {
  cursor: pointer;
  height: 90px;
  margin-bottom: 1rem;
}

article h3 {
  font-size: 1.5rem;
  color: #333;
}

article p {
  color: #777;
  line-height: 1.5;
  text-align: justify;
}


/* === 09) PROJECTS ======================================================= */
/* Section separator: hairline above the Projects block on home */
/*#projects { position: relative; }*/
#projects {
  position: relative;
  background-color: #f0f4ff;
  /* very light gray-blue tint */
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-radius: 0;
  /* keep edges flush */
  text-align: center;
}

#projects::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  top: -1px;
  /* how far above the section the line sits */
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  /* subtle hairline */
}

/* Home featured strip */
.featured-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
  background: #fff;
}

.featured-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}

.featured-body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

/* Projects page */
.projects-page {
  max-width: 1280px;
  margin: 0 auto;
}

.projects-title {
  font-size: 2.25rem;
  margin: 0 0 .25rem 0;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.project-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 1.35rem 1.35rem 1rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  position: relative;
  /* add */
  overflow: hidden;
  /* add */
  cursor: pointer;
  /* optional: feels clickable */
  transition: transform .16s ease, box-shadow .16s ease;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.project-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
  margin-bottom: 1rem;
}

.project-title {
  margin: .35rem 0;
}

.project-summary {
  color: #666;
  margin: 0 auto 1rem;
  max-width: 58ch;
}

.project-actions {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
}

.project-meta {
  margin-top: .75rem;
  font-size: .85rem;
  color: #777;
}

.project-meta .label {
  font-weight: 600;
}

.project-meta .date {
  font-weight: 400;
}

/* hidden by default */
.project-overlay {
  position: absolute;
  inset: 0;
  padding: 1rem 1.1rem 1.25rem;
  background: rgba(8, 12, 20, .90);
  color: #e9eef5;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 2;
}

/* title + body inside overlay */
.project-overlay h4 {
  margin: 0 0 .25rem 0;
  font-size: 1rem;
  font-weight: 700;
}

.project-overlay .desc {
  font-size: .95rem;
  line-height: 1.4;
  max-height: 60%;
  overflow: auto;
}

/* show on hover and when any child is focused (keyboard, mobile focus) */
.project-card:hover .project-overlay,
.project-card:focus-within .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Featured row carousel */
.featured-title {
  font-size: 1.8rem;
  margin-bottom: .75rem;
}

.featured-strip {
  margin-top: 1.25rem;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .25rem 2.5rem;
  /* space for buttons */
}

.featured-card {
  flex: 0 0 clamp(280px, 28vw, 360px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  text-decoration: none;
}

.featured-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.featured-info {
  padding: .75rem .9rem;
}

.featured-info h3 {
  margin: 0 0 .25rem;
  color: #111;
}

.featured-info p {
  margin: 0;
  color: #666;
  font-size: .95rem;
}

/* Arrow buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d7d7d7;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  cursor: pointer;
  font-size: 22px;
  line-height: 34px;
  text-align: center;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* Mobile: let it scroll with touch, hide arrows if you want */
@media (max-width: 720px) {
  .carousel-btn {
    display: none;
  }
}


/* === 10) OTHER PLATFORMS ================================================ */

#other-platforms {
  padding: 4rem 0;
  text-align: center;
}

.sub-detail_container {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1.5rem;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform .2s ease-in-out;
}

.sub-detail_container:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

a.platform-link {
  color: #000;
  text-decoration: none;
}

/* === 11) CONTACT ======================================================== */

#contact {
  padding: 4rem 0;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  padding: 2rem;
}

.contact-card {
  flex: 1;
  text-align: left;
}

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

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: .5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  resize: none;
}

.contact-info {
  text-align: left;
  flex: 1;
  max-width: 400px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: .3rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}

.contact-info h2 {
  font-size: 1.5rem;
}

.contact-info a {
  color: #555;
}

.contact-info a:hover {
  color: rgb(96, 145, 204);
}

/* === 12) FOOTER ========================================================= */

footer {
  padding: 2rem 0;
  text-align: center;
  background: #F9F9F7;
}

footer p {
  margin: 0;
}

/* Footer socials row */
footer .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 0.75rem;
}

footer .socials a,
footer .socials img {
  display: inline-block;
}

/* === FOOTER === */
.site-footer {
  padding: 2rem 0;
  background: #F9F9F7;
  text-align: center;
}

.site-footer .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  /* space between icons */
  margin-top: 0.75rem;
}

.site-footer .social-icons a {
  display: inline-block;
}

.site-footer .social-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.site-footer .social-icon:hover {
  transform: scale(1.1);
}

/* === 13) MEDIA QUERIES ================================================== */

@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
  }

  body:not(.has-blog) section {
    margin: 0 6rem;
  }

  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 720px) {
  body:not(.has-blog) section {
    margin: 0 1.25rem;
  }

  .featured-item {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (hover: none) {

  /* reduce blur on touch to keep text crisp */
  .project-card:hover>*:not(.project-overlay) {
    filter: none;
  }
}

/* END ==================================================================== */

/* Responsive profile adjustments */
#profile {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 5rem);
}

.section_pic_container img {
  width: clamp(220px, 28vw, 320px);
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

/* Ensure project cards don't overstretch on wide screens */
.project-card {
  width: min(100%, 520px);
}

/* Fluid heading sizes */
.section-title,
.projects-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}


.icon-box {
  width: 280px;
  height: 180px;
  /* same as project placeholders */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  background: #f9f9f9;
  /* optional to give same background block */
}

.icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* fit inside without cropping */
}

.proficiency-box {
  width: 300px;
  /* same width as project images */
  height: 200px;
  /* same height as project images */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  background: #fff;
  /* optional: keep consistent background */
  border-radius: 6px;
  /* optional: match project card style */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.proficiency-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* scale to fill without cropping */
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.25rem
}

.skill-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1rem 1rem 1.1rem;
  text-align: center
}

.skill-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem
}

.skill-card .micro {
  font-size: .9rem;
  color: #666;
  margin-bottom: .65rem
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center
}

.chips li {
  font-size: .7rem;
  background: #f4f6ff;
  border: 1px solid #e1e6ff;
  padding: .05rem .5rem;
  border-radius: 999px
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.badge-soon {
  background: #f0f3ff;
  color: #4450c7;
  border: 1px solid #d8defc;
}

.project-card.is-open .project-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Positioning context for image-only overlay */
.project-thumb-wrap {
  position: relative;
  overflow: hidden;
  /* clip overlay corners to image radius */
  border-radius: 10px;
  /* match .project-thumb radius */
  margin-bottom: 1rem;
  /* keep the spacing you had on the image */
}

/* Overlay sits inside .project-thumb-wrap and inherits its radius */
.project-thumb-wrap .project-overlay {
  border-radius: 10px;
}

/* Enable interaction when visible (already set on hover; keep for JS .is-open too) */
.project-card.is-open .project-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Buttons inside the overlay */
.overlay-actions {
  margin-top: .25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

/* Improve contrast of ghost buttons on dark overlay */
.project-overlay .btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #e9eef5;
  border-color: rgba(255, 255, 255, .18);
}

.project-overlay .btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
}

/* Small circular info button in the card corner */
.project-info {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  background: #1b2333;
  color: #e9eef5;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  opacity: .85;
  z-index: 5;
}

.project-info:hover,
.project-info:focus {
  opacity: 1;
  outline: 2px solid #3a66ff;
}

/* Tooltip bubble */
.project-tooltip {
  position: fixed;
  /* easy to position near cursor/target */
  max-width: 360px;
  padding: .75rem .9rem;
  border-radius: 10px;
  background: rgba(8, 12, 20, .95);
  color: #e9eef5;
  font-size: .92rem;
  line-height: 1.35;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  z-index: 9999;
  pointer-events: none;
  /* doesn’t block clicks underneath */
}

/* Optional arrow */
.project-tooltip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid rgba(8, 12, 20, .95);
  left: 16px;
  bottom: -10px;
}

.proficiencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.proficiency-card {
  background: #0e1116;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}

.proficiency-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.proficiency-icon {
  margin-bottom: 0.75rem;
}

.proficiency-icon img {
  width: 48px;
  height: 48px;
}

.icon-placeholder {
  font-size: 1.5rem;
  color: #3a66ff;
}

.proficiency-title {
  margin: 0.5rem 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #e9eef5;
}

.proficiency-level {
  font-size: 0.9rem;
  color: #b0b7c3;
  margin: 0.25rem 0;
}

.proficiency-description {
  font-size: 0.95rem;
  color: #d0d6e0;
  margin-top: 0.5rem;
}