/* About Hero Section */
.about-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-blue) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 80px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,166,255,0.1) 0%, rgba(0,0,0,0) 50%);
    animation: rotate 30s linear infinite;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(0,166,255,0.3);
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Container */
.about-container {
    padding: 80px 50px;
    background: var(--primary-black);
}

/* Vision Section */
.vision-section {
    max-width: 1200px;
    margin: 0 auto 100px;
    text-align: center;
}

.vision-content {
    margin-bottom: 60px;
}

.vision-content h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.vision-content h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--accent-blue);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.vision-content:hover h2::after {
    width: 100px;
}

.vision-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    background: linear-gradient(145deg, rgba(11, 27, 72, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0,166,255,0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0,166,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Story Section */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 100px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.story-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(145deg, rgba(11, 27, 72, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 20px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,166,255,0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.story-image:hover .story-image-placeholder {
    transform: scale(1.05);
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.story-content:hover h2::after {
    width: 100%;
}

.story-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    max-width: 1200px;
    margin: 0 auto 100px;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.values-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--accent-blue);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.values-section:hover h2::after {
    width: 100px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    background: linear-gradient(145deg, rgba(11, 27, 72, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0,166,255,0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0,166,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0,166,255,0.3));
    position: relative;
}

.value-item i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0,166,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1);
    color: var(--text-white);
    filter: drop-shadow(0 0 20px rgba(0,166,255,0.5));
}

.value-item:hover i::after {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0,166,255,0.2) 0%, transparent 70%);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

/* Expertise Section */
.expertise-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.expertise-section h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.expertise-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--accent-blue);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.expertise-section:hover h2::after {
    width: 100px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.expertise-item {
    background: linear-gradient(145deg, rgba(11, 27, 72, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    border: 1px solid rgba(0,166,255,0.1);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0,166,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.expertise-item i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0,166,255,0.3));
}

.expertise-item:hover i {
    transform: scale(1.1);
    color: var(--text-white);
    filter: drop-shadow(0 0 20px rgba(0,166,255,0.5));
}

.expertise-item h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.expertise-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-item ul li {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.expertise-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

/* Responsive Design */
@media (max-width: 992px) {
    .vision-stats,
    .values-grid,
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .story-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        margin-top: 60px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-container {
        padding: 60px 20px;
    }

    .vision-stats {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-image {
        margin: 0 -20px;
        border-radius: 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}
