/* ============================================================HOMEPAGE HAEDER SECTION=========================================================== */
.pkd-hero-container {
    color: #333;
    font-size: 16px;
    height: 100vh;
    width: 100%;
    max-height: 62em;
    min-height: 32em;
    text-align: center;
    position: relative;
    background-image: linear-gradient(157deg, #FFD17C 4%, #E77FE9 96%);
    overflow: hidden;
}

.pkd-hero-container .pkd-hero-h1 {
    font-size: clamp(2.5em, 8vw, 5.5em);
    margin: 0;
    line-height: 1.1;
}

.pkd-hero-container .pkd-hero-h2 {
    font-size: clamp(1.5em, 4.5vw, 3.5em);
    margin: 0;
    line-height: 1.2;
    font-weight: 600;
}

.pkd-hero-container .pkd-hero-h3 {
    font-size: clamp(1.7em, 1.5vw, 1.5em);
    /* text-transform: capitalize; */
    margin: 1em 0;
    font-weight: 400;
}

.pkd-hero-container::before,
.pkd-hero-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0) 30%, white);
}

.pkd-hero-container::after {
    background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0) 90%, white);
}

.pkd-animation-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    perspective: 1400px;
    transform-style: preserve-3d;
    overflow: hidden;
}

.pkd-animation-pages-container {
    height: 40em;
    margin: 0 auto;
    max-width: 420em;
    pointer-events: none;
    position: absolute;
    transform-style: preserve-3d;
    transform: rotateY(31deg) rotateX(50deg) rotateZ(-5deg) scale(1) translate(0, 5em);
    width: 220%;
}

.pkd-animation-parts-page {
    animation: pkd-add-page 0.4s 1.5s cubic-bezier(0.21, 0.91, 0.39, 0.99) forwards;
    background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0.5) 7%, rgba(255, 255, 255, 0) 100%);
    height: 42em;
    margin: 0 2em;
    opacity: 0;
    padding: 1em 0;
    position: absolute;
    transform-style: preserve-3d;
    transition: all 2.5s cubic-bezier(0.43, 0, 0.31, 1);
    width: 24em;
}

.pkd-animation-parts-page:nth-child(1) {
    left: -28em;
}

.pkd-animation-parts-page:nth-child(2) {
    left: 0;
}

.pkd-animation-parts-page:nth-child(3) {
    left: 28em;
}

.pkd-animation-parts-page:nth-child(4) {
    left: 56em;
}

.pkd-animation-parts-page:nth-child(5) {
    left: 84em;
}

.pkd-animation-parts-page:nth-child(6) {
    left: 112em;
}

.pkd-animation-parts-page.pkd-initial-load {
    animation: pkd-add-page-initial 1s 0.5s cubic-bezier(0.77, 0, 0.35, 1) forwards;
}

.pkd-animation-parts-page.pkd-initial-load .pkd-box1 {
    animation-delay: 0.4s;
}

.pkd-animation-parts-page.pkd-initial-load .pkd-box2 {
    animation-delay: 0.6s;
}

.pkd-animation-parts-page.pkd-initial-load .pkd-box3 {
    animation-delay: 0.8s;
}

.pkd-animation-parts-page.pkd-initial-load .pkd-box4 {
    animation-delay: 1s;
}

.pkd-animation-parts-page.pkd-removing {
    animation: pkd-remove-page 0.6s ease-out forwards;
    opacity: 0.8;
}

.pkd-animation-parts-page .pkd-box {
    animation: pkd-add-box 0.5s cubic-bezier(1, -0.74, 0, 1.48) forwards;
    opacity: 0;
    background: rgba(255, 255, 255, 0.7);
}

.pkd-animation-parts-page .pkd-box1 {
    animation-delay: 2s;
    width: 90%;
    height: 20%;
    margin: 2.5% auto;
}

.pkd-animation-parts-page .pkd-box2 {
    animation-delay: 2.5s;
    width: 40%;
    height: 10%;
    margin: 2.5% auto;
}

.pkd-animation-parts-page .pkd-box3 {
    animation-delay: 3s;
    width: 90%;
    height: 40%;
    margin: 2.5% auto;
}

.pkd-animation-parts-page .pkd-box4 {
    animation-delay: 3.5s;
    width: 90%;
    height: 20%;
    margin: 2.5% auto;
}

@keyframes pkd-add-page {
    0% {
        transform: translateY(10em) translateZ(10em) rotateZ(20deg);
        opacity: 0;
    }

    30% {
        opacity: 0.8;
    }

    100% {
        transform: none;
        opacity: 0.8;
    }
}

@keyframes pkd-add-page-initial {
    0% {
        transform: translateZ(-10em);
        opacity: 0;
    }

    30% {
        opacity: 0.8;
    }

    100% {
        transform: none;
        opacity: 0.8;
    }
}

@keyframes pkd-remove-page {
    0% {
        transform: none;
        opacity: 0.8;
    }

    100% {
        transform: translateZ(-10em) rotateZ(-45deg) scale(0.3);
        opacity: 0;
    }
}

