/* --- Modern About Us Section by Gemini --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');


:root {
    --primary-color: #ffa500; /* Your brand's orange */
    --primary-hover-color: #ff8c00; /* Darker orange for hover */
    --light-bg-color: #f8f9fa; /* A clean, light grey */
    --dark-text: #1e1e1e;
    --secondary-text: #555;
}

.about-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.about-content {
    padding-right: 30px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-intro {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--secondary-text);
    margin-bottom: 30px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-list .icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff1e0; /* Light orange background */
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.feature-list h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.feature-list p {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin: 0;
    line-height: 1.5;
}

/* CTA Button - matches orange CTA style (#F79220) */
.about-cta-button {
    background-color: #F79220;
    color: #3F3F3F;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 146, 32, 0.3);
}

.about-cta-button:hover {
    background-color: #e0851a;
    color: #3F3F3F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(247, 146, 32, 0.4);
}


/* Image Wrapper - Parallax */
.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    will-change: transform;
    transform: translateY(var(--parallax-y, 0)) scale(var(--parallax-scale, 1));
    transition: none;
}

.about-image-wrapper:hover img {
    transform: translateY(var(--parallax-y, 0)) scale(1.08);
    transition: transform 0.4s ease;
}


/* Responsive Styles */
@media(max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    .section-title {
        font-size: 2.75rem;
    }
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .feature-list li {
        text-align: left;
    }
}

@media(max-width: 767px) {
    .section-subtitle {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.1rem;
    }
    .section-intro {
        font-size: 1.2rem;
    }
    .feature-list .icon-wrapper {
        width: 52px;
        height: 52px;
        font-size: 1.rem;
    }
    .feature-list h4 {
        font-size: 1.35rem;
    }
    .feature-list p {
        font-size: 1.15rem;
    }
    .about-cta-button {
        font-size: 1.80rem;
        padding: 22px 40px;
    }
}
