body {
    font-family: 'Figtree', sans-serif;
    
}

/* header links wisget */
.header-links{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}

.header-links a span{
    color: #FFFFFF;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    text-decoration: none;
}

/* header links wisget end*/

/* Blog Posts Widget */
/* .blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
} */

.blog-post-item {
    overflow: hidden;
    border: 2px solid #D8D9DB;
    transition: transform 0.3s ease;
}

.blog-post-item:hover {
    /* transform: translateY(-5px); */
}

.blog-post-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}
.blog-post-thumbnail a {
    display: block;
}
.blog-post-thumbnail img {
    display: inline-block;
    width: 100%;
    height: auto;
    vertical-align: top;
}

.blog-post-content {}

.blog-post-title {
    margin: 0 0 15px;
    font-size: 20px;
    line-height: 1.4;
}

.blog-post-title a {
    color: #333;
    text-decoration: none !important;
}

.blog-post-title a:hover {
    text-decoration: none !important;
}

.blog-post-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.blog-posts-grid .blog-post-item .blog-post-content .blog-post-meta {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}
.blog-posts-grid .blog-post-item .blog-post-content .blog-post-meta a {
    color: #000000;
    text-decoration: none;
}
.blog-posts-grid .blog-post-item .blog-post-content .blog-post-meta .blog-post-categories a {
    display: inline-block;
    border: 0.5px solid #D8D9DB;
    background-color: #ebebf4;
    padding: 4px 8px;
    border-radius: 50rem;
    margin: 5px;
}
.blog-posts-grid .blog-post-item .blog-post-content .blog-post-meta .blog-post-categories a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #873EFF;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}
.blog-posts-grid .blog-post-item .blog-post-content .blog-post-read-more {
    display: flex;   
    align-items: center;
    justify-content: space-between; 
    transition: color 0.3s ease;
}
.blog-posts-grid .blog-post-item .blog-post-content .blog-post-read-more .read-more-icon {
    background-color: #D8D9DB;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.pl-swiper-slider-widget.pl-post-slider-widget .swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.pl-swiper-slider-widget.pl-post-slider-widget .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto !important; /* Reset inline Swiper height */
}
.pl-swiper-slider-widget.pl-post-slider-widget .pl-post-slider-item {
    height: 100%;
}

/* Responsive adjustments */
/* @media (max-width: 767px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
} */

.blog-post-item a {
    text-decoration: none !important;
}

/* Image Slider Widget */
.progcw-slider-container {
    position: relative;
    width: 100%;
    background: #EBEBF4;
    overflow: hidden;
}

.progcw-slider-container .swiper-container {
    width: 100%;
    height: 100%;
}

.progcw-slider-container .swiper-slide {
    position: relative;
}

.progcw-slider-container .swiper-slide img {
    width: 100%;
    height: 100%;
}

/* Updated pagination styles */
.progcw-slider-container .swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    padding: 38px 0;
}

.progcw-slider-container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: transparent;
    opacity: 1;
    transition: all 0.3s ease;
}

.progcw-slider-container .swiper-pagination-bullet-active {
    background: #2C045D;
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .progcw-slider-container {
        border-radius: 0;
    }
}

.progcw-slider-container .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: left;
}

