/* Infographic About Section Styles */
.infographic-section {
    padding: 60px 0;
    background-color: #fdfcff;
}

.infographic-section .row {
    background-color: transparent !important;
    border-radius: 0 !important;
}

/* Left Image Area */
.info-image-wrapper {
    position: relative;
    background: #e9deff;
    border-radius: 40px;
    border-top-right-radius: 120px;
    padding: 50px 30px 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.info-badge-top {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #5b21b6;
    color: white;
    padding: 15px;
    border-radius: 20px;
    border-top-left-radius: 0;
    width: 150px;
    box-shadow: 0 5px 15px rgba(91, 33, 182, 0.3);
    z-index: 2;
    text-align: center;
}

.info-badge-top .icon-circle {
    background: white;
    color: #ec4899;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 auto 10px;
    font-size: 20px;
}

.info-badge-top p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.info-image-inner img {
    width: 100%;
    border-radius: 120px 120px 20px 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.info-badge-bottom {
    position: absolute;
    bottom: -30px;
    left: -10px;
    right: 30px;
    background: #5b21b6;
    color: white;
    padding: 20px;
    border-radius: 15px;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-badge-bottom h2 {
    color: white;
    font-size: 22px;
    margin-bottom: 5px;
}

.info-badge-bottom p {
    color: #ddd6fe;
    margin: 0;
    font-size: 13px;
}

/* Right Content Area */
.info-main-title {
    color: #4c1d95;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-experience-badge {
    display: inline-flex;
    align-items: center;
    background: #7c3aed;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.info-experience-badge .badge-icon {
    font-size: 24px;
    margin-right: 15px;
}

.info-experience-badge span {
    font-size: 14px;
    line-height: 1.4;
}

/* Pillars Row */
.info-pillars-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    border-bottom: 1px solid #ede9fe;
    padding-bottom: 25px;
}

.pillar-item {
    text-align: center;
    flex: 1;
    padding: 0 10px;
    position: relative;
}

.pillar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #ede9fe;
}

.pillar-item i {
    font-size: 32px;
    color: #a78bfa;
    margin-bottom: 15px;
}

.pillar-item p {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Cards List */
.info-cards-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    display: flex;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    align-items: flex-start;
}

.info-card-icon {
    background: #5b21b6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-card-text h3 {
    font-size: 15px;
    color: #4c1d95;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

.info-card-text p {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Bottom Bar */
.info-bottom-bar {
    background: #f5f3ff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-quote {
    display: flex;
    align-items: center;
    flex: 2;
}

.bottom-quote .quote-icon {
    font-size: 40px;
    color: #5b21b6;
    margin-right: 20px;
}

.bottom-quote h4 {
    font-size: 22px;
    color: #5b21b6;
    font-style: italic;
    margin-bottom: 5px;
}

.bottom-quote p {
    margin: 0;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.bottom-values {
    display: flex;
    flex: 2;
    justify-content: space-around;
    border-left: 1px solid #ddd6fe;
    padding-left: 20px;
}

.value-item {
    text-align: center;
}

.value-item i {
    font-size: 24px;
    color: #a78bfa;
    margin-bottom: 5px;
}

.value-item p {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.bottom-image {
    flex: 1;
    text-align: right;
}

@media (max-width: 991px) {
    .info-image-wrapper {
        margin-bottom: 60px;
    }
    .info-pillars-row {
        flex-wrap: wrap;
    }
    .pillar-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    .pillar-item::after {
        display: none;
    }
    .info-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
    .bottom-quote {
        margin-bottom: 20px;
        flex-direction: column;
    }
    .bottom-quote .quote-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .bottom-values {
        border-left: none;
        border-top: 1px solid #ddd6fe;
        padding-top: 20px;
        padding-left: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .bottom-image {
        text-align: center;
    }
}
