/* Case Addons Widgets CSS */

/* Heading Widget */
.pxl-heading-wrapper {
    margin-bottom: 30px;
}

.pxl-heading-title {
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.3;
}

.pxl-heading-subtitle {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
}

.pxl-heading-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Button Widget */
.pxl-button-wrapper {
    display: inline-block;
}

.pxl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background-color: #007cba;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pxl-button:hover {
    background-color: #005a87;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.pxl-button i {
    margin-right: 8px;
}

/* Icon Box Widget */
.pxl-icon-box {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pxl-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pxl-icon-box-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #007cba;
}

.pxl-icon-box-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333333;
}

.pxl-icon-box-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Counter Widget */
.pxl-counter {
    text-align: center;
    padding: 20px;
}

.pxl-counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #007cba;
    margin-bottom: 10px;
    line-height: 1;
}

.pxl-counter-title {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0;
}

.pxl-counter-icon {
    font-size: 36px;
    color: #007cba;
    margin-bottom: 15px;
}

/* Testimonial Widget */
.pxl-testimonial {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pxl-testimonial::before {
    content: '"';
    font-size: 60px;
    color: #007cba;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.2;
}

.pxl-testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
    font-style: italic;
}

.pxl-testimonial-author {
    display: flex;
    align-items: center;
}

.pxl-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.pxl-testimonial-info {
    flex: 1;
}

.pxl-testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 5px 0;
}

.pxl-testimonial-position {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Team Member Widget */
.pxl-team-member {
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pxl-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pxl-team-member-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.pxl-team-member-info {
    padding: 20px;
}

.pxl-team-member-name {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 5px 0;
}

.pxl-team-member-position {
    font-size: 14px;
    color: #666666;
    margin: 0 0 15px 0;
}

.pxl-team-member-description {
    font-size: 14px;
    line-height: 1.6;
    color: #777777;
    margin: 0;
}

/* Progress Bar Widget */
.pxl-progress-bar {
    margin-bottom: 20px;
}

.pxl-progress-bar-title {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
}

.pxl-progress-bar-container {
    background-color: #f0f0f0;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.pxl-progress-bar-fill {
    height: 100%;
    background-color: #007cba;
    border-radius: 10px;
    transition: width 1s ease;
}

.pxl-progress-bar-percentage {
    font-size: 12px;
    color: #666666;
    margin-top: 5px;
    text-align: right;
}

/* Image Widget */
.pxl-image-wrapper {
    position: relative;
    display: inline-block;
}

.pxl-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.pxl-image-caption {
    font-size: 14px;
    color: #666666;
    margin-top: 10px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pxl-heading-title {
        font-size: 24px;
    }

    .pxl-counter-number {
        font-size: 36px;
    }

    .pxl-icon-box-icon {
        font-size: 36px;
    }

    .pxl-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Animation Classes */
.pxl-fade-in {
    animation: fadeIn 0.6s ease-in;
}

.pxl-slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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