.w-webflow-badge {
    display: none !important;
}

.container-large.v1 {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 991px) {
    .nav-button-group.for-tablet {
        position: relative;
        right: 2rem;
    }
}

.cm-logo img {
    max-width: 180px;
}



/* =======================================COUNTER SECTION ==================================================================== */
.pkd-counter-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.pkd-counter-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding: 80px 40px;
}

.pkd-counter-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.pkd-counter-item:nth-child(1) {
    animation-delay: 0.1s;
}

.pkd-counter-item:nth-child(2) {
    animation-delay: 0.2s;
}

.pkd-counter-item:nth-child(3) {
    animation-delay: 0.3s;
}

.pkd-counter-item:nth-child(4) {
    animation-delay: 0.4s;
}

.pkd-counter-number {
    font-size: 80px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.pkd-counter-label {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .pkd-counter-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        padding: 60px 30px;
    }

    .pkd-counter-number {
        font-size: 64px;
    }

    .pkd-counter-label {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .pkd-counter-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .pkd-counter-number {
        font-size: 56px;
    }

    .pkd-counter-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .pkd-counter-number {
        font-size: 48px;
    }
}

/* =======================================COUNTER SECTION END==================================================================== */

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}


/* ===================================== HOME PAGE 3RD SECTION ===================================================================  */
.pkd-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0015;
    color: #ffffff;
    line-height: 1.6;
}

.pkd-section {
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0015 0%, #1a0b2e 100%);
}

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

.pkd-grid-user-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left side - Circles and Image */
.pkd-wrap-image-user-circles {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.pkd-image-circles-user {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: rotateCircles 20s linear infinite;
}

@keyframes rotateCircles {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pkd-image-user-centered {
    position: absolute;
    width: 35%;
    height: 35%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 2;
    object-fit: cover;
}

.pkd-neon-user-circle-halves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* Right side - Content */
.pkd-wrap-content-user-center {
    max-width: 500px;
}

.pkd-wrap-heading-top-text-left {
    margin-bottom: 24px;
}

.pkd-top-text {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #a78bfa;
    margin-bottom: 12px;
    font-weight: 600;
}

.pkd-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.pkd-no-margins {
    margin: 0;
}

.pkd-description {
    color: #b4b4b4;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Checklist */
.pkd-master-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pkd-mg-top-16 {
    margin-top: 16px;
}

.pkd-single-checklist {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #e5e5e5;
}

.pkd-icon-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* CTA Button */
.pkd-flex-cta-left {
    display: flex;
    justify-content: flex-start;
}

.pkd-mg-top-8 {
    margin-top: 8px;
}

.pkd-cta-outline {
    padding: 14px 32px;
    border: 2px solid #8b5cf6;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.pkd-cta-outline:hover {
    background: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Animation Classes */
.pkd-animate-flip {
    animation: flipInY 1s ease-out;
}

@keyframes flipInY {
    from {
        transform: translate(-50%, -50%) perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: translate(-50%, -50%) perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: translate(-50%, -50%) perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: translate(-50%, -50%) perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        transform: translate(-50%, -50%) perspective(400px);
    }
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .pkd-grid-user-center {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pkd-wrap-image-user-circles {
        max-width: 450px;
    }

    .pkd-wrap-content-user-center {
        max-width: 100%;
        text-align: center;
    }

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

    .pkd-heading {
        font-size: 40px;
    }

    .pkd-flex-cta-left {
        justify-content: center;
    }

    .pkd-master-checklist {
        align-items: center;
    }

    .pkd-single-checklist {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .pkd-section {
        padding: 60px 20px;
    }

    .pkd-wrap-image-user-circles {
        max-width: 350px;
    }

    .pkd-heading {
        font-size: 32px;
    }

    .pkd-description {
        font-size: 15px;
    }

    .pkd-grid-user-center {
        gap: 30px;
    }
}

@media screen and (max-width: 479px) {
    .pkd-section {
        padding: 40px 15px;
    }

    .pkd-wrap-image-user-circles {
        max-width: 280px;
    }

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

    .pkd-cta-outline {
        padding: 12px 28px;
        font-size: 15px;
    }

    .pkd-single-checklist {
        font-size: 14px;
    }
}

/* ===================================== HOME PAGE 3RD SECTION END==================================================================  */


/* ================================ HOMEPAGE TAB SECTION =============================================================================== */
.pkd-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

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

.pkd-heading-center {
    text-align: center;
    margin-bottom: 64px;
}

.pkd-top-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a855f7;
    margin-bottom: 12px;
}

.pkd-heading-center h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.pkd-tabs-wrapper {
    position: relative;
}

.pkd-tabs-menu {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 80px;
}

.pkd-tab-link {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pkd-tab-link:hover {
    border-color: rgba(168, 85, 247, 0.6);
    background: rgba(168, 85, 247, 0.1);
}

.pkd-tab-link.pkd-active {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border-color: transparent;
}

.pkd-tabs-content {
    position: relative;
}

.pkd-tab-pane {
    display: none;
}

.pkd-tab-pane.pkd-active {
    display: block;
    animation: pkdFadeIn 0.3s ease;
}

@keyframes pkdFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pkd-tab-content-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 600px;
}

.pkd-tab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.pkd-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.pkd-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 0, 20, 0.95) 0%, transparent 100%);
    z-index: 2;
}

.pkd-content-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 48px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.pkd-content-left {
    flex: 1;
    max-width: 600px;
}

.pkd-content-top {
    margin-bottom: 20px;
}

.pkd-content-top h2 {
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.pkd-subtitle {
    font-size: 16px;
    color: #d1d5db;
}

.pkd-description {
    font-size: 16px;
    line-height: 1.6;
    color: #e5e7eb;
}

.pkd-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pkd-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pkd-check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pkd-checklist-item div {
    font-size: 15px;
    color: #ffffff;
}

.pkd-neon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pkd-heading-center h2 {
        font-size: 40px;
    }

    .pkd-content-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
    }

    .pkd-content-top h2 {
        font-size: 36px;
    }

    .pkd-tab-content-wrapper {
        height: 700px;
    }
}

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

    .pkd-heading-center {
        margin-bottom: 48px;
    }

    .pkd-heading-center h2 {
        font-size: 32px;
    }

    .pkd-tabs-menu {
        flex-wrap: wrap;
        margin-bottom: 60px;
    }

    .pkd-tab-link {
        padding: 12px 24px;
        font-size: 15px;
    }

    .pkd-tab-content-wrapper {
        height: 650px;
    }

    .pkd-content-bottom {
        padding: 24px;
    }

    .pkd-content-top h2 {
        font-size: 28px;
    }

    .pkd-description {
        font-size: 15px;
    }
}

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

    .pkd-heading-center h2 {
        font-size: 28px;
    }

    .pkd-tabs-menu {
        gap: 8px;
        margin-bottom: 40px;
    }

    .pkd-tab-link {
        padding: 10px 20px;
        font-size: 14px;
    }

    .pkd-tab-content-wrapper {
        height: 600px;
        border-radius: 16px;
    }

    .pkd-content-bottom {
        padding: 20px;
    }

    .pkd-content-top h2 {
        font-size: 24px;
    }

    .pkd-subtitle {
        font-size: 14px;
    }

    .pkd-description {
        font-size: 14px;
    }

    .pkd-checklist {
        gap: 12px;
    }

    .pkd-checklist-item div {
        font-size: 14px;
    }
}

/* ================================ HOMEPAGE TAB SECTION END =============================================================================== */

/* ============================================HOMEPAGE PRODUCTS SECTION =================================================================== */

/* Main Section */
.pkd1-section {
    padding: 100px 20px;
    background: #0a0a0f;
}

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

/* Header with CTA */
.pkd1-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 30px;
}

.pkd1-heading-wrapper {
    flex: 1;
}

.pkd1-top-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8b5cf6;
    margin-bottom: 15px;
}

.pkd1-main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
}

.pkd1-cta-button {
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: lowercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pkd1-cta-button:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

/* Features Grid */
.pkd1-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Feature Card */
.pkd1-feature-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 40px;
    text-decoration: none;
    color: #ffffff;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pkd1-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.pkd1-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.pkd1-feature-card:hover::before {
    opacity: 1;
}

/* Feature Top Section */
.pkd1-feature-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.pkd1-icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pkd1-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.pkd1-feature-title-wrapper {
    flex: 1;
}

.pkd1-feature-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #ffffff;
}

.pkd1-feature-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Feature Description */
.pkd1-feature-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* Feature Link */
.pkd1-feature-link {
    font-size: 14px;
    color: #8b5cf6;
    font-weight: 600;
    text-transform: lowercase;
    transition: all 0.3s ease;
}

.pkd1-feature-card:hover .pkd1-feature-link {
    transform: translateX(5px);
    display: inline-block;
}

/* Neon Effects (Optional decorative elements) */
.pkd1-neon-glow {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.pkd1-neon-top-right {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
}

.pkd1-neon-bottom-left {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pkd1-main-heading {
        font-size: 40px;
    }

    .pkd1-feature-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .pkd1-section {
        padding: 60px 20px;
    }

    .pkd1-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 50px;
    }

    .pkd1-main-heading {
        font-size: 32px;
    }

    .pkd1-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pkd1-feature-top {
        gap: 16px;
    }

    .pkd1-icon-circle {
        width: 56px;
        height: 56px;
    }

    .pkd1-icon {
        width: 28px;
        height: 28px;
    }

    .pkd1-feature-title {
        font-size: 20px;
    }

    .pkd1-feature-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .pkd1-section {
        padding: 40px 16px;
    }

    .pkd1-main-heading {
        font-size: 28px;
    }

    .pkd1-header {
        margin-bottom: 40px;
    }

    .pkd1-cta-button {
        width: 100%;
        text-align: center;
    }

    .pkd1-feature-card {
        padding: 24px;
    }

    .pkd1-feature-description {
        font-size: 15px;
    }
}

/* Scroll Animation Trigger */
.pkd1-animate-trigger {
    opacity: 1;
}

.pkd1-animate-trigger.pkd1-visible {
    animation: slideUpFade 0.8s ease forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for cards */
.pkd1-feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pkd1-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pkd1-feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pkd1-feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ==================================================HOMEPAGE PRODUCT SECTION ENDS================================================= */

/* ==============================================HOMEPAGE BENEFITS SECTION ======================================================== */
/* ============================================
       PKD2 USE CASES SECTION - RESPONSIVE STYLES
       ============================================ */

/* Section Container */
.pkd2-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.pkd2-header {
    text-align: center;
    margin-bottom: 60px;
}

.pkd2-subtitle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pkd2-subtitle-icon {
    width: 20px;
    height: 20px;
}

.pkd2-subtitle-text {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #999;
    font-weight: 600;
}

.pkd2-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

/* Tabs Container */
.pkd2-tabs-container {
    display: flex;
    gap: 20px;
    max-width: 75rem;
    margin: auto;
    margin-bottom: 40px;
    min-height: 500px;
}

/* Tab Card */
.pkd2-tab-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: flex-end;
}

