/* About Page Modern Styles */

/* Hero Section */
.about-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #05192d 0%, #0a2d4d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    font-size: 20px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Our Story Section */
.about-story {
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 30px;
    z-index: -1;
}

.story-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.story-content p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: #fbfdff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    font-size: 28px;
    color: var(--secondary-color);
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.value-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {

    .story-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 80px;
    }

    .mv-card {
        padding: 30px;
    }
}