.progcw-slider-container .slide-title {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.progcw-slider-container .slide-description {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
}

.progcw-slider-container .swiper-slide a {
    text-decoration: none;
    color: inherit;
}

/* Price Plans Widget */
.price-plans-container {
    padding: 20px;
}

.price-plans-container a {
    text-decoration: none !important;
}
.price-tabs-wrapper {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.price-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px;
    border-radius: 100px;
    gap: 4px;
}

.price-tab {
    padding: 8px 24px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 100px;
}

.price-tab:hover {
    color: #fff;
}

.price-tab.active {
    background: #fff;
    color: #5648FF;
}

.price-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-plan-item {
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.price-plan-white {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.price-plan-transparent {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-plan-transparent .plan-button{
    background: #fff;
    color: #000000 !important;
}

.plan-icon {
    display: none;
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.plan-icon.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.plan-icon img {
    max-width: 200px;
    max-height: 200px;
}

.plan-name {
    display: none;
    color: #5648FF;
    font-size: 18px;
    margin: 0 0 24px;
    font-weight: 500;
}

.plan-name.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.price-plan-transparent .plan-name {
    color: #fff;
}

.plan-price {
    display: none;
    margin-bottom: 32px;
    transition: opacity 0.3s ease;
}

.plan-price.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-price .price {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    line-height: 1;
}

.plan-price .billed {
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-plan-transparent .plan-price .price {
    color: #fff;
}

.price-plan-transparent .plan-price .billed {
    color: rgba(255, 255, 255, 0.7);
}

.plan-features {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.plan-features.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
}

.price-plan-transparent .plan-features li {
    color: #fff;
}

.plan-features .check-icon {
    margin-right: 12px;
    fill: #5648FF;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.price-plan-transparent .plan-features .check-icon {
    fill: #fff;
}

.plan-button {
    display: none;
    background: #2C045D;
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    width: 100%;
    max-width: 280px;
}

.plan-button.active {
    display: inline-block;
    animation: fadeIn 0.3s ease;
}

.plan-button:hover {
    transform: translateY(-2px);
}

.plan-note {
    display: none;
    color: #666;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.plan-note.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.price-plan-transparent .plan-note {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .price-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .price-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .price-plan-item {
        padding: 30px 20px;
    }
}

/* Features Table Widget */
.features-table-container {
    padding: 24px 0;
}

.features-table-container table.features-table, td, th {
    border: unset !important;
}

.features-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 20px;
    background: transparent;
}

.features-table th,
.features-table td {
    padding: 16px;
    text-align: center;
    background: #fff;
}

/* Make title row transparent */
.features-table tr:first-child th {
    background: transparent;
    padding-top: 0;
    padding-bottom: 24px;
}

.features-table th:first-child,
.features-table td:first-child {
    text-align: left;
}

.features-table thead th {
    font-weight: 600;
    color: #111827;
    font-size: 15px;
}

.features-table .table-title {
    font-size: 18px;
    color: #111827;
    font-weight: 600;
    background: transparent;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-size: 15px;
    font-weight: 500;
}

.tooltip-icon {
    cursor: help;
    fill: #9CA3AF;
    width: 16px;
    height: 16px;
}

.tooltip-icon svg {
    max-width: 12px;
    margin-bottom: 15px;
}

.tooltip-icon:hover {
    fill: #6B7280;
}

.feature-value {
    vertical-align: middle;
}

.check-icon {
    fill: #10B981;
    width: 20px;
    height: 20px;
}

.cross-icon {
    fill: #EF4444;
    width: 20px;
    height: 20px;
}

/* Tooltip styles */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: #374151;
    color: white;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
    margin-bottom: 8px;
}

[data-tooltip]:hover:before {
    visibility: visible;
    opacity: 1;
}



/* Mobile styles */
@media (max-width: 767px) {
    .features-table-container {
        padding: 16px;
    }

    .features-table {
        border-spacing: 0 16px;
    }

    /* Stack the table on mobile */
    .features-table, 
    .features-table thead, 
    .features-table tbody, 
    .features-table tr, 
    .features-table th, 
    .features-table td {
        display: block;
        width: 100%;
    }

    /* Hide table header row except title */
    .features-table thead tr:not(:first-child) {
        display: none;
    }

    /* Style each row as a card */
    .features-table tbody tr {
        margin-bottom: 16px;
        background: #fff;
        padding: 16px;
    }

    /* Style the feature name */
    .features-table td:first-child {
        font-weight: 500;
        padding: 8px 0;
        margin-bottom: 8px;
    }

    /* Add labels for each value */
    .features-table td:not(:first-child) {
        display: flex;
        align-items: center;
        padding: 8px 0;
    }

    .features-table td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 500;
        margin-right: auto;
    }

    /* Adjust title spacing */
    .features-table tr:first-child th {
        text-align: left;
        padding: 0 0 16px;
    }
}

/* FAQ Widget */
.faq-container {
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 0 16px;
    margin-bottom: 24px;
    background: #fff;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: #111827;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #5648FF;
}

.faq-icon {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    stroke: #111827;
    stroke-width: 2;
}

.faq-question:hover .faq-icon {
    stroke: #5648FF;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0 24px;
    color: #6B7280;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .faq-container {
        border-radius: 0;
    }

    .faq-item {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px 0;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 0 20px;
        font-size: 14px;
    }
}

/* Add these styles for number and text values */
.feature-value .number-value,
.feature-value .text-value {
    font-size: 15px;
    color: #374151;
    font-weight: 500;
}

/* Update mobile styles */
@media (max-width: 767px) {
    .feature-value .number-value,
    .feature-value .text-value {
        font-size: 14px;
    }
}

/* Goals Widget */
.goals-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    padding: 0 64px;
}

.goal-item:first-child {
    padding-left: 0;
}

.goal-item:last-child {
    padding-right: 0;
}

.goal-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: #E5E7EB;
}

.goal-icon {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-icon img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.goal-content {
    flex: 1;
}

.goal-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px;
}

.goal-subtitle {
    font-size: 14px;
    color: #6B7280;
}

