
/* About Page Css */
:root {
    /* Unified Color Palette */
    --primary-color: #0d6efd;
    --secondary-color: #0a58ca;
    --accent-color: #ffc107;
    --dark-bg: #0f172a;
    --light-bg: #f8faff;
    --text-dark: #1a1f2c;
    --text-muted: #5e6778;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark-bg);
}

p {
    line-height: 1.75;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* --- Fix: Z-Index Layers --- */
.main-content {
    position: relative;
    z-index: 1;
}

/* Ensures content sits above backgrounds */
.container {
    position: relative;
    z-index: 5;
}

/* --- Hero Section --- */
.page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)),
        url('assets/about/about-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 9rem 0 5rem;
    /* Increased top padding for fixed headers */
    position: relative;
    z-index: 1;
}

/* --- Global Utils --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-dark-tech {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
}

/* --- Hover Cards --- */
.hover-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    z-index: 2;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* --- Icons --- */
.mva-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* --- Lists --- */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #64748b;
}

.service-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check-list li i {
    color: #198754;
    margin-right: 10px;
    background: #e6fdf0;
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* --- Industry Box --- */
.industry-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
    height: 100%;
    position: relative;
    z-index: 2;
}

.industry-box:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.industry-box:hover i,
.industry-box:hover h6,
.industry-box:hover p {
    color: #fff !important;
}

/* --- Fresh Section (Abstract Bg) --- */
.fresh-section-wrapper {
    position: relative;
    background: #fff;
    overflow: hidden;
    /* Prevents blob from causing scrollbars */
}

.fresh-bg-blob {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    /* Behind content */
    pointer-events: none;
    /* FIX: Allows clicks to pass through */
}

.fresh-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    background: #eef2ff;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fresh-highlight-box {
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    background: #fff;
    /* Ensure bg is white for text readability */
}

/* --- History Tech Card (Timeline) --- */
.history-tech-card {
    background: #0f172a;
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.history-tech-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

.ht-header,
.ht-timeline-wrapper,
.ht-stats {
    position: relative;
    z-index: 2;
    /* Content above background pattern */
}

.ht-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.ht-timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.ht-timeline-item:last-child {
    margin-bottom: 0;
}

.ht-timeline-line {
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: -30px;
    /* Connects to next item */
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.ht-timeline-item:last-child .ht-timeline-line {
    display: none;
}

.ht-dot {
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    z-index: 2;
}

.ht-dot.secondary {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

.ht-year {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ht-stats {
    display: flex;
    gap: 20px;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.ht-stat-item {
    flex: 1;
}

.ht-stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.ht-stat-lbl {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- UPDATED LEADERSHIP SECTION STYLES --- */
.team-section {
    background-color: #f8faff;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.team-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: radial-gradient(#0d6efd 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
}

.leader-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 2;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.12);
}

.leader-img-col {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-img {
    transform: scale(1.05);
}

.leader-content {
    padding: 3rem;
}

.leader-role {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.leader-quote {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    color: #334155;
    margin: 1.5rem 0;
    position: relative;
}

.leader-quote i {
    color: #cbd5e1;
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: 1.5rem;
}

.skill-tag {
    display: inline-block;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    margin-right: 5px;
    margin-bottom: 5px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50%;
    transition: 0.2s;
    margin-right: 8px;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Mobile Adjustments for Leadership */
@media (max-width: 991px) {
    .leader-img-col {
        min-height: 300px;
    }

    .leader-content {
        padding: 2rem;
    }
}

/* --- Stat Card --- */
.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    font-family: var(--font-heading);
}

/* --- New CTA Section Styles (AI Glow) --- */
.cta-card-tech {
    background: linear-gradient(135deg, #0d6efd 0%, #052c65 100%);
    box-shadow: 0 20px 40px -10px rgba(13, 110, 253, 0.4);
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.cta-blob-1 {
    width: 300px;
    height: 300px;
    background: #0dcaf0;
    top: -50px;
    left: -50px;
}

.cta-blob-2 {
    width: 400px;
    height: 400px;
    background: #6610f2;
    bottom: -100px;
    right: -50px;
}

.cta-btn-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3) !important;
}

.hover-underline:hover {
    text-decoration: underline !important;
    opacity: 0.9;
}

/* --- Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Nav Overlay Fix */
.navmobile-overlay {
    z-index: 998;
    /* Under nav menu, over content */
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
}

.navmobile-overlay.active {
    pointer-events: auto;
    opacity: 1;
}