/**
 * Showcase Blocks Stylesheet
 * Shared styles for modern, polished content blocks
 * Used by: TestimonialBlock, TechnicalSpecificationsBlock, HeaderBlockWithCTA, VideoWithFeatureCardsBlock
 */

/* ===== CSS Variables & Theme ===== */
:root {
    --showcase-theme-color: #D81921;
    --showcase-theme-dark: #B01419;
    --showcase-theme-light: #fce8e9;
    --showcase-text-primary: #333;
    --showcase-text-secondary: #666;
    --showcase-bg-light: #f8f9fa;
    --showcase-bg-lighter: #f5f5f5;
    --showcase-bg-card: #ffffff;
    --showcase-border-color: #e0e0e0;
    --showcase-border-radius: 8px;
    --showcase-border-radius-sm: 4px;
    --showcase-border-radius-pill: 20px;
}

/* ===== Typography ===== */
.showcase-heading-xl {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--showcase-text-primary);
}

.showcase-heading-lg {
    font-size: 36px;
    font-weight: 700;
    color: var(--showcase-text-primary);
}

.showcase-heading-md {
    font-size: 24px;
    font-weight: 700;
    color: var(--showcase-text-primary);
    line-height: 1.3;
}

.showcase-heading-sm {
    font-size: 18px;
    font-weight: 700;
    color: var(--showcase-theme-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-subheading {
    font-size: 18px;
    color: var(--showcase-text-secondary);
    line-height: 1.4;
}

.showcase-text {
    font-size: 16px;
    color: var(--showcase-text-secondary);
    line-height: 1.6;
}

.showcase-text-sm {
    font-size: 14px;
    color: var(--showcase-text-secondary);
    line-height: 1.5;
}

/* ===== Block Containers ===== */
.showcase-block {
    padding: 60px 0;
    margin: 40px 0;
}

.showcase-block:first-child {
    margin-top: 0;
}

.showcase-block:last-child {
    margin-bottom: 0;
}

.showcase-block-white {
    background-color: var(--showcase-bg-card);
}

.showcase-block-light {
    background-color: var(--showcase-bg-light);
}

.showcase-block-lighter {
    background-color: var(--showcase-bg-lighter);
}

/* ===== Headers ===== */
.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-header-left {
    text-align: left;
    margin-bottom: 50px;
}

/* ===== Tags & Badges ===== */
.showcase-tag {
    display: inline-block;
    background-color: var(--showcase-theme-light);
    color: var(--showcase-theme-color);
    padding: 8px 16px;
    border-radius: var(--showcase-border-radius-pill);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.showcase-badge {
    display: inline-block;
    background-color: var(--showcase-theme-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--showcase-border-radius-pill);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-badge-absolute {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

/* ===== Cards ===== */
.showcase-card {
    background-color: var(--showcase-bg-card);
    border: 1px solid var(--showcase-border-color);
    border-radius: var(--showcase-border-radius);
    padding: 40px;
}

.showcase-card-no-border {
    background-color: var(--showcase-bg-card);
    border-radius: var(--showcase-border-radius);
    padding: 30px 20px;
}

/* ===== Images ===== */
.showcase-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--showcase-border-radius);
}

.showcase-image-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== Buttons ===== */
.showcase-btn {
    padding: 12px 24px;
    border-radius: var(--showcase-border-radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.showcase-btn-primary {
    background-color: var(--showcase-theme-color);
    color: white;
}

.showcase-btn-primary:hover {
    background-color: var(--showcase-theme-dark);
    color: white;
    text-decoration: none;
}

.showcase-btn-white {
    background-color: white;
    color: var(--showcase-theme-color);
    border: 2px solid var(--showcase-theme-color);
}

.showcase-btn-white:hover {
    background-color: var(--showcase-theme-color);
    color: white;
    border-color: var(--showcase-theme-color);
}

.showcase-btn-ghost {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.showcase-btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.showcase-btn .icon {
    margin-top: 1px;
    margin-left: 5px;
}

/* ===== Metrics & Statistics ===== */
.showcase-metrics {
    display: flex;
    gap: 0;
    padding: 0;
}

.showcase-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.showcase-metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: var(--showcase-border-color);
}

.showcase-metric:first-child {
    padding-left: 0;
}

.showcase-metric:last-child {
    padding-right: 0;
}

.showcase-metric-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-metric-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-metric-icon svg {
    color: var(--showcase-theme-color);
    fill: var(--showcase-theme-color);
}

.showcase-metric-icon svg path,
.showcase-metric-icon svg use {
    fill: var(--showcase-theme-color);
    stroke: var(--showcase-theme-color);
}

.showcase-metric-content {
    display: flex;
    flex-direction: column;
}

.showcase-metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--showcase-theme-color);
    line-height: 1;
}

.showcase-metric-value-lg {
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.showcase-metric-label {
    font-size: 14px;
    color: var(--showcase-text-secondary);
    line-height: 1.2;
}

.showcase-metric-label-sm {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-top: 5px;
}

/* ===== Feature Lists ===== */
.showcase-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.showcase-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--showcase-text-primary);
}

.showcase-feature-checkmark {
    color: var(--showcase-theme-color);
    font-weight: bold;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.showcase-feature-text {
    flex: 1;
}

/* ===== Tags Display ===== */
.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.showcase-tag-item {
    background-color: #f0f0f0;
    color: var(--showcase-text-secondary);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

/* ===== Grid Layouts ===== */
.showcase-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.showcase-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.showcase-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

/* ===== Flex Layouts ===== */
.showcase-flex {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.showcase-flex-center {
    display: flex;
    gap: 40px;
    align-items: center;
}

.showcase-flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* ===== Video Styles ===== */
.showcase-video-box {
    position: relative;
    border-radius: var(--showcase-border-radius);
    overflow: hidden;
    background-color: #000;
    width: 100%;
    max-height: 400px;
}

.showcase-video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-play-icon:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.showcase-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

/* ===== Feature Cards (Flexible Grid) ===== */
.showcase-feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.showcase-feature-card {
    background-color: var(--showcase-bg-card);
    border-radius: var(--showcase-border-radius);
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .showcase-feature-card:hover {
        /*    border-color: var(--showcase-border-color);
*/ box-shadow: 0 4px 12px rgb(255 0 0 / 8%);
        transform: translateY(-2px);
    }

.showcase-feature-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Icon Card with Circular Background */
.showcase-icon-card {
    text-align: left;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border-radius: var(--showcase-border-radius);
    border: 2px solid transparent;
}

    .showcase-icon-card:hover {
        /*    border-color: var(--showcase-border-color);*/
        box-shadow: 0 4px 12px rgb(255 0 0 / 8%);
        transform: translateY(-2px);
    }

.showcase-icon-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.showcase-icon-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.showcase-icon-wrapper {
    width: 56px;
    height: 56px;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-icon-wrapper img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.showcase-card-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--showcase-text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.showcase-card-description {
    font-size: 15px;
    color: var(--showcase-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== Header with Background Image ===== */
.showcase-hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.showcase-hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.showcase-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    padding: 40px 0 40px 30px;
    text-align: left;
}

.showcase-hero-content .showcase-heading-xl,
.showcase-hero-content .showcase-subheading {
    color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) and (min-width: 769px) {
    .showcase-grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Block spacing */
    .showcase-block {
        padding: 40px 0;
    }
    
    /* Typography */
    .showcase-heading-xl {
        font-size: 36px;
    }
    
    .showcase-heading-lg {
        font-size: 28px;
    }
    
    .showcase-heading-md {
        font-size: 20px;
    }
    
    .showcase-heading-sm {
        font-size: 16px;
    }
    
    .showcase-subheading {
        font-size: 16px;
    }
    
    .showcase-text-sm {
        font-size: 13px;
    }
    
    /* Cards */
    .showcase-card {
        padding: 30px 20px;
    }
    
    .showcase-card-no-border {
        padding: 25px 15px;
        min-height: 180px;
    }
    
    /* Images */
    .showcase-image {
        height: 300px;
    }
    
    /* Flex layouts */
    .showcase-flex {
        flex-direction: column;
        gap: 30px;
    }
    
    .showcase-flex-center {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Grid layouts */
    .showcase-grid-2,
    .showcase-grid-3,
    .showcase-grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .showcase-feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Metrics */
    .showcase-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .showcase-metric {
        justify-content: flex-start;
        padding: 0;
    }
    
    .showcase-metric:not(:last-child)::after {
        display: none;
    }
    
    .showcase-metric:not(:last-child) {
        border-bottom: 1px solid var(--showcase-border-color);
        padding-bottom: 20px;
    }
    
    .showcase-metric-value-lg {
        font-size: 24px;
    }
    
    /* Hero */
    .showcase-hero-content {
        padding: 30px 20px;
    }
    
    /* Video */
    .showcase-video-box {
        max-height: 300px;
    }
    
    .showcase-feature-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    /* Icon cards */
    .showcase-icon-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .showcase-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }
    
    .showcase-icon-wrapper img {
        width: 48px;
        height: 48px;
    }
    
    .showcase-card-heading {
        font-size: 18px;
    }
    
    .showcase-card-description {
        font-size: 14px;
    }
    
    /* Flex wrap */
    .showcase-flex-wrap {
        gap: 20px;
    }
}

/* ===== Utility Classes ===== */
.showcase-text-center {
    text-align: center;
}

.showcase-text-left {
    text-align: left;
}

.showcase-mb-15 {
    margin-bottom: 15px;
}

.showcase-mb-20 {
    margin-bottom: 20px;
}

.showcase-mb-30 {
    margin-bottom: 30px;
}

.showcase-mb-40 {
    margin-bottom: 40px;
}

.showcase-mb-50 {
    margin-bottom: 50px;
}

.showcase-mt-5 {
    margin-top: 5px;
}

.showcase-mb-40 {
    margin-bottom: 40px;
}

/* ===== Pricing/Package Cards ===== */
.showcase-pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.showcase-pricing-card {
    background-color: var(--showcase-bg-card);
    border: 2px solid var(--showcase-border-color);
    border-radius: var(--showcase-border-radius);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.showcase-pricing-card-featured {
    border-color: var(--showcase-theme-color);
    border-width: 2px;
}

.showcase-pricing-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--showcase-theme-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.showcase-pricing-icon-box {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.showcase-pricing-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.showcase-pricing-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--showcase-text-primary);
    margin: 0 30px 10px 30px;
}

.showcase-pricing-description {
    font-size: 14px;
    color: var(--showcase-text-secondary);
    line-height: 1.5;
    margin: 0 30px 20px 30px;
}

.showcase-pricing-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--showcase-theme-color);
    margin: 0 30px 20px 30px;
}

.showcase-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 30px 30px 30px;
    flex: 1;
}

.showcase-pricing-feature-item {
    font-size: 13px;
    color: var(--showcase-text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.showcase-pricing-feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23D81921' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'%3E%3C/path%3E%3Cpath d='m9 11 3 3L22 4'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.showcase-pricing-card .showcase-btn {
    margin: 0 30px 30px 30px;
}

/* Button Outline Variant */
.showcase-btn-outline {
    background-color: transparent;
    color: var(--showcase-text-primary);
    border: 1px solid var(--showcase-border-color);
}

.showcase-btn-outline:hover {
    background-color: var(--showcase-bg-light);
    border-color: var(--showcase-text-secondary);
    color: var(--showcase-text-primary);
}

/* ===== Info Box (2x2 Grid) ===== */
.showcase-pricing-info-box {
    background-color: var(--showcase-bg-light);
    border: 1px solid var(--showcase-border-color);
    border-radius: var(--showcase-border-radius);
    padding: 50px;
    margin-bottom: 40px;
}

.showcase-pricing-info-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--showcase-text-primary);
    margin: 0 0 30px 0;
}

.showcase-pricing-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}

.showcase-pricing-info-item {
    position: relative;
    padding-left: 30px;
}

.showcase-pricing-info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23D81921' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'%3E%3C/path%3E%3Cpath d='m9 11 3 3L22 4'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.showcase-pricing-info-item-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--showcase-text-primary);
    margin: 0 0 8px 0;
}

.showcase-pricing-info-item-description {
    font-size: 14px;
    color: var(--showcase-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== Disclaimer Section ===== */
.showcase-pricing-disclaimer {
    text-align: center;
    padding-top: 20px;
}

.showcase-pricing-disclaimer-text {
    font-size: 14px;
    color: var(--showcase-text-secondary);
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.showcase-pricing-disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.showcase-pricing-disclaimer-item {
    font-size: 14px;
    color: var(--showcase-text-secondary);
    padding-left: 28px;
    position: relative;
}

.showcase-pricing-disclaimer-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23D81921' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'%3E%3C/path%3E%3Cpath d='m9 11 3 3L22 4'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ===== Responsive Design for Pricing ===== */
@media (max-width: 992px) {
    .showcase-pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .showcase-pricing-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .showcase-pricing-info-box {
        padding: 30px 20px;
    }
    
    .showcase-pricing-info-heading {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .showcase-pricing-disclaimer-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ===== CTA Block (Colored Background) ===== */
.showcase-cta-block {
    padding: 60px 40px;
    border-radius: var(--showcase-border-radius);
    max-width: 800px;
    margin: 40px auto;
}

.showcase-cta-block .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.showcase-cta-content {
    text-align: center;
}

.showcase-cta-heading {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.showcase-cta-description {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    margin-bottom: 30px;
}

.showcase-cta-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.showcase-cta-bullet-item {
    font-size: 16px;
    color: white;
    font-weight: 500;
    padding-left: 30px;
    position: relative;
}

.showcase-cta-bullet-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'%3E%3C/path%3E%3Cpath d='m9 11 3 3L22 4'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .showcase-cta-block {
        padding: 40px 0;
    }
    
    .showcase-cta-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .showcase-cta-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .showcase-cta-bullets {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .showcase-cta-bullet-item {
        font-size: 15px;
    }
}

/* ===== Application Cards (Grid Layout) ===== */
.showcase-applications-grid {
    display: block;
}

.showcase-applications-grid > .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0;
}

.showcase-applications-grid > .row::before,
.showcase-applications-grid > .row::after {
    display: none !important;
}

.showcase-applications-grid > .row > .block {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0;
}

.showcase-applications-grid-large {
    display: block;
}

.showcase-applications-grid-large > .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0;
}

.showcase-applications-grid-large > .row::before,
.showcase-applications-grid-large > .row::after {
    display: none !important;
}

.showcase-applications-grid-large > .row > .block {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0;
}

.showcase-application-card {
    background-color: var(--showcase-bg-card);
    border: 1px solid var(--showcase-border-color);
    border-radius: var(--showcase-border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.showcase-application-card:hover {
    border-color: #999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.showcase-application-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.showcase-application-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.showcase-application-icon-strip {
    background-color: var(--showcase-theme-light);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: var(--showcase-border-radius);
    margin-bottom: 20px;
}

.showcase-applications-grid-large .showcase-application-icon-strip {
    padding: 15px 20px;
}

.showcase-application-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.showcase-applications-grid-large .showcase-application-icon {
    width: 40px;
    height: 40px;
}

.showcase-application-content {
    padding: 0;
    flex: 1;
}

.showcase-application-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--showcase-text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.showcase-application-description {
    font-size: 14px;
    color: var(--showcase-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.showcase-application-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0 0 0;
}

.showcase-application-list-item {
    font-size: 14px;
    color: var(--showcase-text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 30px;
    position: relative;
}

.showcase-application-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23D81921' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'%3E%3C/path%3E%3Cpath d='m9 11 3 3L22 4'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

@media (max-width: 992px) and (min-width: 769px) {
    .showcase-applications-grid > .row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-applications-grid-large > .row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .showcase-applications-grid > .row,
    .showcase-applications-grid-large > .row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .showcase-application-card {
        padding: 20px;
    }
    
    .showcase-application-icon-strip {
        padding: 12px 16px;
    }
    
    .showcase-application-icon {
        width: 35px;
        height: 35px;
    }
    
    .showcase-application-content {
        padding: 20px;
    }
    
    .showcase-application-heading {
        font-size: 16px;
    }
    
    .showcase-application-description {
        font-size: 13px;
    }
}

/* ===== Project Cards (Image Carousel) ===== */
.showcase-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.showcase-projects-slider {
    position: relative;
}

.showcase-projects-slider .slick-slide {
    margin: 0 15px;
}

.showcase-projects-slider .slick-list {
    margin: 0 -15px;
}

.showcase-project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--showcase-border-radius);
    cursor: pointer;
}

.showcase-project-card-link {
    display: block;
    text-decoration: none;
}

.showcase-project-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.showcase-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-project-card:hover .showcase-project-overlay {
    opacity: 1;
}

.showcase-project-card:hover .showcase-project-image {
    transform: scale(1.05);
}

.showcase-project-overlay-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 30px;
    line-height: 1.4;
}

/* Slick Carousel Arrows */
.showcase-projects-slider .slick-prev,
.showcase-projects-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: white;
    border: 1px solid var(--showcase-border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 1;
    color: var(--showcase-text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-projects-slider .slick-prev:hover,
.showcase-projects-slider .slick-next:hover {
    background-color: var(--showcase-theme-color);
    border-color: var(--showcase-theme-color);
    color: white;
}

.showcase-projects-slider .slick-prev {
    left: -25px;
}

.showcase-projects-slider .slick-next {
    right: -25px;
}

/* Bottom Section */
.showcase-projects-bottom {
    text-align: center;
}

.showcase-projects-bottom-text {
    font-size: 16px;
    color: var(--showcase-text-secondary);
    margin: 0 0 20px 0;
}

.showcase-projects-tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.showcase-projects-tag-item {
    font-size: 14px;
    color: var(--showcase-text-secondary);
    padding-left: 26px;
    position: relative;
}

.showcase-projects-tag-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23D81921' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'%3E%3C/path%3E%3Cpath d='m9 11 3 3L22 4'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 992px) {
    .showcase-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .showcase-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-project-image {
        height: 300px;
    }
    
    .showcase-project-overlay-text {
        font-size: 16px;
        padding: 20px;
    }
    
    .showcase-projects-slider .slick-prev {
        left: 10px;
    }
    
    .showcase-projects-slider .slick-next {
        right: 10px;
    }
    
    .showcase-projects-tag-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* =====================================================
   Testimonial Quote Section
   ===================================================== */

.showcase-testimonial-quote {
    margin-top: 60px;
    padding: 40px;
    border: 1px solid var(--showcase-border-color);
    border-radius: var(--showcase-border-radius);
    background-color: var(--showcase-bg-card);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.showcase-testimonial-quote-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-testimonial-quote-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--showcase-theme-color);
}

.showcase-testimonial-quote-content {
    flex: 1;
}

.showcase-testimonial-quote-text {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    color: #333;
    margin-bottom: 30px;
}

.showcase-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.showcase-testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.showcase-testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.showcase-testimonial-author-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.showcase-testimonial-author-title {
    font-size: 14px;
    color: #666;
}

.showcase-testimonial-author-company {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .showcase-testimonial-quote {
        flex-direction: column;
        padding: 30px 20px;
        margin-top: 40px;
        gap: 20px;
    }
    
    .showcase-testimonial-quote-icon {
        width: 40px;
        height: 40px;
    }
    
    .showcase-testimonial-quote-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .showcase-testimonial-quote-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .showcase-testimonial-author-image {
        width: 50px;
        height: 50px;
    }
}

