/* ============================================================
   CODZFLOW IT SOLUTIONS — EXPERTISE PAGE CUSTOM STYLES
   Color Scheme:
     - Dark Brown:    #2F1F19 (main bg)
     - Card Brown:    #3a2a22 (card bg)
     - Golden Yellow: #FFF669 (accent)
     - White text at varying opacities
   ============================================================ */


/* ============================================================
   1. EXPERTISE HERO SECTION
   ============================================================ */
.exp-hero-area {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.exp-hero-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(47, 31, 25, 0.25) 0%,
    rgba(47, 31, 25, 0.88) 100%);
  z-index: 1;
}

.exp-hero-content {
  position: relative;
  z-index: 2;
}

.exp-hero-title {
  font-family: var(--tp-ff-teko), 'Teko', sans-serif;
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 700;
  line-height: 1;
  color: #FFF669;
  text-transform: uppercase;
  letter-spacing: -3px;
  margin-bottom: 25px;
  animation: expHeroTitleIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@keyframes expHeroTitleIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.exp-hero-title-fill {
  color: #FFF669;
}

.exp-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 15px;
  animation: expHeroTitleIn 1s 0.15s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

/* Breadcrumb */
.exp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: expHeroTitleIn 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.exp-breadcrumb li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.exp-breadcrumb li a {
  color: #FFF669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.exp-breadcrumb li a:hover {
  color: #fff;
}

.exp-breadcrumb li .separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
  font-size: 12px;
}

.exp-breadcrumb li .separator::before {
  content: '/';
}


/* ============================================================
   2. TECH STACK SECTION
   ============================================================ */
.exp-tech {
  background-color: #2F1F19;
  padding: 120px 0;
  overflow-x: hidden;
}

/* --- Tab Buttons --- */
.exp-tech-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.exp-tech-tab {
  padding: 10px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 246, 105, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Teko', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.exp-tech-tab:hover {
  border-color: #FFF669;
  color: #FFF669;
}

.exp-tech-tab.active {
  background: #FFF669;
  color: #2F1F19;
  border-color: #FFF669;
  font-weight: 600;
}

/* --- Tech Grid --- */
.exp-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

/* --- Tech Item Card --- */
.exp-tech-item {
  background: #3a2a22;
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.3),
    -2px -2px 8px rgba(255, 255, 255, 0.02);
}

.exp-tech-item:hover {
  transform: translateY(-4px);
  border-bottom-color: #FFF669;
}

.exp-tech-icon {
  height: 48px;
  margin-bottom: 10px;
  opacity: 0.85;
  object-fit: contain;
  display: inline-block;
}

.exp-tech-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.exp-tech-name {
  font-family: 'Teko', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}


/* ============================================================
   3. PROFICIENCY BARS SECTION
   ============================================================ */
.exp-skills {
  background-color: #FFF669;
  padding: 120px 0;
  overflow-x: hidden;
}

.exp-skill-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.exp-skill-row:last-child {
  margin-bottom: 0;
}

.exp-skill-label {
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #2F1F19;
  min-width: 250px;
  letter-spacing: 1px;
}

.exp-skill-bar {
  flex: 1;
  height: 12px;
  background: rgba(47, 31, 25, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

.exp-skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #2F1F19, #5a3a30);
  border-radius: 6px;
  width: 0%;
  transition: width 1.5s ease-out;
}

.exp-skill-pct {
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2F1F19;
  min-width: 50px;
  text-align: right;
}


/* ============================================================
   4. DEVELOPMENT PROCESS SECTION (Timeline)
   ============================================================ */
.exp-process {
  background-color: #2F1F19;
  padding: 120px 0;
  overflow-x: hidden;
}

.exp-process-step {
  position: relative;
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.exp-process-step:last-child {
  margin-bottom: 0;
}

/* --- Step Number Circle --- */
.exp-process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF669, #e6de50);
  color: #2F1F19;
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255, 246, 105, 0.3);
  position: relative;
  z-index: 2;
}

/* --- Connector Line --- */
.exp-process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 60px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(
    to bottom,
    #FFF669,
    rgba(255, 246, 105, 0.1)
  );
  z-index: 1;
}