@keyframes pkd-add-box {
    0% {
        opacity: 0;
        transform: translateY(-0.25em) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes pkd-fade-up {
    from {
        opacity: 0;
        transform: translateY(0.5em);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.pkd-fade-up {
    opacity: 0;
    animation: pkd-fade-up 1s 0.2s cubic-bezier(0.77, 0, 0.35, 1) forwards;
}

.pkd-course-title-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
}

.pkd-course-title {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    padding: 0 1rem;
}

.pkd-btn-header-enroll {
    margin-top: 2rem;
    background-color: #FFA200;
    border-color: #FFA200;
    padding: 1rem 2rem;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: white;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    border: 2px solid #FFA200;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pkd-btn-header-enroll:hover {
    background-color: #ff9100;
    border-color: #ff9100;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .pkd-hero-container {
        font-size: 14px;
    }

    .pkd-animation-pages-container {
        transform: rotateY(31deg) rotateX(50deg) rotateZ(-5deg) scale(0.8) translate(0, 5em);
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .pkd-hero-container {
        font-size: 12px;
        min-height: 28em;
    }

    .pkd-animation-pages-container {
        transform: rotateY(31deg) rotateX(50deg) rotateZ(-5deg) scale(0.6) translate(0, 3em);
        height: 35em;
    }

    .pkd-animation-parts-page {
        height: 38em;
        width: 20em;
    }

    .pkd-animation-parts-page:nth-child(1) {
        left: -24em;
    }

    .pkd-animation-parts-page:nth-child(2) {
        left: 0;
    }

    .pkd-animation-parts-page:nth-child(3) {
        left: 24em;
    }

    .pkd-animation-parts-page:nth-child(4) {
        left: 48em;
    }

    .pkd-animation-parts-page:nth-child(5) {
        left: 72em;
    }

    .pkd-animation-parts-page:nth-child(6) {
        left: 96em;
    }

    .pkd-btn-header-enroll {
        padding: 0.85rem 1.5rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .pkd-hero-container {
        font-size: 10px;
        min-height: 24em;
    }

    .pkd-animation-container {
        perspective: 1000px;
    }

    .pkd-animation-pages-container {
        transform: rotateY(25deg) rotateX(45deg) rotateZ(-5deg) scale(0.4) translate(0, 2em);
        height: 30em;
    }

    .pkd-animation-parts-page {
        height: 32em;
        width: 18em;
        margin: 0 1.5em;
    }

    .pkd-animation-parts-page:nth-child(1) {
        left: -20em;
    }

    .pkd-animation-parts-page:nth-child(2) {
        left: 0;
    }

    .pkd-animation-parts-page:nth-child(3) {
        left: 20em;
    }

    .pkd-animation-parts-page:nth-child(4) {
        left: 40em;
    }

    .pkd-animation-parts-page:nth-child(5) {
        left: 60em;
    }

    .pkd-animation-parts-page:nth-child(6) {
        left: 80em;
    }

    .pkd-course-title {
        width: 95%;
        padding: 0 0.5rem;
    }

    .pkd-btn-header-enroll {
        padding: 0.75rem 1.25rem;
        margin-top: 1.5rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .pkd-hero-container {
        font-size: 9px;
    }

    .pkd-animation-pages-container {
        transform: rotateY(20deg) rotateX(40deg) rotateZ(-5deg) scale(0.35) translate(0, 1.5em);
    }
}

/* ============================================================HOMEPAGE HEADER SECTION CSS ENDS HERE============================================ */


/* ===============================
       Privacy Policy Bullet Styling
    ================================ */
.privacy-list {
    margin: 16px 0 24px 0;
    padding-left: 22px;
    list-style: none;
}

.privacy-list li {
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    padding-left: 18px;
}

.privacy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #0a58ca;
    border-radius: 50%;
}

/* Optional spacing for policy sections */
.privacy-policy-wrapper .disc {
    margin-bottom: 14px;
}

a.logo img {
    max-width: 250px;
}

@media (max-width: 325px) {
    a.logo img {
        max-width: 200px;
    }
}

.header-transparent {
    background-color: #0000005b;
}

.rts-btn.active {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.single-service-nine p {
    color: #ffffff;
    font-size: 18px;
    max-width: 46%;
}



/* ===================================HOMEPAGE WORKFLOW SECTION ===================================================== */
.pkd17-section {
    overflow-x: clip;
    padding: 70px 20px;
    position: relative;
}

.pkd17-container {
    max-width: 1400px;
    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: 0px;
    position: relative;
    align-items: center;
    min-height: 400px;
    justify-content: space-between;
}

/* Content on left, image on right */
.pkd17-value-row.pkd17-left-content .pkd17-content-item {
    order: 1;
}

.pkd17-value-row.pkd17-left-content .pkd17-image-item {
    order: 2;
}

/* Content on right, image on left */
.pkd17-value-row.pkd17-right-content .pkd17-content-item {
    order: 2;
}

.pkd17-value-row.pkd17-right-content .pkd17-image-item {
    order: 1;
}

.pkd17-value-item {
    width: calc(50% - 40px);
    position: relative;
    z-index: 2;
}

/* Content item styling */
.pkd17-left-content .pkd17-content-item {
    padding-right: 40px;
    text-align: left;
}

.pkd17-right-content .pkd17-content-item {
    padding-left: 40px;
    text-align: left;
}

/* Image item styling */
.pkd17-left-content .pkd17-image-item {
    padding-left: 40px;
}

.pkd17-right-content .pkd17-image-item {
    padding-right: 40px;
}

.pkd17-value-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.pkd17-text-content {
    opacity: 1;
    transition: opacity 0.5s ease;
    flex: 1;
    min-width: 0;
}

.pkd17-value-row.active .pkd17-text-content {
    opacity: 1;
}

/* 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-value-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    margin-bottom: 12px;
}

.pkd17-value-description {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
}

.pkd17-image-box {
    width: 100%;
    max-width: 626px;
    height: 358px;
    border-radius: 20px;
    overflow: hidden;
    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: 1024px) {
    .pkd17-section {
        padding: 60px 16px;
    }

    .pkd17-header {
        margin-bottom: 80px;
    }

    .pkd17-value-row {
        margin-bottom: 80px;
        min-height: 350px;
    }

    .pkd17-value-item {
        width: calc(50% - 30px);
    }

    .pkd17-left-content .pkd17-content-item {
        padding-right: 30px;
    }

    .pkd17-right-content .pkd17-content-item {
        padding-left: 30px;
    }

    .pkd17-left-content .pkd17-image-item {
        padding-left: 30px;
    }

    .pkd17-right-content .pkd17-image-item {
        padding-right: 30px;
    }

    .pkd17-image-box {
        max-width: 100%;
        height: 250px;
    }

    .pkd17-value-description {
        font-size: 15px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .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;
        flex-direction: column !important;
        align-items: flex-start;
    }

    .pkd17-value-item {
        width: calc(100% - 50px);
        padding: 0 !important;
        margin-left: 50px;
    }

    /* Force content to always appear first, image second */
    .pkd17-content-item {
        text-align: left !important;
        order: 1 !important;
    }

    .pkd17-image-item {
        margin-top: 16px;
        order: 2 !important;
    }

    .pkd17-circle {
        left: 20px;
    }

    .pkd17-value-title {
        font-size: 22px;
    }

    .pkd17-value-description {
        font-size: 14px;
    }

    .pkd17-image-box {
        width: 100%;
        max-width: 100%;
        height: 200px;
        border-radius: 16px;
    }
}

/* ===================================HOMEPAGE WORKFLOW SECTION CSS ENDS HERE================================================= */

.rts-project-area.without-bg-image .project-content-left-5 {
    min-height: -webkit-fill-available;
}


/* ===================================API BANKING PAGE================================================================== */
/* Main Hero Area */
.pk1-main-hero-area {
    width: 100%;
    overflow: hidden;
}

.pk1-hero-area {
    position: relative;
    background: linear-gradient(135deg, #1e0f36 0%, #2a1544 30%, #1e0f36 60%, #2a1544 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}

/* Background Pattern Effect */
.pk1-hero-area::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(88, 70, 130, 0.25) 0%, rgba(88, 70, 130, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Container */
.pk1-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.pk1-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Title */
.pk1-hero-title {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.pk1-highlight {
    background: linear-gradient(90deg, #a855f7 0%, #c084fc 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: #a855f7;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

/* Hero Description */
.pk1-hero-description {
    font-size: 17px;
    color: #a5a5c8;
    line-height: 1.5;
    margin-bottom: 45px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Hero Buttons */
.pk1-hero-btns {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.pk1-btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.pk1-btn-primary {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.pk1-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.pk1-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.pk1-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Shapes Container */
.pk1-all-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.pk1-all-shapes img {
    position: absolute;
    border-radius: 20px;
    object-fit: cover;
}

/* Individual Shape Positioning */
.pk1-hero-shape1 {
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 380px;
    width: 28%;
    animation: pk1-float 3s ease-in-out infinite;
    opacity: 0.8;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pk1-hero-shape2 {
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 380px;
    width: 28%;
    animation: pk1-float 3s ease-in-out infinite 0.5s;
    opacity: 0.8;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pk1-hero-shape3 {
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    max-width: 500px;
    width: 35%;
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(40px);
}

.pk1-hero-shape4 {
    left: 12%;
    bottom: 20%;
    max-width: 50px;
    width: 4%;
    animation: pk1-pulse 2s ease-in-out infinite;
    border-radius: 50%;
}

.pk1-hero-shape5 {
    right: 12%;
    top: 25%;
    max-width: 50px;
    width: 4%;
    animation: pk1-pulse 2s ease-in-out infinite 1s;
    border-radius: 50%;
}

/* Placeholder for shapes (if images are missing) */
.pk1-shape-placeholder {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3));
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Image overlay effect for better blending */
.pk1-hero-shape1::before,
.pk1-hero-shape2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 20px;
    pointer-events: none;
}

/* Animations */
@keyframes pk1-float {

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

    50% {
        transform: translateY(-50%) translateX(10px);
    }
}

@keyframes pk1-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes pk1-slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.pk1-animate {
    animation: pk1-slideInDown 0.6s ease forwards;
}

.pk1-animate-delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.pk1-animate-delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .pk1-hero-title {
        font-size: 56px;
    }

    .pk1-hero-description {
        font-size: 16px;
    }

    .pk1-hero-shape1,
    .pk1-hero-shape2 {
        width: 26%;
        max-width: 320px;
    }

    .pk1-hero-shape3 {
        width: 30%;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .pk1-hero-area {
        min-height: 80vh;
        padding: 60px 20px;
    }

    .pk1-hero-title {
        font-size: 44px;
        margin-bottom: 20px;
    }

    .pk1-hero-description {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .pk1-btn {
        padding: 16px 38px;
        font-size: 15px;
    }

    .pk1-hero-btns {
        gap: 18px;
    }

    .pk1-hero-shape1,
    .pk1-hero-shape2 {
        width: 32%;
        max-width: 260px;
    }

    .pk1-hero-shape3 {
        width: 25%;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .pk1-hero-area {
        min-height: 70vh;
        padding: 40px 15px;
    }

    .pk1-hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .pk1-hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .pk1-hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .pk1-btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    .pk1-hero-shape1,
    .pk1-hero-shape2 {
        width: 40%;
        max-width: 180px;
        opacity: 0.5;
    }

    .pk1-hero-shape3 {
        display: none;
    }

    .pk1-hero-shape4,
    .pk1-hero-shape5 {
        width: 8%;
        max-width: 40px;
    }

    .pk1-highlight {
        text-decoration-thickness: 2px;
        text-underline-offset: 6px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .pk1-hero-title {
        font-size: 28px;
    }

    .pk1-hero-description {
        font-size: 13px;
    }

    .pk1-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* ===================================API BANKING PAGE CSS ENDS HERE======================================================== */

/* ======================================API BANKING CSS================================= */
.pk2-solving-area {
    padding: 100px 0;
    background: #ffffff;
}

.pk2-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.pk2-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.pk2-col-left {
    flex: 1;
    min-width: 300px;
    align-self: flex-start;
}

.pk2-col-right {
    flex: 1;
    min-width: 300px;
    align-self: flex-start;
}

.pk2-solving-heading {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: pk2-fadeInUp 0.8s ease-out forwards;
}

.pk2-solving-heading h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0a0a0a;
    letter-spacing: -0.5px;
}

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

.pk2-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pk2-accordion-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    animation: pk2-slideInLeft 0.6s ease-out forwards;
}

.pk2-accordion-item:nth-child(1) {
    animation-delay: 0.2s;
}

.pk2-accordion-item:nth-child(2) {
    animation-delay: 0.4s;
}

.pk2-accordion-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pk2-slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pk2-accordion-item:hover {
    border-color: #9333ea;
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.15);
    transform: translateY(-4px);
}

.pk2-accordion-item.pk2-active {
    border-color: #9333ea;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.2);
}

.pk2-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    cursor: pointer;
    text-align: left;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.pk2-accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: all 0.4s ease;
}

.pk2-accordion-item.pk2-active .pk2-accordion-header::before {
    background: linear-gradient(180deg, #9333ea 0%, #7e22ce 100%);
    width: 6px;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

.pk2-accordion-title {
    flex: 1;
}

.pk2-accordion-title h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.pk2-accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pk2-accordion-icon svg {
    width: 20px;
    height: 20px;
    stroke: #6b7280;
    transition: stroke 0.3s ease;
}

.pk2-accordion-item.pk2-active .pk2-accordion-icon {
    transform: rotate(180deg);
}

.pk2-accordion-item.pk2-active .pk2-accordion-icon svg {
    stroke: #9333ea;
}

.pk2-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: none;
    padding: 0 24px;
    opacity: 0;
}

.pk2-accordion-item.pk2-active .pk2-accordion-content {
    max-height: 500px;
    padding: 0 24px 24px 24px;
    opacity: 1;
}

.pk2-accordion-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

.pk2-solving-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: pk2-fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.pk2-content-wrapper {
    width: 100%;
    max-width: 600px;
}

.pk2-content-section {
    margin-bottom: 15px;
}

.pk2-content-section:last-child {
    margin-bottom: 0;
}

.pk2-content-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 10px;
    line-height: 1.3;
}

.pk2-content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pk2-solving-heading h2 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .pk2-solving-area {
        padding: 80px 0;
    }

    .pk2-row {
        gap: 60px;
    }

    .pk2-col-left,
    .pk2-col-right {
        flex: 1 1 100%;
    }

    .pk2-solving-heading h2 {
        font-size: 36px;
    }

    .pk2-solving-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .pk2-solving-area {
        padding: 60px 0;
    }

    .pk2-solving-heading {
        margin-bottom: 40px;
    }

    .pk2-solving-heading h2 {
        font-size: 32px;
    }

    .pk2-accordion-header {
        padding: 20px;
    }

    .pk2-accordion-item.pk2-active .pk2-accordion-content {
        padding: 0 20px 20px 20px;
    }

    .pk2-accordion-title h4 {
        font-size: 20px;
    }

    .pk2-accordion-content p {
        font-size: 14px;
    }

    .pk2-solving-image {
        min-height: 350px;
    }

    .pk2-solving-shape1,
    .pk2-solving-shape2 {
        width: 120px;
        height: 120px;
    }

    .pk2-solving-shape2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .pk2-container {
        padding: 0 16px;
    }

    .pk2-solving-area {
        padding: 40px 0;
    }

    .pk2-solving-heading h2 {
        font-size: 28px;
    }

    .pk2-accordion {
        gap: 12px;
    }

    .pk2-accordion-header {
        padding: 16px;
    }

    .pk2-accordion-item.pk2-active .pk2-accordion-content {
        padding: 0 16px 16px 16px;
    }

    .pk2-accordion-title h4 {
        font-size: 18px;
    }

    .pk2-solving-image {
        min-height: 300px;
    }

    .pk2-image-wrapper {
        border-radius: 16px;
    }

    .pk2-solving-shape1 {
        width: 100px;
        height: 100px;
        top: -20px;
        right: -20px;
    }

    .pk2-solving-shape2 {
        width: 90px;
        height: 90px;
        bottom: -20px;
        right: 30px;
        font-size: 20px;
    }
}

/* ======================================API BANKING CSS ENDS HERE================================= */

/* ======================================================TAX Payments PAGE CSS STARTS HERE============================================ */
/* Main Container */
.pk3-trending-area {
    padding: 80px 0 100px;
    background-color: #ffffff;
    overflow: hidden;
}

.pk3-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.pk3-section-warp {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    margin-bottom: 30px;
    align-items: start;
    opacity: 0;
    animation: pk3-fadeInUp 0.8s ease-out forwards;
}

.pk3-section-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: #0a0a23;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: pk3-fadeInLeft 0.8s ease-out 0.2s forwards;
    margin: auto;
}

.pk3-section-content {
    padding-top: 8px;
    opacity: 0;
    animation: pk3-fadeInRight 0.8s ease-out 0.4s forwards;
    margin: auto;
}

.pk3-section-content p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.75;
    color: #000000;
}

/* Grid Layout */
.pk3-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
}

/* Card Base */
.pk3-card-wrapper {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: pk3-fadeInUp 0.6s ease-out forwards;
}

.pk3-card-wrapper:nth-child(1) {
    animation-delay: 0.5s;
}

.pk3-card-wrapper:nth-child(2) {
    animation-delay: 0.65s;
}

.pk3-card-wrapper:nth-child(3) {
    animation-delay: 0.8s;
}

.pk3-card-wrapper:nth-child(4) {
    animation-delay: 0.95s;
}

.pk3-trending-card,
.pk3-trending-card-style2 {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Hover Effect with Shine */
.pk3-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.pk3-card-wrapper:hover::before {
    left: 100%;
}

.pk3-card-wrapper:hover .pk3-trending-card,
.pk3-card-wrapper:hover .pk3-trending-card-style2 {
    transform: translateY(-8px);
}

.pk3-card-wrapper:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    z-index: 1;
}

/* Card Style 1 - Image on Top */
.pk3-trending-card {
    flex-direction: column;
}

.pk3-trending-card .pk3-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
}

.pk3-trending-card .pk3-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pk3-card-wrapper:hover .pk3-trending-card .pk3-card-image::after {
    opacity: 1;
}

.pk3-trending-card .pk3-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pk3-card-wrapper:hover .pk3-trending-card .pk3-card-image img {
    transform: scale(1.1) rotate(1deg);
}

.pk3-trending-card .pk3-card-content {
    padding: 45px 35px 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Card Style 2 - Image on Bottom */
.pk3-trending-card-style2 {
    flex-direction: column;
}

.pk3-trending-card-style2 .pk3-card-content {
    padding: 45px 35px 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
}

.pk3-trending-card-style2 .pk3-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f1f5f9;
    order: 2;
    position: relative;
}

.pk3-trending-card-style2 .pk3-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pk3-card-wrapper:hover .pk3-trending-card-style2 .pk3-card-image::after {
    opacity: 1;
}

.pk3-trending-card-style2 .pk3-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pk3-card-wrapper:hover .pk3-trending-card-style2 .pk3-card-image img {
    transform: scale(1.1) rotate(-1deg);
}

/* Card Content Typography */
.pk3-card-heading {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #0a0a23;
    letter-spacing: -0.01em;
}

.pk3-card-link {
    color: #0a0a23;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.pk3-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pk3-card-link:hover {
    color: #6366f1;
    transform: translateX(4px);
}

.pk3-card-link:hover::after {
    width: 100%;
}

.pk3-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    transition: color 0.3s ease;
}

.pk3-card-wrapper:hover .pk3-card-text {
    color: #475569;
}

/* Keyframe Animations */
@keyframes pk3-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes pk3-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes pk3-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

/* Pulse animation for attention */
@keyframes pk3-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .pk3-container {
        padding: 0 30px;
    }

    .pk3-section-warp {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .pk3-section-title {
        font-size: 46px;
    }
}

@media (max-width: 1200px) {
    .pk3-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .pk3-section-warp {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .pk3-section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .pk3-trending-area {
        padding: 60px 0 80px;
    }

    .pk3-container {
        padding: 0 20px;
    }

    .pk3-section-title {
        font-size: 36px;
    }

    .pk3-section-content p {
        font-size: 16px;
    }

    .pk3-grid-container {
        grid-template-columns: 1fr;
    }

    .pk3-card-heading {
        font-size: 24px;
    }

    .pk3-trending-card .pk3-card-image,
    .pk3-trending-card-style2 .pk3-card-image {
        height: 240px;
    }

    .pk3-trending-card .pk3-card-content,
    .pk3-trending-card-style2 .pk3-card-content {
        padding: 35px 28px 40px;
    }
}

@media (max-width: 576px) {
    .pk3-section-title {
        font-size: 32px;
        color: black;
        text-align: center;
    }

    .pk3-section-warp {
        margin-bottom: 30px;
    }

    .pk3-trending-area {
        padding: 50px 0 60px;
    }

    .pk3-card-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .pk3-card-text {
        font-size: 15px;
    }

    .pk3-trending-card .pk3-card-content,
    .pk3-trending-card-style2 .pk3-card-content {
        padding: 30px 24px 35px;
    }

    .pk3-trending-card .pk3-card-image,
    .pk3-trending-card-style2 .pk3-card-image {
        height: 220px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ======================================================TAX Payments PAGE CSS ENDS HERE============================================ */


/* =======================================escrow page css starts here=================================================  */
/* Hero Banner Section */
.pk4-banner-area-eight {
    position: relative;
    padding: 100px 0 0;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 140px;
}

.pk4-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.pk4-row {
    display: flex;
    flex-wrap: wrap;
}

.pk4-col-lg-12 {
    width: 100%;
}

/* Banner Inner Content */
.pk4-banner-inner-content-eight {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-right: 100px;
}

.pk4-pre-title-area {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: unset;
    background: unset;
    border: unset;
    border-radius: 50px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.pk4-pre-title-area img {
    width: 20px;
    height: 20px;
    animation: rotate 3s ease-in-out infinite;
}

.pk4-pre-title-area p {
    margin: 0;
    font-size: 18px;
    color: #000000;
    font-weight: 700;
}

/* Main Title */
.pk4-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a2e;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.pk4-title-escrow {
    display: block;
    font-weight: 800;
    color: #1a1a2e;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

/* Description */
.pk4-disc {
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 40px;
    max-width: 520px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* Button */
.pk4-btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a2e;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    position: relative;
    overflow: hidden;
}

.pk4-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pk4-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.pk4-btn-primary:hover {
    background: #2d2d44;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Counter Up Area */
.pk4-counter-up-area-eight {
    margin-top: auto;
    padding: 80px 0 60px;
    position: relative;
    z-index: 3;
}

.pk4-counter-up-wrapper {
    background: #2a3441;
    border-radius: 25px;
    padding: 55px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
}

.pk4-counter-left {
    display: flex;
    gap: 100px;
    flex: 1;
    z-index: 2;
}

.pk4-single-counter-area-eight {
    position: relative;
}

.pk4-single-counter-area-eight:nth-child(1) {
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.pk4-single-counter-area-eight:nth-child(2) {
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 1.4s;
    opacity: 0;
}

.pk4-counter-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}

.pk4-counter-business {
    font-size: 22px;
    color: #ffffff;
    display: block;
    line-height: 1.6;
    text-transform: capitalize;
}

.pk4-star-icon {
    display: flex;
    gap: 4px;
    margin-top: 15px;
}

.pk4-star-icon i {
    color: #fbbf24;
    font-size: 14px;
    opacity: 0;
    animation: starPop 0.3s ease forwards;
}

.pk4-star-icon i:nth-child(1) {
    animation-delay: 1.6s;
}

.pk4-star-icon i:nth-child(2) {
    animation-delay: 1.7s;
}

.pk4-star-icon i:nth-child(3) {
    animation-delay: 1.8s;
}

.pk4-star-icon i:nth-child(4) {
    animation-delay: 1.9s;
}

.pk4-star-icon i:nth-child(5) {
    animation-delay: 2s;
}

/* Absolute Image */
.pk4-absolute-image {
    position: absolute;
    right: -80px;
    bottom: 0;
    width: 520px;
    height: auto;
    z-index: 3;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1s ease forwards;
    animation-delay: 1.3s;
}

.pk4-absolute-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    /* animation: float 3s ease-in-out infinite; */
}

/* Banner Shape Area */
.pk4-banner-shape-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
}

.pk4-shape-area img {
    width: 100%;
    height: auto;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

@keyframes starPop {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

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

/* Hover effect for counter cards */
.pk4-single-counter-area-eight {
    transition: transform 0.3s ease;
}

.pk4-single-counter-area-eight:hover {
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pk4-banner-area-eight {
        padding: 80px 0 0;
        min-height: auto;
    }

    .pk4-container {
        padding: 0 30px;
    }

    .pk4-banner-inner-content-eight {
        padding-right: 50px;
    }

    .pk4-title {
        font-size: 60px;
    }

    .pk4-counter-up-wrapper {
        padding: 45px 50px;
    }

    .pk4-counter-left {
        gap: 60px;
    }

    .pk4-absolute-image {
        width: 420px;
        right: -60px;
    }
}

@media (max-width: 768px) {
    .pk4-banner-area-eight {
        padding: 60px 0 0;
    }

    .pk4-container {
        padding: 0 20px;
    }

    .pk4-banner-inner-content-eight {
        padding-right: 0;
    }

    .pk4-title {
        font-size: 44px;
    }

    .pk4-disc {
        font-size: 15px;
    }

    .pk4-counter-up-area-eight {
        padding: 60px 0 40px;
    }

    .pk4-counter-up-wrapper {
        flex-direction: column;
        padding: 40px 35px;
        text-align: center;
        overflow: hidden;
    }

    .pk4-counter-left {
        flex-direction: column;
        gap: 35px;
        width: 100%;
    }

    .pk4-absolute-image {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 320px;
        margin: 35px auto 0;
    }

    .pk4-star-icon {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pk4-banner-area-eight {
        padding: 40px 0 0;
        padding-top: 130px;
    }

    .pk4-pre-title-area {
        padding: 6px 15px;
    }

    .pk4-pre-title-area p {
        font-size: 13px;
    }

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

    .pk4-disc {
        font-size: 14px;
    }

    .pk4-btn-primary {
        padding: 14px 32px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .pk4-counter-up-wrapper {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .pk4-counter-title {
        font-size: 36px;
    }

    .pk4-counter-business {
        font-size: 13px;
    }

    .pk4-counter-left {
        gap: 25px;
    }
}

/* =======================================escrow page css ends here=================================================  */



/* Main Section Styles */
.pk5-service-area {
    background: linear-gradient(180deg, #1a0b2e 0%, #2d1852 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.pk5-service-area::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: pk5-float 20s ease-in-out infinite;
}

.pk5-service-area::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: pk5-float 15s ease-in-out infinite reverse;
}

@keyframes pk5-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

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

    75% {
        transform: translate(-50px, -50px) scale(0.9);
    }
}

.pk5-container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Section Title */
.pk5-section-title {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: pk5-titleFadeIn 1s ease-out 0.3s forwards;
}

@keyframes pk5-titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.pk5-title-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #a78bfa;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
    animation: pk5-glow 2s ease-in-out infinite;
}

@keyframes pk5-glow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(167, 139, 250, 0.8);
    }
}

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

/* Grid Layout */
.pk5-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    position: relative;
}

.pk5-grid-item {
    position: relative;
}

.pk5-grid-item.pk5-small {
    grid-column: span 3;
}

.pk5-grid-item.pk5-large {
    grid-column: span 6;
}

/* Service Card Styles */
.pk5-service-card {
    background: rgba(20, 10, 40, 0.6);
    border: 1px solid rgba(147, 112, 219, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

/* Gradient Overlay */
.pk5-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.6) 0%, rgba(236, 72, 153, 0.6) 50%, rgba(251, 146, 60, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: 24px;
}

/* Animated Border */
.pk5-service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #a855f7, #ec4899, #fb923c, #a855f7);
    background-size: 300% 300%;
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: pk5-borderGradient 3s ease infinite;
}

@keyframes pk5-borderGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.pk5-service-card:hover::before {
    opacity: 1;
}

.pk5-service-card:hover::after {
    opacity: 1;
}

.pk5-service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: transparent;
    box-shadow:
        0 20px 60px rgba(168, 85, 247, 0.4),
        0 0 40px rgba(236, 72, 153, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Shine Effect on Hover */
.pk5-service-card .pk5-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 10;
    pointer-events: none;
}

.pk5-service-card:hover .pk5-shine {
    left: 100%;
}

/* Icon Styles */
.pk5-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.pk5-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 5px 15px rgba(168, 85, 247, 0.3));
}

.pk5-service-card:hover .pk5-icon img {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 10px 25px rgba(168, 85, 247, 0.6));
}

/* Pulse Animation for Icons */
@keyframes pk5-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pk5-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pk5-pulse 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pk5-service-card:hover .pk5-icon::after {
    opacity: 1;
}

/* Content Styles */
.pk5-content {
    position: relative;
    z-index: 1;
}

.pk5-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: capitalize;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.pk5-service-card:hover .pk5-card-label {
    color: rgba(255, 255, 255, 1);
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.pk5-card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.pk5-card-title {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.pk5-card-title:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

.pk5-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(255, 255, 255);
    margin: 0;
    transition: all 0.3s ease;
}

.pk5-service-card:hover .pk5-card-text {
    color: rgb(255, 255, 255);
    transform: translateY(-2px);
}

/* Large Card Styles */
.pk5-service-card.pk5-large-card {
    padding: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 280px;
}

.pk5-service-card.pk5-large-card .pk5-content {
    flex: 1;
    max-width: 50%;
    top: 37px;
}

.pk5-big-icon {
    width: 280px;
    height: 280px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pk5-big-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 10px 30px rgba(168, 85, 247, 0.4));
}

.pk5-service-card:hover .pk5-big-icon img {
    transform: scale(1.12) rotate(-8deg);
    filter: drop-shadow(0 15px 40px rgba(168, 85, 247, 0.7));
}

/* Rotating Background for Big Icons */
.pk5-big-icon::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: conic-gradient(from 0deg,
            rgba(168, 85, 247, 0.2),
            rgba(236, 72, 153, 0.2),
            rgba(251, 146, 60, 0.2),
            rgba(168, 85, 247, 0.2));
    border-radius: 50%;
    opacity: 0;
    animation: pk5-rotate 4s linear infinite;
    transition: opacity 0.5s ease;
}

.pk5-service-card:hover .pk5-big-icon::before {
    opacity: 1;
}

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

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

/* Shape Elements */
.pk5-service-shape1,
.pk5-service-shape2 {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
    z-index: 0;
    transition: all 0.5s ease;
}

.pk5-service-shape1 {
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: auto;
    animation: pk5-shapeFloat1 6s ease-in-out infinite;
}

.pk5-service-shape2 {
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: auto;
    animation: pk5-shapeFloat2 5s ease-in-out infinite;
}

@keyframes pk5-shapeFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-10px, -10px) rotate(5deg);
    }
}

@keyframes pk5-shapeFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(10px, 10px) rotate(-5deg);
    }
}

.pk5-service-card:hover .pk5-service-shape1,
.pk5-service-card:hover .pk5-service-shape2 {
    opacity: 0.3;
    transform: scale(1.1);
}

/* Plus Decoration */
.pk5-plus-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.pk5-plus {
    position: absolute;
    width: 12px;
    height: 12px;
    color: rgba(168, 85, 247, 0.3);
    font-size: 12px;
    animation: pk5-plusPulse 2s ease-in-out infinite;
}

@keyframes pk5-plusPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.pk5-plus::before,
.pk5-plus::after {
    content: '';
    position: absolute;
    background: rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.pk5-plus::before {
    width: 12px;
    height: 2px;
    top: 5px;
    left: 0;
}

.pk5-plus::after {
    width: 2px;
    height: 12px;
    top: 0;
    left: 5px;
}

.pk5-service-card:hover .pk5-plus::before,
.pk5-service-card:hover .pk5-plus::after {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.pk5-plus:nth-child(1) {
    top: 30px;
    left: 30px;
    animation-delay: 0s;
}

.pk5-plus:nth-child(2) {
    top: 30px;
    right: 30px;
    animation-delay: 0.5s;
}

/* Staggered Card Entrance Animation */
.pk5-grid-item:nth-child(1) .pk5-service-card {
    animation: pk5-fadeInUp 0.8s ease-out 0.2s forwards;
}

.pk5-grid-item:nth-child(2) .pk5-service-card {
    animation: pk5-fadeInUp 0.8s ease-out 0.4s forwards;
}

.pk5-grid-item:nth-child(3) .pk5-service-card {
    animation: pk5-fadeInUp 0.8s ease-out 0.6s forwards;
}

.pk5-grid-item:nth-child(4) .pk5-service-card {
    animation: pk5-fadeInUp 0.8s ease-out 0.8s forwards;
}

.pk5-grid-item:nth-child(5) .pk5-service-card {
    animation: pk5-fadeInUp 0.8s ease-out 1s forwards;
}

.pk5-grid-item:nth-child(6) .pk5-service-card {
    animation: pk5-fadeInUp 0.8s ease-out 1.2s forwards;
}

@keyframes pk5-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

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

/* Particle Effect */
.pk5-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.pk5-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(168, 85, 247, 0.4);
    border-radius: 50%;
    opacity: 0;
}

.pk5-service-card:hover .pk5-particle {
    animation: pk5-particleFloat 1.5s ease-out forwards;
}

@keyframes pk5-particleFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0);
    }
}

