/* HERO - breakout style */

a{
    text-decoration: none;
    color: black;
}

.navheader{
    padding: 5% 20%;
    background-color: #2f4d41;
    text-align: center;
    color: #ffff;
}


.nav-others {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  gap: 20px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.192);
  color: black;
  transition: all 0.4s ease;
}


/* test */

.about-expertise {
  position: relative;
  padding: 70px 0;
  background: var(--page-bg);
  overflow: hidden;
}

/* GRID LAYOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* IMAGES */
.about-images {
  display: grid;
  gap: 20px;
}
.about-img-1 img {
  width: 80%;
  height: 300px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-img-2 img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* TEXT AREA */
.about-heading h5.section-label {
  color: var(--bg);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}
.about-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--bg);
  line-height: 1.2;
  margin: 10px 0 14px;
}

.about-heading p {
  color: #444;
  margin-bottom: 24px;
}

/* PROGRESS BARS */
.progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.progress-item .label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 6px;
}
.bar {
  width: 100%;
  height: 8px;
  background: #e5ebe7;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.bar .fill {
  width: var(--w);
  height: 100%;
  background: var(--bg);
  border-radius: 10px;
  animation: fillBar 1.6s ease forwards;
}
@keyframes fillBar {
  from { width: 0; } to { width: var(--w); }
}

/* BADGE */
.about-badge {
  position: absolute;
  left: 45%;
  top: 40%;
  transform: translate(-50%, -20%);
  width: 120px;
  height: 120px;
  background: var(--bg);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(45, 77, 65, 0.18);
}
@media (max-width: 900px) {
  .about-badge { display: none; }
}

/* BUTTON */
.about-btn {
  margin-top: 24px;
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
  margin-top: 60px;
}
.stat h3 {
  font-size: 28px;
  color: var(--bg);
  margin-bottom: 6px;
}
.stat p {
  font-size: 14px;
  color: #555;
}
@media (max-width: 700px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
}

