/*
============================================
 CV Testimonial Carousel Widget Style Start
============================================
*/
.cv-testimonial-carousel-wrapper {
    position: relative;
    padding: 0 45px;
    margin: 0 auto;
    max-width: 100%;
}

.cv-testimonial-carousel {
    overflow: hidden;
    padding: 20px 0;
    visibility: hidden;
}
.cv-testimonial-carousel.swiper-initialized {
    visibility: visible;
}

.swiper-slide {
    height: auto;
    display: flex !important;
    flex-direction: column;
    justify-content: stretch;
}

.cv-testimonial-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.cv-testimonial-author-img {
    flex-shrink: 0;
    margin-right: 15px;
}
.cv-testimonial-author-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.cv-testimonial-content-box {
    background-color: #f0f2f5;
    border-radius: 18px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    flex: 1;
    min-width: 0;
}

.cv-testimonial-header strong {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #253C78;
}

.cv-testimonial-text {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.3;
    color: #777;
    padding-top: 4px;
    word-break: break-word;
    padding-bottom: 25px;
}
.cv-testimonial-company {
    position: absolute;
    bottom: 32px;
    right: 32px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-style: italic;
    color: #777;
    font-weight: 600;
}

/* arrows */
.cv-testimonial-carousel-wrapper .swiper-button-prev,
.cv-testimonial-carousel-wrapper .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    color: #333333;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}
.cv-testimonial-carousel-wrapper .swiper-button-prev { left: 0; }
.cv-testimonial-carousel-wrapper .swiper-button-next { right: 0; }
.cv-testimonial-carousel-wrapper .swiper-button-prev:after,
.cv-testimonial-carousel-wrapper .swiper-button-next:after {
    font-size: 16px;
    font-weight: bold;
}

/* pagination */
.cv-testimonial-carousel-wrapper .swiper-pagination {
    position: static;
    padding-top: 25px;
}
.cv-testimonial-carousel-wrapper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #cccccc;
    opacity: 1;
}
.cv-testimonial-carousel-wrapper .swiper-pagination-bullet-active {
    background-color: #7bc385;
}

.cv-testimonial-carousel .swiper-slide {
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-testimonial-item {
    padding: 20px;
    transform-origin: center center;
    transition: transform 0.3s ease;
}
.cv-testimonial-item:hover {
    transform: scale(1.05) !important;
    z-index: 5;
}

/* Mobile/Responsive Adjustments */
@media (max-width: 1024px) {
    .cv-testimonial-carousel-wrapper {
        padding: 0 30px;
    }
    .cv-testimonial-carousel-wrapper .swiper-button-prev,
    .cv-testimonial-carousel-wrapper .swiper-button-next {
        width: 35px;
        height: 35px;
    }
    .cv-testimonial-author-img img {
        width: 35px;
        height: 35px;
    }
    .cv-testimonial-content-box {
        padding: 10px 12px;
    }
    .cv-testimonial-header strong {
        font-size: 13px;
    }
    .cv-testimonial-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .cv-testimonial-carousel-wrapper {
        padding: 0 15px;
    }
    .cv-testimonial-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cv-testimonial-author-img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .cv-testimonial-author-img img {
        width: 50px;
        height: 50px;
    }
    .cv-testimonial-content-box {
        padding: 15px;
    }
    .cv-testimonial-header strong {
        font-size: 14px;
    }
    .cv-testimonial-text {
        font-size: 14px;
        line-height: 1.4;
    }

    /* Smaller arrows for mobile */
    .cv-testimonial-carousel-wrapper .swiper-button-prev,
    .cv-testimonial-carousel-wrapper .swiper-button-next {
        width: 28px;
        height: 28px;
    }
    .cv-testimonial-carousel-wrapper .swiper-button-prev:after,
    .cv-testimonial-carousel-wrapper .swiper-button-next:after {
        font-size: 14px;
    }

    /* Pagination spacing */
    .cv-testimonial-carousel-wrapper .swiper-pagination {
        padding-top: 15px;
    }
}

@media (max-width: 480px) {
    .cv-testimonial-content-box {
        font-size: 13px;
        padding: 12px;
    }
    .cv-testimonial-header strong {
        font-size: 13px;
    }
    .cv-testimonial-text {
        font-size: 13px;
    }
}

/*
=========================================
 CV Testimonial Carousel Widget Style End
=========================================
*/

/*
========================================
 CV Services Carousel Widget Style Start
========================================
*/

.cv-services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.cv-service-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    padding: 30px 10px;
}

.cv-service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background-color: #7bc385;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cv-service-item h3 {
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #002d62;
    margin: 0 0 10px 0;
}
.cv-service-description {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #333333;
    line-height: 1.5;
    margin: 0 0 10px 0;
}
.cv-service-feature-list li {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #333333;
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cv-service-icon i,
.cv-service-icon svg {
    font-size: 40px;
    color: #ffffff;
}
.cv-service-icon svg {
    width: 52px;
    height: 52px;
    fill: #ffffff;
}
.cv-service-icon svg path {
    width: 52px;
    height: 52px;
    fill: #ffffff;
}

a.cv-service-item .cv-service-title {
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #002d62;
    margin: 0 0 10px 0;
    padding: 0;
}

a.cv-service-item .cv-service-description {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #777;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.cv-service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    display: inline-block;
}

a.cv-service-item .cv-service-feature-list li {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #777;
    position: relative;
    padding-left: 0;
    text-align:left;
  	display:flex;
    justify-content: flex-start;
}

.cv-service-feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #7bc385;
    border-radius: 50%;
    flex-shrink: 0;
}

.cv-services-carousel-wrapper {
    position: relative;
    padding: 0 45px;
    margin: 0 auto;
    max-width: 100%;
}

.cv-services-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.cv-services-carousel .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
  
}

.cv-services-carousel .swiper-slide {
  margin: 10px 10px 10px 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cv-services-carousel .cv-service-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 16px;
}
.cv-services-carousel .cv-service-feature-list {
    margin-top: auto;
}

.cv-services-carousel-wrapper .swiper-button-prev,
.cv-services-carousel-wrapper .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    color: #333333;
    top: 40%;
    transform: translateY(-50%);
}
.cv-services-carousel-wrapper .swiper-button-prev { left: 0; }
.cv-services-carousel-wrapper .swiper-button-next { right: 0; }

.cv-services-carousel-wrapper .swiper-button-prev:after,
.cv-services-carousel-wrapper .swiper-button-next:after {
    font-size: 16px;
    font-weight: bold;
}

