.akur-section {
  padding: 70px 20px;
  background: #fff;
}

.akur-container {
  max-width: 1400px;
  margin: auto;
}

.akur-head {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: top;
  /* border-bottom: 3px solid #ccc; */
  /* padding-bottom: 50px; */
  text-align: justify;
}
.akur-head img {
  width: 350px;
  padding-left: 70px;
}

.akur-pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 16px;
}

.akur-head h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.akur-head p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}
.ankur-head {
  margin-top: 80px;
  text-align: center;
}
.ankur-head h3 {
  margin-bottom: 12px;
  font-size: 35px;
  color: var(--charcoal);
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.ankur-head h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  margin: 14px auto 40px;
  border-radius: 2px;
}

/* Tabs */
.akur-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.akur-tab {
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid #d5d0ca;
  background: var(--accent-bg);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.3s ease;
  position: relative;
}

.akur-tab:hover {
  background: var(--gold-tint);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 148, 58, 0.15);
}

.akur-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(212, 148, 58, 0.35);
}

/* Content */
.akur-content-wrap {
  position: relative;
  background: var(--accent-bg);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(212, 148, 58, 0.1);
}

.akur-content {
  display: none;
  grid-template-columns: 520px 1fr;
  gap: 60px;
  align-items: center;
}

.akur-content.active {
  display: grid;
}

.akur-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.akur-image img:hover {
  transform: scale(1.02);
}

.akur-text h3 {
  font-size: 32px;
  margin-bottom: 14px;
  color: var(--maroon);
  font-weight: 700;
}

.akur-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.akur-text ul {
  padding-left: 18px;
}

.akur-text li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal);
}
/* ===== PROJECT STATS SECTION ===== */
.project-stats {
  padding: 70px 20px;
  background: linear-gradient(135deg, #faf6f1 0%, #f5ede3 50%, #f9f4ee 100%);
  border-radius: 24px;
  margin-top: 50px;
  position: relative;
}

.project-stats::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 148, 58, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.project-stats::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(139, 26, 74, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats-heading {
  text-align: center;
  margin-bottom: 50px;
}

.stats-heading h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.stats-heading p {
  font-size: 15px;
  color: var(--charcoal-light);
  max-width: 500px;
  margin: 0 auto;
}

.stats-heading .accent-line {
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  margin: 16px auto 0;
  border-radius: 2px;
}

.stats-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 36px 20px 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(212, 148, 58, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.stat-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 0 0 20px 20px;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(139, 26, 74, 0.1), 0 4px 12px rgba(212, 148, 58, 0.08);
  border-color: rgba(212, 148, 58, 0.25);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-tint), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
  background: linear-gradient(135deg, var(--gold-tint), rgba(212, 148, 58, 0.15));
  transform: scale(1.05);
}

.stat-icon img {
  width: 34px;
  height: 34px;
}

.stat-info h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-info .stat-number {
  font-size: 30px;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1.1;
}

.stat-info .stat-number .count {
  font-variant-numeric: tabular-nums;
}

.stat-info .stat-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-dark);
  margin-left: 2px;
}

/* Legacy class support (earthen.php) */
.stat-left {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-tint), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.stat-item:hover .stat-left {
  background: linear-gradient(135deg, var(--gold-tint), rgba(212, 148, 58, 0.15));
  transform: scale(1.05);
}

.stat-left img {
  width: 34px;
  height: 34px;
}

.stat-right h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-right strong {
  font-size: 30px;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1.1;
}

/* ===== STATS RESPONSIVE ===== */
@media (max-width: 768px) {
  .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item {
    padding: 28px 16px 24px;
  }
  .stat-info .stat-number {
    font-size: 24px;
  }
  .stats-heading h3 {
    font-size: 26px;
  }
  .project-stats {
    padding: 50px 0;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .stats-wrap {
    grid-template-columns: 1fr;
  }
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .akur-content { grid-template-columns: 1fr; gap: 30px; }
  .akur-content-wrap { padding: 28px; }
  .akur-head { flex-direction: column; text-align: left; }
  .akur-head h2 { font-size: 36px; }
  .akur-head img { width: 200px; padding-left: 0; margin-top: 20px; }
}

/* ================= PHONE ================= */
@media (max-width: 768px) {
  .akur-section { padding: 50px 16px; }
  .akur-head h2 { font-size: 28px; }
  .akur-head p { font-size: 14px; }
  .akur-head img { width: 160px; }
  .akur-tabs { gap: 8px; }
  .akur-tab { padding: 10px 18px; font-size: 13px; }
  .akur-text h3 { font-size: 24px; }
  .ankur-head h3 { font-size: 24px; }
  .akur-content-wrap { padding: 20px; border-radius: 16px; }
}

/* ================= SMALL PHONE ================= */
@media (max-width: 480px) {
  .akur-head h2 { font-size: 24px; }
  .ankur-head h3 { font-size: 20px; }
}
