/* =========================================
   About Us Page Styles
   ========================================= */

/* Hero Section */
.about-hero-section {
    background-color: #0A2543; /* Deep Blue */
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
    color: #ffffff;
}

.highlight-text {
    color: #38BDF8; /* Light Blue Highlight */
}

.hero-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #E0E7FF;
    margin-bottom: 30px;
    max-width: 600px;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
}

.btn-about-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #013760; /* Button Blue */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-about-hero:hover {
    /* background-color: #0369A1; */
    color: #ffffff;
}

.hero-image img {
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

/* Who We Are Section */
.about-who-we-are-section {
    background-color: #F0F9FF; /* Light Blue Background matching Services/Industries */
    padding: 100px 0;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}


.who-we-are-content .subheading {
    color: #013760; /* Brand Blue for better contrast on light bg */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.who-we-are-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0F172A; /* Slate 900 */
    margin-bottom: 25px;
    line-height: 1.2;
}

.who-we-are-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748B; /* Slate 500 */
    margin-bottom: 30px;
}

.who-we-are-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.who-we-are-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #0F172A;
    display: flex;
    align-items: center;
}

.who-we-are-list li::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background-color: rgba(56, 189, 248, 0.1);
    border: 1px solid #38BDF8;
    border-radius: 6px;
    color: #38BDF8;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Cards Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 37, 67, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(10, 37, 67, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 37, 67, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #F8FAFC;
    border: 1px dashed #0A2543;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0A2543;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* Stats Section */
.about-stats-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.stats-card-container {
    background-color: #0A2543; /* Deep Blue Card */
    border-radius: 20px;
    padding: 60px 80px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(10, 37, 67, 0.1);
}

.stats-card-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #CCF381; /* Lime Green/Yellow Highlight */
    margin-bottom: 25px;
    max-width: 800px;
}

.stats-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #CBD5E1;
    margin-bottom: 50px;
    max-width: 900px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 14px;
    line-height: 1.5;
    color: #E2E8F0;
    margin-bottom: 20px;
    min-height: 42px; /* Align bars */
}

.progress-container {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 3px;
}

.purple-bar {
    background: linear-gradient(90deg, #8B5CF6 0%, #A78BFA 100%);
}

.green-bar {
    background: linear-gradient(90deg, #CCF381 0%, #E2F8B6 100%);
}

.blue-bar {
    background: linear-gradient(90deg, #38BDF8 0%, #7DD3FC 100%);
}

/* Future of Work Section */
.about-future-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* Gap handled by padding for border centering */
    align-items: stretch; /* Ensure equal height columns */
}

.future-left-col {
    position: relative;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: #38BDF8; /* Light Blue */
    margin-bottom: 25px;
    border-radius: 2px;
}

.future-left-col h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 10px;
    line-height: 1.2;
}

.future-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 15px;
}

.future-image-container {
    margin-top: auto; /* Pushes image to align with bottom of right column */
    /* padding-top: 40px; */
}

.future-image-container img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Right Column Features */
.future-right-col {
    padding-left: 60px;
    border-left: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes items to fill height */
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 40px; /* Minimum gap */
}

.future-feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.future-icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #013760; /* Brand Blue */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

.future-text-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.future-text-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* Access & Security Section */
.about-access-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.access-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.access-row:last-child {
    margin-bottom: 0;
}

.access-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 15px;
    line-height: 1.2;
}

.access-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #013760;
    margin-bottom: 20px;
    display: block;
}

.access-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 30px;
}

.btn-access {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #013760;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-access:hover {
    background-color: #0369A1;
    color: #ffffff;
}

.access-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 40px rgba(10, 37, 67, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-grid,
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }
    
    .hero-image {
        margin-top: 30px;
    }

    .who-we-are-content {
        order: -1;
    }
    
    .who-we-are-list {
        text-align: left;
        display: inline-block;
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-card-container {
        padding: 40px;
    }
    
    .stats-grid {
        gap: 40px;
    }

    /* Future Section Responsive */
    .future-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .future-right-col {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #E2E8F0;
        padding-top: 40px;
    }

    /* Access Section Responsive */
    .access-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
        text-align: center;
    }

    .access-content {
        order: 2; /* Ensure content is below image if needed, or default order */
    }
    
    .access-image {
        order: 1;
        margin-bottom: 30px;
    }

    /* Fix order for first row (Content Left, Image Right in Desktop) -> Image Top in Mobile */
    .access-row .access-content {
        order: 2;
    }
    .access-row .access-image {
        order: 1;
    }
    
    .btn-access {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-card-container {
        padding: 30px 20px;
    }

    .stat-text {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .who-we-are-content h2 {
        font-size: 32px;
    }
}
