/* About Us Section Styles */
.about-section {
    padding: 100px 8% 20px;
    background: #ffffff;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Image & Badge */
.about-image-wrapper {
    position: relative;
    padding-bottom: 40px; /* Space for the overlapping badge */
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: -30px;
    background: var(--primary-color, #1B3565); /* Deep Red */
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
    width: 280px;
    z-index: 2;
}

.exp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.exp-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
}

.exp-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Right Side - Content */
.about-content h2 {
    font-size: 2.6rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.about-subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--accent-color, #E88D23);
    font-weight: 600;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-learn-more {
    display: inline-block;
    padding: 14px 30px;
    background: var(--primary-color, #1B3565);
    color: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition, all 0.3s ease);
    box-shadow: 0 5px 15px rgba(27, 53, 101, 0.2);
}

.btn-learn-more:hover {
    background: var(--accent-color, #E88D23);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 141, 35, 0.3);
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-cta-btn:hover {
    background: linear-gradient(135deg, #2ae06d 0%, #16a090 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(18, 140, 126, 0.4);
}

.whatsapp-cta-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.whatsapp-cta-btn:hover svg {
    transform: rotate(10deg) scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .about-container {
        gap: 50px;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 40px 5%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .experience-badge {
        left: 0;
        bottom: -20px;
        width: 250px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 2rem;
    }

    .experience-badge {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: 20px;
        box-shadow: none;
    }
}
