/* Base Styles for Preview */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   ABOUT SECTION STYLES
   ========================================= */
.about-section,
.about-section * {
    font-family: 'Poppins', sans-serif;
}

.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* Left Column: Image, Features & Stats */
.about-left-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 30, 50, 0.15);
}

.image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-main:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: linear-gradient(135deg, #e2422a 0%, #c93520 100%);
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(226, 66, 42, 0.4);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.badge-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.decorative-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-color: rgba(226, 66, 42, 0.1);
    border-radius: 50%;
    z-index: -1;
}

/* Right Column: Content */
.about-content-wrapper {
    flex: 1;
    padding-top: 20px;
}

/* Feature List & Stats in Left Column */
.about-left-wrapper .feature-list {
    margin: 0;
    padding: 0;
}

.about-left-wrapper .stats-container {
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #e2422a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 3px;
    background-color: #e2422a;
    border-radius: 2px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #0F1E32;
    line-height: 1.3;
    margin-bottom: 25px;
}

.section-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #0F1E32;
}

.feature-list li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Dynamic Stats Counter */
.stats-container {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #e2422a;
    line-height: 1;
}

.stat-suffix {
    font-size: 36px;
    font-weight: 800;
    color: #e2422a;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Button */
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e2422a;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(226, 66, 42, 0.3);
}

.btn-about:hover {
    background-color: #c93520;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(226, 66, 42, 0.4);
}

.btn-about svg {
    transition: transform 0.3s ease;
}

.btn-about:hover svg {
    transform: translateX(5px);
}

/* =========================================
   DYNAMIC SCROLL ANIMATIONS
   ========================================= */
.reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .about-container {
        gap: 50px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 60px;
    }

    .about-left-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-wrapper {
        width: 100%;
    }

    .experience-badge {
        top: 10px;
        right: -10px;
        padding: 20px 25px;
        min-width: 120px;
    }

    .badge-number {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 25px;
    }

    .stat-item {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .stat-label {
        margin-top: 0;
    }
}