/* ==========================================================================
       1. GLOBAL ARCHITECTURE & SYSTEM VARIABLES
       ========================================================================== */
:root {
    /* Brand & Accent Color System */
    --brand-blue: #CA2284;
    --brand-dark: #0f172a;
    --accent-color: #e31e24;
    /* Corporate brand red accent */

    /* Text Color Palette */
    --text-dark: #111625;
    --text-slate: #475569;
    --text-muted: #636e72;

    /* Layer Backgrounds & Surfacing */
    --card-bg: #ffffff;
    --surface-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
.bg-footer-matrix
Specificity: (0,1,0)
 {

    /* Interactive States & Shadows */
    --primary-glow: rgba(0, 102, 255, 0.15);
    --shadow-premium: 0 20px 40px rgba(17, 22, 37, 0.08);
    --shadow-widget: 0 10px 25px rgba(0, 0, 0, 0.08);

    /* Structural Rules */
    --radius-lg: 16px;
    --radius-sm: 8px;

    /* Motion & Animation Performance curves */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-curve: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
       2. HERO BANNER SECTION (CAROUSEL OVERLAYS)
       ========================================================================== */
.banner-section-two {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banner-section-two .carousel-item {
    height: 550px;
    min-height: 450px;
    position: relative;
}

.banner-section-two .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner-content-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #ffffff;
    text-align: center;
}

.banner-content-layer h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-in-out forwards;
}

/* ==========================================================================
       3. STRUCTURAL CONTENT GRID SYSTEM ("WHY CHOOSE US")
       ========================================================================== */
.why-choose-displayone .works-single.style-two {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-choose-displayone .works-single.style-two .work-number {
    flex-shrink: 0;
    margin-bottom: 0;
    /* Prevents column stacking from legacy architectures */
}

.why-choose-displayone .works-single.style-two .work-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.why-choose-displayone .works-single.style-two .work-content h5 a:hover {
    color: var(--brand-blue);
}

/* ==========================================================================
       4. ABOUT DISPLAYONE SHOWCASE
       ========================================================================== */
.premium-about-displayone {
    padding: 100px 0;
    
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.about-content-block {
    padding-right: 20px;
}

.premium-about-displayone .common-sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.premium-about-displayone .main-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.premium-about-displayone .description-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-slate);
}

.custom-benefits-list {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
}

.custom-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
}

.custom-benefits-list li .icon-indicator {
    color: var(--brand-blue);
    font-size: 18px;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.custom-benefits-list li:hover .icon-indicator {
    transform: scale(1.2);
}

.btn-premium-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--brand-dark);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-curve);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.btn-premium-action:hover {
    background-color: var(--brand-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.btn-premium-action .icon-arrow {
    transition: transform 0.3s ease;
}

.btn-premium-action:hover .icon-arrow {
    transform: translateX(4px);
}

/* Hardware Showcase Graphics */
.showcase-visual-wrapper {
    position: relative;
    padding: 30px 40px 40px 0;
}

.hardware-showcase-frame {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-curve);
}

.screen-matrix-svg {
    border-radius: var(--radius-lg);
    transition: var(--transition-curve);
}

.led-screen-surface {
    transition: filter 0.5s ease;
}

.showcase-visual-wrapper:hover .hardware-showcase-frame {
    transform: translateY(-6px) scale(1.01);
}

/* Floating HUD Dashboard Widgets */
.floating-status-alert {
    position: absolute;
    top: 60px;
    left: -25px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 40px;
    box-shadow: var(--shadow-widget);
    animation: floatingWidgetY 4s ease-in-out infinite alternate;
}

.pulse-dot-indicator {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #10b981;
    border-radius: 50%;
    animation: statusPulse 1.8s infinite ease-out;
}

.status-alert-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
}

.floating-metric-card {
    position: absolute;
    bottom: 60px;
    right: -20px;
    z-index: 3;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    width: 240px;
    box-shadow: var(--shadow-widget);
    animation: floatingWidgetY 4.5s ease-in-out infinite alternate-reverse;
}

.metric-card-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-trend-graphic {
    height: 35px;
    opacity: 0.85;
}

.trend-img {
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 4px 6px rgba(0, 102, 255, 0.2));
}

.metric-counter {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
}

