:root {
    /* Light Theme */
    --about-bg:  #ffffff;
    --about-text:  #111111;
    --about-accent:  #238481;
    --about-muted:  #555555;
    --about-card-bg: #f3f3f3;
    --about-card-border:  #e5e5e5;
    --about-icon-bg: #111111;
    --about-icon-color: #ffffff;
    --about-gradient: #fafafa;
    --about-blur-bg: rgba(0, 0, 0, 0.02);
    --about-hover-border: #cccccc;
  }
  
  body.dark-mode {
    /* Dark Theme */
    --about-bg:  #0f0f0f;
    --about-text:  #ffffff;
    --about-accent:  #238481;
    --about-muted:  #bbbbbb;
    --about-card-bg: #1c1c1c;
    --about-card-border: #333333;
    --about-icon-bg: #ffffff;
    --about-icon-color: #000000;
    --about-gradient:  rgba(15, 15, 15, 0.9);
    --about-blur-bg: rgba(255, 255, 255, 0.05);
    --about-hover-border: rgba(255, 255, 255, 0.3);
  }
  
  /* ============================= */
  /* 🌍 About Section Styles       */
  /* ============================= */
  .about-section {
    position: relative;
    padding: 5rem 1.5rem;
    overflow: hidden;
    background: var(--about-bg);
    color: var(--about-text);
    transition: background 0.4s ease, color 0.4s ease;
  }
  
  .bg-gradient {
    position: absolute;
    background: var(--about-bg);
    z-index: 0;
  }
  
  .about-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
  }
  
  .badge {
    background: var(--about-blur-bg);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    color: var(--about-accent);
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--about-accent);
  }
  
  .desc {
    color: var(--about-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  /* ============================= */
  /* 📊 Stats Section              */
  /* ============================= */
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--about-card-border);
    padding-top: 1.5rem;
    gap: 1rem;
  }
  
  .stat .num {
    font-size: 2rem;
    font-weight: bold;
    color: var(--about-accent);
  }
  
  .stat .label {
    color: var(--about-muted);
    font-size: 0.9rem;
  }
  
  /* ============================= */
  /* 💎 Value Cards                */
  /* ============================= */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .value-card {
    background: var(--about-card-bg);
    border: 1px solid var(--about-card-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    border-color: var(--about-hover-border);
  }
  
  .value-card .icon {
    width: 3rem;
    height: 3rem;
    background: var(--about-icon-bg);
    color: var(--about-icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .value-card h3 {
    margin-bottom: 0.5rem;
  }
  
  .value-card p {
    color: var(--about-muted);
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* ============================= */
  /* 🖼️ Images Section             */
  /* ============================= */
  .images-grid {
    gap: 1.5rem;
    margin-top: 4rem;
  }
  
  .img-box {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    padding: 20px;
  }
  
  .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .img-box:hover img {
    transform: scale(1.1);
  }
  
  /* ============================= */
  /* 📱 Responsive                */
  /* ============================= */
  @media (max-width: 900px) {
    .about-grid {
      grid-template-columns: 1fr;
    }
    .values-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