.pk5-particle:nth-child(1) {
    bottom: 20%;
    left: 10%;
    animation-delay: 0s;
}

.pk5-particle:nth-child(2) {
    bottom: 30%;
    left: 30%;
    animation-delay: 0.2s;
}

.pk5-particle:nth-child(3) {
    bottom: 25%;
    left: 50%;
    animation-delay: 0.4s;
}

.pk5-particle:nth-child(4) {
    bottom: 35%;
    left: 70%;
    animation-delay: 0.6s;
}

.pk5-particle:nth-child(5) {
    bottom: 40%;
    left: 90%;
    animation-delay: 0.8s;
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .pk5-container {
        max-width: 1140px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .pk5-container {
        max-width: 960px;
    }

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

    .pk5-big-icon {
        width: 220px;
        height: 220px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .pk5-service-area {
        padding: 80px 20px;
    }

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

    .pk5-grid {
        gap: 25px;
    }

    .pk5-grid-item.pk5-small {
        grid-column: span 6;
    }

    .pk5-grid-item.pk5-large {
        grid-column: span 12;
    }

    .pk5-service-card.pk5-large-card {
        min-height: 240px;
    }

    .pk5-big-icon {
        width: 180px;
        height: 180px;
    }

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

/* Mobile Large */
@media (max-width: 768px) {
    .pk5-service-area {
        padding: 60px 15px;
    }

    .pk5-section-title {
        margin-bottom: 40px;
    }

    .pk5-main-title {
        font-size: 32px;
    }

    .pk5-grid {
        gap: 20px;
    }

    .pk5-grid-item.pk5-small {
        grid-column: span 12;
    }

    .pk5-service-card {
        padding: 30px 25px;
    }

    .pk5-service-card.pk5-large-card {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 35px 25px;
    }

    .pk5-service-card.pk5-large-card .pk5-content {
        max-width: 100%;
        margin-bottom: 25px;
    }

    .pk5-big-icon {
        width: 200px;
        height: 200px;
    }

    .pk5-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

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

    .pk5-card-text {
        font-size: 14px;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    .pk5-service-area {
        padding: 50px 15px;
    }

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

    .pk5-grid {
        gap: 15px;
    }

    .pk5-service-card {
        padding: 25px 20px;
    }

    .pk5-service-card.pk5-large-card {
        padding: 30px 20px;
    }

    .pk5-big-icon {
        width: 160px;
        height: 160px;
    }

    .pk5-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

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

    .pk5-card-text {
        font-size: 13px;
    }

    .pk5-service-shape1 {
        width: 100px;
    }

    .pk5-service-shape2 {
        width: 130px;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .pk5-main-title {
        font-size: 24px;
    }

    .pk5-service-card {
        padding: 20px 15px;
    }

    .pk5-big-icon {
        width: 140px;
        height: 140px;
    }

    .pk5-card-title {
        font-size: 18px;
    }
}

/* ============================================INVOICE ===========================================  */
/* CSS Variables */
:root {
    --pk6-bg-primary: #1a1435;
    --pk6-bg-secondary: #231c3e;
    --pk6-bg-card: #2a2450;
    --pk6-text-primary: #ffffff;
    --pk6-text-secondary: #b8b3cc;
    --pk6-accent-cyan: #4dffd2;
    --pk6-accent-pink: #ff4d9f;
    --pk6-glow-pink: rgba(255, 77, 159, 0.6);
    --pk6-glow-cyan: rgba(77, 255, 210, 0.4);
    --pk6-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section */
.pk6-section {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1435 0%, #2d1f4a 100%);
    overflow: hidden;
    width: 100%;
}

.pk6-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

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

.pk6-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--pk6-accent-cyan);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.pk6-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pk6-text-primary);
    max-width: 900px;
    margin: 0 auto;
}

/* Cards Wrapper */
.pk6-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    width: 100%;
    transition: grid-template-columns 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop/Tablet: Active card takes more space */
@media (min-width: 769px) {
    .pk6-cards-wrapper:has(.pk6-card[data-card="1"].pk6-card-active) {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    }

    .pk6-cards-wrapper:has(.pk6-card[data-card="2"].pk6-card-active) {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
    }

    .pk6-cards-wrapper:has(.pk6-card[data-card="3"].pk6-card-active) {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
    }
}

/* Card */
.pk6-card {
    background: var(--pk6-bg-card);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.05);
    height: 380px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .pk6-card {
        height: 458px;
    }
}

/* .pk6-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 255, 210, 0.05) 0%, rgba(255, 77, 159, 0.05) 100%);
    opacity: 0;
    transition: var(--pk6-transition);
    pointer-events: none;
} */

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

.pk6-card:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 255, 210, 0.2);
}

