/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Column */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-image {
    transform: translateY(-5px);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    z-index: 3;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0.9;
}

/* Decorations */
.about-decoration-1 {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

.about-decoration-2 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border: 2px solid var(--color-secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: morph 8s ease-in-out infinite;
}

/* Content Column */
.about-content-col .section-header {
    margin-bottom: 30px;
}

.about-content-col .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Values Grid */
.values-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #e5e7eb;
    transform: translateX(10px);
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--color-primary);
    color: white;
}

.value-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.value-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Founder Info */
.founder-info {
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.founder-details h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.founder-details span {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .experience-badge {
        right: 0;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content-col .section-title {
        font-size: 2rem;
    }

    .experience-badge {
        padding: 15px 20px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}