/* ================= About Section ================= */
.about-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #fff8f3 0%, #ffecec 100%);
    animation: fadeIn 1s ease-in-out;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* ===== Left Image ===== */
.about-image {
    flex: 1;
    min-width: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeInLeft 1s ease-in-out;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* ===== Right Text ===== */
.about-content {
    flex: 1.2;
    min-width: 320px;
    animation: fadeInRight 1s ease-in-out;
}

.about-content h2 {

    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-content h3 {

    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 20px;
}

.about-content p {

    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-content .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.about-content .btn-learn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.about-content .btn-learn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* ===== Counter Section ===== */
.about-stats {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-stats .stat-box {
    background: #fff;
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.about-stats .stat-box:hover {
    transform: translateY(-5px);
}

.about-stats h4 {

    color: var(--primary-color);
    font-weight: 600;
}

.about-stats p {
    color: #555;
    margin-top: 5px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }





    .about-image {
        order: -1;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}













.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 16px;
}



/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 20px;
}

.faq-header .badge {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
}



/* Item styling (one per row) */
.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow .2s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}




.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    text-align: left;
    padding: 16px 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Arrow icon (pure CSS using a span) */

















.faq-question .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-hover);
    transition: transform .25s ease;
    color: white;
}














/* Rotate when open */
.faq-item[aria-expanded="true"] .arrow {
    transform: rotate(90deg);
    background: #e9e9e9;
    color: var(--primary-color);
}

.faq-answer {
    display: none;
    padding: 18px 16px;
    color: #555;
    line-height: 1.6;
    background-color: #fff6f7;
}

.faq-item[aria-expanded="true"] .faq-answer {
    display: block;
}

/* Responsive: single column already, but ensure inner content looks good on very small screens */
@media (max-width: 600px) {
    .faq-question {
        padding: 14px 16px;
    }
}