/* --- Codomax About Page - Premium Design System --- */

:root {
    --tu-primary: #2563eb;
    --tu-primary-glow: rgba(37, 99, 235, 0.5);
    --tu-secondary: #7c3aed;
    --tu-bg-dark: #020617;
    --tu-bg-card: #0f172a;
    --tu-text-main: #f8fafc;
    --tu-text-muted: #94a3b8;
    --tu-border: rgba(255, 255, 255, 0.08);
    --tu-font-heading: 'Outfit', sans-serif;
    --tu-font-body: 'Inter', sans-serif;
}

/* --- Global Page Overrides for About --- */
body.page-slug-about .wp-block-post-title,
body.about .wp-block-post-title {
    display: none !important;
}

/* Force full width for the main content area */
body.about main,
body.about .wp-site-blocks,
body.about .entry-content,
body.about .wp-block-group.alignfull {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove default theme paddings from standard page structure */
body.about .is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Force body background and all wrappers to match if theme has gaps */
body.about,
body.about .wp-site-blocks,
body.about .wp-block-group.alignfull,
body.about main {
    background-color: var(--tu-bg-dark) !important;
}

/* Eliminate any top margin/padding that creates the white gap */
body.about .entry-content>*:first-child,
body.about main>*:first-child {
    margin-top: 0 !important;
}

.tu-about-container {
    background-color: var(--tu-bg-dark);
    color: var(--tu-text-main);
    font-family: var(--tu-font-body);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Global Container Grid Background */
.tu-about-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
    background-size: 50px 50px !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* Global Container Animated Dots Background */
.tu-about-container::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px) !important;
    background-size: 30px 30px !important;
    pointer-events: none !important;
    z-index: -1 !important;
    animation: dots-move 30s linear infinite !important;
}

@keyframes dots-move {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 30px 30px;
    }
}

/* Ensure sections are above the container's background */
.tu-about-hero,
.tu-about-mission,
.tu-about-story,
.tu-about-values,
.tu-about-team,
.tu-about-cta {
    position: relative !important;
    z-index: 2 !important;
}

.tu-about-hero-wrapper {
    border-bottom: 1px solid var(--tu-border);
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 40%);
}

/* Hero Section */
.tu-about-hero {
    position: relative;
    padding: 80px 5%;
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
}

.tu-hero-glow {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.tu-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 1;
}

.tu-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 100px;
    color: #60a5fa;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    width: fit-content;
}

.tu-hero-title {
    font-family: var(--tu-font-heading);
    font-size: clamp(2.3rem, 5.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: -3px;
    position: relative;
    z-index: 1;
    margin-top: 0;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.tu-gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tu-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--tu-text-muted);
    max-width: 620px;
    margin-bottom: 35px;
    z-index: 1;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

/* Stats Cards in Left Column */
.tu-hero-stats {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 580px;
    z-index: 1;
}

.tu-stat-card {
    flex: 1;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.tu-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.2);
    background: rgba(15, 23, 42, 0.5);
}

.tu-stat-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0.03) 100%);
    border: 1px solid rgba(99, 102, 241, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tu-stat-card:hover .tu-stat-icon-wrapper {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

.tu-stat-icon {
    width: 22px;
    height: 22px;
}

.tu-stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.tu-stat-info strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.tu-stat-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-top: 3px;
    letter-spacing: 0.01em;
}

.tu-stat-sublabel {
    font-size: 0.76rem;
    color: var(--tu-text-muted);
    margin-top: 1px;
    white-space: nowrap;
}

/* Right Column - 3D Globe Visual */
.tu-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tu-hero-image-container {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1.05;
    position: relative;
    animation: tu-globe-float 6s ease-in-out infinite;
}

.tu-hero-globe-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(37, 99, 235, 0.2));
}

@keyframes tu-globe-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes tu-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mission Section */
.tu-about-mission {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;

}

.tu-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.tu-section-title {
    font-family: var(--tu-font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 0;
}

.tu-title-underline {
    width: 80px;
    height: 4px;
    background: var(--tu-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.tu-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tu-mission-item {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.tu-mission-item:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.35);
    background: rgba(15, 23, 42, 0.6);
}

.tu-mission-icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0.02) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tu-mission-item:hover .tu-mission-icon {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-color: rgba(99, 102, 241, 0.45);
}

.tu-mission-item h3 {
    font-family: var(--tu-font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.tu-mission-item p {
    color: var(--tu-text-muted);
    margin-top: 0;
    font-size: 15px;
    list-style: normal;
}

/* Story Section */
.tu-about-story {
    padding: 80px 5%;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
    border-top: 1px solid var(--tu-border);
    border-bottom: 1px solid var(--tu-border);
}

.tu-story-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    text-align: center;
}

.tu-story-text h2 {
    text-align: center;
    margin-bottom: 25px;
}

.tu-story-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--tu-text-muted);
}

.tu-story-text p:last-child {
    margin: 0 !important;
}

.tu-story-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.tu-big-stat {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tu-big-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(15, 23, 42, 0.65);
    box-shadow: 0 25px 45px -10px rgba(99, 102, 241, 0.2);
}

