/* ============================================
   ABOUT — THEME 5: NEON NIGHTS (STRUCTURAL DARK)
   ============================================ */

:root {
  /* Colors matching rest of Theme 5 (hero5 & services5) */
  --ebabo20-bg-color: #070b16;
  --ebabo20-card-bg: rgba(15, 23, 52, 0.65);
  --ebabo20-primary: #00e5ff;
  --ebabo20-accent-purple: #a855f7;
  --ebabo20-accent-pink: #f472b6;
  --ebabo20-primary-light: rgba(0, 229, 255, 0.06);
  --ebabo20-text-dark: #e2e8f0;
  --ebabo20-text-muted: #94a3b8;
  --ebabo20-border-color: rgba(168, 85, 247, 0.18);
  --ebabo20-border-hover: #00e5ff;
  
  --ebabo20-radius: 14px;
  --ebabo20-badge-radius: 50px;
  --ebabo20-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  --ebabo20-shadow-hover: 0 20px 50px rgba(0, 229, 255, 0.25);
  --ebabo20-font-heading: 'El Messiri', sans-serif;
  --ebabo20-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.ebabo20-section {
  position: relative;
  background-color: var(--ebabo20-bg-color);
  color: var(--ebabo20-text-dark);
  padding: 6.5rem 0;
  overflow: hidden;
}

/* Background Animated Neon Orbs */
.ebabo20-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ebabo20-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: neonFloat 10s ease-in-out infinite alternate;
}

.ebabo20-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
  top: -150px;
  right: -150px;
}

.ebabo20-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation-delay: -5s;
}

@keyframes neonFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(35px) scale(1.1); }
}

.ebabo20-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 229, 255, 0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 229, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}

.ebabo20-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.ebabo20-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 4.8rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ebabo20-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: var(--ebabo20-badge-radius);
  color: var(--ebabo20-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.ebabo20-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--ebabo20-text-dark);
  line-height: 1.35;
  margin-bottom: 1.2rem;
}

.ebabo20-title-highlight {
  background: linear-gradient(135deg, #00e5ff 0%, #a855f7 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ebabo20-subtitle {
  font-size: 1.1rem;
  color: var(--ebabo20-text-muted);
  line-height: 1.8;
}

/* Grid Layout */
.ebabo20-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Visual Showcase */
.ebabo20-visual-col {
  position: relative;
}

.ebabo20-img-wrapper {
  position: relative;
  border-radius: var(--ebabo20-radius);
  overflow: hidden;
  box-shadow: var(--ebabo20-shadow);
  border: 1px solid var(--ebabo20-border-color);
  background: var(--ebabo20-card-bg);
  backdrop-filter: blur(14px);
  transition: transform 0.5s var(--ebabo20-ease), box-shadow 0.5s var(--ebabo20-ease), border-color 0.5s var(--ebabo20-ease);
}

.ebabo20-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00e5ff, #a855f7, #f472b6);
  z-index: 2;
}

.ebabo20-img-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: var(--ebabo20-shadow-hover);
  border-color: var(--ebabo20-border-hover);
}

.ebabo20-main-img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  display: block;
  filter: brightness(90%) contrast(108%);
  transition: transform 0.6s var(--ebabo20-ease);
}

.ebabo20-img-wrapper:hover .ebabo20-main-img {
  transform: scale(1.05);
  filter: brightness(100%) contrast(115%);
}

.ebabo20-decor-frame {
  position: absolute;
  inset: -12px;
  border: 1px dashed rgba(168, 85, 247, 0.25);
  border-radius: calc(var(--ebabo20-radius) + 8px);
  z-index: -1;
  pointer-events: none;
}

.ebabo20-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 11, 22, 0.85) 100%);
  pointer-events: none;
}

/* Floating Dark Glass Badges */
.ebabo20-badge-experience {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(15, 23, 52, 0.85);
  backdrop-filter: blur(16px);
  padding: 1.1rem 1.6rem;
  border-radius: var(--ebabo20-radius);
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  z-index: 3;
}

.ebabo20-exp-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00e5ff, #a855f7);
  color: #070b16;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.ebabo20-exp-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #00e5ff;
  line-height: 1;
}

