    .counter-card-sm {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px; 
    text-align: left;
}
.counter-card-sm:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}
.icon-box-sm {
    width: 52px;
    height: 52px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.counter-card-sm:hover .icon-box-sm {
    background: #38bdf8;
}
.icon-box-sm i {
    font-size: 20px;
    color: #38bdf8;
    transition: all 0.3s ease;
}
.counter-card-sm:hover .icon-box-sm i {
    color: #0f172a;
}
.stat-content {
    display: flex;
    flex-direction: column;
}
.stat-number-sm {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}
.stat-number-sm::after {
    content: '+';
    font-size: 20px;
    color: var(--primary-accent);
    margin-left: 2px;
    font-weight: 500;
}
.stat-label-sm {
    color: #94a3b8;
    font-size: 12px; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0 0 0;
}
    
    /* ========================================================= */
    /* COMPACT & RESPONSIVE EYE-CATCHING FEATURES SECTION        */
    /* ========================================================= */

    @keyframes compactLaserScan {
        0% { top: -100%; opacity: 0; }
        50% { opacity: 0.8; }
        100% { top: 200%; opacity: 0; }
    }

    @keyframes compactPulseGlow {
        0%, 100% { opacity: 0.3; transform: scale(1); }
        50% { opacity: 0.6; transform: scale(1.1); }
    }

    /* Main Section Container - Framework Independent */
    .compact-feature-section {
        position: relative !important;
        padding: 40px 15px !important; /* Reduced vertical footprint */
        background: #080c14 !important;
        overflow: hidden !important;
        perspective: 1000px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Ambient Glowing Orbs */
    .compact-bg-orb {
        position: absolute !important;
        border-radius: 50% !important;
        filter: blur(60px) !important;
        pointer-events: none !important;
        z-index: 0 !important;
        animation: compactPulseGlow 6s infinite ease-in-out !important;
    }
    .orb-1 {
        width: 200px !important; height: 200px !important;
        background: rgba(56, 189, 248, 0.15) !important;
        top: -30px !important; left: -30px !important;
    }
    .orb-2 {
        width: 220px !important; height: 220px !important;
        background: rgba(253, 190, 51, 0.12) !important;
        bottom: -40px !important; right: -30px !important;
        animation-delay: -3s !important;
    }

    /* 100% Responsive Framework-Free Grid System */
    .compact-feature-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 20px !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        position: relative !important;
        z-index: 1 !important;
        box-sizing: border-box !important;
    }

    /* Compact Glass Card Body */
    .compact-feature-card {
        position: relative !important;
        background: rgba(15, 23, 42, 0.75) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 16px !important;
        padding: 24px 20px !important; /* Scaled down padding */
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        overflow: hidden !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-sizing: border-box !important;
        cursor: pointer !important;
    }

    /* Laser Scanning Effect */
    .compact-feature-card::before {
        content: '' !important;
        position: absolute !important;
        top: -100% !important;
        left: 0 !important;
        width: 100% !important;
        height: 60% !important;
        background: linear-gradient(180deg, transparent 0%, rgba(56, 189, 248, 0.25) 50%, transparent 100%) !important;
        pointer-events: none !important;
        z-index: 2 !important;
    }

    .compact-feature-card:hover::before {
        animation: compactLaserScan 1.6s infinite linear !important;
    }

    /* Hover State Elevate & Glow */
    .compact-feature-card:hover {
        transform: translateY(-8px) scale(1.01) !important;
        background: rgba(30, 41, 59, 0.9) !important;
        border-color: rgba(56, 189, 248, 0.35) !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(56, 189, 248, 0.15) !important;
    }

    /* Background Watermark Number */
    .compact-card-watermark {
        position: absolute !important;
        bottom: -15px !important;
        right: 12px !important;
        font-size: 80px !important; /* Scaled down */
        font-weight: 900 !important;
        line-height: 1 !important;
        color: rgba(255, 255, 255, 0.03) !important;
        font-family: system-ui, -apple-system, sans-serif !important;
        user-select: none !important;
        transition: all 0.4s ease !important;
        z-index: 0 !important;
    }

    .compact-feature-card:hover .compact-card-watermark {
        color: rgba(56, 189, 248, 0.08) !important;
        transform: translateY(-5px) !important;
    }

    /* Icon Box Layout */
    .compact-card-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-bottom: 14px !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .compact-card-title {
        color: #ffffff !important;
        font-size: 18px !important; /* Compact header size */
        font-weight: 700 !important;
        margin: 0 !important;
        letter-spacing: 0.5px !important;
    }

    .compact-icon-badge {
        width: 44px !important;
        height: 44px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: #fdbe33 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        transition: all 0.4s ease !important;
    }

    .compact-feature-card:hover .compact-icon-badge {
        background: #fdbe33 !important;
        color: #080c14 !important;
        transform: rotate(10deg) scale(1.1) !important;
        box-shadow: 0 6px 15px rgba(253, 190, 51, 0.3) !important;
    }

    .compact-card-text {
        color: #94a3b8 !important;
        font-size: 13.5px !important; /* Readable, compact copy */
        line-height: 1.6 !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }

    /* Bottom Animated Accent Line */
    .compact-bottom-bar {
        height: 2px !important;
        width: 30px !important;
        background: rgba(255, 255, 255, 0.15) !important;
        border-radius: 2px !important;
        margin-top: 18px !important;
        transition: all 0.4s ease !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .compact-feature-card:hover .compact-bottom-bar {
        width: 100% !important;
        background: linear-gradient(90deg, #fdbe33, #38bdf8) !important;
    }


    :root {
        --primary-accent: #1e293b;
        --dark-bg: #0f172a;
        --card-shadow: 0 10px 30px rgba(0,0,0,0.06);
        --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        --text-muted: #64748b;
        --heading-color: #1e293b;
    }

    /* Hero Section */
    .hero-video {
        width: 100%;
        height: 75vh;
        object-fit: cover;
    }
    .carousel-caption {
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
        bottom: 0;
        left: 0;
        right: 0;
        padding-bottom: 80px;
    }
    .carousel-caption h1 {
        font-size: 3.5rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    }
    .carousel-caption p {
        font-size: 1.5rem;
        font-weight: 300;
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    }

    /* Features Cards Grid */
    .feature {
        padding: 80px 0 !important;
    }
    .feature-card {
        position: relative;
        border: none !important;
        border-radius: 16px !important;
        box-shadow: var(--card-shadow) !important;
        overflow: hidden !important;
        background: #ffffff !important;
        transition: var(--transition-smooth) !important;
        z-index: 1;
        padding: 2px;
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(
            from 0deg, 
            transparent 20%, 
            var(--primary-accent) 40%, 
            #38bdf8 60%, 
            transparent 80%
        );
        animation: rotateBorder 4s linear infinite;
        z-index: -2;
    }
    
    .feature-card::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        background: #ffffff;
        border-radius: 14px;
        z-index: -1;
        transition: var(--transition-smooth);
    }

    @keyframes rotateBorder {
        100% {
            transform: rotate(360deg);
        }
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
    }
    .feature-card .card-title {
        color: var(--heading-color) !important;
        font-size: 22px !important;
        font-weight: 600 !important;
        position: relative;
        padding-bottom: 10px;
    }
    .feature-card .card-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: var(--primary-accent);
        border-radius: 2px;
    }

    /* What's New / Blog Styling */
    .blog-item {
        background: #fff;
        border-radius: 12px !important;
        box-shadow: var(--card-shadow);
        transition: var(--transition-smooth);
        border: 1px solid #f1f5f9;
    }
    .blog-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px rgba(0,0,0,0.1);
    }

    /* Testimonials Structure */
    .testimonial-box {
        border-radius: 16px !important;
        box-shadow: var(--card-shadow) !important;
        transition: var(--transition-smooth);
        border: 1px solid #f1f5f9;
    }
    .testimonial-box:hover {
        transform: scale(1.02);
    }

    /* ========================================================= */
    /* FORCE HORIZONTAL SLICK CAROUSEL FIX FOR CUSTOMER LOGOS    */
    /* ========================================================= */
    .customer-logos-wrapper {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .customer-logos {
        display: block !important;
        width: 100%;
        margin: 0 auto;
    }

    .customer-logos .slick-list {
        overflow: hidden !important;
        position: relative !important;
        display: block !important;
        margin: 0 -10px;
    }

    .customer-logos .slick-track {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    .customer-logos .slick-slide {
        height: auto !important;
        float: left !important;
        display: block !important;
        outline: none !important;
        padding: 0 10px !important;
    }

    .customer-logos .logo-card {
        display: flex !important;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        height: 130px;
        border-radius: 12px;
        border: 1px solid #f1f5f9;
        box-shadow: var(--card-shadow);
        transition: var(--transition-smooth);
        padding: 15px 20px;
    }

    .customer-logos .logo-card:hover {
        transform: translateY(-5px);
    }

    .customer-logos .logo-card img {
        max-height: 80px;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    /* Responsive adjustments */
    @media (max-width: 991.98px) {
        .hero-video { height: 50vh; }
        .carousel-caption h1 { font-size: 2.2rem; }
        .carousel-caption p { font-size: 1.2rem; }
        .feature { padding: 50px 0 !important; }
    }
    @media (max-width: 575.98px) {
        .carousel-caption h1 { font-size: 1.8rem; }
        .carousel-caption p { font-size: 1.0rem; }
        .counter-card-sm { flex-direction: column; text-align: center; }
        .counter-card-sm .stat-content { text-align: center; }
    }