/* Active card styling for desktop/tablet */
@media (min-width: 769px) {
    .pk6-card-active {
        border-color: rgba(77, 255, 210, 0.4);
        box-shadow: 0 12px 48px rgba(77, 255, 210, 0.15);
        transition: border-color 0.5s ease, box-shadow 0.5s ease;
    }

    .pk6-card-active::before {
        opacity: 1;
        transition: opacity 0.5s ease;
    }

    /* Smooth transition for inactive cards */
    .pk6-card:not(.pk6-card-active) .pk6-card-content,
    .pk6-card:not(.pk6-card-active) .pk6-card-description,
    .pk6-card:not(.pk6-card-active) .pk6-card-link {
        opacity: 0;
        transform: translateY(-20px);
        transition-delay: 0s;
    }
}

/* Card Header */
.pk6-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.pk6-card-icon {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pk6-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: pk6-pulse 3s ease-in-out infinite;
}

.pk6-glow-pink {
    background: var(--pk6-glow-pink);
}

@keyframes pk6-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Robot Icon */
.pk6-robot-icon {
    position: relative;
    z-index: 1;
}

.pk6-robot-body {
    width: 80px;
    height: 90px;
    background: linear-gradient(135deg, #2a2450 0%, #1a1435 100%);
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 77, 159, 0.3);
    box-shadow: 0 8px 32px rgba(255, 77, 159, 0.3);
}