.ebabo20-exp-lbl {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 600;
  margin-top: 0.2rem;
}

.ebabo20-float-card {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(15, 23, 52, 0.85);
  backdrop-filter: blur(16px);
  padding: 0.85rem 1.3rem;
  border-radius: var(--ebabo20-radius);
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 3;
}

.ebabo20-fc-icon {
  width: 40px;
  height: 40px;
  background: rgba(244, 114, 182, 0.15);
  color: #f472b6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ebabo20-fc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
}

.ebabo20-fc-sub {
  font-size: 0.78rem;
  color: #a855f7;
  font-weight: 600;
}

/* Info Column */
.ebabo20-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ebabo20-lead-box {
  background: var(--ebabo20-card-bg);
  backdrop-filter: blur(14px);
  border-right: 4px solid var(--ebabo20-primary);
  padding: 1.5rem 1.8rem;
  border-radius: 16px;
  border: 1px solid var(--ebabo20-border-color);
  border-right-width: 4px;
  border-right-color: var(--ebabo20-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.ebabo20-lead-icon {
  font-size: 1.8rem;
  color: var(--ebabo20-primary);
  flex-shrink: 0;
}

.ebabo20-lead-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #f1f5f9;
  font-weight: 600;
}

/* Dark Glass Tabs */
.ebabo20-tabs-wrapper {
  background: var(--ebabo20-card-bg);
  backdrop-filter: blur(14px);
  border-radius: var(--ebabo20-radius);
  padding: 1.8rem;
  border: 1px solid var(--ebabo20-border-color);
  box-shadow: var(--ebabo20-shadow);
}

.ebabo20-tabs-nav {
  display: flex;
  gap: 0.8rem;
  background: rgba(7, 11, 22, 0.6);
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.4rem;
}

.ebabo20-tab-btn {
  flex: 1;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ebabo20-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s var(--ebabo20-ease);
  background: transparent;
}

.ebabo20-tab-btn:hover {
  color: var(--ebabo20-primary);
}

.ebabo20-tab-btn.ebabo20-tab-active {
  background: rgba(0, 229, 255, 0.15);
  color: #00e5ff;
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

.ebabo20-tab-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.ebabo20-tab-panel.ebabo20-panel-active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ebabo20-panel-desc {
  font-size: 1rem;
  color: var(--ebabo20-text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.ebabo20-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ebabo20-features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: #f1f5f9;
}

.ebabo20-features-list li i {
  color: var(--ebabo20-primary);
  font-size: 1.15rem;
}

/* Stats Cards */
.ebabo20-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.ebabo20-stat-card {
  background: var(--ebabo20-card-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--ebabo20-border-color);
  border-radius: var(--ebabo20-radius);
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.4s var(--ebabo20-ease);
}

.ebabo20-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ebabo20-shadow-hover);
  border-color: var(--ebabo20-border-hover);
}

.ebabo20-sc-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.7rem auto;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.1);
  color: #00e5ff;
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.ebabo20-sc-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
}

.ebabo20-sc-plus {
  font-size: 1.3rem;
  font-weight: 700;
  color: #a855f7;
}

.ebabo20-sc-lbl {
  display: block;
  font-size: 0.85rem;
  color: var(--ebabo20-text-muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* Action Bar */
.ebabo20-action-bar {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.ebabo20-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00e5ff 0%, #a855f7 100%);
  color: #070b16;
  font-weight: 800;
  border-radius: var(--ebabo20-badge-radius);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
  transition: all 0.4s var(--ebabo20-ease);
}

.ebabo20-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.5);
}

.ebabo20-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.8rem;
  background: transparent;
  color: #e2e8f0;
  font-weight: 700;
  border-radius: var(--ebabo20-badge-radius);
  border: 1px solid rgba(0, 229, 255, 0.25);
  transition: all 0.4s var(--ebabo20-ease);
}

.ebabo20-btn-outline:hover {
  border-color: #a855f7;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 992px) {
  .ebabo20-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 600px) {
  .ebabo20-stats-grid {
    grid-template-columns: 1fr;
  }
  .ebabo20-action-bar {
    flex-direction: column;
  }
  .ebabo20-btn-primary, .ebabo20-btn-outline {
    width: 100%;
    justify-content: center;
  }
}
