/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 200, 83, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(91, 155, 213, 0.1) 0%, transparent 50%);
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #001f54;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: white;
}

.partner-card {
    background: white;
    border-radius: 20px;
    margin-bottom: 4rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 31, 84, 0.1);
    border: 2px solid #e3f2fd;
    transition: all 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 15px 50px rgba(0, 31, 84, 0.15);
    border-color: #00c853;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 2px solid #e3f2fd;
}

.partner-image {
    flex-shrink: 0;
}

.partner-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00c853, #5b9bd5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.3);
}

.partner-info {
    flex-grow: 1;
}

.partner-name {
    font-size: 2rem;
    font-weight: 700;
    color: #001f54;
    margin-bottom: 0.5rem;
}

.partner-title {
    font-size: 1.125rem;
    color: #00c853;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-social {
    display: flex;
    gap: 1rem;
}

.partner-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001f54;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-social a:hover {
    background: #00c853;
    color: white;
    border-color: #00c853;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.partner-content {
    padding: 3rem;
}

.partner-background,
.partner-comment,
.partner-video {
    /* margin-bottom: 3rem;*/
}

.partner-background h3,
.partner-comment h3,
.partner-video h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #001f54;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.partner-background h3 i,
.partner-comment h3 i,
.partner-video h3 i {
    color: #00c853;
    font-size: 1.25rem;
}

.partner-background p,
.partner-comment blockquote,
.partner-video p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.partner-achievements {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.partner-achievements li {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f0f8ff, #e3f2fd);
    border-radius: 8px;
    border-left: 4px solid #00c853;
    color: #001f54;
    font-weight: 500;
    transition: all 0.3s ease;
}

.partner-achievements li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.15);
}

.partner-comment blockquote {
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #00c853;
    font-style: italic;
    position: relative;
    margin: 0;
}

.partner-comment blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #00c853;
    opacity: 0.2;
    font-weight: bold;
}

.video-container {
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 31, 84, 0.15);
}

.video-placeholder {
    background: linear-gradient(135deg, #001f54, #003d8f);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #003d8f, #0056b3);
}

.video-placeholder i {
    font-size: 4rem;
    color: #00c853;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    transform: scale(1.1);
    color: #00e060;
}

.video-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.video-duration {
    display: inline-block;
    background: rgba(0, 200, 83, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid #00c853;
}

.video-description {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: #4a5568;
    font-style: italic;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #001f54, #003d8f);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 200, 83, 0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.0625rem;
    }

    .partner-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .partner-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .partner-name {
        font-size: 1.75rem;
    }

    .partner-social {
        justify-content: center;
    }

    .partner-content {
        padding: 2rem;
    }

    .partner-achievements {
        grid-template-columns: 1fr;
    }

    .video-placeholder {
        padding: 3rem 1.5rem;
    }

    .video-placeholder i {
        font-size: 3rem;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .partner-card {
        margin-bottom: 2rem;
    }

    .partner-header {
        padding: 1.5rem;
    }

    .partner-content {
        padding: 1.5rem;
    }

    .partner-background,
    .partner-comment,
    .partner-video {
        margin-bottom: 2rem;
    }

    .partner-comment blockquote {
        padding: 1.5rem;
    }

    .video-placeholder {
        padding: 2rem 1rem;
    }

    .about-cta {
        padding: 60px 0;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-card {
    animation: fadeInUp 0.6s ease forwards;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }
.partner-card:nth-child(5) { animation-delay: 0.5s; }