/* About Page Styles */

/* Hero Section */
.about-hero {
    padding: 6rem 0 5rem;
    background: linear-gradient(180deg, #F0F4FF 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0A0E27;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.about-hero-description {
    font-size: 1.15rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    top: 50%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Label */
.section-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(45, 91, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Our Story Section */
.our-story-section {
    padding: 5rem 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #0A0E27;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-content p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1.2rem;
    align-items: start;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(45, 91, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: #0A0E27;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.highlight-item p {
    font-size: 0.95rem;
    color: #6B7280;
    margin: 0;
}

.story-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    /* overflow: hidden; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.floating-card h5 {
    font-size: 1.5rem;
    color: #0A0E27;
    font-weight: 800;
    margin: 0;
}

.floating-card p {
    font-size: 0.85rem;
    color: #6B7280;
    margin: 0;
}

.card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    left: -30px;
    animation-delay: 1s;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #F0F4FF 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.mv-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mv-card h3 {
    font-size: 2rem;
    color: #0A0E27;
    font-weight: 800;
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #4B5563;
    margin-bottom: 1rem;
}

.mv-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Core Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0A0E27;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6B7280;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: #F9FAFB;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.value-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 91, 255, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h4 {
    font-size: 1.4rem;
    color: #0A0E27;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F0F4FF 0%, #F9FAFB 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    color: #0A0E27;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.why-choose-content > p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-feature {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.feature-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    background: rgba(45, 91, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    color: #0A0E27;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.95rem;
    color: #6B7280;
    margin: 0;
}

/* CTA Section */
.about-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A1628 0%, #1E3A8A 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 91, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.about-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-grid,
    .mv-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .story-content h2,
    .section-header h2,
    .why-choose-content h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: 1rem;
    }
    
    .about-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 0 2rem;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero-description {
        font-size: 0.95rem;
    }
    
    .mv-card,
    .value-card {
        padding: 2rem;
    }
    
    .story-content h2,
    .section-header h2,
    .why-choose-content h2 {
        font-size: 1.6rem;
    }
    
    .about-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
