/* about.css - Modern About Page Styles */


/* CSS Variables */

:root {
    --primary-color: #0a2463;
    --secondary-color: #d4af37;
    --accent-color: #1e40af;
    --light-color: #ffffff;
    --dark-color: #333333;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --text-color: #4a5568;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #ffd700 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Base Styles */

.about-main {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--light-gray);
}


/* Hero Section */

.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--light-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-bg-overlay {
    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 1200 800"><path fill="rgba(255,255,255,0.05)" d="M0,0 Q600,200 1200,0 L1200,800 Q600,600 0,800 Z"/></svg>');
    background-size: cover;
    animation: floatEffect 20s ease-in-out infinite;
}

@keyframes floatEffect {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.about-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}


/* Hero Stats */

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Story & Mission Section */

.story-mission-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.content-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.content-header {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 2rem;
}

.content-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.content-header i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.content-body {
    padding: 2.5rem;
}

.content-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}


/* Key Points */

.key-points {
    margin-top: 2rem;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.point-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.point-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.point-item span {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 1.05rem;
}


/* Mission Content */

.mission-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 2rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--secondary-color);
    position: relative;
}

.mission-highlight i {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.5;
}

.mission-statement {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
    padding-left: 2rem;
    font-style: italic;
}

.mission-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-goal,
.mission-approach,
.mission-impact {
    padding: 1.5rem;
    background: rgba(10, 36, 99, 0.02);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(10, 36, 99, 0.05);
    transition: all 0.3s ease;
}

.mission-goal:hover,
.mission-approach:hover,
.mission-impact:hover {
    background: rgba(10, 36, 99, 0.05);
    border-color: rgba(10, 36, 99, 0.1);
}

.mission-goal h4,
.mission-approach h4,
.mission-impact h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mission-goal i,
.mission-approach i,
.mission-impact i {
    color: var(--secondary-color);
}

.mission-goal p,
.mission-approach p,
.mission-impact p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}


/* Founder Feature Section */

.founder-feature {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.founder-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.founder-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.founder-feature-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.founder-image-container:hover .founder-feature-image {
    transform: scale(1.05);
}

.founder-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--gradient-secondary);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.founder-bio h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    display: block;
}

.founder-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.founder-quote {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--gradient-primary);
    color: var(--light-color);
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
}

.founder-quote::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"><path fill="rgba(255,255,255,0.05)" d="M0,0 Q50,20 100,0 L100,100 Q50,80 0,100 Z"/></svg>');
    background-size: cover;
}

.founder-quote i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

.founder-quote p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.founder-quote cite {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    display: block;
    text-align: right;
}


/* Core Values Section */

.values-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    background: var(--light-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.value-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.value-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
}


/* Founder Spotlight */

.founder-spotlight {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.founder-spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.founder-spotlight-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.founder-spotlight-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.founder-spotlight-image:hover img {
    transform: scale(1.05);
}

.founder-spotlight-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.founder-spotlight-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}


/* Call to Action */

.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.cta-section::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 1200 800"><path fill="rgba(255,255,255,0.03)" d="M0,0 Q600,100 1200,0 L1200,800 Q600,700 0,800 Z"/></svg>');
    background-size: cover;
    animation: floatEffect 25s ease-in-out infinite;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--gradient-secondary);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    gap: 1.5rem;
}


/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */

@media (max-width: 1200px) {
    .story-mission-grid,
    .founder-feature-grid,
    .founder-spotlight-content {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .story-mission-grid,
    .founder-feature-grid,
    .founder-spotlight-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    .founder-feature-image {
        height: 400px;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
        padding: 3rem 1.5rem;
    }
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1.3rem;
    }
    .story-mission-section,
    .founder-feature,
    .values-section,
    .founder-spotlight,
    .cta-section {
        padding: 4rem 0;
    }
    .content-body {
        padding: 2rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .value-card {
        padding: 2.5rem 1.5rem;
    }
    .founder-bio h2 {
        font-size: 2rem;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .content-header h3 {
        font-size: 1.5rem;
    }
    .mission-statement {
        font-size: 1.1rem;
    }
    .founder-badge {
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
}