/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== ABOUT CONTENT SECTIONS ===== */
.about-content {
    background: var(--light);
}

.content-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.content-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(218, 11, 78, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-text strong {
    color: var(--primary);
    font-weight: 600;
}

.content-text em {
    color: var(--secondary);
    font-style: italic;
}

/* Section Specific Styles */
.mission-section .content-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--success);
}

.story-section .content-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(220, 38, 38, 0.1));
    color: var(--accent);
}

.vision-section .content-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(79, 70, 229, 0.1));
    color: #8b5cf6;
}

/* Vision Quote */
.vision-quote {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(218, 11, 78, 0.05));
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    position: relative;
}

.vision-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray-700);
    margin: 0;
    text-align: center;
}

.vision-quote .fa-quote-left {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--primary);
    opacity: 0.3;
    font-size: 1.5rem;
}

.vision-quote .fa-quote-right {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--primary);
    opacity: 0.3;
    font-size: 1.5rem;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    background: white;
    border-radius: 25px;
    padding: 50px;
    margin: 60px 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.founder-info h3 {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: 10px;
    font-weight: 500;
}

.founder-info h4 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.founder-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.founder-quote {
    background: linear-gradient(135deg, rgba(218, 11, 78, 0.05), rgba(79, 70, 229, 0.05));
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    position: relative;
}

.founder-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.7;
}

.founder-quote .fa-quote-left {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--primary);
    opacity: 0.3;
    font-size: 1.5rem;
}

.founder-quote .fa-quote-right {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--primary);
    opacity: 0.3;
    font-size: 1.5rem;
}

.founder-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: 12px;
    transition: var(--transition);
}

.detail-item:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

.detail-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.detail-item span {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===== SELECTION PROCESS ===== */
.selection-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.process-step {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.process-step p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(218, 11, 78, 0.05));
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(218, 11, 78, 0.1));
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 600;
}

/* ===== ABOUT CTA ===== */
.about-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 25px;
    padding: 60px;
    margin-top: 60px;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-cta p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .founder-section {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 40px;
        gap: 30px;
    }
    
    .founder-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-image img {
        height: 300px;
    }
    
    .founder-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .selection-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 150px 0 60px;
        min-height: 50vh;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .content-section {
        flex-direction: column;
        padding: 30px;
        gap: 25px;
    }
    
    .content-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .content-text h2 {
        font-size: 1.75rem;
    }
    
    .founder-section {
        padding: 30px;
    }
    
    .founder-info h4 {
        font-size: 1.75rem;
    }
    
    .founder-details {
        grid-template-columns: 1fr;
    }
    
    .selection-process {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-cta {
        padding: 40px 25px;
    }
    
    .about-cta h3 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 25px;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .vision-quote,
    .founder-quote {
        padding: 20px;
    }
    
    .vision-quote p,
    .founder-quote p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 130px 0 50px;
    }
    
    .about-hero-title {
        font-size: 1.5rem;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .founder-section {
        padding: 25px;
        margin: 40px 0;
    }
    
    .founder-info h4 {
        font-size: 1.5rem;
    }
    
    .selection-process {
        margin: 40px 0;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .about-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .about-cta h3 {
        font-size: 1.5rem;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
}