.about-us-section {
    padding: 1.5rem 5%;
}

.who-we-are {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background-color: #141313;
    padding: 8p 0px;
    width: 100%;
}

.who-we-are h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.who-we-are p {
    color: #bbb;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.highlight {
    color:#fff;
    font-weight: 600;
}

.core-values {
    background: radial-gradient(circle at top, #111 0%, #050505 60%);
  }
  
  .core-values h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .core-values-subtitle {
    color: #9a9a9a;
    margin-bottom: 3.5rem;
  }
  
  /* GRID */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  /* CARD */
  .value-card {
    position: relative;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    );
    padding: 2.2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    overflow: hidden;
  }
  
  /* soft inner highlight */
  .value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  
  .value-card:hover::before {
    opacity: 1;
  }
  
  /* hover lift + glow */
  .value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(233, 30, 99, 0.6);
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(233, 30, 99, 0.25);
  }
  

  
  /* HEADER */
  .value-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
  }
  
  /* ICON */
  .value-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    background: transparent;
  }
  
  /* TITLE */
  .value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    max-width: 70%;
  }
  
  /* TEXT */
  .value-card p {
    color: #9a9a9a;
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 90%;
  }
  
  /* RESPONSIVE */
  @media (max-width: 992px) {
    .values-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .values-grid {
      grid-template-columns: 1fr;
    }
    .accred-logos {
        grid-template-columns: 1fr;
    }

    .accred-logo {
        height: 100px;
    }
  }
  
.mission-vision {
    background-color: #141313;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 0px;
}

.mission-vision h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-vision p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.reverse {
    direction: rtl;
    padding-bottom: 60px;
}

.reverse > * {
    direction: ltr;
}

.accreditations {
    padding-top: 3rem;
}

.accreditations h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.accred-subtitle {
    color: #888;
    margin-bottom: 3rem;
}

.accred-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.accred-logo {
    background: #978c8c;
    border-radius: 10px;
    border: 1px solid #333;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 120px;        /* fixed height */
    width: 100%;          /* same width from grid */
    padding: 10px;
}


.accred-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* keeps ratio without stretching */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.service-column h3 {
    color: var(--light-pink);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.service-column ul {
    list-style: none;
}

.service-column li {
    color: #888;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}



@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-we-are,
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .accred-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Insights page helpers */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tab-item {
    cursor: pointer;
}

.blog-loading {
    min-height: 200px;
}

@media (max-width: 768px) {

    .values-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .accred-logos {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 480px) {
    nav {
        padding: 1rem 5%;
    }

    .section {
        padding: 3rem 5%;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .accred-logos {
        grid-template-columns: 1fr;
    }
}

/* Industry CSS */

