/* ============================================================
   INDEX CSS — LEAP RD&O
   Includes: CSS reset, brand variables, body, animations,
   hero, about, capabilities, industries, clients, FAQ,
   team, partners, resources, contact box, and responsive
   ============================================================ */

/* ── Brand tokens ── */
:root {
    --primary: #1d1d1d;
    --primary-light: #3a3a3a;
    --accent: #37b3e3;
    --accent-warm: #cecece;
    --text-dark: #1d1d1d;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
}

/* ── Reset ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Base body ── */
body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: #f5f5f5;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 70% 20%, rgba(55, 179, 227, 0.18) 0%, transparent 35%),
        radial-gradient(circle at 30% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow:
            0 0 10px #37b3e3,
            0 0 20px #37b3e3,
            0 0 40px #37b3e3;
    }
    50% {
        text-shadow:
            0 0 15px #37b3e3,
            0 0 30px #37b3e3,
            0 0 60px #37b3e3,
            0 0 80px #37b3e3;
    }
}

@keyframes neonTextPulse {
    0%, 100% {
        text-shadow:
            0 0 10px #37b3e3,
            0 0 20px #37b3e3,
            0 0 40px #37b3e3;
        opacity: 1;
    }
    50% {
        text-shadow:
            0 0 15px #37b3e3,
            0 0 30px #37b3e3,
            0 0 60px #37b3e3;
        opacity: 0.95;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100lvh;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    margin: 0;
    z-index: 0;
}

.background-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    background-color: #1d1d1d;
}

@media (min-width: 1025px) {
    .background-frame {
        border-radius: 0 0 60px 60px;
    }
}

.background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1d1d1d;
    overflow: hidden;
}

.background-canvas video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    object-fit: cover;
    opacity: 0.7;
}

.hero-dark-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

/* ── Hero Neon Content ── */
.hero-neon-content {
    position: relative;
    min-height: 100vh;
    min-height: 100lvh;
    padding: 120px 24px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-neon-content {
        padding: 140px 40px 50px;
    }
}

@media (min-width: 1025px) {
    .hero-neon-content {
        padding: 160px 60px 60px;
    }
}

.hero-neon-stack {
    position: absolute;
    bottom: 80px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    text-align: right;
}

@media (min-width: 768px) {
    .hero-neon-stack {
        bottom: 100px;
        right: 40px;
    }
}

@media (min-width: 1025px) {
    .hero-neon-stack {
        bottom: 100px;
        right: -10px;
    }
}

.hero-neon-title {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(4rem, 18vw, 18rem);
    font-weight: 800;
    color: #fff;
    line-height: 0.85;
    letter-spacing: -0.03em;
    align-self: normal;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s ease-out 0.2s forwards;
}

@media (min-width: 768px) {
    .hero-neon-title {
        font-size: 27vh;
    }
}

.hero-neon-rotator {
    position: relative;
    min-height: clamp(50px, 10vw, 90px);
    width: 100%;
    margin-top: 25px;
}

.rotator-item {
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #37b3e3;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow:
        0 0 10px #37b3e3,
        0 0 20px #37b3e3,
        0 0 40px #37b3e3;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

@media (min-width: 1025px) {
    .rotator-item {
        position: absolute;
        top: 0;
        right: 17px;
    }
}

.rotator-item.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-neon-subtitle {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s ease-out 0.6s forwards;
}

.hero-cta-bottom {
    position: absolute;
    bottom: 80px;
    left: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s ease-out 1s forwards;
}

@media (min-width: 768px) {
    .hero-cta-bottom {
        bottom: 100px;
        left: 40px;
    }
}

@media (min-width: 1025px) {
    .hero-cta-bottom {
        bottom: 100px;
        left: 11px;
    }
}

.hero-main {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    min-height: 100lvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.main-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    min-height: 100vh;
    min-height: 100lvh;
    padding: 120px 24px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .main-inner { padding: 140px 40px 50px; }
}

@media (min-width: 1025px) {
    .main-inner { padding: 160px 60px 60px; }
}

.main-heading {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    max-width: 900px;
    margin-bottom: auto;
    opacity: 0;
    transform: translateY(40px);
    animation: heroReveal 1s ease-out 0.3s forwards;
}

.main-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    margin-top: auto;
}

