/* About Us Page Specific Styles */

/* About Hero Section */
.about-hero {
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(126, 58, 242, 0.85), rgba(26, 86, 219, 0.85)), 
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Stats */
.company-stats {
    background: rgba(126, 58, 242, 0.1);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(126, 58, 242, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Workflow Section */
.workflow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
}

.workflow-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.workflow-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-right: 25px;
    flex-shrink: 0;
    position: relative;
}

.workflow-number::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -45px;
    width: 30px;
    height: 2px;
    background: var(--gradient-3);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-step:hover .workflow-number::after {
    opacity: 1;
}

.workflow-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.workflow-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Workflow Visual */
.workflow-visual {
    text-align: center;
    margin-top: 60px;
}

.workflow-image {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.workflow-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(126, 58, 242, 0.1), rgba(26, 86, 219, 0.1));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.workflow-image:hover::before {
    opacity: 0;
}

.workflow-image img {
    transition: transform 0.5s ease;
}

.workflow-image:hover img {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .vision-mission-card {
        padding: 40px 30px;
    }
    
    .vm-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .vision-mission-card h3 {
        font-size: 1.5rem;
    }
    
    .why-choose-card {
        padding: 30px 25px;
    }
    
    .wc-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .workflow-step {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .workflow-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .workflow-number::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .company-stats {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .vision-mission-card {
        padding: 30px 25px;
    }
    
    .why-choose-card {
        padding: 25px 20px;
    }
    
    .workflow-step {
        padding: 20px;
    }
}
    font-weight: 600;
    margin-top: 8px;
}

/* Vision & Mission Cards */
.vision-mission-card {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.vision-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-1);
    border-radius: 25px 25px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vision-mission-card:hover::before {
    transform: scaleX(1);
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
}

.vision-mission-card:hover .vm-icon {
    transform: scale(1.1) rotate(10deg);
}

.vision-mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.vision-mission-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Why Choose Us Cards */
.why-choose-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-3);
    transition: left 0.4s ease;
}

.why-choose-card:hover::before {
    left: 0;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.wc-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.why-choose-card:hover .wc-icon {
    transform: scale(1.05);
    background: var(--gradient-2);
}

.why-choose-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.why-choose-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
}