﻿

.aboutth {
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.containerth {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-contentth {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-textth {
    flex: 1;
    width: 50%;
    animation: slideInLeft 1s ease-out;
}

    .about-textth h2 {
        font-size: 2.2rem;
        font-weight: 700;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        position: relative;
    }

        .about-textth h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }

    .about-textth p {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 1rem;
        text-align: justify;
        line-height: 1.6;
    }

        .about-textth p strong {
            color: #333;
            font-weight: 600;
        }

.about-featuresth {
    list-style: none;
    margin-top: 1.5rem;
}

    .about-featuresth li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
        color: #444;
        position: relative;
        padding-left: 1.8rem;
        border-radius: 6px;
    }

        .about-featuresth li:hover {
            background: rgba(102, 126, 234, 0.1);
        }

        .about-featuresth li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #4CAF50;
            font-weight: bold;
            font-size: 1rem;
            background: rgba(76, 175, 80, 0.1);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

.about-imageth {
    flex: 1;
    width: 50%;
    position: relative;
    animation: slideInRight 1s ease-out;
}

    .about-imageth img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        display: block;
        max-height: none;
    }

        .about-imageth img:hover {
            transform: scale(1.02);
        }

/* Remove placeholder styling since we want to show actual image */

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-contentth {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .about-textth,
    .about-imageth {
        width: 100%;
    }

        .about-textth h2 {
            font-size: 2.5rem;
            text-align: center;
        }

            .about-textth h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

    .containerth {
        padding: 0 1rem;
    }

    .aboutth::before {
        margin: 1rem;
    }

    .about-imageth img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-textth h2 {
        font-size: 1.8rem;
    }

    .about-contentth {
        padding: 1.2rem;
    }

    .about-featuresth li {
        font-size: 0.85rem;
    }
}

/* Additional visual enhancements */
.about-contentth {
    position: relative;
    overflow: hidden;
}

    .about-contentth::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }
