.pkd-about-section {
    padding: 80px 20px;
    /* background: linear-gradient(135deg, #e8e4f3 0%, #f0ecf9 100%); */
    position: relative;
    overflow: hidden;
}

.pkd-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pkd-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.pkd-col-left {
    flex: 1;
    min-width: 300px;
}

.pkd-col-right {
    flex: 1;
    min-width: 300px;
}

/* Image Grid */
.pkd-image-grid {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.pkd-image-wrapper {
    position: relative;
    overflow: hidden;
}

.pkd-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pkd-image-main {
    height: 500px;
}

.pkd-seo-badge {
    display: none;
}

.pkd-yellow-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 0 50% 50% 0;
    z-index: -1;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.pkd-dots-pattern {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

.pkd-dots-left {
    left: 0;
    top: 50%;
}

.pkd-dots-right {
    right: 0;
    bottom: 20%;
}

/* Content Section */
.pkd-content {
    padding: 0 20px;
}

.pkd-subtitle {
    color: #E763AD;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* .pkd-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #303779;
} */

.pkd-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pkd-description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
}

/* Tabs */
.pkd-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.pkd-tab-button {
    padding: 12px 30px;
    background: #b0b3c9;
    border: 2px dashed #d0d0d0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pkd-tab-button:hover {
    border-color: #303779;
    color: #303779;
}

.pkd-tab-button.pkd-active {
    background: linear-gradient(to bottom, #3C41AD, #303779);
    border-color: #303779;
    color: white;
    border-style: solid;
}

/* Tab Content */
.pkd-tab-content {
    display: none;
}

.pkd-tab-content.pkd-active {
    display: block;
}

.pkd-tab-text {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.6;
}

.pkd-features-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.pkd-features {
    flex: 1;
    min-width: 250px;
}

.pkd-feature-list {
    list-style: none;
    margin-bottom: 5px;

    padding-left: 16px;
}

.pkd-feature-item {
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    list-style: disc;

}

.pkd-feature-icon {
    width: 20px;
    height: 20px;
    background: #303779;
    border-radius: 4px;
    flex-shrink: 0;
}

.pkd-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #303779 0%, #8B5CF6 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 70, 255, 0.3);
}

.pkd-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(107, 70, 255, 0.4);
}

.pkd-arrow-icon {
    width: 20px;
    height: 20px;
}

/* Stats */
.pkd-stats {
    flex: 0 0 auto;
    min-width: 200px;
}

.pkd-stat-clients {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.pkd-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
}

.pkd-stat-label {
    font-size: 13px;
    color: #000000;
    line-height: 1.4;
    padding-top: 8px;
}

.pkd-progress-circle {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.pkd-circle-bg {
    fill: none;
    stroke: #e5e5e5;
    stroke-width: 12;
}

.pkd-circle-progress {
    fill: none;
    stroke: url(#pkd-gradient);
    stroke-width: 12;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 1s ease;
}

.pkd-circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.pkd-circle-percent {
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
}

.pkd-circle-label {
    font-size: 13px;
    color: #000000;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .pkd-row {
        gap: 50px;
    }

    .pkd-title {
        font-size: 36px;
    }

    .pkd-image-main {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .pkd-about-section {
        padding: 60px 15px;
    }

    .pkd-row {
        gap: 40px;
    }

    .pkd-col-left,
    .pkd-col-right {
        min-width: 100%;
    }

    .pkd-title {
        font-size: 28px;
    }

    .pkd-image-main {
        height: 400px;
    }

    .pkd-features-stats {
        flex-direction: column;
        gap: 30px;
    }

    .pkd-features,
    .pkd-stats {
        min-width: 100%;
    }

    .pkd-tabs {
        gap: 8px;
        justify-content: center;
    }

    .pkd-tab-button {
        padding: 10px 20px;
        font-size: 12px;
    }

    .pkd-yellow-accent {
        width: 250px;
        height: 250px;
    }

    .pkd-content {
        padding: 0;
    }

    .pkd-subtitle,
    .pkd-title {
        text-align: center;
    }

    .pkd-subtitle::before {
        display: none;
    }

    .pkd-description {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pkd-about-section {
        padding: 40px 15px;
    }

    .pkd-title {
        font-size: 24px;
    }

    .pkd-image-main {
        height: 350px;
        border-width: 6px;
    }

    .pkd-stat-number {
        font-size: 32px;
    }

    .pkd-progress-circle {
        width: 140px;
        height: 140px;
    }

    .pkd-circle-percent {
        font-size: 24px;
    }

    .pkd-tab-button {
        padding: 8px 16px;
        font-size: 11px;
    }

    .pkd-cta-button {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }

    .pkd-feature-item {
        font-size: 13px;
    }

    .pkd-yellow-accent {
        width: 200px;
        height: 200px;
        right: -80px;
    }

    .pkd-dots-pattern {
        width: 60px;
        height: 60px;
    }
}