@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

.pm-about-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    margin: 0;
}

.pm-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pm-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.pm-about-image-col {
    position: relative;
}

.pm-about-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px -20px rgba(37, 99, 235, 0.2);
}

.pm-about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.pm-about-image-wrapper:hover .pm-about-img {
    transform: scale(1.03);
}

.pm-about-label-wrapper {
    margin-bottom: 16px;
    display: inline-block;
}

.pm-about-label {
    color: #2563eb;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.pm-about-label-line {
    width: 100%;
    height: 3px;
    background-color: #2563eb;
    border-radius: 2px;
}

.pm-about-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.pm-about-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.pm-about-action {
    margin-top: 32px;
}

.pm-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1), 0 2px 4px -1px rgba(37, 99, 235, 0.06);
}

.pm-about-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.2), 0 10px 10px -5px rgba(37, 99, 235, 0.1);
}

.pm-about-btn svg {
    transition: transform 0.3s ease;
}

.pm-about-btn:hover svg {
    transform: translateX(4px);
}

/* Categories Section Styles */
.pm-categories-wrapper {
    margin-top: 80px;
    padding-top: 60px;
    text-align: center;
    position: relative;
}

.pm-categories-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #f1f5f9;
}

.pm-categories-header {
    margin-bottom: 30px;
}

.pm-categories-title {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-top: 0;
}

.pm-categories-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

.pm-categories-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: -5px;
}

.pm-categories-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.pm-category-pill {
    display: inline-block;
    padding: 10px 24px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    color: #475569;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pm-category-pill:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

/* Responsive Improvements */
@media (max-width: 1200px) {
    .pm-about-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .pm-about-section {
        padding: 60px 0;
    }

    .pm-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .pm-about-image-col {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .pm-about-label-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .pm-about-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .pm-about-desc {
        font-size: 17px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .pm-about-action {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pm-about-image-wrapper {
        min-height: fit-content;
    }
}

@media (max-width: 576px) {
    .pm-about-section {
        padding: 40px 0;
    }

    .pm-about-container {
        padding: 0 20px;
    }

    .pm-categories-wrapper {
        margin-top: 40px;
        padding-top: 40px;
    }

    .pm-categories-title {
        font-size: 22px;
    }

    .pm-categories-list {
        padding: 0 10px;
        gap: 8px;
    }

    .pm-category-pill {
        padding: 8px 16px;
        font-size: 11px;
    }

    .pm-about-image-wrapper {
        padding: 20px;
        border-radius: 20px;
    }

    .pm-about-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .pm-about-desc {
        font-size: 16px;
        line-height: 1.6;
    }

    .pm-about-btn {
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .pm-about-title {
        font-size: 22px;
    }
}