/* ============================================
   ABOUT — THEME 1: TECH LIGHT (GLASSMORPHIC HOLOGRAM)
   ============================================ */

:root {
  --ebabo20-bg-color: #f0f4f9;
  --ebabo20-card-bg: rgba(255, 255, 255, 0.75);
  --ebabo20-primary: #0084ff;
  --ebabo20-primary-dark: #0056b3;
  --ebabo20-accent: #7b2cbf;
  --ebabo20-primary-light: rgba(0, 132, 255, 0.08);
  --ebabo20-text-dark: #0f172a;
  --ebabo20-text-muted: #64748b;
  --ebabo20-border-color: rgba(0, 132, 255, 0.18);
  --ebabo20-border-hover: rgba(0, 132, 255, 0.5);
  
  --ebabo20-radius: 24px;
  --ebabo20-badge-radius: 50px;
  --ebabo20-shadow: 0 20px 40px rgba(0, 132, 255, 0.08);
  --ebabo20-shadow-hover: 0 30px 60px rgba(0, 132, 255, 0.2);
  --ebabo20-font-heading: 'El Messiri', sans-serif;
  --ebabo20-ease: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ebabo20-section {
  position: relative;
  background-color: var(--ebabo20-bg-color);
  padding: 4rem 0;
  overflow: hidden;
}

/* Background animated glass mesh */
.ebabo20-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ebabo20-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: floatOrb 12s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.ebabo20-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #0084ff 0%, rgba(0, 132, 255, 0) 70%);
  top: -100px;
  right: -100px;
}

.ebabo20-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #7b2cbf 0%, rgba(123, 44, 191, 0) 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: -6s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.1); }
  100% { transform: translate(-30px, 50px) scale(0.95); }
}

.ebabo20-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 132, 255, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 132, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

.ebabo20-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.ebabo20-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ebabo20-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.4rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--ebabo20-border-color);
  border-radius: var(--ebabo20-badge-radius);
  color: var(--ebabo20-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 132, 255, 0.1);
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 8px 20px rgba(0, 132, 255, 0.1); }
  100% { box-shadow: 0 12px 28px rgba(0, 132, 255, 0.25); }
}

.ebabo20-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--ebabo20-text-dark);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.ebabo20-title-highlight {
  background: linear-gradient(135deg, #0084ff 0%, #7b2cbf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.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 Column */
.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 rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  transition: transform 0.5s var(--ebabo20-ease), box-shadow 0.5s var(--ebabo20-ease);
}

.ebabo20-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ebabo20-ease);
}

.ebabo20-img-wrapper:hover .ebabo20-main-img {
  transform: scale(1.06);
}

.ebabo20-decor-frame {
  position: absolute;
  inset: -12px;
  border: 2px dashed rgba(0, 132, 255, 0.3);
  border-radius: calc(var(--ebabo20-radius) + 10px);
  z-index: -1;
  pointer-events: none;
  animation: rotateFrame 30s linear infinite;
}

@keyframes rotateFrame {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ebabo20-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.5) 100%);
  pointer-events: none;
}

/* Floating Badges */
.ebabo20-badge-experience {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  padding: 1.1rem 1.6rem;
  border-radius: 20px;
  border: 1px solid var(--ebabo20-border-color);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.ebabo20-exp-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0084ff, #7b2cbf);
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 132, 255, 0.35);
}

.ebabo20-exp-text {
  display: flex;
  flex-direction: column;
}

.ebabo20-exp-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ebabo20-text-dark);
  line-height: 1;
}

.ebabo20-exp-lbl {
  font-size: 0.85rem;
  color: var(--ebabo20-text-muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

.ebabo20-float-card {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  padding: 0.9rem 1.3rem;
  border-radius: 20px;
  border: 1px solid var(--ebabo20-border-color);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 3;
  animation: floatCard 5s ease-in-out infinite alternate-reverse;
}

.ebabo20-fc-icon {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  color: #ffb703;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ebabo20-fc-info {
  display: flex;
  flex-direction: column;
}

.ebabo20-fc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ebabo20-text-dark);
}

.ebabo20-fc-sub {
  font-size: 0.78rem;
  color: var(--ebabo20-primary);
  font-weight: 600;
}

/* Info Column */
.ebabo20-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ebabo20-lead-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-right: 4px solid var(--ebabo20-primary);
  padding: 1.6rem 1.8rem;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 132, 255, 0.06);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.ebabo20-lead-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmerPass 4s infinite;
}

@keyframes shimmerPass {
  100% { left: 100%; }
}

.ebabo20-lead-icon {
  font-size: 1.8rem;
  color: var(--ebabo20-primary);
  flex-shrink: 0;
}

.ebabo20-lead-text {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ebabo20-text-dark);
  font-weight: 600;
}

/* Tabs */
.ebabo20-tabs-wrapper {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  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: #f1f5f9;
  padding: 0.4rem;
  border-radius: 14px;
  margin-bottom: 1.4rem;
}

.ebabo20-tab-btn {
  flex: 1;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  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: var(--ebabo20-primary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 132, 255, 0.35);
}

.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(10px); }
  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: var(--ebabo20-text-dark);
}

.ebabo20-features-list li i {
  color: var(--ebabo20-primary);
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.ebabo20-features-list li:hover i {
  transform: scale(1.25) rotate(10deg);
}

/* Stats Cards */
.ebabo20-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.ebabo20-stat-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  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.03);
  transition: all 0.4s var(--ebabo20-ease);
  position: relative;
  overflow: hidden;
}

.ebabo20-stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0084ff, #7b2cbf);
  transition: width 0.4s var(--ebabo20-ease);
}

.ebabo20-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ebabo20-shadow-hover);
  border-color: var(--ebabo20-border-hover);
}

.ebabo20-stat-card:hover::before {
  width: 100%;
}

.ebabo20-sc-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.7rem auto;
  border-radius: 50%;
  background: var(--ebabo20-primary-light);
  color: var(--ebabo20-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.4s var(--ebabo20-ease);
}

.ebabo20-stat-card:hover .ebabo20-sc-icon {
  transform: scale(1.15) rotate(-10deg);
  background: var(--ebabo20-primary);
  color: #ffffff;
}

.ebabo20-sc-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ebabo20-text-dark);
}

.ebabo20-sc-plus {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ebabo20-primary);
}

.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, var(--ebabo20-primary) 0%, var(--ebabo20-primary-dark) 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: var(--ebabo20-badge-radius);
  box-shadow: 0 12px 30px rgba(0, 132, 255, 0.35);
  transition: all 0.4s var(--ebabo20-ease);
  position: relative;
  overflow: hidden;
}

.ebabo20-btn-primary::after {
  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;
}

.ebabo20-btn-primary:hover::after {
  left: 100%;
}

.ebabo20-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 132, 255, 0.5);
}

.ebabo20-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.8rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ebabo20-text-dark);
  font-weight: 700;
  border-radius: var(--ebabo20-badge-radius);
  border: 1.5px solid var(--ebabo20-border-color);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ebabo20-ease);
}

.ebabo20-btn-outline:hover {
  border-color: var(--ebabo20-primary);
  color: var(--ebabo20-primary);
  background: #ffffff;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 992px) {
  .ebabo20-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@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;
  }
}
