/* About Us Specific Styles */

/* Hero Section Background Overrides */
#hero .hero-grid {
    background-image: linear-gradient(rgba(0, 71, 255, 0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 71, 255, 0.06) 1px, transparent 1px) !important;
    background-size: 60px 60px !important;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

#hero .hero-orb.orb-right {
    width: 600px !important;
    height: 600px !important;
    top: -100px !important;
    right: -100px !important;
    bottom: auto !important;
    left: auto !important;
    background: radial-gradient(circle, rgba(0, 71, 255, 0.18) 0%, transparent 70%) !important;
    filter: none !important;
    opacity: 1 !important;
}

#hero .hero-orb.orb-left {
    width: 400px !important;
    height: 400px !important;
    bottom: -100px !important;
    left: -100px !important;
    top: auto !important;
    right: auto !important;
    background: radial-gradient(circle, rgba(0, 71, 255, 0.18) 0%, transparent 70%) !important;
    filter: none !important;
    opacity: 1 !important;
}

/* Hero Section Refinements */
.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
}

[data-theme="light"] .text-outline {
    -webkit-text-stroke: 1px #0D1020;
}

.text-solid {
    color: var(--color-text);
}

.chip {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}


/* About Collage Section */
.about-images {
    position: relative;
    padding: 2rem 0;
    width: 100%;
}

.image-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    max-width: 500px;
    margin: 0 auto;
}

.image-stack .img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 75%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-stack .img-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 60%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 2;
    border: 8px solid var(--color-bg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    top: 45%;
    left: -5%;
    transform: translateY(-50%);
    background: #131629;
    color: white;
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-badge .badge-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
}

.experience-badge .badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--color-text);
}

.service-item .check-icon {
    flex-shrink: 0;
}



/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 2rem;
}

.process-line {
    position: absolute;
    top: 3rem;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--color-border);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--color-bg);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    color: var(--color-text);
}


/* Responsive Overrides */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .experience-badge {
        left: 0;
        padding: 1rem 1.25rem;
    }
    .experience-badge .badge-number {
        font-size: 2.25rem;
    }
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    .process-line {
        top: 0;
        bottom: 0;
        left: 2rem;
        width: 2px;
        height: auto;
    }
    .process-step {
        display: flex;
        text-align: left;
        align-items: center;
        gap: 1.5rem;
    }
    .process-number {
        margin: 0;
        flex-shrink: 0;
    }
}