.tu-stat-num {
    display: block;
    font-size: 4.2rem;
    font-weight: 900;
    font-family: var(--tu-font-heading);
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.tu-stat-desc {
    color: var(--tu-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

/* Values Section */
.tu-about-values {
    padding: 80px 20px;
    max-width: 1350px;
    margin: 0 auto;
}

.tu-section-title.centered {
    text-align: center;
    margin-bottom: 40px;
}

.tu-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tu-value-card {
    position: relative;
    padding: 30px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tu-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.35);
    background: rgba(15, 23, 42, 0.6);
}

.tu-value-num {
    position: absolute;
    top: -25px;
    right: -15px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.04);
    font-family: var(--tu-font-heading);
    line-height: 1;
    transition: all 0.4s ease;
}

.tu-value-card:hover .tu-value-num {
    color: rgba(99, 102, 241, 0.09);
    transform: scale(1.05) translate(-5px, 5px);
}

.tu-value-card h3 {
    font-family: var(--tu-font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.tu-value-card p {
    color: var(--tu-text-muted);
    position: relative;
    z-index: 1;
    margin-top: 0;
    font-size: 15px;
    list-style: normal;
    margin-bottom: 0;
}

/* CTA Section */
.tu-about-cta {
    padding: 80px 5% 90px;
    padding-top: 0;
}

.tu-cta-card-premium {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(8, 12, 26, 0.65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.6), 0 0 25px -5px rgba(124, 58, 237, 0.1);
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tu-cta-card-premium:hover {
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 30px -5px rgba(124, 58, 237, 0.15);
}

.tu-cta-main-row {
    display: flex;
    align-items: center;
    gap: 35px;
    text-align: left;
}

.tu-cta-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f0b29 100%);
    border: 2px solid rgba(139, 92, 246, 0.5);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    transition: all 0.4s ease;
}

.tu-cta-card-premium:hover .tu-cta-icon-wrapper {
    transform: scale(1.05);
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.6);
}

.tu-cta-large-icon {
    width: 36px;
    height: 36px;
    color: #ffffff;
    z-index: 2;
}

.tu-cta-content {
    flex-grow: 1;
}

.tu-cta-content h2 {
    font-family: var(--tu-font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.tu-cta-title-highlight {
    background: linear-gradient(135deg, #60a5fa 30%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tu-cta-content p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #94a3b8;
    margin: 0;
    max-width: 650px;
}

.tu-cta-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.tu-btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 13px 28px;
    font-size: 0.95rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0), 0 8px 20px -4px rgba(37, 99, 235, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
}

.tu-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4), 0 10px 25px -4px rgba(37, 99, 235, 0.55);
}

.tu-btn-arrow {
    transition: transform 0.3s ease;
}

.tu-btn-primary:hover .tu-btn-arrow {
    transform: translateX(4px);
}

.tu-btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 13px 28px;
    font-size: 0.95rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tu-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.tu-cta-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.08) 80%, rgba(255, 255, 255, 0) 100%);
}

.tu-cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tu-cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
}

.tu-cta-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.tu-cta-feature-item svg {
    color: #818cf8;
    width: 18px;
    height: 18px;
}

@media (max-width: 991px) {
    .tu-cta-main-row {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .tu-cta-content p {
        margin: 0 auto;
    }

    .tu-cta-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tu-cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .tu-cta-feature-item::after {
        display: none !important;
    }
}

/* Team Section */
.tu-about-team {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-top: 40px;
}

/* Glowing decorative neon line below the section heading */
.tu-about-team .tu-team-glow {
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0) 0%, #2563eb 50%, #7c3aed 50%, rgba(124, 58, 237, 0) 100%);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.8), 0 0 4px rgba(124, 58, 237, 0.8);
    margin: -20px auto 30px;
    border-radius: 10px;
}

.tu-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tu-team-card {
    background: #090d1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
}

.tu-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.tu-team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.15);
}

.tu-team-card-inner {
    display: flex;
    gap: 28px;
    align-items: center;
}

.tu-team-img-wrap {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1e293b;
    transition: all 0.3s ease;
}

.tu-team-card:hover .tu-team-img-wrap {
    border-color: rgba(99, 102, 241, 0.5);
    transform: scale(1.03);
}

.tu-team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.tu-team-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tu-team-info h3 {
    font-family: var(--tu-font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.tu-team-badge {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #ffffff;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.tu-team-desc {
    color: var(--tu-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 16px 0;
    text-align: left;
}

.tu-team-social {
    display: flex;
    gap: 12px;
}

.tu-team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tu-team-social a:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive adjustments for team cards */
@media (max-width: 1024px) {
    .tu-team-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .tu-team-card {
        padding: 20px;
    }

    .tu-team-card-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
    }

    .tu-team-img-wrap {
        width: 100%;
        max-width: 200px;
        height: 200px;
    }

    .tu-team-info {
        align-items: center;
        text-align: center;
    }

    .tu-team-desc {
        text-align: center;
    }
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .tu-about-hero {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 80px 5% 40px;
    }

    .tu-hero-left {
        align-items: center;
        text-align: center;
    }

    .tu-hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .tu-hero-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .tu-story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .tu-about-hero {
        padding: 60px 5% 40px;
    }

    .tu-hero-stats {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .tu-about-team {
        padding: 30px 3%;
    }

    .tu-section-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .tu-cta-card {
        padding: 30px;
        border-radius: 20px;
    }

    .tu-about-mission {
        padding: 40px 5%;
    }

    .tu-mission-item {
        padding: 20px;
        border-radius: 20px;
    }

    .tu-section-header {
        margin-bottom: 30px;
    }

    .tu-mission-icon {
        margin-bottom: 5px;
    }

    .tu-mission-item h3 {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .tu-about-values {
        padding: 50px 20px;
    }

    .tu-section-title.centered {
        margin-bottom: 30px;
    }

    .tu-value-card h3 {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .tu-team-grid {
        gap: 20px;
    }

    .tu-about-cta {
        padding: 30px 5% 60px;
    }
}