.metric-subtext {
    font-size: 13px;
    font-weight: 500;
    color: #10b981;
    margin: 4px 0 0 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
       5. PREMIUM PRODUCT DISPLAY CATEGORIES
       ========================================================================== */
.premium-display-categories {
    padding: 80px 0;
    background: var(--surface-light);
    overflow: hidden;
}

.premium-display-categories .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

.section-header .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header .sub-title i {
    font-size: 12px;
    animation: pulseArrows 2s infinite;
}

.section-header .main-title {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.carousel-container-relative {
    position: relative;
    padding: 0 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Premium Product Card Architecture */
.category-card {
    background: var(--card-bg);
    border: 1px solid #eaeef3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: calc(var(--card-index, 1) * 0.15s);
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 38px var(--primary-glow), var(--shadow-premium);
    border-color: rgba(0, 102, 255, 0.2);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    /* Fixed 3:2 Ratio */
    overflow: hidden;
    background: #eef1f6;
}

.card-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.category-card:hover .card-image-wrapper img {
    transform: scale(1.08) rotate(0.5deg);
}

.category-card:hover .image-overlay {
    opacity: 1;
}

.card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-title {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.category-card:hover .card-title {
    color: var(--brand-blue);
}

.card-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Call-to-Action Controls */
.card-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: auto;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition-smooth);
}

.card-action-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-blue);
    transition: var(--transition-smooth);
}

.card-action-btn i {
    transition: transform 0.3s ease;
}

.category-card:hover .card-action-btn {
    color: var(--brand-blue);
}

.category-card:hover .card-action-btn::after {
    width: 100%;
}

.category-card:hover .card-action-btn i {
    transform: translateX(6px);
}

.highlight-btn {
    color: var(--accent-color);
}

/* Swiper Slider Layout Nav UI */
.swiper-nav-prev,
.swiper-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #eaeef3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.2s ease;
    z-index: 10;
}

.swiper-nav-prev {
    left: -10px;
}

.swiper-nav-next {
    right: -10px;
}

.swiper-nav-prev:hover,
.swiper-nav-next:hover {
    background: var(--text-dark);
    color: #ffffff;
    border-color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Layout & Feature Element Spacing */
/* Layout & Feature Element Spacing */
.why-choose-displayone .works-single.style-two {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.why-choose-displayone .works-single.style-two:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.why-choose-displayone .work-number .icon-indicator {
    font-size: 14px;
    font-weight: 700;
    font-family: monospace;
    color: var(--brand-blue);
    background: rgba(0, 102, 255, 0.08);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

.why-choose-displayone .work-content h5 a {
    color: var(--brand-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.why-choose-displayone .work-content h5 a:hover {
    color: var(--brand-blue);
}

.why-choose-displayone .work-content p {
    margin-top: 6px;
    font-size: 14px;
}



/* ==========================================================================
   7. ENTERPRISE KNOWLEDGE BASE / BLOG MATRIX
   ========================================================================== */
.premium-blog-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.blog-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.blog-header-wrapper .section-title-block {
    max-width: 600px;
}

.blog-header-wrapper .description-text {
    margin-top: 12px;
    margin-bottom: 0;
}

/* Premium Card Architecture */
.premium-blog-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.premium-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: rgba(0, 102, 255, 0.15);
}

/* Media Sub-Layer */
.blog-media-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Clean 16:9 Cinema Aspect Ratio */
    background: #f1f5f9;
    overflow: hidden;
}

.blog-media-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.premium-blog-card:hover .blog-media-wrapper img {
    transform: scale(1.05);
}

/* Technical Domain Tags */
.blog-tag-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--brand-dark);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(15, 23, 42, 0.85);
}

/* Content Interface Body */
.blog-body-context {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-timeline {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-slate);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--brand-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.premium-blog-card:hover .blog-card-title a {
    color: var(--brand-blue);
}

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.read-more-link {
    font-size: 14px;
    padding-bottom: 2px;
    margin-top: auto; /* Pushes button cleanly to the bottom grid baseline */
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM OVERRIDES
   ========================================================================== */
@media (max-width: 991px) {
    .blog-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
}



/* ==========================================================================
   8. B2B TESTIMONIAL DISPLAY CARDS
   ========================================================================== */
.premium-testimonials-section {
    padding: 100px 0;
    background-color: var(--surface-light);
}

.premium-testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: var(--transition-smooth);
}

.premium-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(0, 102, 255, 0.15);
}

/* User Identity Blocks */
.testimonial-upper-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.client-avatar-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
    flex-shrink: 0;
}

.client-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-meta-details h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 4px 0;
}

.client-meta-details h6 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-slate);
    margin: 0;
}

/* Rating Sub-Metrics */
.rating-badge-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars-list {
    display: flex;
    gap: 3px;
    color: #f59e0b; /* Executive Warm Gold Star Tint */
    font-size: 12px;
}

