/* About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #00375c 0%, #0e1b2b 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease;
    color: whitesmoke !important;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Container */
.about-container {
    margin-top: 40px;
    margin-bottom: 60px;
}

/* Section Styling */
.about-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00375c;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00375c, #0e1b2b);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* Image Styling */
.about-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 55, 92, 0.15);
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

/* List Styling */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.about-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #00375c;
    font-size: 1.2rem;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, rgba(0, 55, 92, 0.03) 0%, rgba(14, 27, 43, 0.03) 100%);
    padding: 60px 30px;
    border-radius: 20px;
    margin-top: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 55, 92, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 55, 92, 0.2);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 55, 92, 0.9) 0%, rgba(14, 27, 43, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00375c;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.team-card:hover .team-social a {
    transform: translateY(0);
}

.team-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.team-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.team-social a:hover {
    background: #00375c;
    color: white;
    transform: scale(1.1);
}

.team-info {
    padding: 25px 20px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00375c;
    margin-bottom: 8px;
}

.team-role {
    font-size: 11px;
    color: #666;
    margin: 0;
}

/* Connect Section */
.connect-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #00375c 0%, #0e1b2b 100%);
    border-radius: 20px;
    color: white;
}

.connect-section .section-title {
    color: white;
}

.connect-section .section-title::after {
    background: white;
    left: 50%;
    transform: translateX(-50%);
}

.about-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.about-social-icons a {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.about-social-icons a:hover {
    background: white;
    color: #00375c;
    transform: translateY(-5px) scale(1.1);
    border-color: white;
}

.about-social-icons svg {
    width: 24px;
    height: 24px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .team-section {
        padding: 40px 20px;
    }

    .about-social-icons {
        flex-wrap: wrap;
    }

    .about-social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 1.75rem;
    }
}