.pkd2-tab-card.pkd2-active {
    flex: 3;
}

/* Tab Background Image */
.pkd2-tab-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.pkd2-tab-card:hover .pkd2-tab-bg {
    opacity: 0.6;
}

.pkd2-tab-card.pkd2-active .pkd2-tab-bg {
    opacity: 0.5;
}

/* Tab Overlay */
.pkd2-tab-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    transition: opacity 0.4s ease;
}

.pkd2-tab-card:not(.pkd2-active) .pkd2-tab-overlay {
    opacity: 0.8;
}

/* Tab Content */
.pkd2-tab-content {
    position: relative;
    padding: 40px;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.pkd2-tab-card.pkd2-active .pkd2-tab-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.pkd2-tab-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.pkd2-tab-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pkd2-tab-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 24px;
    max-width: 500px;
}

.pkd2-tab-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.pkd2-tab-link-arrow {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkd2-tab-link-arrow::before {
    content: '→';
    font-size: 16px;
}

/* CTA Button */
.pkd2-cta-wrapper {
    text-align: center;
}

.pkd2-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #fff;
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pkd2-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.pkd2-cta-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
}

.pkd2-cta-icon::before {
    content: '→';
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pkd2-title {
        font-size: 40px;
    }

    .pkd2-tab-title {
        font-size: 28px;
    }

    .pkd2-tab-content {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .pkd2-section {
        padding: 60px 16px;
    }

    .pkd2-title {
        font-size: 32px;
    }

    .pkd2-tabs-container {
        flex-direction: column;
        gap: 16px;
        min-height: auto;
    }

    .pkd2-tab-card {
        min-height: 400px;
    }

    .pkd2-tab-card.pkd2-active {
        flex: 1;
        min-height: 500px;
    }

    .pkd2-tab-title {
        font-size: 24px;
    }

    .pkd2-tab-description {
        font-size: 15px;
    }

    .pkd2-tab-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .pkd2-title {
        font-size: 28px;
    }

    .pkd2-tab-card {
        min-height: 350px;
    }

    .pkd2-tab-card.pkd2-active {
        min-height: 450px;
    }

    .pkd2-tab-title {
        font-size: 22px;
    }

    .pkd2-tab-description {
        font-size: 14px;
    }

    .pkd2-tab-icon {
        width: 40px;
        height: 40px;
    }

    .pkd2-cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* ==============================================HOMEPAGE BENEFITS SECTION END ======================================================== */

/* ==================================================HOMEPAGE TESTIMONIAL SLIDER CSS====================================================== */
/* Section Container */
.pkd3-section {
    padding: 80px 0;
    overflow: hidden;
    background-color: #000;
}

.pkd3-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.pkd3-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.pkd3-title-wrapper {
    flex: 1;
    max-width: 580px;
}

.pkd3-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.pkd3-subtitle-icon {
    width: 24px;
    height: 24px;
}

.pkd3-subtitle-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.pkd3-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.pkd3-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pkd3-cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.pkd3-button-icon {
    font-size: 18px;
}

/* Marquee Container */
.pkd3-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pkd3-marquee-wrapper {
    display: flex;
    width: fit-content;
}

.pkd3-marquee-track {
    display: flex;
    gap: 24px;
    animation: pkd3-scroll 40s linear infinite;
}

@keyframes pkd3-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Testimonial Card */
.pkd3-card {
    flex: 0 0 auto;
    width: 450px;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pkd3-quote {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

.pkd3-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pkd3-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.pkd3-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pkd3-author-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.pkd3-author-title {
    font-size: 16px;
    font-weight: 400;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pkd3-heading {
        font-size: 40px;
    }

    .pkd3-card {
        width: 400px;
    }

    .pkd3-quote {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .pkd3-section {
        padding: 60px 0;
    }

    .pkd3-header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }

    .pkd3-heading {
        font-size: 32px;
    }

    .pkd3-card {
        width: 350px;
        padding: 32px;
    }

    .pkd3-quote {
        font-size: 20px;
    }

    .pkd3-author-name {
        font-size: 16px;
    }

    .pkd3-author-title {
        font-size: 14px;
    }

    .pkd3-avatar {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .pkd3-section {
        padding: 40px 0;
    }

    .pkd3-container {
        padding: 0 16px;
    }

    .pkd3-heading {
        font-size: 28px;
    }

    .pkd3-card {
        width: 300px;
        padding: 24px;
        gap: 24px;
    }

    .pkd3-quote {
        font-size: 18px;
    }

    .pkd3-cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .pkd3-marquee-track {
        gap: 16px;
    }
}

/* ===========================================TESTIMONIAL SLIDER ENDS ==================================================================== */

/* ===============================================CURRENT ACC PAGE 1ST SECTION ===================================================================
/* Section Container */
.pkd4-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0014 0%, #1a0b2e 100%);
    padding: 180px 0 120px;
}

/* Main Container */
.pkd4-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Grid Layout */
.pkd4-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content Area */
.pkd4-left-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    animation: pkd4-fadeInUp 0.8s ease forwards;
}

/* Info Tag */
.pkd4-info-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(139, 69, 255, 0.1);
    border: 1px solid rgba(139, 69, 255, 0.3);
    border-radius: 100px;
    padding: 8px 20px 8px 8px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.pkd4-tag-badge {
    background: linear-gradient(135deg, #8b45ff 0%, #6b2dd8 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pkd4-tag-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

/* Heading */
.pkd4-heading {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: pkd4-fadeInUp 0.8s ease 0.2s forwards;
}

/* Subtitle Container */
.pkd4-subtitle-wrapper {
    max-width: 480px;
    opacity: 0;
    animation: pkd4-fadeInUp 0.8s ease 0.4s forwards;
}

.pkd4-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* CTA Button */
.pkd4-cta-container {
    display: flex;
    margin-top: 8px;
    opacity: 0;
    animation: pkd4-fadeInUp 0.8s ease 0.6s forwards;
}

.pkd4-cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(139, 69, 255, 0.5);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: lowercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pkd4-cta-button:hover {
    background: rgba(139, 69, 255, 0.1);
    border-color: rgba(139, 69, 255, 0.8);
    transform: translateY(-2px);
}

/* Right Mockup Area */
.pkd4-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    /* min-height: 500px; */
    perspective: 1000px;
}

.pkd4-mockup-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 20px 60px rgba(139, 69, 255, 0.3));
    opacity: 0;
    animation: pkd4-flipIn 1.2s ease 0.3s forwards;
    transform-style: preserve-3d;

    max-width: 330px;
}

.pkd4-bubbles-image {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: auto;
    z-index: 1;
    opacity: 0;
    animation: pkd4-fadeIn 1s ease 1.2s forwards;
}

.pkd4-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(139, 69, 255, 0.15) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

/* Background Neon Effect */
.pkd4-neon-bg {
    position: absolute;
    top: 0;
    left: 30%;
    width: 70%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    mix-blend-mode: screen;
}

/* Abstract Decoration */
.pkd4-abstract-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: auto;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

/* Animations */
@keyframes pkd4-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pkd4-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.6;
    }
}

