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 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    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 img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 20px;
}

.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-post-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.blog-post-meta a {
    color: #666;
    text-decoration: none !important;
    font-weight: 600;
}

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

.blog-post-meta span:not(:last-child)::after {
    content: "";
    margin: 0 5px;
}

.blog-post-read-more {
    display: inline-block;
    color: #2563EB;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.blog-post-read-more:hover {
    color: #1E40AF;
    text-decoration: none !important;
}

/* 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;
    }
}