.pk6-robot-face {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
}

.pk6-robot-eye {
    width: 8px;
    height: 8px;
    background: var(--pk6-accent-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--pk6-accent-pink);
    animation: pk6-blink 4s infinite;
}

@keyframes pk6-blink {

    0%,
    49%,
    51%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.pk6-robot-mouth {
    width: 20px;
    height: 2px;
    background: var(--pk6-accent-pink);
    border-radius: 2px;
    margin-top: 4px;
}

.pk6-robot-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--pk6-accent-pink);
    letter-spacing: 1px;
}

.pk6-robot-antenna {
    position: absolute;
    width: 2px;
    height: 20px;
    background: rgba(255, 77, 159, 0.5);
    top: -20px;
}

.pk6-robot-antenna::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--pk6-accent-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--pk6-accent-pink);
}

.pk6-robot-antenna-left {
    left: 15px;
}

.pk6-robot-antenna-right {
    right: 15px;
}

/* Coin Stack Icon */
.pk6-coin-stack {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pk6-coin {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3a3060 0%, #2a2450 100%);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pk6-coin::before {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.pk6-coin-1 {
    transform: translateX(-10px) translateY(-5px);
}

.pk6-coin-2 {
    transform: translateX(5px) translateY(0px);
    z-index: 2;
}

.pk6-coin-3 {
    transform: translateX(10px) translateY(5px) rotate(-15deg);
    opacity: 0.8;
}

/* Badge Icon */
.pk6-badge-icon {
    position: relative;
    z-index: 1;
}

.pk6-badge-shield {
    width: 80px;
    height: 90px;
    background: linear-gradient(135deg, #2a2450 0%, #1a1435 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(77, 255, 210, 0.3);
    box-shadow: 0 8px 32px rgba(77, 255, 210, 0.2);
}

.pk6-badge-check {
    color: var(--pk6-accent-cyan);
}

/* Card Title */
.pk6-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--pk6-text-primary);
    text-align: center;
}