@keyframes pkd4-flipIn {
    0% {
        opacity: 0;
        transform: rotateY(-90deg) scale(0.8);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
}

/* Tablet Styles */
@media (max-width: 991px) {
    .pkd4-hero-section {
        padding: 60px 0 80px;
    }

    .pkd4-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pkd4-heading {
        font-size: 48px;
    }

    .pkd4-subtitle {
        font-size: 17px;
    }

    /* .pkd4-mockup-wrapper {
        min-height: 400px;
    } */

    .pkd4-neon-bg {
        left: 0;
        width: 100%;
    }

    .pkd4-left-content {
        align-items: center;
        text-align: center;
    }

    .pkd4-subtitle-wrapper {
        max-width: 600px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .pkd4-hero-section {
        padding: 40px 0 60px;
    }

    .pkd4-main-container {
        padding: 0 16px;
    }

    .pkd4-hero-grid {
        gap: 40px;
    }

    .pkd4-heading {
        font-size: 36px;
    }

    .pkd4-subtitle {
        font-size: 16px;
    }

    .pkd4-info-tag {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 12px;
        gap: 8px;
    }

    .pkd4-tag-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .pkd4-tag-text {
        font-size: 13px;
        padding: 0 4px;
    }

    .pkd4-cta-button {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    /* .pkd4-mockup-wrapper {
        min-height: 350px;
    } */

    .pkd4-bubbles-image {
        width: 150px;
        bottom: -20px;
        right: -20px;
    }
}

/* Small Mobile */
@media (max-width: 479px) {
    .pkd4-heading {
        font-size: 32px;
    }

    .pkd4-subtitle {
        font-size: 15px;
    }

    /* .pkd4-mockup-wrapper {
        min-height: 300px;
    } */

    .pkd4-hero-section {
        padding: 32px 0 48px;
    }

    .pkd4-left-content {
        gap: 20px;
    }
}

/* ==================================================CURRENT ACC PAGE 1ST SECTION END====================================================== */


/* ==============================================CURRENT ACC PAGE 2ND SECTION =================================================================== */
/* Container Styles */
.pkd5-section {
    padding: 100px 20px;
    background: #000;
}

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

/* Header Styles */
.pkd5-header {
    text-align: center;
    margin-bottom: 80px;
}

.pkd5-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pkd5-subtitle-icon {
    width: 20px;
    height: 20px;
}

.pkd5-subtitle-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.pkd5-main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

/* Grid Layout */
.pkd5-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
}

/* Card Base Styles */
.pkd5-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease;
}

.pkd5-card:hover {
    transform: translateY(-4px);
}

/* Card Icon Styles */
.pkd5-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.pkd5-card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.pkd5-card-text {
    font-size: 16px;
    color: #999;
    line-height: 1.6;
}

/* Innovation Card */
.pkd5-innovation {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.pkd5-innovation .pkd5-card-content {
    display: flex;
    gap: 20px;
}

.pkd5-innovation .pkd5-card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* Featured Card (Center) */
.pkd5-featured {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    background: #2a2a2a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pkd5-featured-content {
    margin-bottom: 40px;
}

.pkd5-featured-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.pkd5-featured-text {
    font-size: 16px;
    color: #999;
    margin-bottom: 24px;
}

.pkd5-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pkd5-btn:hover {
    transform: translateX(4px);
    background: #f0f0f0;
}

.pkd5-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkd5-contact-info {
    display: grid;
    gap: 24px;
}

.pkd5-contact-item-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.pkd5-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pkd5-contact-link:hover {
    color: #ccc;
    transform: translateX(4px);
}

/* Excellence Card */
.pkd5-excellence {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* Communication Card */
.pkd5-communication {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Teamwork Card */
.pkd5-teamwork {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.pkd5-teamwork .pkd5-card-content {
    display: flex;
    gap: 20px;
}

.pkd5-teamwork .pkd5-card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* Animation Classes */
.pkd5-animate-card {
    animation-duration: 0.8s;
}

.pkd5-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pkd5-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pkd5-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pkd5-card:nth-child(4) {
    animation-delay: 0.4s;
}

.pkd5-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pkd5-values-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .pkd5-innovation {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .pkd5-excellence {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .pkd5-featured {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .pkd5-teamwork {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .pkd5-communication {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .pkd5-main-heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .pkd5-section {
        padding: 60px 16px;
    }

    .pkd5-header {
        margin-bottom: 48px;
    }

    .pkd5-main-heading {
        font-size: 32px;
    }

    .pkd5-values-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .pkd5-innovation {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .pkd5-excellence {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .pkd5-communication {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .pkd5-teamwork {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .pkd5-featured {
        grid-column: 1 / 2;
        grid-row: 5 / 6;
    }

    .pkd5-card {
        padding: 24px;
    }

    .pkd5-featured-title {
        font-size: 28px;
    }

    .pkd5-innovation .pkd5-card-content,
    .pkd5-teamwork .pkd5-card-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pkd5-main-heading {
        font-size: 28px;
    }

    .pkd5-featured-title {
        font-size: 24px;
    }

    .pkd5-card-title {
        font-size: 20px;
    }

    .pkd5-card-text,
    .pkd5-featured-text {
        font-size: 14px;
    }
}

/* ==============================================CURRENT ACC PAGE 2ND SECTION END=================================================================== */


/* =========================================================CURRENT PAGE 3RD SECTION===================================================================== */
.pkd6-section {
    padding: 100px 20px;
    overflow: hidden;
    min-height: 100vh;
}

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

.pkd6-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.pkd6-subtitle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.pkd6-subtitle-icon {
    width: 20px;
    height: 20px;
}

.pkd6-subtitle-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.pkd6-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.pkd6-description {
    font-size: 18px;
    line-height: 1.6;
    color: #999;
    max-width: 620px;
    margin: 0 auto;
}

.pkd6-grid {
    display: grid;
    grid-template-columns: 249px 1fr 249px;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.pkd6-stat-card {
    text-align: left;
}

.pkd6-stat-card:nth-child(1),
.pkd6-stat-card:nth-child(2) {
    padding-top: 60px;
}

.pkd6-stat-card:nth-child(4),
.pkd6-stat-card:nth-child(5) {
    padding-top: 80px;
}

.pkd6-stat-number {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.pkd6-stat-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.pkd6-stat-description {
    font-size: 16px;
    line-height: 1.5;
    color: #999;
}

.pkd6-image-wrapper {
    position: relative;
    height: 600px;
    perspective: 2000px;
    grid-row: 1 / 3;
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkd6-images-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.pkd6-phone-image,
.pkd6-card-image {
    position: absolute;
    width: auto;
    height: 100%;
    object-fit: contain;
}

.pkd6-phone-image {
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-65%, -50%);
    max-width: 250px;
}

.pkd6-card-image {
    z-index: 2;
    right: 50%;
    top: 50%;
    transform: translate(65%, -29%);
    max-width: 250px;
}

@keyframes flipImages {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.pkd6-image-wrapper.flip-animation .pkd6-images-container {
    animation: flipImages 2s ease-in-out;
}

.pkd6-stats-left {
    grid-column: 1;
}

.pkd6-stats-right {
    grid-column: 3;
}

.pkd6-cta-wrapper {
    text-align: center;
}

.pkd6-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkd6-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.pkd6-button-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkd6-button-icon::after {
    content: '→';
    font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .pkd6-grid {
        grid-template-columns: 220px 1fr 220px;
        gap: 40px;
    }

    .pkd6-stat-number {
        font-size: 64px;
    }

    .pkd6-stat-title {
        font-size: 26px;
    }

    .pkd6-image-wrapper {
        height: 550px;
    }
}

@media (max-width: 1024px) {
    .pkd6-section {
        padding: 80px 20px;
    }

    .pkd6-grid {
        grid-template-columns: 200px 1fr 200px;
        gap: 30px;
    }

    .pkd6-title {
        font-size: 40px;
    }

    .pkd6-stat-number {
        font-size: 56px;
    }

    .pkd6-stat-title {
        font-size: 24px;
    }

    .pkd6-stat-description {
        font-size: 15px;
    }

    .pkd6-image-wrapper {
        height: 500px;
    }

    .pkd6-stat-card:nth-child(1),
    .pkd6-stat-card:nth-child(2) {
        padding-top: 40px;
    }

    .pkd6-stat-card:nth-child(4),
    .pkd6-stat-card:nth-child(5) {
        padding-top: 60px;
    }
}

@media (max-width: 900px) {
    .pkd6-grid {
        grid-template-columns: 180px 1fr 180px;
        gap: 25px;
    }

    .pkd6-stat-number {
        font-size: 48px;
    }

    .pkd6-stat-title {
        font-size: 22px;
    }

    .pkd6-stat-description {
        font-size: 14px;
    }

    .pkd6-image-wrapper {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .pkd6-section {
        padding: 60px 20px;
    }

    .pkd6-header {
        margin-bottom: 60px;
    }

    .pkd6-title {
        font-size: 32px;
    }

    .pkd6-description {
        font-size: 16px;
    }

    .pkd6-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pkd6-stat-card {
        text-align: center;
        padding-top: 0 !important;
    }

    .pkd6-stat-card:nth-child(1) {
        order: 1;
    }

    .pkd6-stat-card:nth-child(2) {
        order: 2;
    }

    .pkd6-image-wrapper {
        order: 3;
        height: 400px;
        grid-row: auto;
        grid-column: 1;
    }

    .pkd6-stat-card:nth-child(4) {
        order: 4;
    }

    .pkd6-stat-card:nth-child(5) {
        order: 5;
    }

    .pkd6-stat-number {
        font-size: 56px;
    }

    .pkd6-stat-title {
        font-size: 24px;
    }

    .pkd6-stat-description {
        font-size: 15px;
    }

    .pkd6-phone-image {
        height: 90%;
    }

    .pkd6-card-image {
        height: 90%;
    }

    .pkd6-stats-left {
        grid-row: 1;

        grid-column: 1;
    }

    .pkd6-image-wrapper {
        grid-row: 2;
        grid-column: 1;
    }

    .pkd6-stats-right {
        grid-row: 3;

        grid-column: 1;
    }
}

@media (max-width: 640px) {
    .pkd6-image-wrapper {
        height: 350px;
    }

    .pkd6-stat-number {
        font-size: 48px;
    }

    .pkd6-stat-title {
        font-size: 22px;
    }
}

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

    .pkd6-header {
        margin-bottom: 40px;
    }

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

    .pkd6-description {
        font-size: 15px;
    }

    .pkd6-stat-number {
        font-size: 42px;
    }

    .pkd6-stat-title {
        font-size: 20px;
    }

    .pkd6-stat-description {
        font-size: 14px;
    }

    .pkd6-image-wrapper {
        height: 300px;
    }

    .pkd6-phone-image {
        height: 85%;
    }

    .pkd6-card-image {
        height: 85%;
    }

    .pkd6-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .pkd6-grid {
        gap: 30px;
    }
}

@media (max-width: 375px) {
    .pkd6-title {
        font-size: 24px;
    }

    .pkd6-stat-number {
        font-size: 36px;
    }

    .pkd6-stat-title {
        font-size: 18px;
    }

    .pkd6-image-wrapper {
        height: 280px;
    }

    .pkd6-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 900px) and (orientation: landscape) {
    .pkd6-section {
        padding: 40px 20px;
    }

    .pkd6-image-wrapper {
        height: 350px;
    }

    .pkd6-header {
        margin-bottom: 40px;
    }
}

/* =========================================================CURRENT PAGE 3RD SECTION END===================================================================== */



/* =============================CURRENT PAGE 4TH SECTION=====================================================================  */
.pkd7-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #000;
}

.pkd7-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.pkd7-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.pkd7-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.pkd7-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.pkd7-content {
    max-width: 514px;
}

.pkd7-subtitle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pkd7-subtitle-wrapper img {
    width: 20px;
    height: 20px;
}

.pkd7-subtitle-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pkd7-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 20px;
    color: #fff;
}

.pkd7-text-no-wrap {
    white-space: nowrap;
}

.pkd7-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
}

.pkd7-button-wrapper {
    margin-top: 32px;
}

.pkd7-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.pkd7-primary-button:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.pkd7-button-icon {
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pkd7-primary-button:hover .pkd7-button-icon {
    background: #fff;
    transform: rotate(45deg);
}

.pkd7-button-icon::after {
    content: '→';
    font-size: 16px;
    color: #fff;
}

.pkd7-primary-button:hover .pkd7-button-icon::after {
    color: #000;
}

/* Responsive Design */
@media (max-width: 991px) {
    .pkd7-section {
        padding: 60px 0;
    }

    .pkd7-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pkd7-heading {
        font-size: 40px;
    }

    .pkd7-content {
        max-width: 100%;
        text-align: center;
    }

    .pkd7-button-wrapper {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .pkd7-section {
        padding: 40px 0;
    }

    .pkd7-heading {
        font-size: 32px;
    }

    .pkd7-description {
        font-size: 16px;
    }

    .pkd7-text-no-wrap {
        white-space: normal;
    }

    .pkd7-primary-button {
        width: 100%;
        justify-content: center;
    }

    .pkd7-grid {
        gap: 30px;
    }
}

@media (max-width: 479px) {
    .pkd7-heading {
        font-size: 28px;
    }

    .pkd7-primary-button {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Animation delays for staggered effect */
.pkd7-image-wrapper {
    animation-delay: 0.2s;
}

.pkd7-subtitle-wrapper {
    animation-delay: 0.4s;
}

.pkd7-heading {
    animation-delay: 0.6s;
}

.pkd7-description {
    animation-delay: 0.8s;
}

.pkd7-button-wrapper {
    animation-delay: 1s;
}

/* Blog Section Styles */
.pkd7-blog-section {
    padding: 100px 0;
    background: #0a0014;
}

.pkd7-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.pkd7-blog-title-wrapper {
    flex: 1;
}

.pkd7-blog-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a78bfa;
    margin-bottom: 12px;
}

.pkd7-blog-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.pkd7-see-all-btn {
    padding: 12px 28px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.pkd7-see-all-btn:hover {
    border-color: #fff;
    background: #fff;
    color: #0a0014;
    transform: translateY(-2px);
}

.pkd7-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pkd7-blog-card {
    background: rgba(30, 20, 50, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.pkd7-blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(167, 139, 250, 0.3);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.2);
}

.pkd7-blog-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pkd7-blog-card:hover .pkd7-blog-image {
    transform: scale(1.05);
}

.pkd7-blog-content {
    padding: 32px;
}

.pkd7-blog-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pkd7-blog-card-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pkd7-blog-read-more {
    font-size: 15px;
    color: #a78bfa;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.pkd7-blog-card:hover .pkd7-blog-read-more {
    color: #fff;
    transform: translateX(5px);
}

/* Blog Responsive */
@media (max-width: 991px) {
    .pkd7-blog-section {
        padding: 80px 0;
    }

    .pkd7-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pkd7-blog-title {
        font-size: 40px;
    }

    .pkd7-blog-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .pkd7-blog-section {
        padding: 60px 0;
    }

    .pkd7-blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pkd7-blog-title {
        font-size: 32px;
    }

    .pkd7-blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pkd7-blog-content {
        padding: 24px;
    }

    .pkd7-blog-card-title {
        font-size: 22px;
    }
}

@media (max-width: 479px) {
    .pkd7-blog-title {
        font-size: 28px;
    }

    .pkd7-blog-image {
        height: 220px;
    }
}

/* Blog Animation delays */
.pkd7-blog-card:nth-child(1) {
    animation-delay: 0.2s;
}

.pkd7-blog-card:nth-child(2) {
    animation-delay: 0.4s;
}

.pkd7-blog-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* ======================================CURRENT PAGE 4TH SECTION END===================================================================== */



/* ================================================ACCOUNTING PAGE 1ST SECTION======================================================================  */
/* Hero Section - pkd8 */
.pkd8-hero-section {
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
    background-color: #000;
}

.pkd8-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pkd8-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.pkd8-content-wrapper {
    z-index: 10;
    position: relative;
    order: 2;
}

.pkd8-inner-container {
    max-width: 600px;
    margin-left: auto;
    padding-left: 40px;
}

.pkd8-heading {
    font-size: 80px;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.pkd8-text-nowrap {
    white-space: nowrap;
}

.pkd8-button-wrapper {
    margin-top: 40px;
}

.pkd8-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    color: #000;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pkd8-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.pkd8-button-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pkd8-button-icon::after {
    content: '→';
    color: #fff;
    font-size: 14px;
}

.pkd8-primary-button:hover .pkd8-button-icon {
    transform: translateX(4px);
}

/* Image Section */
.pkd8-image-wrapper {
    position: relative;
    z-index: 1;
    order: 1;
}

.pkd8-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.pkd8-image-gradient {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 12px;
}

.pkd8-image-gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 12px;
}

/* Bottom Section */
.pkd8-bottom-content {
    text-align: center;
    padding-top: 20px;
}

.pkd8-bottom-text {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

/* Logo Strip */
.pkd8-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 60px;
    align-items: center;
    justify-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pkd8-logo-block {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkd8-logo-block:hover {
    opacity: 0.9;
}

.pkd8-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkd8-logo-icon {
    font-size: 24px;
}

.pkd8-logo-text {
    font-size: 18px;
    font-weight: 400;
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .pkd8-hero-grid {
        gap: 40px;
        margin-bottom: 80px;
    }

    .pkd8-heading {
        font-size: 56px;
    }

    .pkd8-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .pkd8-hero-section {
        padding: 40px 0;
    }

    .pkd8-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }

    .pkd8-content-wrapper {
        text-align: center;
        order: 2;
    }

    .pkd8-inner-container {
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
    }

    .pkd8-image-wrapper {
        order: 1;
    }

    .pkd8-heading {
        font-size: 48px;
    }

    .pkd8-text-nowrap {
        white-space: normal;
    }

    .pkd8-button-wrapper {
        display: flex;
        justify-content: center;
    }

    .pkd8-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pkd8-bottom-text {
        font-size: 16px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .pkd8-container {
        padding: 0 16px;
    }

    .pkd8-heading {
        font-size: 36px;
    }

    .pkd8-primary-button {
        padding: 16px 28px;
        font-size: 14px;
    }

    .pkd8-logo-grid {
        gap: 20px;
    }

    .pkd8-logo-text {
        font-size: 14px;
    }

    .pkd8-logo-icon {
        font-size: 20px;
    }
}

/* Perks & Values Section */
.pkd8-perks-section {
    padding: 100px 0;
    background-color: #000;
}

.pkd8-section-title {
    text-align: center;
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.pkd8-section-title-highlight {
    font-family: 'Brush Script MT', cursive;
    color: #6B8CFF;
    font-style: italic;
    font-weight: 400;
}

.pkd8-perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pkd8-perk-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pkd8-perk-card:hover {
    transform: translateY(-4px);
    border-color: rgba(107, 140, 255, 0.3);
    box-shadow: 0 10px 40px rgba(107, 140, 255, 0.1);
}

.pkd8-perk-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6B8CFF 0%, #4A5FCC 100%);
    border-radius: 12px;
    font-size: 28px;
}

.pkd8-perk-content {
    flex: 1;
}

.pkd8-perk-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.pkd8-perk-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Responsive - Perks Section */
@media (max-width: 1024px) {
    .pkd8-perks-section {
        padding: 80px 0;
    }

    .pkd8-section-title {
        font-size: 48px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .pkd8-perks-section {
        padding: 60px 0;
    }

    .pkd8-section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .pkd8-perks-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pkd8-perk-card {
        padding: 32px;
    }

    .pkd8-perk-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .pkd8-perk-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .pkd8-section-title {
        font-size: 32px;
    }

    .pkd8-perk-card {
        padding: 24px;
        gap: 16px;
    }

    .pkd8-perk-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .pkd8-perk-title {
        font-size: 18px;
    }

    .pkd8-perk-description {
        font-size: 14px;
    }
}

/* ================================================ACCOUNTING PAGE 1ST SECTION END======================================================================  */



/* =========================Accounting Page 3rd SECTION START=======================================================================  */
.pkd9-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 0;
}

.pkd9-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pkd9-grid-values-sticky {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.pkd9-left-values-sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: start;
}

.pkd9-sticky-values-sticky {
    position: relative;
}

.pkd9-wrap-heading-top-text-left {
    margin-bottom: 24px;
}

.pkd9-top-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00ffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.pkd9-no-margins {
    margin: 0;
}

.pkd9-sticky-values-sticky h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.pkd9-sticky-values-sticky>div:nth-child(2) {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 32px;
    line-height: 1.8;
}

.pkd9-flex-cta-left {
    display: flex;
}

.pkd9-cta-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pkd9-cta-outline:hover {
    background: #00ffff;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.pkd9-right-values-sticky-tiles {
    position: relative;
}

.pkd9-tile-elevation-general {
    position: sticky;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    min-height: 400px;
}

.pkd9-value-sticky-tile:nth-child(1) {
    top: 100px;
}

.pkd9-value-sticky-tile:nth-child(2) {
    top: 120px;
}

.pkd9-value-sticky-tile:nth-child(3) {
    top: 140px;
}

.pkd9-value-sticky-tile:nth-child(4) {
    top: 160px;
}

.pkd9-tile-elevation-general:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

.pkd9-content-value-sticky {
    position: relative;
    z-index: 2;
}

.pkd9-content-value-sticky h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #00ffff;
    font-weight: 700;
}

.pkd9-content-value-sticky>div {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.8;
}

.pkd9-neon-feature-one,
.pkd9-neon-feature-two,
.pkd9-neon-feature-three,
.pkd9-neon-feature-four {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
}

.pkd9-neon-feature-one {
    top: -20px;
    right: -20px;
    width: 200px;
    height: auto;
}

.pkd9-neon-feature-two {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 180px;
    height: auto;
}

.pkd9-neon-feature-three {
    bottom: -30px;
    left: -20px;
    width: 220px;
    height: auto;
}

.pkd9-neon-feature-four {
    top: -30px;
    right: -30px;
    width: 200px;
    height: auto;
}

.pkd9-neon-numbers-wide {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
}

/* Tablet styles */
@media (max-width: 991px) {
    .pkd9-grid-values-sticky {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pkd9-sticky-values-sticky {
        position: relative;
        top: 0;
    }

    .pkd9-sticky-values-sticky h2 {
        font-size: 36px;
    }

    .pkd9-tile-elevation-general {
        padding: 36px;
    }

    .pkd9-content-value-sticky h3 {
        font-size: 28px;
    }

    .pkd9-right-values-sticky-tiles {
        padding-bottom: 0;
    }

    .pkd9-value-sticky-tile:nth-child(1),
    .pkd9-value-sticky-tile:nth-child(2),
    .pkd9-value-sticky-tile:nth-child(3),
    .pkd9-value-sticky-tile:nth-child(4) {
        position: relative;
        top: 0;
    }

    .pkd9-left-values-sticky {
        position: unset;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .pkd9-section {
        padding: 60px 0;
    }

    .pkd9-main-container {
        padding: 0 16px;
    }

    .pkd9-sticky-values-sticky h2 {
        font-size: 28px;
    }

    .pkd9-sticky-values-sticky>div:nth-child(2) {
        font-size: 15px;
    }

    .pkd9-tile-elevation-general {
        padding: 28px;
        margin-bottom: 20px;
    }

    .pkd9-content-value-sticky h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .pkd9-content-value-sticky>div {
        font-size: 14px;
    }

    .pkd9-neon-feature-one,
    .pkd9-neon-feature-two,
    .pkd9-neon-feature-three,
    .pkd9-neon-feature-four {
        width: 120px;
    }

    .pkd9-cta-outline {
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 479px) {
    .pkd9-sticky-values-sticky h2 {
        font-size: 24px;
    }

    .pkd9-tile-elevation-general {
        padding: 24px;
    }

    .pkd9-content-value-sticky h3 {
        font-size: 20px;
    }
}

/* Demo sections for scroll testing */
.pkd9-demo-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    border-top: 1px solid #333;
}

.pkd9-demo-section h2 {
    font-size: 48px;
    color: #666;
}

/* =========================Accounting Page 3rd SECTION END=======================================================================  */

/* =================================API BANKING ============================================== */
/* ==================== BLOG SECTION ==================== */

.pkd10-blog-section {
    padding: 80px 40px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background-color: #000;
}

.pkd10-header {
    text-align: center;
    margin-bottom: 80px;
}

.pkd10-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pkd10-subtitle-icon {
    width: 16px;
    height: 16px;
}

.pkd10-subtitle-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-weight: 500;
}

.pkd10-main-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
}

.pkd10-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.pkd10-featured-card {
    background: #0a0a0a;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pkd10-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkd10-content-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pkd10-card-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.pkd10-card-description {
    font-size: 16px;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 32px;
}

.pkd10-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.pkd10-badge {
    padding: 8px 20px;
    background: transparent;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #333;
    text-transform: capitalize;
}

.pkd10-date {
    font-size: 14px;
    color: #888;
}

.pkd10-navigation {
    display: flex;
    gap: 12px;
}

.pkd10-nav-button {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.pkd10-nav-button:hover {
    background: #1a1a1a;
    border-color: #555;
}

.pkd10-nav-button svg {
    width: 20px;
    height: 20px;
}

.pkd10-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.pkd10-browse-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.pkd10-browse-button:hover {
    background: #1a1a1a;
    border-color: #555;
}

/* ==================== INTEGRATIONS SECTION ==================== */

.integrations-section {
    padding: 80px 40px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a0b2e 0%, #0f0520 50%, #000000 100%);
}

.integrations-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.icons-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(30, 15, 50, 0.6);
    border: 1px solid rgba(138, 43, 226, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.icon-circle::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4), rgba(75, 0, 130, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.icon-circle:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(50, 25, 80, 0.8);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.icon-circle:hover::before {
    opacity: 1;
}

.icon-circle svg {
    width: 40px;
    height: 40px;
}

.icon-circle:nth-child(1) {
    grid-column: 2;
}

.icon-circle:nth-child(2) {
    grid-column: 3;
}

.icon-circle:nth-child(3) {
    grid-column: 4;
}

.icon-circle:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.icon-circle:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.icon-circle:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
}

.icon-circle:nth-child(7) {
    grid-column: 4;
    grid-row: 2;
}

.icon-circle:nth-child(8) {
    grid-column: 2;
    grid-row: 3;
}

.icon-circle:nth-child(9) {
    grid-column: 3;
    grid-row: 3;
}

.icon-circle:nth-child(10) {
    grid-column: 4;
    grid-row: 3;
}

.icons-grid::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.text-content {
    max-width: 550px;
}

.subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
    font-weight: 500;
}

.main-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

/* ==================== RESPONSIVE STYLES ==================== */

@media (max-width: 1024px) {

    .pkd10-content-wrapper,
    .integrations-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .pkd10-featured-card {
        height: 500px;
    }

    .pkd10-card-title {
        font-size: 40px;
    }

    .pkd10-main-title,
    .main-title {
        font-size: 42px;
    }

    .icons-grid {
        order: 2;
    }

    .text-content {
        order: 1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .pkd10-blog-section,
    .integrations-section {
        padding: 60px 24px;
    }

    .pkd10-header {
        margin-bottom: 60px;
    }

    .pkd10-main-title,
    .main-title {
        font-size: 36px;
    }

    .pkd10-featured-card {
        height: 400px;
    }

    .pkd10-card-title {
        font-size: 32px;
    }

    .pkd10-card-description,
    .description {
        font-size: 15px;
    }

    .icons-grid {
        gap: 15px;
        padding: 20px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

    .icon-circle svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {

    .pkd10-blog-section,
    .integrations-section {
        padding: 40px 20px;
    }

    .pkd10-main-title,
    .main-title {
        font-size: 28px;
    }

    .pkd10-featured-card {
        height: 350px;
    }

    .pkd10-card-title {
        font-size: 26px;
    }

    .pkd10-browse-button,
    .cta-button {
        padding: 14px 32px;
        font-size: 11px;
    }

    .icons-grid {
        gap: 10px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle svg {
        width: 28px;
        height: 28px;
    }
}

/* ======================================API BANKING SECTION===================================================================== */


/* ==========================================SMART COLLECT PAGE=================================================================== */
/* Section Styles */
.pkd11-section-integrations {
    padding: 80px 0;
    background: #0a0014;
}

.pkd11-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading Styles */
.pkd11-heading-center {
    text-align: center;
    margin-bottom: 80px;
}

.pkd11-top-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a78bfa;
    margin-bottom: 16px;
    font-weight: 600;
}

.pkd11-heading-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Grid Styles */
.pkd11-features-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.pkd11-grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Card Base Styles */
.pkd11-card {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(167, 139, 250, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    perspective: 1000px;
}

.pkd11-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
}

.pkd11-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pkd11-card:hover::before {
    opacity: 1;
}

/* Card Specific Layouts */
.pkd11-card-finances {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.pkd11-card-finances-img {
    flex-shrink: 0;
    width: 280px;
    height: auto;
    border-radius: 12px;
}

.pkd11-card-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pkd11-card-header {
    margin-bottom: 20px;
}

.pkd11-card-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.pkd11-card-subtitle {
    font-size: 14px;
    color: #a78bfa;
    opacity: 0.9;
}

.pkd11-card-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Connect Apps Card */
.pkd11-card-apps {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.pkd11-card-apps-img {
    width: 100%;
    height: auto;
    margin-top: auto;
}

/* Physical Card */
.pkd11-card-physical {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.pkd11-card-physical-img {
    width: 100%;
    height: auto;
    margin-top: auto;
}

/* Mobile App Card */
.pkd11-card-mobile {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.pkd11-card-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pkd11-card-mobile-img {
    flex-shrink: 0;
    width: 280px;
    height: auto;
}

/* Flip Animation */
.pkd11-flip-card {
    transform-style: preserve-3d;
    animation-duration: 0.8s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pkd11-heading-title {
        font-size: 40px;
    }

    .pkd11-card {
        padding: 32px;
    }

    .pkd11-card-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .pkd11-section-integrations {
        padding: 60px 0;
    }

    .pkd11-heading-center {
        margin-bottom: 60px;
    }

    .pkd11-heading-title {
        font-size: 32px;
    }

    .pkd11-grid-row {
        grid-template-columns: 1fr;
    }

    .pkd11-card {
        padding: 24px;
    }

    .pkd11-card-finances,
    .pkd11-card-mobile {
        flex-direction: column;
    }

    .pkd11-card-finances-img,
    .pkd11-card-mobile-img {
        width: 100%;
    }

    .pkd11-card-title {
        font-size: 24px;
    }

    .pkd11-card-apps,
    .pkd11-card-physical {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .pkd11-section-integrations {
        padding: 40px 0;
    }

    .pkd11-heading-center {
        margin-bottom: 40px;
    }

    .pkd11-heading-title {
        font-size: 28px;
    }

    .pkd11-card {
        padding: 20px;
    }

    .pkd11-card-title {
        font-size: 22px;
    }

    .pkd11-features-grid {
        gap: 16px;
    }

    .pkd11-grid-row {
        gap: 16px;
    }
}

/* ==========================================SMART COLLECT PAGE END=================================================================== */


/* ==========================================INSTANT PAGE 2ND AND 3RD SECTION=================================================== */
/* Base container */
.pkd12 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Header section */
.pkd12-header {
    text-align: center;
    margin-bottom: 80px;
}

.pkd12-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pkd12-subtitle-icon {
    width: 20px;
    height: 20px;
}

.pkd12-subtitle-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.pkd12-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll container */
.pkd12-scroll-wrapper {
    position: relative;
    height: 200vh;
}

.pkd12-scroll-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.pkd12-cards-inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
}

/* Card styles */
.pkd12-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pkd12-card-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    padding: 0;
    height: 100%;
}

.pkd12-card-01 {
    z-index: 1;
}

.pkd12-card-02 {
    z-index: 2;
    transform: translateY(120vh);
    opacity: 0;
}

/* Image section */
.pkd12-card-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.pkd12-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content section */
.pkd12-card-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pkd12-card-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.pkd12-card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #aaa;
}

/* Tablet styles */
@media (max-width: 991px) {
    .pkd12 {
        padding: 60px 20px;
    }

    .pkd12-title {
        font-size: 40px;
    }

    .pkd12-card-link {
        flex-direction: column;
    }

    .pkd12-card-image {
        flex: 0 0 300px;
    }

    .pkd12-card-content {
        padding: 40px 30px;
    }

    .pkd12-card-title {
        font-size: 32px;
    }

    .pkd12-scroll-container {
        height: auto;
        min-height: 500px;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .pkd12 {
        padding: 40px 16px;
    }

    .pkd12-header {
        margin-bottom: 50px;
    }

    .pkd12-title {
        font-size: 32px;
    }

    .pkd12-card-image {
        flex: 0 0 250px;
    }

    .pkd12-card-content {
        padding: 30px 24px;
    }

    .pkd12-card-title {
        font-size: 28px;
    }

    .pkd12-card-description {
        font-size: 15px;
    }

    .pkd12-button {
        width: 100%;
        justify-content: center;
    }

    .pkd12-scroll-wrapper {
        height: 180vh;
    }

    .pkd12-cards-inner {
        height: 500px;
    }
}

/* Small mobile */
@media (max-width: 479px) {
    .pkd12-title {
        font-size: 28px;
    }

    .pkd12-card-title {
        font-size: 24px;
    }

    .pkd12-card-content {
        padding: 24px 20px;
    }
}

/* Blog Section Styles */
.pkd12-blog {
    background-color: #000;
    padding: 100px 20px;
}

.pkd12-blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.pkd12-blog-description {
    font-size: 16px;
    line-height: 1.6;
    color: #888;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Blog Grid */
.pkd12-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pkd12-blog-card {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 40px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.pkd12-blog-card:hover {
    background: #222;
    transform: translateY(-4px);
}

.pkd12-blog-card-large {
    grid-row: span 2;
    padding: 0;
    overflow: hidden;
}

.pkd12-blog-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.pkd12-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkd12-blog-content {
    flex: 1;
}

.pkd12-blog-card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.pkd12-blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.pkd12-blog-tag {
    background: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.pkd12-blog-date {
    font-size: 14px;
    color: #888;
}

.pkd12-blog-arrow {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    transition: all 0.3s ease;
}

.pkd12-blog-card:hover .pkd12-blog-arrow {
    transform: translateX(4px);
}

/* Blog Button */
.pkd12-blog-button-wrapper {
    text-align: center;
    margin-top: 60px;
}

.pkd12-blog-button {
    display: inline-block;
    padding: 18px 40px;
    border: 1px solid #333;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pkd12-blog-button:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Blog Responsive */
@media (max-width: 991px) {
    .pkd12-blog {
        padding: 80px 20px;
    }

    .pkd12-blog-grid {
        gap: 16px;
    }

    .pkd12-blog-card {
        padding: 30px;
    }

    .pkd12-blog-card-title {
        font-size: 20px;
    }

    .pkd12-blog-arrow {
        top: 30px;
        right: 30px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 767px) {
    .pkd12-blog {
        padding: 60px 16px;
    }

    .pkd12-blog-grid {
        grid-template-columns: 1fr;
    }

    .pkd12-blog-card-large {
        grid-row: span 1;
        min-height: 300px;
    }

    .pkd12-blog-card {
        padding: 28px;
    }

    .pkd12-blog-card-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .pkd12-blog-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 479px) {
    .pkd12-blog-card-title {
        font-size: 18px;
    }

    .pkd12-blog-card {
        padding: 24px;
    }

    .pkd12-blog-arrow {
        top: 24px;
        right: 24px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

/* ==========================================INSTANT PAGE 2ND AND 3RD SECTION END=================================================== */


/* ================================================QR CODE PAGE 2ND SECTION START===============================================  */
.pkd13-offices-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pkd13-header {
    margin-bottom: 60px;
}

.pkd13-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.pkd13-label-icon {
    width: 20px;
    height: 20px;
}

.pkd13-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}

.pkd13-description {
    font-size: 16px;
    line-height: 1.6;
    color: #999;
    max-width: 500px;
}

.pkd13-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.pkd13-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.pkd13-office-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkd13-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pkd13-office-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.pkd13-office-card:hover {
    background-color: #222;
}

.pkd13-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pkd13-location-title {
    font-size: 24px;
    font-weight: 600;
}

.pkd13-toggle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pkd13-toggle-icon::after {
    content: '›';
    font-size: 24px;
    font-weight: 300;
    color: #999;
    transition: transform 0.3s ease;
}

.pkd13-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
}

.pkd13-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 16px;
}

.pkd13-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.2s ease;
}

.pkd13-email-link:hover {
    opacity: 0.7;
}

.pkd13-email-link::after {
    content: '›';
    font-size: 18px;
}

/* Active state */
.pkd13-office-card.pkd13-active {
    background-color: #fff;
    color: #000;
}

.pkd13-office-card.pkd13-active .pkd13-location-title {
    color: #000;
}

.pkd13-office-card.pkd13-active .pkd13-toggle-icon {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transform: rotate(90deg);
}

.pkd13-office-card.pkd13-active .pkd13-toggle-icon::after {
    color: #000;
}

.pkd13-office-card.pkd13-active .pkd13-card-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
}

.pkd13-office-card.pkd13-active .pkd13-card-text {
    color: #666;
}

.pkd13-office-card.pkd13-active .pkd13-email-link {
    color: #000;
}

/* Tablet */
@media (max-width: 1024px) {
    .pkd13-title {
        font-size: 40px;
    }

    .pkd13-content-grid {
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pkd13-offices-section {
        padding: 60px 20px;
    }

    .pkd13-header {
        margin-bottom: 40px;
    }

    .pkd13-title {
        font-size: 32px;
    }

    .pkd13-description {
        font-size: 15px;
    }

    .pkd13-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pkd13-location-title {
        font-size: 20px;
    }

    .pkd13-office-card {
        padding: 20px;
    }

    .pkd13-toggle-icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .pkd13-offices-section {
        padding: 40px 16px;
    }

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

    .pkd13-location-title {
        font-size: 18px;
    }
}

/* ================================================QR CODE PAGE  SECTION END===============================================  */


/* ===================================================INVOICES PAGE SECTION ================================================ */
.pkd14-section {
    padding: 80px 20px;
    background: #000;
}

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

.pkd14-header {
    text-align: center;
    margin-bottom: 60px;
}

.pkd14-subtitle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pkd14-subtitle-icon {
    width: 20px;
    height: 20px;
}

.pkd14-subtitle-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.pkd14-main-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.pkd14-description {
    font-size: 16px;
    line-height: 1.6;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

.pkd14-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pkd14-grid-item {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
}

.pkd14-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.pkd14-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.pkd14-card {
    background: #1a1a1a;
    padding: 40px 30px;
    flex: 1;
    border-radius: 0 0 20px 20px;
}

.pkd14-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pkd14-card-icon {
    width: 32px;
    height: 32px;
}

.pkd14-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.pkd14-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pkd14-main-title {
        font-size: 40px;
    }

    .pkd14-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .pkd14-section {
        padding: 60px 16px;
    }

    .pkd14-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pkd14-main-title {
        font-size: 32px;
    }

    .pkd14-image-wrapper {
        height: 300px;
    }

    .pkd14-card {
        padding: 32px 24px;
    }

    .pkd14-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .pkd14-section {
        padding: 40px 16px;
    }

    .pkd14-main-title {
        font-size: 28px;
    }

    .pkd14-description {
        font-size: 15px;
    }

    .pkd14-image-wrapper {
        height: 250px;
    }

    .pkd14-card {
        padding: 24px 20px;
    }

    .pkd14-card-title {
        font-size: 20px;
    }

    .pkd14-card-text {
        font-size: 14px;
    }
}

/* ===================================================INVOICES PAGE SECTION END=============================================== */



/* ==================================================VENDOR PAYMENT PAGE STARTS============================================  */

.pkd15-section {
    background-color: #000;
    color: #fff;
    overflow: hidden;
    padding: 80px 20px;
}

/* Container */
.pkd15-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Grid Layout */
.pkd15-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

/* Content Column */
.pkd15-content {
    position: relative;
    z-index: 1;
}

.pkd15-content-inner {
    max-width: 500px;
}

/* Subtitle */
.pkd15-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.pkd15-subtitle img {
    width: 20px;
    height: 20px;
}

/* Heading */
.pkd15-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

/* Description */
.pkd15-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 525px;
}

/* Cards Container */
.pkd15-cards {
    margin-top: 40px;
    max-width: 514px;
}

/* Card */
.pkd15-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

/* Card Item */
.pkd15-card-item {
    margin: 0;
}

/* Card Header */
.pkd15-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* Icon */
.pkd15-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Card Title */
.pkd15-card-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* Card Text */
.pkd15-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Divider */
.pkd15-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 32px 0;
}

/* Image Wrapper */
.pkd15-image-wrapper {
    /* position: relative; */
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
}

/* Image */
.pkd15-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Overlay */
.pkd15-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

/* Tablet Responsive (768px - 1024px) */
@media (max-width: 1024px) {
    .pkd15-section {
        padding: 60px 20px;
    }

    .pkd15-grid {
        gap: 40px;
    }

    .pkd15-heading {
        font-size: 40px;
    }

    .pkd15-image-wrapper {
        min-height: 500px;
    }
}

/* Mobile Responsive (max-width: 767px) */
@media (max-width: 767px) {
    .pkd15-section {
        padding: 40px 16px;
    }

    .pkd15-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pkd15-content-inner {
        max-width: 100%;
    }

    .pkd15-heading {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .pkd15-description {
        font-size: 16px;
    }

    .pkd15-cards {
        margin-top: 32px;
        max-width: 100%;
    }

    .pkd15-card {
        padding: 32px 24px;
    }

    .pkd15-card-title {
        font-size: 20px;
    }

    .pkd15-card-text {
        font-size: 15px;
    }

    .pkd15-icon {
        width: 28px;
        height: 28px;
    }

    .pkd15-divider {
        margin: 24px 0;
    }

    .pkd15-image-wrapper {
        min-height: 400px;
        order: -1;
        /* Move image above content on mobile */
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .pkd15-heading {
        font-size: 28px;
    }

    .pkd15-card {
        padding: 24px 20px;
    }

    .pkd15-image-wrapper {
        min-height: 350px;
    }
}

/* ==================================================VENDOR PAYMENT PAGE ENDS============================================  */


/* ======================================================ESCROW AS A SERVICE PAGE STARTS============================================   */
.pkd16-section {
    background-color: #000;
    color: #fff;
}

.pkd16-padding-global {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.pkd16-padding-section-medium {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pkd16-container-large {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pkd16-section-main-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pkd16-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header Section */
.pkd16-section-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pkd16-section-heading-box {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pkd16-heading-text-box {
    display: flex;
    flex-direction: column;
}

.pkd16-text-overflow-hidden {
    overflow: hidden;
}

.pkd16-heading-text-line {
    display: block;
}

.pkd16-heading-style-h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.pkd16-font-trad {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
}

.pkd16-text-color-tertiary {
    color: #6b8cff;
}

.pkd16-values-section-image-box {
    border-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

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

/* Values Grid */
.pkd16-values-wrapper-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pkd16-value-item-v1 {
    display: flex;
}

.pkd16-card-frame {
    background-color: #2a2a2a;
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    width: 100%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pkd16-card-frame:hover {
    transform: translateX(8px);
    background-color: #333;
}

.pkd16-full-height {
    height: 100%;
}

.pkd16-value-item-content-v1 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
}

.pkd16-value-item-icon-v1 {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    flex-shrink: 0;
}

.pkd16-value-item-text-content-v1 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pkd16-heading-style-h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.pkd16-text-size-tiny {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    color: #999;
}

/* Responsive Design */
@media (max-width: 991px) {
    .pkd16-heading-style-h2 {
        font-size: 2.5rem;
    }

    .pkd16-padding-section-medium {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .pkd16-section-main-box {
        grid-template-columns: 1fr;
    }

    .pkd16-values-section-image-box {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .pkd16-padding-global {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .pkd16-padding-section-medium {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pkd16-heading-style-h2 {
        font-size: 2rem;
    }

    .pkd16-card-frame {
        padding: 1.5rem;
    }

    .pkd16-heading-style-h4 {
        font-size: 1.25rem;
    }

    .pkd16-section-main-box {
        gap: 2rem;
    }

    .pkd16-left-column {
        gap: 1.5rem;
    }

    .pkd16-values-section-image-box {
        min-height: 300px;
    }
}

@media (max-width: 479px) {
    .pkd16-heading-style-h2 {
        font-size: 1.75rem;
    }

    .pkd16-padding-global {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pkd16-card-frame {
        padding: 1.25rem;
    }

    .pkd16-value-item-icon-v1 {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.pkd17-section {
    overflow-x: clip;
    padding: 80px 20px;
    position: relative;
}

.pkd17-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.pkd17-header {
    text-align: center;
    margin-bottom: 120px;
}

.pkd17-heading {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
}

.pkd17-highlight {
    font-family: 'Brush Script MT', cursive;
    color: #5b7cff;
    font-style: italic;
}

.pkd17-values-container {
    position: relative;
}

/* Central Timeline Line */
.pkd17-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    z-index: 1;
}

.pkd17-timeline-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(91, 124, 255, 0.2);
}

.pkd17-timeline-progress {
    position: absolute;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #5b7cff 0%, #8b5cf6 100%);
    transition: height 0.1s ease-out;
    box-shadow: 0 0 20px rgba(91, 124, 255, 0.6);
}

.pkd17-value-row {
    display: flex;
    margin-bottom: 120px;
    position: relative;
    align-items: center;
    min-height: 400px;
}

.pkd17-value-row.pkd17-right {
    justify-content: flex-start;
}

.pkd17-value-row.pkd17-left {
    justify-content: flex-end;
}

.pkd17-value-item {
    max-width: 520px;
    width: 45%;
    position: relative;
    z-index: 2;
}

.pkd17-right .pkd17-value-item {
    padding-left: 60px;
}

.pkd17-left .pkd17-value-item {
    padding-right: 60px;
}

.pkd17-value-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Circle on timeline */
.pkd17-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #000;
    border: 3px solid rgba(91, 124, 255, 0.5);
    border-radius: 50%;
    z-index: 3;
    transition: all 0.3s ease;
}

.pkd17-value-row.active .pkd17-circle {
    background: linear-gradient(135deg, #5b7cff 0%, #8b5cf6 100%);
    border-color: #5b7cff;
    box-shadow: 0 0 20px rgba(91, 124, 255, 0.8);
    width: 24px;
    height: 24px;
}

.pkd17-text-content {
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.pkd17-value-row.active .pkd17-text-content {
    opacity: 1;
}

.pkd17-right .pkd17-text-content {
    text-align: left;
}

.pkd17-left .pkd17-text-content {
    text-align: right;
}

.pkd17-value-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    margin-bottom: 12px;
}

.pkd17-value-description {
    font-size: 16px;
    font-weight: 300;
    color: #b0b0b0;
    line-height: 1.6;
}

.pkd17-image-box {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 16px;
    transform: scale(0.95);
    transition: transform 0.5s ease;
}

.pkd17-value-row.active .pkd17-image-box {
    transform: scale(1);
}

.pkd17-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet styles */
@media (max-width: 968px) {
    .pkd17-section {
        padding: 60px 16px;
    }

    .pkd17-header {
        margin-bottom: 80px;
    }

    .pkd17-value-row {
        margin-bottom: 80px;
        min-height: 350px;
    }

    .pkd17-value-item {
        width: 50%;
    }

    .pkd17-image-box {
        height: 220px;
    }
}

/* Mobile styles */
@media (max-width: 640px) {
    .pkd17-section {
        padding: 40px 12px;
    }

    .pkd17-header {
        margin-bottom: 60px;
    }

    .pkd17-heading {
        font-size: 28px;
    }

    .pkd17-timeline-line {
        left: 20px;
    }

    .pkd17-value-row {
        margin-bottom: 60px;
        min-height: auto;
        justify-content: flex-start !important;
    }

    .pkd17-value-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
    }

    .pkd17-circle {
        left: 20px;
    }

    .pkd17-text-content {
        text-align: left !important;
    }

    .pkd17-value-title {
        font-size: 22px;
    }

    .pkd17-value-description {
        font-size: 14px;
    }

    .pkd17-image-box {
        height: 200px;
        border-radius: 16px;
    }
}

/* ======================================================ESCROW AS A SERVICE PAGE ENDS============================================   */


/* ==================================CAPITAL MARKET PAGE 2ND SECTION STARTS============================================  */
.pkd18-section {
    background-color: #000000;
    color: #ffffff;
    padding: 120px 0;
}

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

.pkd18-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.pkd18-left-column {
    position: sticky;
    top: 120px;
}

.pkd18-inner-container {
    max-width: 560px;
}

.pkd18-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pkd18-subtitle-icon {
    width: 20px;
    height: 20px;
}

.pkd18-subtitle-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #ffffff;
}

.pkd18-main-heading {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.pkd18-description {
    font-size: 18px;
    line-height: 1.6;
    color: #b3b3b3;
    margin: 0 0 32px 0;
}

.pkd18-button-wrapper {
    display: inline-flex;
}

.pkd18-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pkd18-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.pkd18-button-icon {
    width: 20px;
    height: 20px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pkd18-primary-button:hover .pkd18-button-icon {
    transform: translateX(4px) rotate(45deg);
}

.pkd18-button-icon::before {
    content: "↗";
    color: #ffffff;
    font-size: 14px;
}

.pkd18-right-column {
    max-width: 620px;
}

.pkd18-right-inner {
    max-width: 550px;
}

.pkd18-secondary-heading {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.pkd18-body-text {
    font-size: 16px;
    line-height: 1.7;
    color: #b3b3b3;
    margin: 0 0 16px 0;
}

.pkd18-quote-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 48px;
    margin-top: 48px;
}

.pkd18-quote-text {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 32px 0;
}

.pkd18-divider {
    height: 1px;
    background-color: #333333;
    margin: 32px 0;
}

.pkd18-author-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.pkd18-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pkd18-avatar-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.pkd18-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkd18-author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pkd18-author-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.pkd18-author-title {
    font-size: 14px;
    color: #b3b3b3;
    margin: 0;
}

.pkd18-signature {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* ========== VALUES SECTION ========== */
.pkd18-values-section {
    background-color: #000000;
    color: #ffffff;
    padding: 120px 0;
}

.pkd18-values-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.pkd18-values-heading {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    margin-top: 16px;
}

/* Values Grid */
.pkd18-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card Base */
.pkd18-value-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.pkd18-value-card:hover {
    background-color: #222222;
    transform: translateY(-4px);
}

/* Icon Left Card */
.pkd18-icon-left-card {
    grid-column: span 1;
}

.pkd18-icon-left-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pkd18-card-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.pkd18-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.pkd18-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #b3b3b3;
    margin: 0;
}

/* Icon Top Card */
.pkd18-icon-top-card {
    grid-column: span 1;
}

.pkd18-icon-top-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Featured Card */
.pkd18-featured-card {
    grid-column: span 1;
    grid-row: span 2;
    background-color: #2a2a2a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pkd18-featured-card:hover {
    background-color: #333333;
}

.pkd18-featured-top {
    margin-bottom: 40px;
}

.pkd18-featured-heading {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.pkd18-featured-text {
    font-size: 16px;
    line-height: 1.6;
    color: #b3b3b3;
    margin: 0 0 24px 0;
}

/* Contact Links */
.pkd18-contact-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.pkd18-contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pkd18-contact-label {
    font-size: 14px;
    color: #b3b3b3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pkd18-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pkd18-contact-link:hover {
    color: #ffffff;
    gap: 12px;
}

.pkd18-contact-link::after {
    content: "→";
    font-size: 14px;
    transition: transform 0.3s ease;
}

.pkd18-contact-link:hover::after {
    transform: translateX(4px);
}

/* Responsive Tablet */
@media (max-width: 1024px) {

    .pkd18-section,
    .pkd18-values-section {
        padding: 80px 0;
    }

    .pkd18-grid {
        gap: 60px;
    }

    .pkd18-main-heading,
    .pkd18-values-heading {
        font-size: 48px;
    }

    .pkd18-secondary-heading {
        font-size: 40px;
    }

    .pkd18-quote-text {
        font-size: 28px;
    }

    .pkd18-quote-card {
        padding: 40px;
    }

    .pkd18-left-column {
        top: 100px;
    }

    .pkd18-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pkd18-featured-card {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {

    .pkd18-section,
    .pkd18-values-section {
        padding: 60px 0;
    }

    .pkd18-container {
        padding: 0 20px;
    }

    .pkd18-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pkd18-left-column {
        position: static;
    }

    .pkd18-inner-container,
    .pkd18-right-column,
    .pkd18-right-inner {
        max-width: 100%;
    }

    .pkd18-main-heading,
    .pkd18-values-heading {
        font-size: 36px;
    }

    .pkd18-secondary-heading {
        font-size: 32px;
    }

    .pkd18-description,
    .pkd18-body-text {
        font-size: 16px;
    }

    .pkd18-quote-card,
    .pkd18-value-card {
        padding: 32px 24px;
    }

    .pkd18-quote-text {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .pkd18-author-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pkd18-signature {
        max-width: 100px;
    }

    .pkd18-primary-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .pkd18-values-header {
        margin-bottom: 48px;
    }

    .pkd18-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pkd18-icon-left-card,
    .pkd18-icon-top-card,
    .pkd18-featured-card {
        grid-column: span 1;
        grid-row: span 1;
    }

    .pkd18-featured-heading {
        font-size: 32px;
    }

    .pkd18-icon-left-content {
        flex-direction: column;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .pkd18-section,
    .pkd18-values-section {
        padding: 48px 0;
    }

    .pkd18-main-heading,
    .pkd18-values-heading {
        font-size: 32px;
    }

    .pkd18-secondary-heading {
        font-size: 28px;
    }

    .pkd18-quote-text {
        font-size: 20px;
    }

    .pkd18-quote-card,
    .pkd18-value-card {
        padding: 24px 20px;
    }

    .pkd18-author-name {
        font-size: 16px;
    }

    .pkd18-author-title {
        font-size: 13px;
    }

    .pkd18-featured-heading {
        font-size: 28px;
    }

    .pkd18-card-title {
        font-size: 20px;
    }
}

/* ==================================CAPITAL MARKET PAGE 2ND SECTION ENDS============================================  */


/* ===============================================CONATCT PAGE SECTION STARTS===============================================   */
.pkd19-section {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Header */
.pkd19-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
}

.pkd19-title {
    font-size: 72px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pkd19-subtitle {
    font-size: 16px;
    color: #a0a0a0;
    line-height: 1.6;
    font-weight: 300;
}

/* Container */
.pkd19-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

/* Form Section */
.pkd19-form-wrapper {
    background-color: #0a0a0a;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid #1a1a1a;
}

.pkd19-form-group {
    margin-bottom: 24px;
}

.pkd19-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #ffffff;
    text-transform: uppercase;
}

.pkd19-form-input {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pkd19-form-input:focus {
    outline: none;
    border-color: #3a3a3a;
    background-color: #222222;
}

.pkd19-form-input::placeholder {
    color: #666666;
}

.pkd19-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pkd19-form-textarea {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
    min-height: 150px;
    resize: vertical;
}

.pkd19-form-textarea:focus {
    outline: none;
    border-color: #3a3a3a;
    background-color: #222222;
}

.pkd19-form-textarea::placeholder {
    color: #666666;
}

.pkd19-submit-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.pkd19-submit-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.pkd19-submit-btn:active {
    transform: translateY(0);
}

/* Contact Details Section */
.pkd19-details-wrapper {
    background-color: #0a0a0a;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pkd19-details-header {
    margin-bottom: 30px;
}

.pkd19-details-title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pkd19-details-text {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
    font-weight: 300;
}

.pkd19-social-links {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.pkd19-social-icon {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.pkd19-social-icon:hover {
    background-color: #2a2a2a;
    transform: translateY(-3px);
}

.pkd19-contact-info {
    margin-top: 60px;
}

.pkd19-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pkd19-contact-item:hover {
    transform: translateX(5px);
}

.pkd19-contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.pkd19-contact-content {
    flex: 1;
}

.pkd19-contact-label {
    font-size: 13px;
    color: #808080;
    margin-bottom: 6px;
    font-weight: 400;
}

.pkd19-contact-value {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkd19-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.pkd19-contact-item:hover .pkd19-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pkd19-container {
        gap: 30px;
    }

    .pkd19-form-wrapper,
    .pkd19-details-wrapper {
        padding: 40px;
    }

    .pkd19-title {
        font-size: 56px;
    }

    .pkd19-details-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .pkd19-section {
        padding: 60px 20px;
    }

    .pkd19-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pkd19-title {
        font-size: 48px;
    }

    .pkd19-details-title {
        font-size: 32px;
    }

    .pkd19-form-wrapper,
    .pkd19-details-wrapper {
        padding: 35px;
    }

    .pkd19-form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .pkd19-section {
        padding: 40px 16px;
    }

    .pkd19-header {
        margin-bottom: 40px;
    }

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

    .pkd19-subtitle {
        font-size: 14px;
    }

    .pkd19-details-title {
        font-size: 28px;
    }

    .pkd19-form-wrapper,
    .pkd19-details-wrapper {
        padding: 25px;
        border-radius: 20px;
    }

    .pkd19-submit-btn {
        width: 100%;
        padding: 18px;
    }

    .pkd19-contact-info {
        margin-top: 40px;
    }
}

/* ===============================================CONATCT PAGE SECTION ENDS===============================================   */



/* =============================================PRICING PAGE, SIGNIN AND SIGNUP PAGE STYLES STARTS============================================== */
.pkd20-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 150px;
}

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

/* Header Styles */
.pkd20-header {
    text-align: center;
    margin-bottom: 60px;
}

.pkd20-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pkd20-subtitle {
    font-size: 1rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Styles */
.pkd20-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Card Styles */
.pkd20-card {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pkd20-card:hover {
    border-color: #333;
    transform: translateY(-5px);
}

.pkd20-card.pkd20-featured {
    border-color: #444;
    position: relative;
}

/* Card Image */
.pkd20-card-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.pkd20-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Content */
.pkd20-card-content {
    flex: 1;
}

.pkd20-plan-name {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.pkd20-plan-description {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Pricing */
.pkd20-pricing {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

.pkd20-price {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -1px;
}

.pkd20-period {
    font-size: 1.1rem;
    color: #666;
    margin-left: 5px;
}

/* Divider */
.pkd20-divider {
    height: 1px;
    background: #222;
    margin: 30px 0;
}

/* Features */
.pkd20-features-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ccc;
}

.pkd20-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.pkd20-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #aaa;
}

.pkd20-feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
}

.pkd20-feature-icon::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
}

/* Button Styles */
.pkd20-button {
    width: 100%;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    outline: none;
}

.pkd20-button-secondary {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
}

.pkd20-button-secondary:hover {
    background: #1a1a1a;
    border-color: #444;
}

.pkd20-button-primary {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.pkd20-button-primary:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.pkd20-button-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pkd20-button-icon::after {
    content: '→';
    color: #fff;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pkd20-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .pkd20-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .pkd20-section {
        padding: 60px 20px;
        padding-top: 150px;
    }

    .pkd20-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pkd20-title {
        font-size: 2.5rem;
    }

    .pkd20-card {
        padding: 30px 25px;
    }

    .pkd20-price {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .pkd20-section {
        padding: 40px 15px;
        padding-top: 60px;
    }

    .pkd20-title {
        font-size: 2rem;
    }

    .pkd20-subtitle {
        font-size: 0.9rem;
    }

    .pkd20-card {
        padding: 25px 20px;
    }

    .pkd20-plan-name {
        font-size: 1.5rem;
    }

    .pkd20-price {
        font-size: 2.5rem;
    }

    .pkd20-card-image {
        height: 180px;
    }
}

/* FAQ Section Styles */
.pkd20-faq-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.pkd20-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.pkd20-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pkd20-faq-badge::before {
    content: '?';
    width: 20px;
    height: 20px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.pkd20-faq-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pkd20-faq-description {
    font-size: 1rem;
    color: #999;
    margin-bottom: 50px;
    line-height: 1.6;
}

.pkd20-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pkd20-faq-item {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pkd20-faq-item:hover {
    border-color: #333;
}

.pkd20-faq-item.pkd20-active {
    border-color: #333;
}

.pkd20-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.pkd20-faq-question:hover {
    background: #0f0f0f;
}

.pkd20-faq-question-text {
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
}

.pkd20-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.pkd20-faq-toggle::before,
.pkd20-faq-toggle::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: all 0.3s ease;
}

.pkd20-faq-toggle::before {
    width: 10px;
    height: 2px;
}

.pkd20-faq-toggle::after {
    width: 2px;
    height: 10px;
}

.pkd20-faq-item.pkd20-active .pkd20-faq-toggle {
    background: #fff;
    transform: rotate(45deg);
}

.pkd20-faq-item.pkd20-active .pkd20-faq-toggle::before,
.pkd20-faq-item.pkd20-active .pkd20-faq-toggle::after {
    background: #000;
}

.pkd20-faq-item:not(.pkd20-active) .pkd20-faq-toggle::before {
    transform: rotate(0deg);
}

.pkd20-faq-item:not(.pkd20-active) .pkd20-faq-toggle::after {
    transform: rotate(0deg);
}

.pkd20-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pkd20-faq-item.pkd20-active .pkd20-faq-answer {
    max-height: 300px;
}

.pkd20-faq-answer-content {
    padding: 0 32px 28px 32px;
    color: #999;
    line-height: 1.7;
    font-size: 0.95rem;
}

.pkd20-faq-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    transition: all 0.3s ease;
}

.pkd20-faq-arrow::after {
    content: '›';
}

.pkd20-faq-item:hover .pkd20-faq-arrow {
    color: #999;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .pkd20-faq-section {
        padding: 60px 20px;
    }

    .pkd20-faq-title {
        font-size: 2.5rem;
    }

    .pkd20-faq-question {
        padding: 24px 24px;
    }

    .pkd20-faq-question-text {
        font-size: 1rem;
    }

    .pkd20-faq-answer-content {
        padding: 0 24px 24px 24px;
    }
}

@media (max-width: 480px) {
    .pkd20-faq-title {
        font-size: 2rem;
    }

    .pkd20-faq-description {
        font-size: 0.9rem;
    }

    .pkd20-faq-question {
        padding: 20px;
    }

    .pkd20-faq-answer-content {
        padding: 0 20px 20px 20px;
    }
}

/* Create Account Section Styles */
.pkd20-account-section {
    padding: 80px 20px;
    padding-top: 150px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.pkd20-account-content {
    max-width: 500px;
}

.pkd20-account-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.pkd20-account-description {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 40px;
}

.pkd20-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pkd20-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pkd20-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pkd20-form-label {
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.pkd20-form-input {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.pkd20-form-input::placeholder {
    color: #555;
}

.pkd20-form-input:focus {
    border-color: #444;
    background: #0f0f0f;
}

.pkd20-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.pkd20-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #333;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.pkd20-checkbox-label {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.4;
}

.pkd20-checkbox-label a {
    color: #fff;
    text-decoration: underline;
}

.pkd20-submit-button {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 18px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.pkd20-submit-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.pkd20-divider-text {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 20px 0;
    position: relative;
}

.pkd20-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pkd20-social-button {
    background: transparent;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 0.95rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
}

.pkd20-social-button:hover {
    background: #0f0f0f;
    border-color: #444;
}

.pkd20-social-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkd20-social-icon.pkd20-google {
    color: #fff;
}

.pkd20-social-icon.pkd20-facebook {
    color: #1877f2;
}

.pkd20-account-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.pkd20-phone-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 2;
}

.pkd20-phone-mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.pkd20-card-mockup {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    width: 60%;
    max-width: 350px;
    z-index: 1;
}

.pkd20-card-mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1024px) {
    .pkd20-account-container {
        gap: 60px;
    }

    .pkd20-account-title {
        font-size: 3rem;
    }

    .pkd20-account-visual {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .pkd20-account-section {
        padding: 60px 20px;
        padding-top: 150px;
    }

    .pkd20-account-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pkd20-account-content {
        max-width: 100%;
    }

    .pkd20-account-title {
        font-size: 2.5rem;
    }

    .pkd20-form-row {
        grid-template-columns: 1fr;
    }

    .pkd20-account-visual {
        min-height: 400px;
        order: -1;
    }

    .pkd20-card-mockup {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .pkd20-account-title {
        font-size: 2rem;
    }

    .pkd20-account-description {
        font-size: 0.9rem;
    }

    .pkd20-form-input,
    .pkd20-submit-button,
    .pkd20-social-button {
        padding: 14px 20px;
    }

    .pkd20-account-visual {
        min-height: 350px;
    }
}

/* Welcome Back Section Styles */
.pkd20-welcome-section {
    padding: 80px 20px;
    padding-top: 150px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.pkd20-welcome-container {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.pkd20-welcome-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pkd20-welcome-description {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.pkd20-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pkd20-login-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.pkd20-login-label {
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding-left: 8px;
}

.pkd20-login-input {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.pkd20-login-input::placeholder {
    color: #555;
}

.pkd20-login-input:focus {
    border-color: #444;
    background: #0f0f0f;
}

.pkd20-remember-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.pkd20-remember-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkd20-remember-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #333;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    accent-color: #fff;
}

.pkd20-remember-text {
    font-size: 0.9rem;
    color: #999;
}

.pkd20-forgot-link {
    font-size: 0.9rem;
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.pkd20-forgot-link:hover {
    color: #ccc;
}

.pkd20-login-button {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 18px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.pkd20-login-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.pkd20-login-divider {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 20px 0;
    position: relative;
}

.pkd20-login-divider::before,
.pkd20-login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #222;
}

.pkd20-login-divider::before {
    left: 0;
}

.pkd20-login-divider::after {
    right: 0;
}

.pkd20-social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pkd20-social-login-button {
    background: transparent;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 0.95rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
}

.pkd20-social-login-button:hover {
    background: #0f0f0f;
    border-color: #444;
}

.pkd20-social-login-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkd20-social-login-icon.pkd20-google-icon {
    color: #fff;
}

.pkd20-social-login-icon.pkd20-facebook-icon {
    color: #1877f2;
}

@media (max-width: 768px) {
    .pkd20-welcome-section {
        padding: 60px 20px;
        padding-top: 150px;
        min-height: auto;
    }

    .pkd20-welcome-title {
        font-size: 2.5rem;
    }

    .pkd20-welcome-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pkd20-welcome-title {
        font-size: 2rem;
    }

    .pkd20-login-input,
    .pkd20-login-button,
    .pkd20-social-login-button {
        padding: 14px 20px;
    }

    .pkd20-remember-forgot {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
/* ==============================================PRICING PAGE, SIGNIN AND SIGNUP PAGE STYLES ENDS==============================================  */

button.pkd20-social-button1 {
    width: 100%;
    background: none;
    font-weight: 600;
}