/* New Vision Premium Homepage Styles - Light & Professional Theme */

/* --- General & Variables --- */
:root {
    /* New Vision Brand Colors */
    --brand-primary: #0d2d68;
    --brand-success: #11a976;
    --brand-info: #2473be;
    --brand-accent: #00e5fa;
    --brand-dark: #0a0a0c;
    
    /* Applied Colors */
    --bg-light: #ffffff;
    --bg-light-accent: #f8f9fa;
    --primary-accent: var(--brand-primary);
    --secondary-accent: var(--brand-accent);
    --text-dark: var(--brand-dark);
    --text-muted: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(13, 45, 104, 0.1);
    --shadow-color: rgba(13, 45, 104, 0.15);
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.home-main {
    overflow-x: hidden;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Section Base --- */
.home-main section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-animation 5s ease infinite;
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
    width: 100vw;
    min-height: 100vh;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(25deg, rgba(0, 82, 212, 0.6), rgba(5, 15, 25, 0.8)); /* Branded dark gradient overlay */
    z-index: 1;
}

.hero-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 60px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--shadow-color);
    max-width: 800px;
    position: relative; /* Ensure content sits above the overlay */
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-animation 4s ease infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions .btn {
    margin: 0 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-actions .btn .lucide {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px var(--shadow-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    transform: translateY(-3px);
}

.hero-actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

/* --- Trust Section --- */
/* Removed old trust section + icon list styles in favor of the new premium logo slider */
/* .trust-section { ... } */
/* .trust-title { ... } */
/* .trust-logos { ... } */
/* .trust-logos .lucide { ... } */
/* .trust-logos .lucide:hover { ... } */

/*
--- Trust Indicators / Logo Slider ---
*/

.trust-section {
    background-color: #f8f9fa; /* A very light grey for subtle separation */
    padding: 60px 0;
    border-top: 1px solid var(--glass-border); /* fixed undefined --section-border */
    border-bottom: 1px solid var(--glass-border); /* fixed undefined --section-border */
}

.trust-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Trust Indicators / Logo Slider (Seamless Marquee) --- */
.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    direction: ltr;
    background: var(--bg-light);
    padding: 30px 0;
}

.logo-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    animation: logo-marquee 40s linear infinite;
    will-change: transform;
    min-width: 100%;
    align-items: center;
}

/* Unified height for all images */
.logo-slider .slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    max-width: 200px;
    height: 120px;
    flex-shrink: 0;
    margin: 0;
    padding: 0 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-slider .slide:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Adjust images to have unified height */
.logo-slider .slide img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto 8px auto;
    display: block;
    padding: 0;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-slider .slide:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Company name */