@media (min-width: 1025px) {
    .main-bottom {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.main-text {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 640px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s ease-out 0.5s forwards;
}

.main-button {
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s ease-out 0.7s forwards;
}

/* ── Hero Button ── */
.hero-btn {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #1d1d1d;
    padding: 16px 24px;
    border-radius: 14px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-label {
    display: inline-block;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #1d1d1d;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: rotate(-45deg);
    background: #37b3e3;
    color: #fff;
}

.btn-icon svg {
    width: 16px;
    height: 16px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: #e8e6e1;
    padding: 100px 24px;
    margin-top: -42px;
    border-radius: 0 0 40px 40px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .about-section {
        padding: 120px 40px;
        border-radius: 0 0 60px 60px;
    }
}

.about-dark-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-dark-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(29, 29, 29, 0.1);
    color: #1d1d1d;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #37b3e3;
    border-radius: 2px;
}

.about-logo {
    margin-bottom: 30px;
}

.about-logo svg {
    height: 60px;
    width: auto;
}

@media (min-width: 768px) {
    .about-logo svg { height: 80px; }
}

.about-dark-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 1025px) {
    .about-dark-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: flex-start;
    }
}

.about-dark-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-dark-heading {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1d1d1d;
}

/* ── Why cards ── */
.why-card {
    background: #1d1d1d;
    color: #fff;
    padding: 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 40px;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 16px;
}

@media (min-width: 1025px) {
    .why-card {
        min-height: 380px;
        padding: 32px;
    }
}

.why-card:hover { transform: translateY(-4px); }

.why-card-index {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1025px) {
    .why-card-index {
        top: 40px;
        left: 40px;
    }
}

.why-icon {
    width: 68px;
    height: 68px;
    margin: 0;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1 0 68px;
}

@media (min-width: 1025px) {
    .why-icon {
        width: 100px;
        height: 100px;
        flex: 1 0 100px;
    }
}

.why-icon svg {
    width: 48px;
    height: 48px;
}

@media (min-width: 1025px) {
    .why-icon svg {
        width: 64px;
        height: 64px;
    }
}

.why-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-card-heading {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.375rem, 2vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
}

.why-card p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* ── Why grid ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* ── Identity grid ── */
.identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.identity-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.identity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* ============================================================
   HEADING DECOR
   ============================================================ */
.heading-with-decor {
    display: inline-block;
}

.heading-with-decor h2 {
    display: inline-block;
}

.decor {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

.decor > .line {
    flex: 1;
    height: 3px;
    background: #37b3e3;
    border-radius: 2px;
}

.decor > .dot {
    width: 6px;
    height: 6px;
    background: #37b3e3;
    border-radius: 50%;
    flex-shrink: 0;
}

.decor-light > .line,
.decor-light > .dot {
    background: #37b3e3;
}

/* ============================================================
   CAPABILITIES SECTION
   ============================================================ */
.capabilities-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.capabilities-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .capabilities-container { padding: 0 40px; }
}

@media (min-width: 1025px) {
    .capabilities-container { padding: 0 60px; }
}

.capabilities-stack {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.capabilities-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto 70px;
    padding: 30px 24px;
}

@media (min-width: 768px) {
    .capabilities-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto 80px;
        padding: 36px 40px;
        gap: 32px;
    }
}

@media (min-width: 1025px) {
    .capabilities-header { padding: 40px 60px; }
}

.capabilities-header-content {
    max-width: 620px;
}

.capabilities-header-content h2 {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1d1d1d;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.capabilities-header-content p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(29, 29, 29, 0.55);
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.capabilities-header-count {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(55, 179, 227, 0.08);
    border: 1px solid rgba(55, 179, 227, 0.2);
    border-radius: 50px;
    flex-shrink: 0;
    align-self: flex-start;
}

@media (min-width: 768px) {
    .capabilities-header-count { align-self: center; }
}

.cap-count-number {
    font-family: 'Almarai', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #37b3e3;
    line-height: 1;
}

.cap-count-label {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(29, 29, 29, 0.6);
}

/* ── Capability rows ── */
.capability-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .capability-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .capability-row .capability-image {
        grid-column: 2;
        grid-row: 1;
    }

    .capability-row .capability-content {
        grid-column: 1;
        grid-row: 1;
    }

    .capability-row.reverse .capability-image {
        grid-column: 1;
    }

    .capability-row.reverse .capability-content {
        grid-column: 2;
    }
}