/* Card Content */
.pk6-card-content {
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    overflow: hidden;
    width: 100%;
}

.pk6-card-active .pk6-card-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.pk6-card-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--pk6-text-secondary);
    margin-bottom: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pk6-card-active .pk6-card-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.pk6-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pk6-accent-cyan);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        gap 0.3s ease,
        color 0.3s ease;
}

.pk6-card-active .pk6-card-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.pk6-card-link:hover {
    gap: 12px;
    color: var(--pk6-text-primary);
}

.pk6-arrow-icon {
    transition: var(--pk6-transition);
}

.pk6-card-link:hover .pk6-arrow-icon {
    transform: translateX(4px);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .pk6-section {
        padding: 60px 20px;
    }

    .pk6-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .pk6-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .pk6-title {
        font-size: clamp(28px, 4vw, 44px);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .pk6-section {
        padding: 40px 16px;
    }

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

    .pk6-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .pk6-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .pk6-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pk6-card {
        padding: 32px 24px;
        cursor: default;
        height: auto;
    }

    .pk6-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }

    /* All cards expanded on mobile */
    .pk6-card .pk6-card-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 20px;
    }

    .pk6-card .pk6-card-description,
    .pk6-card .pk6-card-link {
        opacity: 1;
        transform: translateY(0);
    }

    .pk6-card:hover {
        transform: none;
    }

    .pk6-card-icon {
        width: 140px;
        height: 140px;
    }

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

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

    .pk6-glow {
        width: 100px;
        height: 100px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .pk6-card {
        padding: 28px 20px;
    }

    .pk6-card-icon {
        width: 120px;
        height: 120px;
    }

    .pk6-robot-body {
        width: 70px;
        height: 80px;
    }

    .pk6-coin {
        width: 50px;
        height: 50px;
    }

    .pk6-badge-shield {
        width: 70px;
        height: 80px;
    }
}