.numerical-rating {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-dark);
}

/* Quote Layout */
.testimonial-quote-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

/* ==========================================================================
   PRODUCTION BACKGROUND HIERARCHY MATRIX
   ========================================================================== */

/* Dark Technical Deep Matrix */
.bg-matrix-slate {
    background-color: #0b0f19 !important;
    padding: 100px 0;
}

.font-neon-tint {
    color: #38bdf8 !important;
}

.text-slate-300 {
    color: #cbd5e1 !important;
}

.text-slate-200 span {
    color: #e2e8f0 !important;
}

.text-neon-blue {
    color: #CA2284 !important;
}

/* Premium Light Architectural Backgrounds */
.bg-surface-light {
    background-color: #ffffff !important;
    padding: 100px 0;
}

/* Muted Modern Slate (Breaks up white grids seamlessly) */
.bg-surface-muted {
    background-color: #f8fafc !important;
    padding: 100px 0;
}

/* Technical Image/Blueprint Pattern Overlay */
.bg-blueprint-pattern {
    position: relative;
    background-color: #090d16 !important;
    padding: 100px 0;
    overflow: hidden;
}

/* High-tech structural outline styling for image holders */
.hardware-showcase-frame.spec-border {
    border: 1px solid rgba(56, 189, 248, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.text-neon-cyan {
    color: #22d3ee !important;
}

/* Component Level Shadow Enhancements */
.standard-shadow {
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.03), 0 2px 4px -2px rgba(15, 23, 42, 0.03) !important;
}

.premium-testimonial-card.standard-shadow:hover,
.premium-blog-card.standard-shadow:hover {
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08) !important;
}


/* ==========================================================================
   9. ENTERPRISE BASELINE FOOTER STRUCTURE
   ========================================================================== */
.bg-footer-matrix {
    background-color: #070a12 !important; /* Deep Premium Low-Light Baseline */
    padding-top: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 5px;
}

.footer-top-logo img {
    max-height: 120px;
    object-fit: contain;
}

/* Sophisticated Social Tints */
.social-media ul {
    display: flex;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-media ul li a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.social-media ul li a:hover {
    background: #CA2284;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

/* Widget Text & Structure */
.footer-widget-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-widget-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0;
}

/* Formatted Links List */
.footer-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-list li {
    margin-bottom: 12px;
}

.footer-widget-list li a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-widget-list li a:hover {
    color: #CA2284;
    padding-left: 2px;
}

/* Technical Language Dropdown Select Patch */
.tech-select {
    background-color: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #cbd5e1 !important;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 6px;
    outline: none;
    width: 100%;
}

/* Newsletter Input Action Group Components */
.input-action-group {
    display: flex;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 4px;
    overflow: hidden;
}

.input-action-group input[type="email"] {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.input-action-group input[type="email"]::placeholder {
    color: #64748b;
}

.btn-tech-subscribe {
    background: #CA2284;
    color: #ffffff;
    border: none;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.btn-tech-subscribe:hover {
    background: #0052cc;
}

.checkbox-input label {
    font-size: 12px;
    color: #64748b;
    margin-left: 6px;
    cursor: pointer;
}

/* Dynamic Contact Area */
.footer-contact-info a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact-info a i {
    color: #CA2284;
    margin-top: 3px;
    font-size: 14px;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

/* Copyright Baseline Metrics */
.footer-copyright-baseline {
    margin-top: -75px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.vendor-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
}

.footer-terms-links a {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-terms-links a:hover {
    color: #ffffff;
}

.footer-terms-links .splitter {
    color: rgba(255, 255, 255, 0.05);
    margin: 0 8px;
}

/* Responsive Structural Overrides */
@media (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }
    .footer-copyright-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
       6. MICRO-INTERACTION KEYFRAMES & RESPONSIVE ENGINE
       ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseArrows {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: translateX(4px);
        opacity: 1;
    }
}

@keyframes floatingWidgetY {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-12px);
    }
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

/* Adaptive Breakpoints */
@media (max-width: 991px) {
    .premium-about-displayone {
        padding: 60px 0;
    }

    .about-content-block {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .premium-about-displayone .main-heading {
        font-size: 32px;
    }

    .showcase-visual-wrapper {
        padding: 30px 0 0 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-status-alert {
        left: 10px;
        top: 20px;
    }

    .floating-metric-card {
        right: 10px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .premium-display-categories {
        padding: 50px 0;
    }

    .section-header .main-title {
        font-size: 28px;
    }

    .category-grid {
        gap: 20px;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}