.trusted-company-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 4px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Remove gap between iterations */
.logo-slider .slide.no-gap {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.logo-track .logo-slider .slide.no-gap + .logo-slider .slide {
    margin-left: 0 !important;
}

@keyframes logo-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause animation on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Responsive slider improvements */
@media (max-width: 768px) {
    .logo-slider .slide {
        min-width: 100px;
        max-width: 150px;
        height: 100px;
        padding: 0 10px;
    }
    
    .logo-slider .slide img {
        max-height: 60px;
    }
    
    .trusted-company-name {
        font-size: 0.75rem;
    }
    
    .logo-track {
        gap: 2rem;
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .logo-slider .slide {
        min-width: 80px;
        max-width: 120px;
        height: 90px;
        padding: 0 8px;
    }
    
    .logo-slider .slide img {
        max-height: 50px;
    }
    
    .trusted-company-name {
        font-size: 0.7rem;
    }
    
    .logo-track {
        gap: 1.5rem;
        animation-duration: 25s;
    }
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    overflow: hidden;
    word-break: break-word;
    min-width: 0;
    min-height: 100%;
    box-sizing: border-box;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
    background: var(--bg-light);
}

.feature-icon {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary-accent);
}

.feature-icon .lucide {
    width: 48px;
    height: 48px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Industries Section --- */
.industries-section {
    background-color: var(--bg-light-accent);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.industry-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-accent);
    color: var(--primary-accent);
}

.industry-icon .lucide {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.industry-card:hover .industry-icon .lucide {
    color: var(--primary-accent);
}

.industry-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.industry-card:hover h4 {
    color: var(--primary-accent);
}

/* --- Tech Stack Section --- */
.techstack-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
}

.tech-icon .lucide {
    width: 64px;
    height: 64px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.tech-icon .lucide:hover {
    color: var(--primary-accent);
    transform: translateY(-5px) scale(1.1);
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--bg-light);
    margin-bottom: 30px;
}

.cta-btn {
    background: white;
    color: var(--primary-accent);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contact section styles for homepage */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}
.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--text-dark, #212529); }
.contact-list .lucide { width: 20px; height: 20px; color: var(--primary-accent); }

.contact-form { background: #fff; border: 1px solid #e9ecef; border-radius: 12px; padding: 24px; box-shadow: 0 8px 32px rgba(0, 82, 212, 0.08); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-row + .form-row { margin-top: 16px; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-weight: 600; margin-bottom: 6px; color: #343a40; }
.form-field input, .form-field textarea { border: 1px solid #dee2e6; border-radius: 8px; padding: 12px 14px; font-size: 15px; transition: border-color .2s, box-shadow .2s; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--primary-accent); box-shadow: 0 0 0 3px rgba(0, 82, 212, 0.15); }
.error-msg { color: #dc3545; font-size: 12px; min-height: 16px; margin-top: 4px; }
.form-actions { display: flex; align-items: center; gap: 16px; }
.form-status { margin: 0; font-size: 14px; color: #198754; }

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1.4;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 30px 40px;
    }
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.4;
    }
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .tech-icon .lucide {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575px) {
    body:not([class*="elementor-page-"]) .site-main.home-main {
        padding-inline-start: 0 !important;
        padding-inline-end: 0 !important;
    }
}

@media (max-width: 480px) {
    .home-main section {
        padding: 60px 0;
    }
    .hero-content {
        padding: 20px;
        border-radius: 10px;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .trust-logos {
        flex-wrap: wrap;
        gap: 20px;
    }
}

body:not([class*="elementor-page-"]) .site-main.home-main {
    max-width: 100% !important;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
}

/* ========================================
   PREMIUM CAPABILITIES SECTION
   ======================================== */

.capabilities-premium-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.capabilities-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(13, 45, 104, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(13, 45, 104, 0.08), rgba(0, 229, 250, 0.08));
    border: 1px solid rgba(13, 45, 104, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-badge.gradient {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: #fff;
    border: none;
}

.section-badge.dark {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title-xl {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 20px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-info) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title-xl.white {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.9);
}

.section-header.centered {
    text-align: center;
}

.capabilities-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.capability-card-premium {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(13, 45, 104, 0.08);
    cursor: pointer;
}

.capability-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.capability-card-premium:hover::before {
    transform: scaleX(1);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 250, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.capability-card-premium:hover .card-glow {
    opacity: 1;
}

.capability-card-premium.featured {
    background: linear-gradient(135deg, rgba(13, 45, 104, 0.03) 0%, rgba(0, 229, 250, 0.03) 100%);
    border-color: rgba(13, 45, 104, 0.15);
}

.capability-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 8px 20px rgba(13, 45, 104, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.capability-card-premium:hover .capability-icon-wrapper {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(13, 45, 104, 0.25);
}

.capability-icon-wrapper .capability-icon {
    width: 35px;
    height: 35px;
    color: #fff;
}

.capability-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px;
    line-height: 1.3;
}

.capability-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 20px;
}

.capability-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(13, 45, 104, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.capability-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--brand-primary);
    transition: transform 0.3s ease;
}

.capability-card-premium:hover .capability-arrow {
    background: var(--brand-primary);
}

.capability-card-premium:hover .capability-arrow svg {
    color: #fff;
    transform: translateX(3px);
}

.capability-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 45, 104, 0.15);
    border-color: rgba(13, 45, 104, 0.2);
}

/* ========================================
   INTERACTIVE SOLUTIONS SECTION
   ======================================== */

.solutions-interactive-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
    position: relative;
    overflow: hidden;
}

.solutions-interactive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 229, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(17, 169, 118, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.solutions-interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.solution-card-interactive {
    perspective: 1000px;
    height: 400px;
}

.solution-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.solution-card-interactive:hover .solution-card-inner {
    transform: rotateY(180deg);
}

.solution-front,
.solution-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.solution-front {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.solution-back {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    transform: rotateY(180deg);
    border: 2px solid rgba(13, 45, 104, 0.1);
}

.solution-icon-large {
    width: 80px;
    height: 80px;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.solution-card-interactive.primary .solution-icon-large {
    color: var(--brand-primary);
}

.solution-card-interactive.secondary .solution-icon-large {
    color: var(--brand-info);
}

.solution-card-interactive.accent .solution-icon-large {
    color: var(--brand-accent);
}

.solution-front h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.solution-front p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

.solution-back h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 20px;
}

.solution-back > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 25px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 500;
}

.solution-features li svg {
    width: 18px;
    height: 18px;
    color: var(--brand-success);
    flex-shrink: 0;
}

/* ========================================
   MODERN INDUSTRIES SECTION
   ======================================== */

.industries-modern-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
    position: relative;
    overflow: hidden;
}

.industries-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.industries-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.industry-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.industry-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 250, 0.1) 0%, rgba(17, 169, 118, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card-modern:hover::before {
    opacity: 1;
}

.industry-bg-icon {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    transition: all 0.6s ease;
}

.industry-card-modern:hover .industry-bg-icon {
    transform: scale(1.2) rotate(15deg);
    color: rgba(255, 255, 255, 0.08);
}

.industry-icon-modern {
    width: 60px;
    height: 60px;
    color: var(--brand-accent);
    margin: 0 auto 20px;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.industry-card-modern:hover .industry-icon-modern {
    transform: scale(1.15);
    color: #fff;
}

.industry-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
}

.industry-card-modern p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}

.industry-stats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.industry-stats span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brand-accent);
}

.industry-card-modern:hover .industry-stats {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--brand-accent);
}

.industry-card-modern:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .section-title-xl {
        font-size: 3rem;
    }
    
    .container-wide {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .section-title-xl {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .capabilities-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .solutions-interactive-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-card-interactive {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .capabilities-premium-section,
    .solutions-interactive-section,
    .industries-modern-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title-xl {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .capabilities-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .capability-card-premium {
        padding: 30px 25px;
    }
    
    .solution-card-interactive {
        height: 350px;
    }
    
    .solution-front,
    .solution-back {
        padding: 30px;
    }
    
    .industries-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container-wide {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .section-title-xl {
        font-size: 1.75rem;
    }
    
    .capability-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .capability-icon-wrapper .capability-icon {
        width: 30px;
        height: 30px;
    }
    
    .capability-title {
        font-size: 1.25rem;
    }
    
    .solution-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .solution-front h3 {
        font-size: 1.5rem;
    }
}