/* ============================================INVOICE ENDS ===========================================  */



/* =====================================ONBOARDING PAGE STARTS======================================  */
.pk7-stats-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f1c2e 0%, #1a2942 50%, #0f1c2e 100%);
    position: relative;
    overflow: hidden;
}

.pk7-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.pk7-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pk7-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.pk7-stat-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.pk7-stat-item:hover {
    transform: translateY(-5px);
}

.pk7-stat-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.pk7-stat-item:hover .pk7-stat-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.2);
}

.pk7-icon {
    width: 40px;
    height: 40px;
    color: #1e293b;
}

.pk7-stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pk7-stat-number {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
}

.pk7-counter {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pk7-plus {
    font-size: 48px;
    color: #ffffff;
    font-weight: 600;
}

.pk7-stat-label {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-top: 4px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .pk7-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

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

    .pk7-plus {
        font-size: 40px;
    }

    .pk7-stat-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .pk7-icon {
        width: 35px;
        height: 35px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .pk7-stats-section {
        padding: 60px 20px;
    }

    .pk7-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pk7-stat-item {
        justify-content: center;
        padding: 15px;
    }

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

    .pk7-plus {
        font-size: 36px;
    }

    .pk7-stat-label {
        font-size: 12px;
    }
}

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

    .pk7-stat-item {
        gap: 20px;
    }

    .pk7-stat-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .pk7-icon {
        width: 30px;
        height: 30px;
    }

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

    .pk7-plus {
        font-size: 32px;
    }

    .pk7-stat-label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

/* Animation for counter visibility */
.pk7-stat-item {
    opacity: 0;
    animation: pk7-fadeInUp 0.6s ease forwards;
}

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

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

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

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

@keyframes pk7-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* =====================================ONBOARDING PAGE ENDS======================================  */
.login-area {
    padding-top: 104px !important;
}

.account-content .form-control:focus {
    background-color: un !important;
}

body,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
.account-content .another-link p,
.account-content .form-check .form-check-label {
    font-family: "DM Sans", serif !important;
}

.rts-technology-banner-area {
    height: auto;
}

.rts-section-gap.v1 {
    padding-top: 150px;
}

.inner-content-technology-banner p.disc {
    margin-bottom: 10px;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

.capitalize {
    text-transform: capitalize !important;
}

.hero-content p {
    font-size: 24px !important;
    line-height: 1.5;
}

.section-warp .title {
    font-family: "DM Sans", serif !important;
}

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

.mb-0 {
    margin-bottom: 0 !important;
}

.about-content-four-left p.disc {
    padding-left: 0px;
}

.reward-widget .content p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

.features-content h3,
.features-content .h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
}

.features-content ul {
    padding-left: 16px;
}

.features-content ul li {
    color: #ffffff;
}

.features-content p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0px;
}

.features-area .features-heading p {
    font-size: 18px;
    margin-bottom: 10px;
}

.features-card {
    text-align: left;
}

.features-content .title {
    font-family: "DM Sans", serif !important;
    font-size: 18px;
}

/* ===================================
   PKDO About Section Styles
   =================================== */

/* Main About Area */
.pkd0-about-area {
    position: relative;
    padding-bottom: 100px;
    background: linear-gradient(180deg, #0a1f0d 0%, #0d2b12 100%);
    overflow: hidden;
}

.pkd0-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.pkd0-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.pkd0-col-left,
.pkd0-col-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

/* ===================================
   Image Section
   =================================== */

.pkd0-about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.pkd0-about-main {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pkd0-about-small {
    position: absolute;
    width: 45%;
    max-width: 250px;
    height: auto;
    bottom: 20px;
    right: 20px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   Content Section
   =================================== */

.pkd0-about-content {
    padding: 40px 20px;
}

.pkd0-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: #4ade80;
    margin-bottom: 15px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.pkd0-heading {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.pkd0-description {
    font-size: 16px;
    line-height: 1.7;
    color: #b4b4b4;
    margin-bottom: 30px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.pkd0-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.pkd0-features-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 18px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.pkd0-features-item:last-child {
    margin-bottom: 0;
}

.pkd0-check-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #4ade80;
    flex-shrink: 0;
}

.pkd0-check-icon::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(74, 222, 128, 0.15);
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
}

.pkd0-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #84ff00 0%, #5dc800 100%);
    color: #0a1f0d;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(132, 255, 0, 0.3);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.pkd0-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(132, 255, 0, 0.4);
    background: linear-gradient(135deg, #92ff1a 0%, #6dd400 100%);
}

/* ===================================
   Background Shapes/Decorations
   =================================== */

.pkd0-all-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.pkd0-about-color1,
.pkd0-about-color2 {
    position: absolute;
    opacity: 0.3;
    filter: blur(80px);
}

.pkd0-about-color1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
}

.pkd0-about-color2 {
    bottom: 10%;
    right: 5%;
    width: 350px;
    height: 350px;
}

.pkd0-about-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.pkd0-line1,
.pkd0-line2,
.pkd0-line3,
.pkd0-line4 {
    position: absolute;
    opacity: 0.1;
}

.pkd0-line1 {
    top: 20%;
    left: 10%;
    width: 150px;
}

.pkd0-line2 {
    top: 50%;
    right: 15%;
    width: 120px;
}

.pkd0-line3 {
    bottom: 25%;
    left: 20%;
    width: 100px;
}

.pkd0-line4 {
    bottom: 10%;
    right: 25%;
    width: 130px;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {

    .pkd0-col-left,
    .pkd0-col-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pkd0-about-image {
        margin-bottom: 40px;
        padding: 20px;
    }

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

    .pkd0-about-content {
        padding: 20px 10px;
    }

    .pkd0-about-color1,
    .pkd0-about-color2 {
        width: 250px;
        height: 250px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .pkd0-about-area {
        padding-bottom: 60px;
    }

    .pkd0-heading {
        font-size: 30px;
    }

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

    .pkd0-features-item {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .pkd0-cta-button {
        padding: 14px 35px;
        font-size: 15px;
    }

    .pkd0-about-main {
        max-width: 400px;
    }

    .pkd0-about-small {
        width: 40%;
        max-width: 200px;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .pkd0-about-area {
        padding-bottom: 50px;
    }

    .pkd0-container {
        padding: 0 20px;
    }

    .pkd0-heading {
        font-size: 26px;
        line-height: 1.3;
    }

    .pkd0-title {
        font-size: 12px;
    }

    .pkd0-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .pkd0-features-item {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .pkd0-check-icon {
        width: 20px;
        height: 20px;
        margin-right: 12px;
    }

    .pkd0-check-icon::before {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }

    .pkd0-cta-button {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .pkd0-about-image {
        padding: 10px;
    }

    .pkd0-about-main {
        max-width: 100%;
    }

    .pkd0-about-small {
        width: 45%;
        bottom: 10px;
        right: 10px;
    }

    .pkd0-about-color1,
    .pkd0-about-color2 {
        width: 200px;
        height: 200px;
    }

    .pkd0-line1,
    .pkd0-line2,
    .pkd0-line3,
    .pkd0-line4 {
        display: none;
    }
}

/* Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
    .pkd0-heading {
        font-size: 22px;
    }

    .pkd0-about-content {
        padding: 20px 0;
    }

    .pkd0-features-list {
        margin-bottom: 25px;
    }
}

/* ===================================
   Animation Classes (Optional)
   =================================== */

.pkd0-fade-in {
    animation: pkd0FadeIn 0.6s ease-in-out;
}

.pkd0-slide-up {
    animation: pkd0SlideUp 0.6s ease-in-out;
}

@keyframes pkd0FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pkd0SlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.rts-testimonials-area-main-wrapper .swiper-button-next {
    top: 0%;
}

.rts-testimonials-area-main-wrapper .swiper-button-prev {
    top: 0%;
}

@media (max-width: 468px) {
    .rts-testimonials-area-main-wrapper .swiper-button-next {
        top: 70%;
        right: 40%;
    }

    .rts-testimonials-area-main-wrapper .swiper-button-prev {
        top: 70%;
        left: 35%;
    }

    .mySwiper-testimonails-9 {
        padding-bottom: 150px;
    }
}

div#fintech,
#ecommerce,
#saas_platforms,
#digital_products,
#gaming,
#explore-api,
#create-invoice {
    scroll-margin-top: 160px;
}

ul.pkd17-value-points {
    list-style: none;
    padding-left: 0;
}

ul.pkd17-value-points li {
    color: #000000;
}


/* Active Navigation Styles */

/* Main navigation active state */
.main-nav.active>a {
    color: #ff0000 !important;
    font-weight: 600;
}

/* Active state for dropdown parent */
.main-nav.has-dropdown.active>a {
    color: #ff0000 !important;
    font-weight: 600;
}

/* Active submenu item */
.submenu li.active>a {
    color: #ff0000 !important;
    font-weight: 600;
}





/* Mobile menu active state */
.mobile-menu .mainmenu li a.active,
.mobile-menu .mainmenu li.active>a {
    color: #ff0000 !important;
    font-weight: 600;
}

/* Hover effect for active items */
.main-nav.active>a:hover {
    opacity: 0.9;
}

header .nav-area ul li.main-nav:hover::after {
    color: white !important;
}

header .nav-area ul li.main-nav.active::after {
    color: rgb(255, 0, 0) !important;
}

/* Footer Active Link Styles */

/* Active state for footer links */
.cm-footer-links li.active>a {
    color: #ff0000;
    font-weight: 600;
    position: relative;
}


/* Active state for policy links */
.cm-privacy-link.active {
    color: #ff0000;
    font-weight: 600;
}

/* Hover effect for active footer links */
.cm-footer-links li.active>a:hover {
    opacity: 0.8;
}

.cm-privacy-link.active:hover {
    opacity: 0.8;
}


.inner-content-technology-banner p.disc.fs-heading {
    font-size: clamp(1.5em, 4.5vw, 1.5em) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.inner-content-technology-banner p.disc.fs-content {
    font-size: clamp(1.5em, 1.5vw, 1em) !important;
    line-height: 1.2 !important;
    padding-bottom: 20px;
}

.pk2-col-left p {
    margin-bottom: 10px;
}

.banner-accountent-content .pre-title {
    font-size: clamp(1.5em, 4.5vw, 1.5em) !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.single-blog-card-6:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
    background-color: #f1f1f1;
}

.pk4-single-counter-area-eight p {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}

.boosting-business-right-area p {
    color: #000000;
}

.boost-your-business-today {
    background: #F2F2F2;
}

.hero-content .title,
.section-title .title,
.success-box .time span,
.success-box ul li,
.service-card p,
.question-widget .accordion-item .accordion-button,
.question-widget .accordion-item .accordion-body {
    font-family: "DM Sans", serif !important;
}

.success-box ul li {
    list-style: disc !important;
    list-style-position: inside !important;
}

@media (min-width: 991px) {
    .success-box {
        min-height: 308px;
    }
}

.service-card:hover p,
.question-widget .accordion-item .accordion-body {
    color: #000000 !important;
}

.error {
    color: #ff0000;
    padding: 10px !important;
    margin: 0 !important;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px !important;
}

.contact-form-p input::placeholder,
.contact-form-p textarea::placeholder {
    color: #000000 !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}

@media (max-width: 768px) {
    .title-area-between-wrapper {
        flex-direction: column !important;
        gap: 68px;
    }
}

.rts-btn.btn-primary.active {
    background: #00539b;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    line-height: 1.2;
    font-weight: 700 !important;
}

.margin-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.service-card-style2 .content p {
    font-family: "DM Sans", serif !important;
}

.account-image {
    max-height: 630px !important;
}

.plane-process.text-center img {
    max-width: 189px;
}

.title-style-one .title {
    display: flex;
    font-weight: 500;
    align-items: center;
}

a.custom-logo1 img {
    max-width: 240px;
}

.hero-content h1,
.hero-content .h1 {
    font-size: 64px;
}

@media only screen and (max-width: 767px) {

    .hero-content h1,
    .hero-content .h1 {
        font-size: 25px;
    }
}

.main-hero-area .hero-area {
    padding-top: 220px;
    padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .main-hero-area .hero-area {
        padding-top: 145px;
        padding-bottom: 30px;
    }
}

.title-style-one .title {
    justify-content: center;
}

.success-box ul li {
    font-size: 18px;
}

.gallery-bg {
    margin-top: 0;
}
.vertical-centre {
    display: flex;
    align-items: center;
}
.privacy-policy-wrapper .disc strong {
    color: #000000;
    font-weight: 700 !important;
    font-size: 22px;
}