/* --- Content Card --- */
.exp-process-content {
  background: #3a2a22;
  padding: 35px 40px;
  border-radius: 18px;
  flex: 1;
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.3),
    -2px -2px 8px rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.exp-process-step:hover .exp-process-content {
  transform: translateX(8px);
  border-left-color: #FFF669;
}

.exp-process-title {
  font-family: 'Teko', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.exp-process-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}


/* ============================================================
   5. CERTIFICATIONS SECTION
   ============================================================ */
.exp-certs {
  background-color: #3a2a22;
  padding: 120px 0;
  overflow-x: hidden;
}

.exp-certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.exp-cert-card {
  background: #2F1F19;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.3),
    -2px -2px 8px rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.exp-cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-top-color: #FFF669;
}

.exp-cert-icon {
  font-size: 56px;
  color: #FFF669;
  margin-bottom: 15px;
  line-height: 1;
  display: inline-block;
}

.exp-cert-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.exp-cert-title {
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}

.exp-cert-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}


/* ============================================================
   6. TOOLKIT ECOSYSTEM SECTION
   ============================================================ */
.exp-tools {
  background-color: #FFF669;
  padding: 120px 0;
  overflow-x: hidden;
}

.exp-tools-group {
  margin-bottom: 40px;
}

.exp-tools-group:last-child {
  margin-bottom: 0;
}

.exp-tools-cat-title {
  font-family: 'Teko', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: #2F1F19;
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 3px solid #2F1F19;
  font-weight: 600;
  letter-spacing: 1px;
}

.exp-tools-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.exp-tool-pill {
  background: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  color: #2F1F19;
  border: 1px solid rgba(47, 31, 25, 0.1);
  transition: all 0.3s ease;
  cursor: default;
  font-weight: 500;
}

.exp-tool-pill:hover {
  background: #2F1F19;
  color: #ffffff;
  transform: translateY(-2px);
  border-color: #2F1F19;
}


/* ============================================================
   7. STATS SECTION
   ============================================================ */
.exp-stats {
  background-color: #2F1F19;
  padding: 100px 0;
  overflow-x: hidden;
}

.exp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.exp-stat-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 16px;
  background: #3a2a22;
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.3),
    -2px -2px 8px rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.exp-stat-card:hover {
  transform: translateY(-4px);
}

.exp-stat-number {
  font-family: 'Teko', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #FFF669;
  line-height: 1;
  margin-bottom: 8px;
}

.exp-stat-label {
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  font-weight: 400;
}


/* ============================================================
   8. CTA SECTION
   ============================================================ */
.exp-cta {
  position: relative;
  padding: 140px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.exp-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(47, 31, 25, 0.9) 0%,
    rgba(47, 31, 25, 0.95) 100%
  );
  z-index: -1;
}