.cv-services-carousel-wrapper .swiper-pagination {
    position: static;
    padding-top: 25px;
}
.cv-services-carousel-wrapper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #cccccc;
    opacity: 1;
}
.cv-services-carousel-wrapper .swiper-pagination-bullet-active {
    background-color: #7bc385;
}

a.cv-service-item {
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
a.cv-service-item:hover {
    background-color: #D6EAF8;
}
.cv-services-carousel .swiper-slide:hover {
    background: #D6EAF8;
}

/*
======================================
 CV Services Carousel Widget Style End
======================================
*/

/*
======================================
 CV Clients Logo Widget Style Start
======================================
*/

.cv-clients-logo-carousel-wrapper {
    position: relative;
}

.cv-clients-logo-carousel .swiper-wrapper {
    align-items: center;
}

.cv-clients-logo-carousel .swiper-slide {
    height: auto;
    width: auto;
}

.cv-clients-logo-carousel span.swiper-pagination-bullet {
    background: #121956;
    width: 12px;
    height: 12px;
}

.cv-client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

a.cv-client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cv-client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cv-clients-logo-carousel-wrapper .swiper-button-prev,
.cv-clients-logo-carousel-wrapper .swiper-button-next {
    color: #999;
    top: 50%;
    transform: translateY(-50%);
}
.cv-clients-logo-carousel-wrapper .swiper-button-prev { left: 0; }
.cv-clients-logo-carousel-wrapper .swiper-button-next { right: 0; }

.cv-clients-logo-carousel-wrapper .swiper-pagination {
    position: static;
    padding-top: 25px;
}
.cv-clients-logo-carousel-wrapper .swiper-pagination-bullet-active {
    background-color: #777;
}

/*
======================================
 CV Clients Logo Widget Style End
======================================
 */

/*
====================================
 CV Product Tour Widget Style Start
====================================
*/
.cv-product-tour-wrapper {
    padding: 0;
}

.cv-tour-frame {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    background-color: #f1f5f9;
}

.cv-tour-frame-header {
    height: 40px;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.cv-tour-frame-dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin-right: 8px;
}
.cv-tour-frame-dot:nth-child(1) { background-color: #ef4444; }
.cv-tour-frame-dot:nth-child(2) { background-color: #f59e0b; }
.cv-tour-frame-dot:nth-child(3) { background-color: #22c55e; }

.cv-tour-background img {
    width: 100%;
    height: auto;
    display: block;
}
.cv-tour-modal.is-centered.cv-model-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    max-width: 90%;
    background: #000000ba;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 50px 25px;
    border: 1px solid #e2e8f0;
    font-family: Arial, sans-serif;
}
.cv-tour-modal.is-centered.cv-model-bg h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 15px;
}
.cv-tour-modal {
    position: absolute;
    top: 60px;
    left: 40px;
    width: 400px;
    max-width: 90%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border: 1px solid #e2e8f0;
    font-family: Arial, sans-serif;
}

.cv-tour-modal-header h2 {
    font-size: 22px;
    font-weight: bold;
    color: #1e293b;
    margin: 0 0 5px;
}
.cv-tour-modal-header p {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 20px;
}

.cv-tour-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cv-tour-step-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}
.cv-tour-step-item:last-child {
    border-bottom: none;
}

.cv-tour-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.cv-tour-step-text {
    flex-grow: 1;
}
.cv-tour-step-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}
.cv-tour-step-subtitle {
    font-size: 14px;
    color: #64748b;
}

.cv-tour-step-progress {
    font-size: 13px;
    color: #94a3b8;
    margin-left: 15px;
    flex-shrink: 0;
}

.cv-tour-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.cv-tour-button {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: opacity 0.3s ease;
}
.cv-tour-button:hover {
    text-decoration: none;
    opacity: 0.85;
    color:#002e5b;
}

