/* About Section Styles */
:root {
    --primary-purple: #6a0dad;
    --dark-purple: #500a8c;
    --light-purple: #8b3dbd;
}

.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f5fc 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-accent {
    color: var(--primary-purple);
    display: block;
    margin-top: 10px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* Left Side - Visual */
.about-visual {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(106, 13, 173, 0.15);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--light-purple), var(--primary-purple));
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.3), rgba(80, 10, 140, 0.2));
    z-index: 1;
}

/* Floating Stats Card */
.stats-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    animation: floatCard 3s ease-in-out infinite;
}

.stat-item-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-purple);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

/* Feature Highlights */
.feature-highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(106, 13, 173, 0.15);
}

.highlight-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.highlight-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* Right Side - Content */
.about-content {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out 0.5s forwards;
}

.content-block {
    margin-bottom: 35px;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.content-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary-purple), var(--dark-purple));
    border-radius: 2px;
}

.content-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Value Props */
.value-props {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.1);
    transform: translateY(-5px);
}

.value-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon {
    font-size: 1.5rem;
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.value-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* About CTA Buttons */
.about-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-about-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.3);
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(106, 13, 173, 0.4);
}

.btn-about-primary .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-about-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-about-secondary {
    background: white;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-about-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(106, 13, 173, 0.3);
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.stat-column {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    margin-left: 5px;
}

.stat-column:nth-child(3) .stat-number::after {
    content: '%';
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Certifications */
.certifications {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.cert-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-item {
    padding: 15px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
}

.cert-item:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.15);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual,
    .about-content {
        transform: none;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .about-image {
        height: 350px;
    }

    .stats-card {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }

    .experience-badge {
        top: 20px;
        right: 20px;
        padding: 15px;
    }

    .value-props {
        margin: 30px 0;
    }

    .about-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cert-logos {
        gap: 20px;
    }

    .cert-item {
        font-size: 0.85rem;
        padding: 12px 20px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .about-image {
        height: 300px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .feature-highlights {
        gap: 10px;
    }

    .highlight-item {
        padding: 12px 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .section-header,
    .about-visual,
    .about-content,
    .stats-bar,
    .certifications {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .stats-card {
        animation: none;
    }
}