/* --- About Us Widget --- */

.tc-about-widget {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    font-family: 'Outfit', sans-serif;
    /* Fallback */
}

/* Layout Variations */
.tc-about-widget.style-1 {
    flex-direction: row;
}

.tc-about-widget.style-2 {
    flex-direction: row-reverse;
}

/* Columns */
.tc-about-image-col {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.tc-about-content-col {
    flex: 1;
    min-width: 300px;
}

/* Image Section */
.tc-about-image-wrapper {
    position: relative;
    padding: 20px;
}

.tc-main-img-box {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tc-main-img-box img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.tc-about-widget:hover .tc-main-img-box img {
    transform: scale(1.05);
}

/* Decoration */
.tc-about-shape {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--e-global-color-primary, #FF5B24);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

/* Experience Badge */
.tc-about-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    /* Offset style */
    background: var(--e-global-color-accent, #FF5B24);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    min-width: 140px;
    animation: floatBadge 3s ease-in-out infinite alternate;
}

.tc-badge-year {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.tc-badge-text {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Content Section */
.tc-about-tagline {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--e-global-color-accent, #FF5B24);
    margin-bottom: 15px;
}

.tc-about-title {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #222;
}

.tc-about-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

/* Points */
.tc-about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.tc-about-point {
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
}

.tc-point-icon i {
    color: var(--e-global-color-accent, #FF5B24);
    margin-right: 10px;
    font-size: 18px;
}

.tc-point-text {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

/* Footer Section */
.tc-about-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Button */
.tc-about-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--e-global-color-accent, #FF5B24);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    /* Slightly refined */
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.tc-about-btn:hover {
    background: transparent;
    border-color: var(--e-global-color-accent, #FF5B24);
    color: var(--e-global-color-accent, #FF5B24);
}

/* Signature Block */
.tc-about-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tc-author-name {
    display: block;
    font-weight: 700;
    color: #222;
    font-size: 16px;
}

.tc-author-role {
    display: block;
    font-size: 13px;
    color: #777;
}

.tc-author-sign {
    max-height: 50px;
    width: auto;
    opacity: 0.7;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .tc-about-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .tc-about-widget {
        flex-direction: column !important;
        gap: 40px;
    }

    .tc-about-image-col,
    .tc-about-content-col {
        width: 100%;
        min-width: auto;
    }

    .tc-about-badge {
        right: 0;
        bottom: 20px;
        padding: 15px;
        min-width: 100px;
    }

    .tc-badge-year {
        font-size: 28px;
    }

    .tc-about-point {
        width: 100%;
    }

    .tc-about-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}