.cv-tour-button-primary {
    padding: 8px 30px;
    text-transform: capitalize;
    border: 2px solid #fff;
    background: linear-gradient(to right, #54b291, #008797);
    color: #ffffff;
}

.cv-tour-button-secondary {
    background: #fff;
    color: #1a3f74;
    font-weight: 600;
}
.cv-tour-credit {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-top: 20px;
}
/* Style the new back button */
.cv-tour-back-button {
    font-family: Arial, sans-serif;
    font-size: 13px;
    padding: 3px 11px;
    background: #6bce90;
    color: #1a3f74;
    text-decoration: none;
    transition: color 0.3s ease;
}
.cv-tour-back-button:hover {
    padding: 3px 11px;
    background: #333;
    color: #ffffff;
}

/* Use Flexbox on the tooltip to position the back button */
.cv-tour-tooltip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Create a footer for the modal to hold the buttons */
.cv-tour-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.cv-tour-step-item.is-current .cv-tour-step-title {
    color: #09467e; /* Highlight the current chapter title */
}
.cv-tour-step-item.is-completed .cv-tour-step-number {
    background-color: #0a477e;
    color: #ffffff;
}
.cv-tour-modal-footer {
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
}
.cv-tour-modal h2 {
    color: #002d62;
    margin: 10px;
    padding: 0;
    font-size: 24px;
    line-height: 32px;
}
.cv-tour-modal p {
    padding: 0 10px 10px 10px;
    font-size: 15px;
    color: #64748b;
    margin: 0;
}
.cv-tour-screen-description {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: rgba(27, 38, 59, 0.8);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    max-width: 80%;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
/*
==================================
 CV Product Tour Widget Style End
==================================
*/
.cv-tour-interactive-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow clicks to pass through by default */
}
.cv-tour-interactive-layer > * {
    pointer-events: auto; /* Re-enable pointer events for children */
}

/* Make intro list items clickable */
.cv-tour-step-item {
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.cv-tour-step-item:hover {
    background-color: #f8fafc;
}

/* Highlight Box */
.cv-tour-highlight {
    position: absolute;
    border: 48px solid #6d28d924;
    background-color: rgba(109, 40, 217, 0.1);
    border-radius: 50%;
    z-index: 10;
}
.is-dimmed .cv-tour-highlight {
    box-shadow: 0 0 0 9999px rgba(0,0,0,0.5);
}
/*
.cv-tour-start-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
*/
.cv-tour-start-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(27, 38, 59, 0.5); /* Semi-transparent dark overlay */

    /* Smoothly fade out when the tour starts */
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* When the tour is active, fade out the overlay */
.cv-product-tour-wrapper:not(.is-inactive) .cv-tour-start-overlay {
    opacity: 0;
    pointer-events: none;
}
/* --- Tooltip Navigation --- */
.cv-tour-tooltip-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cv-tour-tooltip-nav .cv-tour-back-button {
    margin-right: auto; /* Pushes back button to the left */
}
.cv-tour-next-button {
    font-family: Arial, sans-serif;
    font-size: 13px;
    padding: 3px 11px;
    text-transform: capitalize;
    background-color: #1a3f74;
    color: #ffffff;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}
.cv-tour-next-button:hover,.cv-tour-finish-step-button:hover {
    text-decoration: none;
    background: #333;
    color: #ffffff;
}

.cv-tour-finish-step-button {
    font-family: Arial, sans-serif;
    font-size: 13px;
    padding: 3px 11px;
    text-transform: capitalize;
    background-color: #ffa2a2;
    color: #1a3f74;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cv-tour-button {
    animation: cv-pulse 1.5s infinite ease-in-out;
}

@keyframes cv-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


/* Tooltip Box */
.cv-tour-tooltip {
    border: 1px solid #607D8B;
    position: absolute;
    background-color: #ffffffd1;
    color: #08467d;
    padding: 10px 15px;
    border-radius: 6px;
    z-index: 20;
    transform: translate(-50%, calc(-100% - 15px)); /* Position above the highlight */
    font-family: Arial, sans-serif;
    font-size: 15px;
}
.undimmed {
    color: #fff;
    background-color: #000000a6;
}
/* Centered Modal */
.cv-tour-modal.is-centered {
    background: #000000b5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.cv-tour-modal.is-centered h2 {
    color:#fff;
    margin-bottom: 20px;
}


/* Mobile / Responsive style */
@media (max-width: 1024px) {
    .cv-tour-modal {
        left: 30px;
        width: 350px;
    }
}

@media (max-width: 767px) {
    .cv-product-tour-wrapper {
        padding: 10px;
    }

    .cv-tour-frame-header {
        height: 30px;
        padding: 0 10px;
    }

    .cv-tour-frame-dot {
        height: 10px;
        width: 10px;
        margin-right: 6px;
    }

    .cv-tour-modal {
        left: 20px !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: auto !important;
        max-width: none !important;
        padding: 15px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .cv-tour-modal.is-centered {
        transform: translate(0, -50%) !important;
        left: 20px !important;
        right: 20px !important;
    }

    .cv-tour-modal-header h2 {
        font-size: 16px;
        line-height: 18px;
    }
    .cv-tour-modal-header p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 12px;
    }

    .cv-tour-step-item {
        padding: 0;
    }

    .cv-tour-step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
        margin-right: 12px;
    }

    .cv-tour-step-title {
        font-size: 14px;
    }
    .cv-tour-step-subtitle {
        font-size: 13px;
    }

    .cv-tour-footer {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .cv-tour-button {
        width: 50%;
        text-align: center;
        padding: 8px 10px;
    }
    .cv-tour-highlight {
        border-width: 5px;
    }

    .cv-tour-tooltip {
        max-width: 250px;
        width: max-content;
        font-size: 14px;
        padding: 8px 12px;
        transform: translate(-50%, calc(-100% - 10px)) !important;
    }

    .cv-tour-modal.is-centered.cv-model-bg {
        padding: 10px 11px;
    }
    .cv-tour-modal.is-centered.cv-model-bg h2 {
        font-size: 16px;
        line-height: 18px;
    }

    @media (max-width: 480px) {
        .cv-tour-tooltip {
            max-width: 200px;
        }
    }
}

/*
====================================
 CV Product Tour Widget Style End
====================================
*/

/*
=======================================
 CV Activity Planner Widget Style Start
=======================================
*/

.cv-planner-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.cv-planner-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cv-planner-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cv-planner-content {
    padding: 24px;
    text-align: center;
}

h3.cv-planner-title {
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    color: #888;
    margin: 0 0 20px 0;
}

.cv-planner-title strong {
    font-weight: bold;
    color: #002d62;
}

.cv-planner-button {
    display: inline-block;
    background-color: #002d62;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.cv-planner-button:hover {
    background-color: #7CCD88;
    text-decoration: none;
}

/* Load More Button Style */
.cv-planner-item.cv-planner-item-hidden {
    display: none;
}

.cv-planner-load-more-wrapper {
    text-align: center;
    margin-top: 30px;
}

.cv-planner-load-more {
    border: none;
    cursor: pointer;
    padding: 15px 50px;
}

/*
======================================
 CV Activity Planner Widget Style End
======================================
*/

/*
=============================
 CV Teams Widget Style Start
=============================
*/

.cv-teams-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px 20px;
    justify-content: center;
}

.cv-team-item {
    text-align: center;
}

.cv-team-initials {
    background-color: #F7F7F7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 50px;
    font-weight: bold;
}

.cv-team-initials .initial-1 {
    color: #5cb880;
}

.cv-team-initials .initial-2 {
    color: #002d62;
}

.cv-team-content {
    /* No specific styles needed unless, want to adjust spacing */
}

.cv-team-name {
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #002d62;
    margin: 0 0 5px 0;
}

.cv-team-designation {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/*
===========================
 CV Teams Widget Style End
===========================
*/

/*
==========================
 CV CTA Widget Style Start
==========================
*/

.cv-cta-wrapper {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 127, 255, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}
.cv-cta-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: -1;
}
.cv-cta-title {
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: bold;
    max-width: 600px;
    margin: 0 0 15px 0;
}
.cv-cta-content {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 0 30px 0;
    line-height: 1.6;
    opacity: 0.9;
}

.cv-cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cv-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .cv-cta-title {
        font-size: 24px;
    }
}

/*
=========================
 CV CTA Widget Style End
=========================
*/
/*
===========================
 CV Solutions Widget Start
===========================
*/
.cv-solutions-wrapper {
    display: flex;
    gap: 20px;
    font-family: Arial, sans-serif;
    min-height: 450px;
}

.cv-solutions-item {
    border-radius: 20px;
    padding: 30px;
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: flex-basis 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: var(--side-bg-color);
}

.cv-solutions-item {
    flex-grow: 0;
    flex-shrink: 0;
}

.cv-solutions-item.is-active {
    flex-basis: 70%;
    cursor: default;
    background-color: var(--main-bg-color);
}

.is-active .cv-solutions-main-icon { transition-delay: 0.3s; }
.is-active .cv-solutions-main-title { transition-delay: 0.4s; color: #fff;}
.is-active .cv-solutions-main-description { transition-delay: 0.5s; }
.is-active .cv-solutions-main-button { transition-delay: 0.6s; }

.is-active h3.cv-solutions-main-title {
    color:#fff;
}
h3.cv-solutions-main-title {
    color:#fff;
}

.cv-solutions-side-view {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.is-active .cv-solutions-side-view {
    opacity: 0;
    pointer-events: none;
}

.cv-solutions-main-view {
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease 0.2s;
    position: absolute;
    top: 30px; left: 30px; right: 30px; bottom: 30px;
}
.is-active .cv-solutions-main-view {
    opacity: 1;
    pointer-events: auto;
}

.cv-solutions-main-icon i, .cv-solutions-main-icon svg { font-size: 36px; margin-bottom: 20px; fill: #ffffff; width: 36px; height: 36px; }
.cv-solutions-main-title { font-size: 28px; font-weight: bold; margin: 0 0 15px 0; }
.cv-solutions-main-description { font-size: 16px; line-height: 1.6; margin: 0 0 30px 0; }
.cv-solutions-main-button {
    text-align: center;
    width: 30%;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s
    ease;
}
.cv-solutions-main-button:hover { background-color: rgba(255,255,255,0.3); }

.cv-solutions-side-icon i, .cv-solutions-side-icon svg { font-size: 24px; fill: #ffffff; width: 24px; height: 24px; }
.cv-solutions-side-title { writing-mode: vertical-rl; transform: rotate(180deg); font-weight: bold; }

@media (max-width: 767px) {
    .cv-solutions-wrapper { flex-direction: column; min-height: auto; }
    .cv-solutions-item, .cv-solutions-item.is-active { flex-basis: auto; }
    .cv-solutions-item:not(.is-active) { min-height: 80px; }
    .cv-solutions-side-title { writing-mode: initial; transform: none; }
    .cv-solutions-side-view { flex-direction: row; }
    .is-active .cv-solutions-side-view { display: none; }
    .cv-solutions-main-view { position: static; opacity: 0; max-height: 0; overflow: hidden; transition: opacity 0.4s, max-height 0.4s; }
    .is-active .cv-solutions-main-view { opacity: 1; max-height: 1000px;}
}
/*
===========================
 CV Solutions Widget End
===========================
*/
/*
=============================
 CV Partnerships Widget Start
=============================
*/
.cv-partnerships-wrapper {
    font-family: Arial, sans-serif;
}

/* --- Tab Bar Carousel --- */
.cv-partnerships-tabs {
    position: relative;
    margin-bottom: 30px;
}
.cv-partnerships-tabs .swiper-slide {
    width: auto; /* Allow slides to have their natural width */
}
.cv-partnership-tab-button {
    display: block;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    background-color: #ffffff;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cv-partnership-tab-button.is-active {
    background-color: #fb923c; /* Orange */
    color: #ffffff;
    border-color: #fb923c;
}
/* --- New Scrollbar Styles --- */
.cv-partnerships-tabs .swiper-scrollbar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #e5e7eb; /* Light grey track */
    border-radius: 10px;
}
.cv-partnerships-tabs .swiper-scrollbar-drag {
    background-color: #9ca3af; /* Darker grey handle */
    border-radius: 10px;
}
/* --- Content Area --- */
.cv-partnerships-content-area {
    position: relative;
    min-height: 400px; /* Ensure container has height for absolute positioning */
}
.cv-partnership-content-pane {
    display: flex;
    gap: 30px;
    position: absolute;
    top: 0; left: 0; width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.cv-partnership-content-pane.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative; /* Take up space in the document flow */
}

/* --- Image Container & Logo --- */
.cv-partnership-image-container {
    flex: 1 1 40%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.cv-partnership-image-container img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* --- Text Content --- */
.cv-partnership-text-content {
    flex: 1 1 60%;
    padding: 20px 0;
}
.cv-partnership-text-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}
.cv-partnership-text-content strong {
    color: #111827;
}
.cv-partnership-button {
    display: inline-block;
    background-color: #fb923c;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}
.cv-partnership-button:hover {
    background-color: #f97316;
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .cv-partnership-content-pane {
        flex-direction: column;
    }
}

/*
=============================
 CV Partnerships Widget End
=============================
*/
/*
=============================
 CV Hero Banner Widget Start
=============================
*/

/* --- Keyframe Animations for the Blobs --- */
@keyframes moveBlob1 {
    0%   { transform: translate(0, 0) rotate(0deg); }
    50%  { transform: translate(100px, -150px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes moveBlob2 {
    0%   { transform: translate(0, 0) rotate(0deg); }
    50%  { transform: translate(-150px, 100px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes moveBubblesUp {
    from { background-position: 0 0; }
    to { background-position: 0 -1000px; }
}
@keyframes moveBubblesUpLeft {
    from { background-position: 0 0; }
    to { background-position: 500px -1000px; }
}

/* --- Bubble Layers (The Parallax Effect) --- */
/* We use pseudo-elements to create 3 layers of bubbles */
.has-bubble-effect,
.has-bubble-effect::before,
.has-bubble-effect::after {
    --bubble-pattern: radial-gradient(circle at center, var(--bubble-color) 0, var(--bubble-color) var(--bubble-size), transparent var(--bubble-size), transparent 100%);
    background-image: var(--bubble-pattern);
    background-repeat: repeat;
    background-size: var(--bubble-spacing) var(--bubble-spacing);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Layer 1: The main element */
.has-bubble-effect {
    animation-name: moveBubblesUp;
    animation-duration: var(--bubble-duration, 25s);
}

/* Layer 2: The ::before pseudo-element */
.has-bubble-effect::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background-position: calc(var(--bubble-spacing) / 2) calc(var(--bubble-spacing) / 2); /* Offset the pattern */
    animation-name: moveBubblesUpLeft;
    animation-duration: calc(var(--bubble-duration, 25s) * 1.5); /* Slower speed */
    opacity: 0.7;
}

/* Layer 3: The ::after pseudo-element (optional, for more depth) */
.has-bubble-effect::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background-position: calc(var(--bubble-spacing) / 3) calc(var(--bubble-spacing) / 3); /* Different offset */
    animation-name: moveBubblesUp;
    animation-duration: calc(var(--bubble-duration, 25s) * 2); /* Even slower */
    opacity: 0.5;
}

/* --- Main Wrapper --- */
.cv-hero-banner-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 60px;
    border-radius: 20px;
    background-color: #fecdd3; /* Default background */
    overflow: hidden; /* Crucial for containing the blobs */
    font-family: Arial, sans-serif;
    justify-content: space-around;
}

/* --- Animated Blobs --- */
.cv-hero-blob {
    position: absolute;
    z-index: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.cv-hero-blob.blob-1 {
    top: -100px;
    left: -100px;
    background-color: var(--blob-1-color, #FF69B4);
    animation-name: moveBlob1;
    animation-duration: var(--animation-duration, 20s);
}
.cv-hero-blob.blob-2 {
    bottom: -150px;
    right: -150px;
    background-color: var(--blob-2-color, #7C3AED);
    animation-name: moveBlob2;
    animation-duration: var(--animation-duration, 20s);
}

/* --- Content & Image Columns --- */
.cv-hero-banner-content,
.cv-hero-banner-image {
    position: relative;
    z-index: 1; /* Ensure content is above the blobs */
}

.cv-hero-banner-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.cv-hero-banner-description {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 30px 0;
    max-width: 450px;
}

.cv-hero-banner-button {
    display: inline-block;
    background-color: #259591;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-bottom: 40px;
}
.cv-hero-banner-button:hover {
    transform: translateY(-3px);
}

.cv-hero-banner-image img {
    width: 100%;
    max-width: 350px;
    height: 416px;
    display: block;
    margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .cv-hero-banner-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .cv-hero-banner-image {
        order: -1; /* Move image to the top on mobile */
        margin-bottom: 30px;
    }
    .cv-hero-banner-title {
        font-size: 32px;
    }
    .cv-hero-banner-description {
        margin-left: auto;
        margin-right: auto;
    }
}
/*
=============================
 CV Hero Banner Widget End
=============================
*/

/*
================================
 CV Animated Text Widget Start
================================
*/
.cv-animated-text-wrapper {
    font-size: 28px;
    font-weight: bold;
}
.cv-animated-text-special {
    color: #a726a7; /* Default special color */
}

/* --- Rotating Words --- */
.cv-animated-text-rotating-wrapper {
    display: inline-block;
    vertical-align: bottom;
    text-align: left;
}
.cv-animated-text-rotating-wrapper .cv-animated-text-special {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.cv-animated-text-rotating-wrapper .cv-animated-text-special.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Fade Up by Word --- */
.cv-animated-text-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.is-visible .cv-animated-text-word {
    opacity: 1;
    transform: translateY(0);
}

/* --- Animated Highlight --- */
.cv-animated-text-highlight-wrapper {
    display: inline-block;
    position: relative;
}
.cv-highlight-shape {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: -1;
}
.cv-highlight-shape path {
    stroke: #fb923c;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1s ease 0.3s;
}
.is-visible .cv-highlight-shape path {
    stroke-dashoffset: 0;
}

/*
================================
 CV Animated Text Widget End
================================
*/

/*
================================
 CV Team Showcase Widget Start
================================
*/
.cv-team-showcase-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

/* Decorative Shapes */
.cv-team-showcase-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.cv-team-showcase-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -100px;
}
.cv-team-showcase-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: -80px;
}

/* Image Section */
.cv-team-showcase-image {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

/* Content Box */
.cv-team-showcase-content-box {
    position: relative;
    z-index: 2; /* Sits on top of the image */
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 800px;
    padding: 40px;
    border-radius: 20px;
}

/* Inner Content */
.cv-team-showcase-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    color: #475569;
    margin-bottom: 20px;
}
.cv-team-showcase-tag i,
.cv-team-showcase-tag svg {
    font-size: 14px;
    color: #ec4899;
}
.cv-team-showcase-tag svg {
    width: 14px;
    height: 14px;
    fill: #ec4899;
}

.cv-team-showcase-heading {
    font-size: 36px;
    font-weight: bold;
    color: #1e293b;
    margin: 0 0 15px 0;
}

.cv-team-showcase-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .cv-team-showcase-heading {
        font-size: 28px;
    }
    .cv-team-showcase-content-box {
        padding: 30px 20px;
    }
}

/*
================================
 CV Team Showcase Widget End
================================
*/
/*
================================
 CV Package Plan Widget Start
================================
*/
.cv-package-plan-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center;
    font-family: Arial, sans-serif;
}

.cv-package-plan-item {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cv-package-plan-item.is-featured {
    border: 2px solid #10b981;
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.1), 0 10px 10px -5px rgba(16, 185, 129, 0.04);
}

.cv-plan-featured-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #10b981;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cv-plan-featured-icon i,
.cv-plan-featured-icon svg {
    font-size: 16px;
    width: 16px; height: 16px;
    fill: #ffffff;
}

.cv-plan-header {
    margin-bottom: 20px;
}
.cv-plan-title {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    margin: 0 0 5px 0;
}
.cv-plan-price {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 20px 0;
}
.cv-plan-tag {
    display: inline-block;
    background-color: #f3f4f6;
    color: #374151;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}
.is-featured .cv-plan-tag {
    background-color: #ecfdf5;
    color: #065f46;
}

.cv-plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}
.cv-plan-features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #4b5563;
}
.cv-plan-features-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cv-plan-footer {
    margin-top: auto;
}
.cv-plan-button {
    display: block;
    width: 100%;
    background-color: #f3f4f6;
    color: #374151;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.cv-plan-button:hover {
    background-color: #e5e7eb;
}
.is-featured .cv-plan-button {
    background-color: #10b981;
    color: #ffffff;
}
.is-featured .cv-plan-button:hover {
    background-color: #059669;
}

/* --- Style 2 --- */
.cv-plan-style2 .cv-package-plan-wrapper {
    align-items: stretch;
}
.cv-plan-style2 .cv-package-plan-item {
    background-color: #f3f4f6;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.cv-plan-style2 .is-featured {
    background-color: #3b3a6b;
    transform: scale(1.0);
    position: relative;
    top: -20px;
    z-index: 1;
}

.cv-plan-style2 .cv-plan-title {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    text-transform: uppercase;
}
.cv-plan-style2 .cv-plan-price {
    font-size: 56px;
    font-weight: 900;
    color: #111827;
    margin: 10px 0 25px 0;
}
.cv-plan-style2 .is-featured .cv-plan-title,
.cv-plan-style2 .is-featured .cv-plan-price {
    color: #ffffff;
}

.cv-plan-style2 .cv-plan-features-list li {
    padding-left: 0;
    text-align: center;
    border-top: 1px solid #d1d5db;
    padding-top: 15px;
    color: #4b5563;
}
.cv-plan-style2 .cv-plan-features-list li::before {
    display: none;
}
.cv-plan-style2 .is-featured .cv-plan-features-list li {
    border-top-color: rgba(255,255,255,0.2);
    color: #e5e7eb;
}

.cv-plan-style2 .cv-plan-button {
    background-color: #3b3a6b;
    color: #ffffff;
}
.cv-plan-style2 .cv-plan-button:hover {
    background-color: #2c2b50;
}
.cv-plan-style2 .is-featured .cv-plan-button {
    background-color: #ffffff;
    color: #3b3a6b;
}
.cv-plan-style2 .is-featured .cv-plan-button:hover {
    background-color: #f3f4f6;
}

/* --- Style 3 --- */
.cv-plan-style3 .cv-package-plan-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.cv-plan-style3 .is-featured {
    border: 2px solid #0d6efd;
}

.cv-plan-style3 .cv-plan-featured-tag {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 0;
    text-transform: uppercase;
}

.cv-plan-style3 .cv-plan-top {
    padding: 30px 20px;
}
.cv-plan-style3 .cv-plan-bottom {
    background-color: #0d6efd;
    color: #ffffff;
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cv-plan-style3 .cv-plan-title {
    font-size: 18px;
    font-weight: 500;
    color: #6c757d;
    text-transform: uppercase;
}
.cv-plan-style3 .cv-plan-price {
    font-size: 52px;
    font-weight: 700;
    color: #212529;
    margin: 10px 0 5px 0;
}
.cv-plan-style3 .cv-plan-price-period {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.cv-plan-style3 .cv-plan-features-list {
    margin-bottom: 30px;
}
.cv-plan-style3 .cv-plan-features-list span {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}
.cv-plan-style3 .cv-plan-button {
    background-color: #ffffff;
    color: #0d6efd;
    margin-top: auto;
}
.cv-plan-style3 .cv-plan-button:hover {
    background-color: #f8f9fa;
}

.cv-plan-style3 .is-featured .cv-plan-top,
.cv-plan-style3 .is-featured .cv-plan-bottom {
    background-color: #0d6efd;
}
.cv-plan-style3 .is-featured .cv-plan-title,
.cv-plan-style3 .is-featured .cv-plan-price,
.cv-plan-style3 .is-featured .cv-plan-price-period,
.cv-plan-style3 .is-featured .cv-plan-features-list span {
    color: #ffffff;
}
.cv-plan-style3 .is-featured .cv-plan-button {
    background-color: #ffc107;
    color: #000;
}
.cv-plan-style-3 .is-featured .cv-plan-button:hover {
    background-color: #ffca2c;
}
/*
================================
 CV Package Plan Widget End
================================
*/

/*
================================
 CV Clients Frame Widget Start
================================
*/
.cv-clients-frame-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.cv-clients-frame-item {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cv-clients-frame-diamond {
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10%;
}

.cv-clients-frame-diamond img {
    transform: rotate(-45deg);
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.cv-clients-frame-wrapper .cv-clients-frame-item:nth-child(even) {
    margin-top: 100px;
}

.cv-clients-frame-item.hover-zoom:hover {
    transform: scale(1.1);
    z-index: 2;
}
.cv-clients-frame-item.hover-degrayscale:hover .cv-clients-frame-diamond img {
    filter: grayscale(0) !important;
}

@media (max-width: 767px) {
    .cv-clients-frame-wrapper .cv-clients-frame-item:nth-child(even) {
        margin-top: 0;
    }
}
/*
================================
 CV Clients Frame Widget End
================================
*/

/*
================================
 CV Flip Carousel Widget Start
================================
*/
.cv-flip-carousel-wrapper {
    position: relative;
    padding: 40px 0;
}
.cv-flip-carousel {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.has-reflection .cv-flip-carousel {
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0004);
}

.cv-flip-carousel .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    aspect-ratio: 3 / 4;
    transition: transform 0.4s ease;
}
.cv-flip-carousel .swiper-slide-active {
    transform: scale(1.1);
}

.cv-flip-carousel .cv-flip-carousel-item,
.cv-flip-carousel .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.cv-flip-carousel-wrapper .swiper-button-next,
.cv-flip-carousel-wrapper .swiper-button-prev {
    color: #333;
}
.cv-flip-carousel-wrapper .swiper-pagination-bullet-active {
    background: #333;
}

/*
================================
 CV Flip Carousel Widget End
================================
*/
/*
================================
 CV Dual Button Widget Start
================================
*/
.cv-dual-button-wrapper {
    display: inline-flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
    overflow: hidden;
    border-radius: var(--cv-button-radius, 50px);
}

.cv-dual-button-part {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.button-one, .button-two {
    flex-grow: 1;
    padding: 0 40px;
    color: #ffffff;
}
.button-one {
    justify-content: flex-end;
    padding-right: 35px;
    border-top-left-radius: var(--cv-button-radius, 50px);
    border-bottom-left-radius: var(--cv-button-radius, 50px);
}
.button-two {
    justify-content: flex-start;
    padding-left: 35px;
    border-top-right-radius: var(--cv-button-radius, 50px);
    border-bottom-right-radius: var(--cv-button-radius, 50px);
}

.separator {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
    margin: 0 -20px;
}
.separator-text {
    font-size: 14px;
}
.separator-icon i,
.separator-icon svg {
    font-size: 18px;
    width: 18px;
    height: 18px;
}
/*
================================
 CV Dual Button Widget End
================================
*/
/*
================================
 CV Photo Frame Widget Start
================================
*/
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }

.cv-photo-frame-wrapper {
    position: relative;
    display: inline-block;
    line-height: 0;
    border-style: solid;
    border-color: var(--frame-color, #a78bfa);
    border-width: var(--frame-size, 20px);
    clip-path: var(--cv-clip-path);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cv-photo-frame-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
    clip-path: var(--cv-clip-path);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.frame-style-scalloped { --cv-clip-path: url(#cv-scalloped-clip-path); }
.frame-style-circle { --cv-clip-path: circle(50% at 50% 50%); }
.frame-style-hexagon { --cv-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.frame-style-angled { --cv-clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%); }
.frame-style-blob { --cv-clip-path: polygon(41% 13%, 72% 5%, 100% 38%, 88% 83%, 51% 100%, 15% 94%, 0% 59%, 9% 30%); }
.frame-style-octagon { --cv-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%); }
.frame-style-arch { --cv-clip-path: polygon(0% 100%, 0% 25%, 25% 0%, 75% 0%, 100% 25%, 100% 100%); }
.frame-style-ticket { --cv-clip-path: polygon(0% 25%, 15% 25%, 15% 0%, 85% 0%, 85% 25%, 100% 25%, 100% 75%, 85% 75%, 85% 100%, 15% 100%, 15% 75%, 0% 75%); }
.frame-style-splash { --cv-clip-path: polygon(0% 42%, 18% 30%, 25% 0%, 50% 15%, 75% 0%, 82% 30%, 100% 42%, 85% 65%, 100% 100%, 50% 85%, 0% 100%, 15% 65%); }
.frame-style-star { --cv-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.frame-style-diamond { --cv-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.frame-style-badge { --cv-clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 50% 100%, 0% 75%); }
.frame-style-shield { --cv-clip-path: polygon(0% 0%, 100% 0%, 100% 60%, 50% 100%, 0% 60%); }
.frame-style-rounded_square { --cv-clip-path: inset(0% 0% 0% 0% round 15%); }
.frame-style-zigzag { --cv-clip-path: polygon(0% 5%, 5% 0%, 10% 5%, 15% 0%, 20% 5%, 25% 0%, 30% 5%, 35% 0%, 40% 5%, 45% 0%, 50% 5%, 55% 0%, 60% 5%, 65% 0%, 70% 5%, 75% 0%, 80% 5%, 85% 0%, 90% 5%, 95% 0%, 100% 5%, 100% 95%, 95% 100%, 90% 95%, 85% 100%, 80% 95%, 75% 100%, 70% 95%, 65% 100%, 60% 95%, 55% 100%, 50% 95%, 45% 100%, 40% 95%, 35% 100%, 30% 95%, 25% 100%, 20% 95%, 15% 100%, 10% 95%, 5% 100%, 0% 95%); }

.frame-style-cloud { --cv-clip-path: url(#cv-cloud-clip-path); }
.frame-style-wave { --cv-clip-path: url(#cv-wave-clip-path); }
.frame-style-squircle { --cv-clip-path: url(#cv-squircle-clip-path); }
.frame-style-bracket { --cv-clip-path: url(#cv-bracket-clip-path); }

.frame-style-tilt {
    transform: rotate(-5deg);
}
.animation-fade-in img {
    opacity: 0;
}
.animation-slide-up img {
    opacity: 0;
    transform: translateY(30px);
}

.is-visible.animation-fade-in img,
.is-visible.animation-slide-up img {
    opacity: 1;
    transform: translateY(0);
}

.is-visible.continuous-float { animation: float 6s ease-in-out infinite; }
.is-visible.continuous-pulse { animation: pulse 8s ease-in-out infinite; }
.hover-zoom:hover { transform: scale(1.05); }
.hover-lift:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
/*
================================
 CV Photo Frame Widget End
================================
*/
/*
================================
 CV Countdown Timer Widget Start
================================
*/
.cv-timer-wrapper {
    padding: 30px;
    background-color: #ec4899;
    border-radius: 12px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #ffffff;
}
.cv-timer-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 20px 0;
}
.cv-timer-countdown {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
}
.cv-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cv-timer-digits {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
}
.cv-timer-label {
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 5px;
}
.cv-timer-separator {
    font-size: 48px;
    font-weight: bold;
}
.cv-timer-expiry-message {
    font-size: 28px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 767px) {
    .cv-timer-digits { font-size: 40px; }
    .cv-timer-separator { font-size: 32px; }
}
/*
================================
 CV Countdown Timer Widget End
================================
*/

/*
================================
 CV Progress Bar Widget Start
================================
*/
.cv-progress-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Space between bars */
    font-family: Arial, sans-serif;
}

.cv-progress-bar-item {
    /* Each item is a self-contained unit */
}

.cv-progress-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cv-progress-bar-title {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

.cv-progress-bar-percentage {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.cv-progress-bar-track {
    width: 100%;
    background-color: #e5e7eb;
    border-radius: 20px;
    overflow: hidden; /* Important for the border-radius to work on the fill */
}

.cv-progress-bar-fill {
    width: 0; /* Start at 0 width, JS will animate this */
    height: 10px; /* Default height */
    border-radius: 20px;
}
/*
================================
 CV Progress Bar Widget End
================================
*/
/*
================================
 CV Ordered List Widget Start
================================
*/
.cv-ordered-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: Arial, sans-serif;
}

.cv-ordered-list-item {
    display: flex;
    align-items: stretch;
    background-color: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.cv-ordered-list-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cv-list-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    flex-shrink: 0;
    width: 180px;
    border-radius: 12px 50px 50px 12px;
}
.cv-list-item-number {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    opacity: 0.8;
}
.cv-list-item-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}
.cv-list-item-icon-wrapper i,
.cv-list-item-icon-wrapper svg {
    font-size: 18px;
    width: 18px; height: 18px;
}

.cv-list-item-content {
    padding: 25px;
    flex-grow: 1;
}
.cv-list-item-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px 0;
}
.cv-list-item-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.cv-ordered-list-item.item-reversed {
    flex-direction: row-reverse;
}
.cv-ordered-list-item.item-reversed .cv-list-item-header {
    border-radius: 50px 12px 12px 50px;
}
/*
================================
 CV Ordered List Widget End
================================
*/
/*
================================
 CV Service Card Widget Start
================================
*/
.cv-service-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    font-family: Arial, sans-serif;
}

/* --- The main container for each card --- */
.cv-service-card-item {
    position: relative;
    background-color: #1f2937; /* Dark background is now on the main item */
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden; /* Important for containing the header shape */
    /* Animation initial state */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.cv-service-card-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- The Colored Header Shape --- */
.cv-card-header-shape {
    position: relative;
    height: 100px; /* Height of the colored area */
    /* THIS IS THE CRITICAL FIX for the shape */
    border-radius: 20px 20px 60px 60px / 20px 20px 40px 40px;
}

/* --- The Icon --- */
.cv-card-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 36px;
    color: #ffffff;
}
.cv-card-icon svg {
    width: 36px; height: 36px;
    fill: #ffffff;
}

/* --- The Main Content Box --- */
.cv-service-card-content {
    padding: 20px 30px 30px 30px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: calc(100% - 100px); /* Fill remaining space */
}

/* --- Inner Content --- */
.cv-card-title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.cv-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #d1d5db;
}

.cv-card-button {
    display: inline-block;
    align-self: flex-start;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto; /* Pushes button to the bottom */
    transition: opacity 0.3s ease;
}
.cv-card-button:hover {
    opacity: 0.85;
}
/*
================================
 CV Service Card Widget End
================================
*/
/*
================================
 CV Process Steps Widget Start
================================
*/
.cv-process-steps-wrapper {
    position: relative;
    padding: 80px 20px;
    background-color: #007bff;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* --- Timeline Background --- */
.cv-process-timeline {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #ffffff;
    opacity: 0.3;
    z-index: 0;
}
.cv-process-timeline::before, .cv-process-timeline::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ffffff;
}
.cv-process-timeline::before { left: 25%; }
.cv-process-timeline::after { right: 25%; }

/* --- Cards Layout --- */
.cv-process-cards {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.cv-process-card-item {
    position: relative;
    width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.cv-process-card-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.cv-process-card-item.is-middle {
    transform: translateY(-20px);
}
.cv-process-card-item.is-middle.is-visible {
    transform: translateY(-20px);
}

/* --- Icon --- */
.cv-card-icon-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.cv-card-icon {
    font-size: 28px;
    transition: transform 0.5s ease;
}
.cv-process-card-item:hover .cv-card-icon {
    transform: rotate(360deg);
}

/* --- Content --- */
.cv-card-content {
    padding: 50px 25px 25px 25px;
    transition: transform 0.4s ease;
}
.cv-card-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}
/* Corner Brackets */
.cv-card-title-wrapper::before, .cv-card-title-wrapper::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: #007bff;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cv-card-title-wrapper::before { top: 0; left: -15px; border-top: 2px solid; border-left: 2px solid; }
.cv-card-title-wrapper::after { bottom: 0; right: -15px; border-bottom: 2px solid; border-right: 2px solid; }
.cv-process-card-item:hover .cv-card-title-wrapper::before,
.cv-process-card-item:hover .cv-card-title-wrapper::after {
    opacity: 1;
}
.cv-card-title { font-size: 18px; font-weight: bold; margin: 0; }
.cv-card-description { font-size: 14px; line-height: 1.6; color: #7a7a7a; margin: 0; }

/* --- Stacked Hover Effect --- */
.cv-card-stack {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.cv-process-card-item:hover .cv-card-content {
    transform: translateY(-20px);
}
.cv-process-card-item:hover .stack-1 {
    opacity: 0.6;
    transform: translateY(10px);
    transition-delay: 0.1s;
}
.cv-process-card-item:hover .stack-2 {
    opacity: 0.3;
    transform: translateY(20px);
    transition-delay: 0.2s;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .cv-process-cards { flex-direction: column; }
    .cv-process-timeline { display: none; } /* Hide timeline on mobile */
    .cv-process-card-item.is-middle,
    .cv-process-card-item.is-middle.is-visible {
        transform: translateY(0);
    }
}
/*
================================
 CV Process Steps Widget End
================================
*/
/*
===================================
 CV Interactive Screen Widget Start
===================================
*/
.cv-interactive-screen-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    font-family: Arial, sans-serif;
}
.cv-interactive-screen-wrapper.image-position-right {
    flex-direction: row-reverse;
}

/* --- Columns --- */
.cv-screen-device-column {
    flex: 1 1 40%;
}
.cv-screen-features-column {
    flex: 1 1 60%;
    position: relative; /* Positioning context for the connecting line */
}


/* --- Device Mockup --- */
.cv-screen-device-mockup {
    position: relative;
    max-width: 350px;
    line-height: 0; /* Removes extra space under images */
}

/* Layer 3: The Frame */
.cv-device-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    pointer-events: none;
}

/* Layer 2: The "Mask" Container */
.cv-device-screen-container {
    position: absolute;
    top: 2.5%; left: 3.5%; right: 3.5%; bottom: 2.5%;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}

/* Layer 1: The Screen Image */
.cv-device-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}


/* --- Features List & Buttons --- */
.cv-screen-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cv-screen-feature-button {
    display: block;
    padding: 20px 25px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    text-decoration: none;
    color: #334155;
    transition: all 0.3s ease;
}
.cv-screen-feature-button .feature-title {
    font-size: 18px;
    font-weight: 600;
}
.cv-screen-feature-button .feature-content {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
    margin: 5px 0 0 0;
}
.cv-screen-feature-button:hover {
    border-color: #80C78A;
    background-color: #f8fff9;
}
.cv-screen-feature-button.is-active {
    border-color: #80C78A;
    background-color: #f8fff9;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.1);
}


/* --- Connecting Line --- */
.cv-screen-connecting-line {
    position: absolute;
    width: 40px;
    height: 2px;
    background-image: linear-gradient(to right, var(--cv-line-color, #334155) 40%, transparent 0%);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    transition: top 0.4s ease; /* Smoothly animates vertical movement */
    opacity: 0; /* Hide by default */
}
.has-connecting-lines .cv-screen-connecting-line {
    opacity: 1; /* Show only if enabled */
}

/* Position the line on the correct side based on the wrapper class */
.image-position-left .cv-screen-connecting-line {
    left: -45px;
}
.image-position-right .cv-screen-connecting-line {
    right: -45px;
    background-image: linear-gradient(to left, var(--cv-line-color, #334155) 40%, transparent 0%);
}

/* The dot at the end of the line */
.cv-screen-connecting-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--cv-line-color, #334155);
}
.image-position-left .cv-screen-connecting-line::after {
    left: -5px;
}
.image-position-right .cv-screen-connecting-line::after {
    right: -5px;
}


/* --- Responsive --- */
@media (max-width: 767px) {
    .cv-interactive-screen-wrapper {
        flex-direction: column !important; /* Force stacking on mobile */
    }
}
/*
===================================
 CV Interactive Screen Widget End
===================================
*/
/*
==================================
 CV Testimonial Fancy Widget Start
==================================
*/
.cv-testimonial-fancy-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    font-family: Arial, sans-serif;
}

.cv-testimonial-fancy-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.cv-testimonial-fancy-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cv-tf-logo {
    margin-bottom: 25px;
    height: 70px; /* Default height */
}
.cv-tf-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* --- The Quotation Marks --- */
.cv-tf-quote-wrapper {
    position: relative;
    padding: 10px 0;
    margin-bottom: 20px;
}
.cv-tf-quote-wrapper::before,
.cv-tf-quote-wrapper::after {
    content: '"';
    position: absolute;
    font-size: 100px;
    font-weight: bold;
    color: #f3f4f6;
    z-index: 0;
    line-height: 1;
}
.cv-tf-quote-wrapper::before {
    top: -10px;
    left: -10px;
}
.cv-tf-quote-wrapper::after {
    bottom: -30px;
    right: -10px;
}
.cv-tf-text {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-style: italic;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* --- Author Info --- */
.cv-tf-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto; /* Pushes to the bottom */
}
.cv-tf-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.cv-tf-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cv-tf-author-details {
    text-align: left;
}
.cv-tf-author-name {
    font-size: 18px;
    font-weight: bold;
    color: #111827;
    margin: 0;
    padding: 0;
}
.cv-tf-author-role {
    font-size: 14px;
    color: #6b7280;
}
.cv-tf-rating {
    margin-bottom: 20px;
    font-size: 16px;
}
.cv-tf-rating i {
    color: #cbd5e1;
    margin: 0 1px;
}
.cv-tf-rating .fas {
    color: #fbbc05;
}
/*
==================================
 CV Testimonial Fancy Widget End
==================================
*/