/* Tablet View */
@media (max-width: 1024px) {
    .goals-container {
        padding: 24px;
    }

    .goal-item {
        padding: 0 40px;
        gap: 24px;
    }

    .goal-icon {
        width: 64px;
        height: 64px;
    }

    .goal-icon img {
        width: 64px;
        height: 64px;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .goals-container {
        flex-direction: column;
        gap: 32px;
        padding: 20px;
    }

    .goal-item {
        width: 100%;
        padding: 0;
        justify-content: center;
        text-align: center;
    }

    .goal-item:not(:last-child)::after {
        display: none;
    }

    .goal-item:not(:last-child) {
        padding-bottom: 32px;
        border-bottom: 1px solid #E5E7EB;
    }

    .goal-icon {
        width: 48px;
        height: 48px;
    }

    .goal-icon img {
        width: 48px;
        height: 48px;
    }
}

/* Small Mobile View */
@media (max-width: 375px) {
    .goal-item {
        flex-direction: column;
        gap: 16px;
    }

    .goal-content {
        text-align: center;
    }
}

/* Package Widget */
.packages-container {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.package-item {
    position: relative;
    flex: 1;
    max-width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.package-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px;
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    text-align: center;
    color: #000000;
}

.package-icon {
    margin-top: 24px;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.package-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #000000;
    margin: 0 0 24px;
    padding-top: 34px;
}


.package-price .price {
    font-size: 36px;
    font-weight: 600;
    color: #2C045D;
}

.package-price .period {
    font-size: 16px;
    color: #6B7280;
}

.package-button {
    margin-top: 32px;
    display: inline-block;
    background: #2C045D;
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.package-button:hover {
    transform: translateY(-2px);
}

/* Add these styles for the earn text */
.package-earn {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #8A93A1;
    padding-bottom: 16px;
}

@media (max-width: 767px) {
    .packages-container {
        flex-direction: column;
        align-items: center;
    }

    .package-item {
        width: 100%;
    }
}

/* Affiliate Rules Widget */
.rules-packages {
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.rules-package {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.rules-header {
    padding: 16px;
    text-align: center;
}

.rules-package:first-child .rules-header {
    background: #CCFF00;
}

.rules-package:last-child .rules-header {
    background: #E94E4E;
}

.package-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-icon {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}
.rule-icon {
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
}

.rules-container {
    padding: 24px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

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

.rule-description {
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
}

.rule-item::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.rules-package:first-child .rule-item::before {
    background-image: url('../images/check-circle.svg');
    color: #22C55E;
}

.rules-package:last-child .rule-item::before {
    background-image: url('../images/ban-circle.svg');
    color: #EF4444;
}

@media (max-width: 767px) {
    .rules-packages {
        flex-direction: column;
    }

    .rules-container {
        padding: 20px;
    }

    .rule-item {
        margin-bottom: 12px;
    }
}
/* Style for PL Image Gallery Widget */
.pl-gallery-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    align-items: center;
}
.pl-gallery-widget .pl-gallery-item {}
.pl-gallery-widget .pl-gallery-item a {}
.pl-gallery-widget .pl-gallery-item img {
    vertical-align: top;
    display: inline-block;
    width: auto;
}
.elementor-element.footer-menu-title {}
.elementor-element.footer-menu-title .elementor-heading-title{}
.elementor-element.footer-menu-title .elementor-heading-title::after{
    content: '';
    display: block;
    width: 35px;
    height: 4px;
    background-color: #2C045D;
    margin-top: 12px;
}
/* Style for PL Image Gallery Widget */
/* Style for PL Plugin Card */
.pl-plugin-widget {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pl-plugin-widget.pl-plugin-widget-with-shadow {
    box-shadow: 2px 4px 8px 0px #0000000F, -1px -1px 8px 0px #0000000F;
}
.pl-plugin-widget.pl-plugin-widget-with-shadow:hover {
    box-shadow: 0px 9px 16px 0px rgba(1.9999999999999996, 7.9999999999999805, 53, 0.12);
}
.pl-plugin-widget .pl-plugin-widget__image {
    overflow: hidden;
    position: relative;
}
.pl-plugin-widget .pl-plugin-widget__image img {
    transition: all 0.5s ease;
    display: inline-block;
    vertical-align: top;
}
.pl-plugin-widget:hover .pl-plugin-widget__image img {
    transform: scale(1.3) rotate(5deg);
}
.pl-plugin-widget .pl-plugin-widget__content {}

.pl-plugin-widget .pl-plugin-widget__logo {
    position: relative;
}
.pl-plugin-widget .pl-plugin-widget__logo img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: top;
    object-fit: cover;
}
.pl-plugin-widget .pl-plugin-widget__content .pl-plugin-widget__title {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.pl-plugin-widget .pl-plugin-widget__content .pl-plugin-widget__intro {
    margin-bottom: 0;
}
.pl-plugin-widget .pl-plugin-widget__content .pl-plugin-widget__link {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;
    opacity: 0;
}
.pl-plugin-widget .additional-buttons-wrapper {
    position: relative;
    z-index: 2;
    margin-top: auto;
}
.pl-plugin-widget .additional-buttons-wrapper a.additional-button {
    display: block;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    background-color: var(--bg-color);
    padding: 12px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1%;

}
.pl-plugin-widget .additional-buttons-wrapper a.additional-button +  a.additional-button {
    margin-top: 8px;
}
/* Style for PL Plugin Card */
/* Style for PL Plugin Card */
.pl-swiper-slider-widget {} 
.pl-swiper-slider-widget.slider-with-navigation .swiper {
    padding-bottom: 60px;
} 
.pl-testimonial-widget .swiper .swiper-wrapper {} 
.pl-testimonial-widget .swiper .swiper-wrapper .swiper-slide {} 
.pl-testimonial-widget .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item {} 
.pl-testimonial-widget .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item .pl-testimonial-content {} 
.pl-testimonial-widget .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item .pl-testimonial-content .pl-testimonial-stars {} 
.pl-testimonial-widget .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item .pl-testimonial-content .pl-testimonial-intro {} 
.pl-testimonial-widget .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item .pl-testimonial-content .pl-testimonial-user-meta {
    display: flex;
    align-items: center;
    gap: 12px;
} 
.pl-testimonial-widget .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item .pl-testimonial-content .pl-testimonial-user-meta .pl-testimonial-user-image {}
.pl-testimonial-widget .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item .pl-testimonial-content .pl-testimonial-user-meta .pl-testimonial-user-image img {
    display: inline-block;
    vertical-align: top;
    height: auto;
}
.pl-testimonial-widget .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item .pl-testimonial-content .pl-testimonial-user-meta .pl-testimonial-user-details {}
.pl-testimonial-widget .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item .pl-testimonial-content .pl-testimonial-user-meta .pl-testimonial-user-details .pl-testimonial-user-name {
    margin: 0;
}
.pl-testimonial-widget .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item .pl-testimonial-content .pl-testimonial-user-meta .pl-testimonial-user-details .pl-testimonial-user-position {
    display: inline-block;
    margin-top: 10px;
}

.pl-testimonial-widget.pl-testimonial-widget-text-right .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item .pl-testimonial-content .pl-testimonial-user-meta {
    flex-direction: row-reverse;
}
.pl-testimonial-widget.pl-testimonial-widget-text-center .swiper .swiper-wrapper .swiper-slide .pl-testimonial-item .pl-testimonial-content .pl-testimonial-user-meta {
    display: block;
}
.pl-swiper-slider-widget .swiper-horizontal>.swiper-pagination-bullets, 
.pl-swiper-slider-widget .swiper-pagination-bullets.swiper-pagination-horizontal,
.pl-swiper-slider-widget .swiper-pagination {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
}
.pl-swiper-slider-widget .swiper-button-next, 
.pl-swiper-slider-widget .swiper-button-prev {
    width: 30px;
    height: 30px;
    top: auto;
    bottom: 10px;   
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.pl-swiper-slider-widget .swiper-button-next {
    /* transform: translateX(calc(50% - 10px)); */
    left: auto;
    right: 50%;
    margin-right: -45px;
}
.pl-swiper-slider-widget .swiper-button-prev {
    /* transform: translateX(calc(-50% + 10px)); */
    left: 50%;
    right: auto;
    margin-left: -45px;
}
.pl-swiper-slider-widget .swiper-button-next:after, 
.pl-swiper-slider-widget .swiper-button-prev:after {
    font-family: 'dashicons';
    font-size: 18px;
    color: #000000;
}
.pl-swiper-slider-widget .swiper-button-next:after {
    content: "\f345";
    /* content: url('../images/arrow-right.svg'); */
}
.pl-swiper-slider-widget .swiper-button-prev:after {
    content: "\f341";
    /* content: url('../images/arrow-left.svg'); */
}
.pl-swiper-slider-widget .swiper-pagination-bullet {
    border: 1px solid #2C045D;
    background-color: #ffffff;
    width: 8px;
    height: 8px;
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.pl-swiper-slider-widget .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
    background-color: #D1C1FF;
}
/* Style for PL Plugin Card */
.pl-image-slider-widget .swiper .swiper-wrapper .swiper-slide .pl-image-slider-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

