/* ========================================
   About Preview Section Styles
   ======================================== */

:root {
    /* Primary Brand Colors */
    --brand-green: #009244;
    --brand-yellow: #fcc300;
    --brand-red: #EB1C24;
    
    /* Green Variations (Primary) */
    --green-primary: #009244;
    --green-light: #00B050;
    --green-dark: #007A3D;
    --green-lighter: rgba(0, 146, 68, 0.1);
    --green-lightest: rgba(0, 146, 68, 0.05);
    
    /* Yellow Variations (Accent) */
    --yellow-primary: #fcc300;
    --yellow-light: #FFD700;
    --yellow-dark: #D4A300;
    --yellow-lighter: rgba(252, 195, 0, 0.1);
    --yellow-lightest: rgba(252, 195, 0, 0.05);
    
    /* Red Variations (Emphasis/CTA) */
    --red-primary: #EB1C24;
    --red-light: #FF4D56;
    --red-dark: #C41017;
    --red-lighter: rgba(235, 28, 36, 0.1);
    --red-lightest: rgba(235, 28, 36, 0.05);
    
    /* Legacy Support - Yellow as Primary */
    --primary-teal: var(--yellow-primary);
    --light-teal: var(--yellow-light);
    
    /* Neutral Colors */
    --aqua: #E0FFFF;
    --soft-blue: #F0F8FF;
    --white: #FFFFFF;
    --text-dark: #1A202C;
    --text-gray: #4A5568;
    
    /* Backgrounds - Yellow as Primary */
    --gradient-bg: linear-gradient(135deg, rgba(252, 195, 0, 0.05) 0%, rgba(0, 146, 68, 0.05) 50%, rgba(235, 28, 36, 0.05) 100%);
    --gradient-primary: linear-gradient(135deg, var(--yellow-primary) 0%, var(--yellow-light) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--soft-blue);
    line-height: 1.6;
}

/* Main Section */
.about-preview-section {
    padding: 6rem 2rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(32, 178, 170, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side: Image */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-frame:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.image-frame:hover .about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.3) 0%,
            transparent 50%);
    pointer-events: none;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    padding: 20px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow:
        0 10px 40px rgba(0, 146, 68, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.badge-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

/* Right Side: Content */
.about-content-wrapper {
    padding: 20px 0;
}

.badge {
    margin-bottom: 20px;
}

.about-heading {
    font-weight: 700;
}

.about-heading:after {
    display: none;
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 36px;
    font-weight: 400;
}

/* Feature List */
.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 146, 68, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-teal);
    background: var(--soft-blue);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 146, 68, 0.15);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.learn-more-link:hover .arrow-icon {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .about-preview-container {
        gap: 40px;
    }

    .about-content-wrapper {
        padding: 0px 0px;
    }

    .about-image-wrapper {
        padding: 0px 0px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-preview-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        order: 1;
    }

    .about-content-wrapper {
        order: 2;
        display: flex;
        flex-direction: column;
    }

    .about-image {
        height: 500px;
    }

    .experience-badge {
        bottom: 30px;
        left: 30px;
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    .about-preview-section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 640px) {
    .about-preview-section {
        padding: 3rem 1.5rem;
    }

    .about-description {
        font-size: 16px;
    }

    .about-image {
        height: 300px;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 14px 20px;
        gap: 12px;
    }

    .badge-icon {
        width: 36px;
        height: 36px;
    }

    .badge-number {
        font-size: 20px;
    }

    .badge-text {
        font-size: 12px;
    }

    .feature-item {
        padding: 14px 16px;
    }

    .feature-text {
        font-size: 15px;
    }
    .about-image-wrapper{
        padding: 0px;
    }
}