/* Enhanced About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1F2A44 0%, #0D182D 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 20px;
}

.hero-badge span {
    color: white;
    font-weight: 500;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
}

/* Enhanced About Section */
.about-enhanced {
    padding: 100px 0;
    background: #f6f8fb;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1F2A44, #0D182D);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0D182D;
    margin-bottom: 20px;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.2rem;
    color: #5b6476;
    line-height: 1.8;
    margin-bottom: 40px;
}

.key-points {
    margin-bottom: 40px;
}

.key-point {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.key-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.point-icon {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1F2A44, #0D182D);
    border-radius: 50%;
    color: white;
}

.point-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0D182D;
    margin-bottom: 8px;
}

.point-text p {
    color: #5b6476;
    line-height: 1.6;
}

.cta-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid #1F2A44;
    color: #1F2A44;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #1F2A44;
    color: white;
    transform: translateY(-2px);
}

/* Visual Cards */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1F2A44, #0D182D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.visual-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0D182D;
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #D6D9E1;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1F2A44, #0D182D);
    border-radius: 50px;
    transition: width 1s ease;
}

.visual-card span {
    font-size: 0.9rem;
    color: #5b6476;
    font-weight: 500;
}

/* Enhanced Mission & Vision */
.mission-vision-enhanced {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0D182D;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #5b6476;
}

.mv-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card-enhanced {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1F2A44, #0D182D);
}

.mv-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mv-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1F2A44, #0D182D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.mv-icon {
    color: white;
    font-size: 30px;
}

.mv-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D182D;
    margin-bottom: 15px;
}

.mv-content p {
    color: #5b6476;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mv-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mv-features span {
    background: #f6f8fb;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #1F2A44;
    font-weight: 500;
}

/* Enhanced Why Choose Section */
.why-choose-enhanced {
    padding: 100px 0;
    background: #f6f8fb;
}

.why-features-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-feature-enhanced {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    gap: 30px;
    align-items: start;
}

.why-feature-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1F2A44;
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 30px;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1F2A44, #0D182D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.why-content {
    flex: 1;
}

.why-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0D182D;
    margin-bottom: 15px;
}

.why-content p {
    color: #5b6476;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1F2A44;
}

.stat-label {
    font-size: 0.85rem;
    color: #5b6476;
}

.feature-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #1F2A44, #0D182D);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Enhanced Team Section */
.team-enhanced {
    padding: 100px 0;
    background: white;
}

.header-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1F2A44, #0D182D);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-member-enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.member-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.team-member-enhanced:hover .member-overlay {
    opacity: 1;
}

.team-member-enhanced:hover .member-image-wrapper img {
    transform: scale(1.1);
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F2A44;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.member-social a:hover {
    transform: translateY(-5px);
    background: #1F2A44;
    color: white;
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0D182D;
    margin-bottom: 5px;
}

.member-position {
    color: #1F2A44;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #5b6476;
    line-height: 1.7;
    margin-bottom: 20px;
}

.member-expertise {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.member-expertise span {
    background: #f6f8fb;
    color: #1F2A44;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.4rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .why-features-enhanced {
        grid-template-columns: 1fr;
    }
    
    .why-feature-enhanced {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .team-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        justify-content: center;
    }
}
