/* About Page Specific Styles */

/* Hero Section for About Page */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(14, 44, 99, 0.9) 0%, rgba(42, 82, 152, 0.9) 100%), url('../images/about-hero-bg.png');
    background: linear-gradient(135deg, rgba(14, 44, 99, 0.9) 0%, rgba(135, 166, 221, 0.9) 100%), url('../images/about-hero-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
}

.breadcrumb-nav {
    margin-top: 30px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: white;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
}

/* Company Story Section */
.company-story {
    background: var(--light-color);
}

.story-image {
    position: relative;
}

.image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: var(--box-shadow);
}

.story-content .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-stats {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--gray-color);
    font-size: 14px;
    margin: 0;
}

/* Core Values Section */
.core-values {
    background: white;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 44, 99, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-family: "Public Sans", sans-serif;
    font-size: 15px;
}

.value-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tag {
    background: rgba(14, 44, 99, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

/* Team Excellence Section */
.team-excellence {
    background: var(--light-color);
}

.excellence-content .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.excellence-features {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-check:last-child {
    margin-bottom: 0;
}

.feature-check i {
    color: var(--accent-color);
    font-size: 20px;
}

.feature-check span {
    font-weight: 500;
    color: var(--dark-color);
}

.excellence-image {
    position: relative;
}

.excellence-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    max-width: 300px;
}

.excellence-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.excellence-card i {
    color: var(--accent-color);
}

/* Technology Stack Section */


/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .excellence-card {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 150px 0 80px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    
    .story-stats .col-4 {
        margin-bottom: 20px;
    }
    
    .story-stats .col-4:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    
    
    .value-card {
        padding: 30px 20px;
    }
}