.capability-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 45px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.capability-row:nth-child(odd) .capability-content {
    transform: translateX(55px);
}

.capability-row:nth-child(even) .capability-content {
    transform: translateX(-55px);
}

.capability-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.capability-content h3 {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.capability-content > p {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(29, 29, 29, 0.7);
    line-height: 1.9;
    margin-bottom: 25px;
    max-width: 480px;
}

.capability-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.capability-item {
    background: #1d1d1d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.capability-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-row:nth-child(odd) .capability-image {
    transform: translateX(-55px);
}

.capability-row:nth-child(even) .capability-image {
    transform: translateX(55px);
}

.capability-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.capability-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

@media (max-width: 899px) {
    .capabilities-stack { gap: 80px; }
    .capability-image img { aspect-ratio: 4 / 3; }
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-section {
    background: #1d1d1d;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    margin: 0 8px;
}

@media (min-width: 768px) {
    .industries-section {
        padding: 120px 40px;
        border-radius: 60px;
        margin: 0 12px;
    }
}

.industries-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.industries-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
}

.industries-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 29, 29, 0.85) 0%, rgba(29, 29, 29, 0.7) 50%, rgba(29, 29, 29, 0.85) 100%);
}

.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.industries-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .industries-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 60px;
    }
}

.industries-header-content {
    max-width: 600px;
}

