/* Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #fff5f9 0%, #ffe8f3 100%);
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(239, 84, 145, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(239, 84, 145, 0.3);
}

/* Section Badges */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(239, 84, 145, 0.25);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: white;
}

.expertise-card {
    background: linear-gradient(135deg, #fff 0%, #fff5f9 100%);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: #ef5491;
    box-shadow: 0 15px 40px rgba(239, 84, 145, 0.2);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-icon {
    transform: rotate(360deg);
}

.expertise-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.expertise-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Mission and Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.mv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.mv-row.reverse {
    flex-direction: row-reverse;
}

.mv-icon {
    flex: 0 0 220px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.mv-icon img {
    max-width: 250px;
    filter: drop-shadow(0 10px 30px rgba(239, 84, 145, 0.2));
}

.mv-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: #ef5491;
    box-shadow: 0 20px 60px rgba(239, 84, 145, 0.15);
}

.card-tag {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(239, 84, 145, 0.3);
}

.mission-tag {
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    color: white;
}

.vision-tag {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.mv-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f9 0%, #fff 100%);
}

.custom-accordion .accordion-item {
    background: white;
    border: none;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    box-shadow: 0 8px 30px rgba(239, 84, 145, 0.15);
}

.custom-accordion .accordion-button {
    background: white;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    color: white;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.8rem;
    font-weight: 600;
    width: auto;
    height: auto;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(239, 84, 145, 0.1);
    color: #ef5491;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}

.custom-accordion .accordion-button:not(.collapsed) .faq-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.custom-accordion .accordion-body {
    padding: 25px 30px 30px 80px;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    background: white;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: space-between;
        width: 100%;
    }

    .mv-row,
    .mv-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .mv-icon {
        animation: none;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .expertise-section,
    .mission-vision-section,
    .faq-section {
        padding: 60px 0;
    }

    .mv-card {
        padding: 30px 25px;
    }

    .mv-card h4 {
        font-size: 1.5rem;
    }

    .custom-accordion .accordion-button {
        font-size: 1rem;
        padding: 20px;
    }

    .custom-accordion .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }

    .faq-number {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .expertise-card {
        padding: 25px 20px;
    }

    .mv-icon img {
        max-width: 180px;
    }
}