/* About Page Specific Styles */

/* Navigation Active State */
.nav-links .active {
    color: #ffd700 !important;
    font-weight: 600;
    position: relative;
}

.nav-links .active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffd700;
    border-radius: 2px;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #ffd700, #00bfff);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.about-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.about-hero .hero-text {
    flex: 1;
    color: white;
}

.about-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-hero .hero-text p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

.stat-item {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Company Story Section */
.company-story {
    padding: 6rem 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 2px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 600;
}

.highlight i {
    color: #ff1493;
    font-size: 1.2rem;
}

.story-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 250px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Our Strengths Section */
.strengths-section {
    padding: 6rem 0;
    background: white;
}

.strengths-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.strengths-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.strengths-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    border-radius: 2px;
}

.strengths-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    font-weight: 500;
}

.strength-item i {
    color: #43e97b;
    font-size: 1.2rem;
    min-width: 20px;
}

.strengths-visual {
    display: flex;
    justify-content: center;
}

.strength-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.strength-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #43e97b;
}

.strength-card:hover {
    transform: translateY(-10px);
}

.strength-card i {
    font-size: 2.5rem;
    color: #43e97b;
    margin-bottom: 1rem;
}

.strength-card h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

/* Our Pledge Section */
.pledge-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    overflow: hidden;
}

.pledge-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #ffd700, #00bfff);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.pledge-banner {
    position: relative;
    z-index: 2;
}

.pledge-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    color: white;
}

.pledge-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.pledge-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pledge-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Mission Vision Values Section */
.mvv-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.mvv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mvv-card.mission::before {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.mvv-card.vision::before {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.mvv-card.pledge::before {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.mvv-card.background::before {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.mvv-card.strengths::before {
    background: linear-gradient(135deg, #ffd700, #ffb300);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mission .mvv-icon {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.vision .mvv-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.pledge .mvv-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.background .mvv-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.strengths .mvv-icon {
    background: linear-gradient(135deg, #ffd700, #ffb300);
}

.mvv-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.mvv-card p:last-child {
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 3rem;
}

.team-member h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.role {
    color: #ff1493;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose {
    padding: 6rem 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #ff1493;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Awards Section */
.awards-section {
    padding: 6rem 0;
    background: white;
}

.awards-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 4rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.award-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.award-item p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #ffd700, #00bfff);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-primary {
    background: white;
    color: #ff1493;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #ff1493;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .about-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .strengths-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .strength-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .pledge-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mvv-card {
        padding: 2rem 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .story-text h2,
    .strengths-text h2,
    .pledge-text h2,
    .team-section h2,
    .why-choose h2,
    .awards-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .strength-cards {
        grid-template-columns: 1fr;
    }
    
    .strength-card {
        padding: 1.5rem 1rem;
    }
    
    .mvv-card {
        padding: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .pledge-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}