.exp-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.exp-cta-title {
  font-family: 'Teko', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #FFF669;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.exp-cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.exp-cta-btn {
  display: inline-block;
  position: relative;
  padding: 16px 50px;
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2F1F19;
  background: #FFF669;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow:
    0 4px 15px rgba(255, 246, 105, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

/* --- Shimmer Effect --- */
.exp-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.exp-cta-btn:hover::before {
  left: 100%;
}

.exp-cta-btn:hover {
  background: #ffe94a;
  box-shadow:
    0 8px 25px rgba(255, 246, 105, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}


/* ============================================================
   9. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- 1399px --- */
@media (max-width: 1399px) {
  .exp-hero-title {
    font-size: clamp(52px, 11vw, 160px);
  }

  .exp-process-content {
    padding: 30px 35px;
  }

  .exp-cta-title {
    font-size: 64px;
  }

  .exp-stat-number {
    font-size: 54px;
  }

  /* Section Spacing Overrides */
  .exp-tech,
  .exp-skills,
  .exp-process,
  .exp-certs,
  .exp-tools {
    padding: 100px 0 !important;
  }

  .exp-stats {
    padding: 80px 0 !important;
  }

  .exp-cta {
    padding: 120px 0 !important;
  }
}

/* --- 1199px --- */
@media (max-width: 1199px) {
  .exp-tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .exp-process-step {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .exp-process-step:not(:last-child)::after {
    left: 29px;
    top: 60px;
    height: calc(100% + 0px);
  }

  .exp-process-step:hover .exp-process-content {
    transform: translateX(0) translateY(-4px);
  }

  .exp-certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-cta-title {
    font-size: 58px;
  }

  /* Section Spacing Overrides */
  .exp-tech,
  .exp-skills,
  .exp-process,
  .exp-certs,
  .exp-tools {
    padding: 90px 0 !important;
  }

  .exp-stats {
    padding: 70px 0 !important;
  }

  .exp-cta {
    padding: 100px 0 !important;
  }
}

/* --- 991px --- */
@media (max-width: 991px) {
  .exp-hero-title {
    font-size: clamp(52px, 10vw, 120px);
  }

  .exp-skill-label {
    min-width: 180px;
  }

  .exp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-stat-number {
    font-size: 48px;
  }

  .exp-process-step:not(:last-child)::after {
    display: none;
  }

  .exp-cta-title {
    font-size: 50px;
  }

  /* Section Spacing Overrides */
  .exp-tech,
  .exp-skills,
  .exp-process,
  .exp-certs,
  .exp-tools {
    padding: 80px 0 !important;
  }

  .exp-stats {
    padding: 60px 0 !important;
  }

  .exp-cta {
    padding: 80px 0 !important;
  }
}

/* --- 767px --- */
@media (max-width: 767px) {
  .exp-hero-title {
    font-size: clamp(48px, 10vw, 80px);
  }

  .exp-hero-subtitle {
    font-size: 15px;
  }

  .exp-hero-content {
    padding: 100px 15px 60px;
  }

  .exp-tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .exp-tech-tab {
    padding: 8px 20px;
    font-size: 13px;
  }

  /* Skills stack vertically */
  .exp-skill-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
  }

  .exp-skill-label {
    min-width: unset;
    width: 100%;
  }

  .exp-skill-bar {
    width: 100%;
  }

  .exp-skill-pct {
    min-width: unset;
    text-align: left;
  }

  .exp-tools-pills {
    gap: 8px;
  }

  .exp-process-step {
    gap: 15px;
    margin-bottom: 30px;
  }

  .exp-process-content {
    padding: 25px;
  }

  .exp-process-title {
    font-size: 22px;
  }

  .exp-cta-title {
    font-size: 42px;
  }

  .exp-cta-btn {
    padding: 14px 40px;
    font-size: 16px;
  }

  /* BR handling — hide at mobile */
  br {
    display: none;
  }

  /* Section Spacing Overrides */
  .exp-tech,
  .exp-skills,
  .exp-process,
  .exp-certs,
  .exp-tools {
    padding: 70px 0 !important;
  }

  .exp-stats {
    padding: 50px 0 !important;
  }

  .exp-cta {
    padding: 70px 0 !important;
  }
}

/* --- 575px --- */
@media (max-width: 575px) {
  .exp-hero-title {
    font-size: clamp(40px, 10vw, 52px);
    letter-spacing: -1px;
  }

  .exp-hero-subtitle {
    font-size: 14px;
  }

  .exp-hero-breadcrumb {
    font-size: 12px;
  }

  .exp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .exp-tech-item {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .exp-tech-icon {
    height: 38px;
  }

  .exp-tech-tabs {
    gap: 8px;
    margin-bottom: 35px;
  }

  .exp-tech-tab {
    padding: 7px 16px;
    font-size: 12px;
  }

  .exp-skill-bar {
    height: 10px;
  }

  .exp-process-num {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .exp-process-content {
    padding: 20px;
    border-radius: 14px;
  }

  .exp-process-title {
    font-size: 20px;
  }

  .exp-process-desc {
    font-size: 14px;
  }

  .exp-certs-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .exp-cert-card {
    padding: 28px 20px;
  }

  .exp-cert-icon {
    font-size: 44px;
  }

  .exp-cert-icon img {
    width: 44px;
    height: 44px;
  }

  .exp-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .exp-stat-card {
    padding: 30px 15px;
  }

  .exp-stat-number {
    font-size: 42px;
  }

  .exp-stat-label {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .exp-tools-cat-title {
    font-size: 19px;
  }

  .exp-tool-pill {
    padding: 6px 16px;
    font-size: 12px;
  }

  .exp-cta-title {
    font-size: 36px;
  }

  .exp-cta-text {
    font-size: 14px;
  }

  .exp-cta-btn {
    padding: 12px 35px;
    font-size: 15px;
  }

  /* Section Spacing Overrides */
  .exp-tech,
  .exp-skills,
  .exp-process,
  .exp-certs,
  .exp-tools {
    padding: 60px 0 !important;
  }

  .exp-stats {
    padding: 45px 0 !important;
  }

  .exp-cta {
    padding: 60px 0 !important;
  }
}

/* --- 400px --- */
@media (max-width: 400px) {
  .exp-hero-title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .exp-hero-content {
    padding: 80px 10px 50px;
  }

  .exp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .exp-tech-item {
    padding: 16px 10px;
    border-radius: 10px;
  }

  .exp-tech-icon {
    height: 32px;
    margin-bottom: 8px;
  }

  .exp-tech-name {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .exp-process-step {
    gap: 12px;
    margin-bottom: 24px;
  }

  .exp-process-num {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .exp-process-content {
    padding: 16px;
    border-radius: 12px;
  }

  .exp-process-title {
    font-size: 18px;
  }

  .exp-process-desc {
    font-size: 13px;
    line-height: 1.7;
  }

  .exp-cert-card {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .exp-cert-title {
    font-size: 16px;
  }

  .exp-stat-number {
    font-size: 38px;
  }

  .exp-stat-label {
    font-size: 13px;
  }

  .exp-tools-group {
    margin-bottom: 30px;
  }

  .exp-tools-cat-title {
    font-size: 17px;
    padding-left: 12px;
  }

  .exp-tool-pill {
    padding: 5px 14px;
    font-size: 11px;
    border-radius: 16px;
  }

  .exp-cta-title {
    font-size: 30px;
  }

  .exp-cta-text {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .exp-cta-btn {
    padding: 11px 30px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  /* Section Spacing Overrides */
  .exp-tech,
  .exp-skills,
  .exp-process,
  .exp-certs,
  .exp-tools {
    padding: 50px 0 !important;
  }

  .exp-stats {
    padding: 40px 0 !important;
  }

  .exp-cta {
    padding: 50px 0 !important;
  }
}


/* ============================================================
   10. OVERFLOW PREVENTION (All Sections)
   ============================================================ */
.exp-hero-area,
.exp-tech,
.exp-skills,
.exp-process,
.exp-certs,
.exp-tools,
.exp-stats,
.exp-cta {
  overflow-x: hidden;
}


/* ============================================================
   11. CUSTOM SCROLLBAR (Scrollable Containers)
   ============================================================ */
.exp-tech-grid::-webkit-scrollbar,
.exp-tools-pills::-webkit-scrollbar,
.exp-certs-grid::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.exp-tech-grid::-webkit-scrollbar-track,
.exp-tools-pills::-webkit-scrollbar-track,
.exp-certs-grid::-webkit-scrollbar-track {
  background: rgba(47, 31, 25, 0.2);
  border-radius: 3px;
}

.exp-tech-grid::-webkit-scrollbar-thumb,
.exp-tools-pills::-webkit-scrollbar-thumb,
.exp-certs-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 246, 105, 0.4);
  border-radius: 3px;
}

.exp-tech-grid::-webkit-scrollbar-thumb:hover,
.exp-tools-pills::-webkit-scrollbar-thumb:hover,
.exp-certs-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 246, 105, 0.6);
}

/* Firefox scrollbar support */
.exp-tech-grid,
.exp-tools-pills,
.exp-certs-grid {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 246, 105, 0.4) rgba(47, 31, 25, 0.2);
}


/* ============================================================
   12. SECTION TITLE PATTERN (Reusable)
   ============================================================ */
.exp-section-tag {
  font-family: 'Teko', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #FFF669;
  margin-bottom: 10px;
  display: inline-block;
}

/* Alternate tag color for yellow sections */
.exp-skills .exp-section-tag,
.exp-tools .exp-section-tag {
  color: #2F1F19;
}

.exp-section-title {
  font-family: 'Teko', sans-serif;
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 15px;
}

/* Alternate title color for yellow sections */
.exp-skills .exp-section-title,
.exp-tools .exp-section-title {
  color: #2F1F19;
}

.exp-section-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* Alternate desc color for yellow sections */
.exp-skills .exp-section-desc,
.exp-tools .exp-section-desc {
  color: rgba(47, 31, 25, 0.55);
}


/* ============================================================
   END OF EXPERTISE PAGE STYLES
   ============================================================ */
