/* about-style.css - Styles for company/about section */

/* Company Section Styles */
.company-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.company-section h1 {
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.company-section h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.company-section h3 {
    color: #34495e;
    font-weight: 600;
    margin-top: 30px;
}

.company-section .lead {
    color: #5d6d7e;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Feature List Styles */
.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 35px;
    position: relative;
    color: #495057;
    font-size: 1.05rem;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Mission Box Styles */
.mission-box {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-left: 5px solid #2ecc71;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.mission-box h4 {
    color: white;
    font-weight: 600;
}

/* Image Stack Styles */
.image-stack {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-wrapper.main-image {
    transform: rotate(-1deg);
    z-index: 2;
}

.image-wrapper.secondary-image {
    transform: rotate(2deg);
    margin-left: 30px;
    z-index: 1;
}

.image-wrapper:hover {
    transform: translateY(-5px);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.02);
}

/* Image Caption Styles */
.image-caption {
    background: white;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-caption h5 {
    color: #2c3e50;
    font-weight: 600;
}

.image-caption p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .company-section h1 {
        font-size: 2.5rem;
    }
    
    .image-wrapper.main-image,
    .image-wrapper.secondary-image {
        transform: none;
        margin-left: 0;
    }
    
    .image-stack {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .company-section {
        padding: 40px 0;
    }
    
    .company-section h1 {
        font-size: 2rem;
    }
    
    .feature-list li {
        font-size: 1rem;
    }
}

/* Animation for fade-in effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-section .row > div {
    animation: fadeInUp 0.8s ease-out;
}

.company-section .col-lg-6:last-child {
    animation-delay: 0.3s;
}