/* Start custom CSS for html, class: .elementor-element-428cc17 *//* --- CONTAINER --- */
.about-section-wrapper {
    --brand-orange: #F68B1E;
    --text-dark: #222;
    --text-grey: #666;
    --bg-light: #fff;
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 80px 20px 60px 20px;
    background: var(--bg-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- LEFT CONTENT --- */
.about-content {
    flex: 1;
}

.brand-tag {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.about-heading {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    font-weight: 800;
}

.about-heading .highlight {
    color: var(--brand-orange);
    position: relative;
    white-space: nowrap;
}

/* Underline effect on highlight */
.about-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(246, 139, 30, 0.2);
    z-index: -1;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.founder-note {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 4px solid var(--brand-orange);
}

.founder-note p { margin: 0 0 5px 0; color: #444; }
.founder-note strong { color: var(--text-dark); }

.about-cta {
    display: inline-block;
    padding: 15px 35px;
    background: var(--text-dark);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.2s, background 0.2s;
}

.about-cta:hover {
    background: var(--brand-orange);
    transform: translateY(-3px);
}

/* --- RIGHT VISUAL --- */
.about-visual {
    flex: 1;
    position: relative;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(246, 139, 30, 0.1); /* Graphic shadow effect */
}

.image-frame img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.image-frame:hover img { transform: scale(1.02); }

/* Floating Badge */
.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eee;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-orange);
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

/* --- STATS BAR --- */
.stats-row {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    display: flex;
    justify-content: space-around;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.stat-item p {
    color: var(--text-grey);
    margin: 5px 0 0 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}/* End custom CSS */