.industries-header h2 {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.industries-header p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.industries-flairs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.industry-flair {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.industry-flair:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.industries-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: transparent;
}

.industries-explore-btn:hover {
    background: #fff;
    color: #1d1d1d;
    border-color: #fff;
}

.industries-explore-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.industries-explore-btn:hover svg {
    transform: translateX(-4px);
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    margin: 0;
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1025px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-card {
    position: relative;
    min-height: 220px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}

@media (min-width: 768px) {
    .industry-card {
        min-height: 260px;
        padding: 40px;
    }
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.industry-card:hover .industry-icon {
    background: rgba(55, 179, 227, 0.2);
    border-color: rgba(55, 179, 227, 0.4);
}

.industry-card:hover .industry-icon svg {
    color: #37b3e3;
}

.industry-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.industry-icon svg {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.industry-content {
    position: relative;
    z-index: 2;
}

.industry-title {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.industry-desc {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ── Clients Section ── */
.clients-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.clients-header {
    margin-bottom: 50px;
}

.clients-header-content {
    max-width: 600px;
}

.clients-header h2 {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0;
}

.clients-subtitle {
    font-size: clamp(0.9375rem, 1.3vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 20px;
}

.clients-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.clients-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: #fff;
    font-weight: 500;
}

.clients-features li svg {
    width: 20px;
    height: 20px;
    color: #37b3e3;
    flex-shrink: 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.client-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 140px;
}

.client-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.client-card .client-logo {
    max-height: 50px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.client-card:hover .client-logo { opacity: 1; }

.client-card .client-name {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.client-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.client-logo-item:hover { opacity: 1; }

.client-logo-item img {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    background: transparent;
    padding: 100px 24px;
}

@media (min-width: 768px) {
    .faq-section { padding: 120px 40px; }
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.faq-header h2 {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1d1d1d;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.faq-header .faq-subtitle {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: #1d1d1d;
    line-height: 1.5;
    margin-bottom: 16px;
    margin-top: 20px;
}

.faq-header .faq-description {
    font-size: clamp(0.9375rem, 1.3vw, 1rem);
    color: rgba(29, 29, 29, 0.6);
    line-height: 1.8;
    letter-spacing: -0.02em;
    max-width: 700px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: right;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .faq-question { padding: 30px; }
}

.faq-title {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #1d1d1d;
    line-height: 1.4;
    letter-spacing: -0.02em;
    flex: 1;
    padding-left: 20px;
}

.faq-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #1d1d1d;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 20px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 20px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 30px;
}

.faq-answer-content {
    font-size: clamp(1rem, 1.3vw, 1.0625rem);
    color: rgba(29, 29, 29, 0.7);
    line-height: 1.7;
    letter-spacing: -0.02em;
    padding-left: 68px;
    padding-right: 30px;
}

@media (max-width: 768px) {
    .faq-answer-content { padding-left: 0; }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
    padding: 0;
    position: relative;
}

.team-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.team-spacer-top { height: 60px; }

.team-header {
    position: sticky;
    top: 80px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    z-index: 20;
    pointer-events: none;
    border-radius: 24px;
    margin-bottom: 20px;
}

.team-header > * { pointer-events: auto; }

.team-header h2 {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #1d1d1d;
    line-height: 1.2;
    margin-bottom: 16px;
}

.team-header p {
    font-size: clamp(0.9375rem, 1.3vw, 1rem);
    color: rgba(29, 29, 29, 0.6);
    line-height: 1.7;
    max-width: 500px;
}

.team-scroll-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 0 100px 0;
    position: relative;
    z-index: 10;
}

.team-card {
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    will-change: transform, opacity, filter;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out, filter 0.15s ease-out;
}

@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }
}

.team-card-image {
    width: 250px;
    height: 100%;
    min-height: 300px;
    min-width: 250px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .team-card-image {
        width: 100%;
        height: 300px;
        min-width: auto;
        min-height: auto;
    }
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.team-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.team-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(29, 29, 29, 0.2);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-nav-btn:hover {
    background: #1d1d1d;
    border-color: #1d1d1d;
    color: #fff;
}

.team-nav-btn svg {
    width: 20px;
    height: 20px;
}

.team-nav-dots { display: flex; gap: 8px; }

.team-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(29, 29, 29, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-nav-dot.active {
    background: #1d1d1d;
    width: 30px;
    border-radius: 5px;
}

.team-counter {
    font-size: 14px;
    color: rgba(29, 29, 29, 0.5);
    margin-right: auto;
}

.team-counter span {
    color: #1d1d1d;
    font-weight: 600;
}

.team-card-number {
    font-size: 13px;
    color: rgba(29, 29, 29, 0.4);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.team-card-name {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.team-card-role {
    font-size: 15px;
    color: rgba(29, 29, 29, 0.6);
    margin-bottom: 14px;
    line-height: 1.5;
}

.team-card-email {
    font-size: 14px;
    margin-bottom: 20px;
}

.team-card-email a {
    color: rgba(29, 29, 29, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.team-card-email a:hover { color: #37b3e3; }

.team-card-bio {
    font-size: 14px;
    color: rgba(29, 29, 29, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.team-card-actions {
    display: flex;
    gap: 16px;
}

.team-action-btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(29, 29, 29, 0.2);
    border-radius: 50px;
    color: #1d1d1d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.team-action-btn-text:hover {
    background: #1d1d1d;
    color: #fff;
    border-color: #1d1d1d;
}

.team-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #1d1d1d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-action-btn:hover { color: #37b3e3; }

.team-action-btn svg {
    width: 22px;
    height: 22px;
}

/* ── Inview scroll-reveal animations ── */
.inview-section {
    position: relative;
    overflow: hidden;
}

.inview-sidebar {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.inview-sidebar.in-view {
    opacity: 1;
    transform: translateX(0);
}

.inview-item {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.inview-item.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.inview-item:nth-child(1) { transition-delay: 0s; }
.inview-item:nth-child(2) { transition-delay: 0.15s; }
.inview-item:nth-child(3) { transition-delay: 0.3s; }
.inview-item:nth-child(4) { transition-delay: 0.45s; }

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section {
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .partners-section { padding: 120px 40px; }
}

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

.partners-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 1025px) {
    .partners-layout {
        display: grid;
        grid-template-columns: 380px 1fr;
        gap: 60px;
        align-items: flex-start;
    }
}

.partners-sidebar {
    position: relative;
}

@media (min-width: 1025px) {
    .partners-sidebar {
        position: sticky;
        top: 140px;
    }
}

.partners-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1d1d1d;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
}

.partners-badge .badge-dot { background: #37b3e3; }

.partners-sidebar-content h2 {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1d1d1d;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.partners-sidebar-content p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(29, 29, 29, 0.7);
    line-height: 1.7;
    letter-spacing: -0.02em;
}

.partners-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.partners-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: #1d1d1d;
    font-weight: 500;
}

.partners-features li svg {
    width: 20px;
    height: 20px;
    color: #37b3e3;
    flex-shrink: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.partner-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 30px 24px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    opacity: 0;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 1;
}

.partner-card.in-view,
.partner-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (min-width: 768px) {
    .partner-card {
        min-height: 180px;
        padding: 40px 30px;
    }
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transform: translateY(-6px);
}

.partner-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.partner-logo {
    max-width: 120px;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .partner-logo {
        max-width: 140px;
        max-height: 50px;
    }
}

.partner-card:hover .partner-logo { transform: scale(1.05); }

.partner-flare {
    font-size: 11px;
    font-weight: 500;
    color: rgba(29, 29, 29, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.partner-name {
    font-family: 'Almarai', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1d;
    text-align: center;
}

/* ============================================================
   CONTACT BOX
   ============================================================ */
.contact-box {
    background: linear-gradient(135deg, #1d1d1d 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 1400px;
    width: calc(100% - 40px);
    margin: 50px auto;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-box { width: calc(100% - 60px); }
}

.contact-box h3 {
    font-family: 'Almarai', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.contact-box a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #37b3e3;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-box a:hover {
    background: #fff;
    color: #1d1d1d;
    transform: translateY(-2px);
}

/* ============================================================
   RESOURCES / BLOG–NEWS TILES
   ============================================================ */
.resources-section {
    padding: 100px 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.resources-header {
    text-align: center;
    margin-bottom: 50px;
}

.resources-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 10px;
}

.resources-header p {
    color: #666;
    font-size: 1.05rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.resource-tile {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(0,0,0,0.04);
}

.resource-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.resource-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
}

.blog-badge { background: #e8f7fc; color: #37b3e3; }
.news-badge { background: #fef3e2; color: #e6890f; }

.resource-tile h3 {
    font-size: 1.2rem;
    line-height: 1.5;
}

.resource-tile p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.resource-link {
    font-weight: 600;
    color: #37b3e3;
    font-size: 0.9rem;
}

.resource-tile:hover .resource-link {
    text-decoration: underline;
}

/* ============================================================
   RESPONSIVE — Page sections
   ============================================================ */
@media (max-width: 768px) {
    .main-heading {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .main-text { font-size: 1rem; }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .content-section { padding: 80px 20px; }

    .about-section,
    .capabilities-section,
    .partners-section,
    .industries-section {
        padding: 80px 20px;
    }

    .identity-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid { grid-template-columns: 1fr; }

    /* Mobile centering */
    .industry-card,
    .capability-content,
    .hero-neon-content,
    .partners-sidebar-content,
    .industries-header-content,
    .clients-header-content,
    .team-header,
    .team-card,
    .faq-subtitle,
    .faq-description,
    .clients-features,
    .heading-with-decor,
    .rotator-item.active {
        text-align: center;
    }

    .clients-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .clients-features li {
        justify-content: center;
        text-align: center;
    }

    .heading-with-decor {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .rotator-item {
        right: 50%;
        transform: translateX(50%);
    }

    .rotator-item.active {
        transform: translateX(50%);
    }

    .capability-content { align-items: center; }
    .capability-content > p { max-width: 100%; }
    .capability-list { justify-content: center; }

    /* Capability row visibility fix */
    .capability-row {
        display: flex !important;
        flex-direction: column;
        opacity: 1;
    }

    .capability-content,
    .capability-image {
        opacity: 1;
        transform: none !important;
    }

    /* Hero mobile layout */
    .hero-neon-stack {
        position: relative;
        align-items: center;
        right: auto;
        bottom: auto;
        transform: none;
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-neon-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 0 20px 120px 20px;
    }

    .hero-cta-bottom {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 30px;
    }

    .hero-neon-subtitle { text-align: center; }

    /* Sidebar centering */
    .partners-sidebar-content .heading-with-decor,
    .industries-header-content .heading-with-decor,
    .clients-header-content .heading-with-decor,
    .team-header .heading-with-decor {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .industries-flairs { justify-content: center; }

    .team-card { flex-direction: column; }

    .team-card-content {
        text-align: center;
        align-items: center;
    }

    .team-card-actions { justify-content: center; }

    /* Capabilities responsive centering */
    .capability-card,
    .capability-header,
    .capability-title,
    .capability-card p {
        text-align: center;
    }

    .capabilities-header {
        text-align: center;
        align-items: center;
    }

    .capabilities-header-content { text-align: center; }

    .capabilities-header-count { align-self: center; }
}
