/* ================================================================
   LOMCOS — Industries v3 (High-End Corporate Light Theme)
   ================================================================ */

:root {
    --ind-primary: #0F172A;
    --ind-accent: #2563EB;
    --ind-secondary: #7C3AED;
    --ind-muted: #64748B;
    --ind-border: #E2E8F0;
    --ind-bg-light: #F8FAFC;
}

.industries-page {
    background: #fff;
}

/* Hero Section */
.inds-hero-v3 {
    position: relative;
    padding: 180px 0 100px;
    background: #fff;
    overflow: hidden;
}

.inds-hero-v3 .mesh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.04) 0%, transparent 40%);
    z-index: 0;
}

.inds-hero-content {
    position: relative;
    z-index: 1;
}

.corporate-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: #fff;
    border: 1px solid var(--ind-border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--ind-primary);
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: var(--ind-accent);
    border-radius: 50%;
    position: relative;
}

.pulsing-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--ind-accent);
    border-radius: 50%;
    opacity: 0.4;
    animation: ind-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ind-ping {

    75%,
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ind-primary);
    margin-bottom: 25px;
    letter-spacing: -0.04em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--ind-accent), var(--ind-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--ind-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid Section */
.inds-grid-section {
    padding: 100px 0;
    background: var(--ind-bg-light);
    border-top: 1px solid var(--ind-border);
}

.industry-card-v3 {
    background: #fff;
    border: 1px solid var(--ind-border);
    border-radius: 32px;
    padding: 45px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.industry-card-v3:hover {
    transform: translateY(-12px);
    border-color: var(--ind-accent);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.ind-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.industry-card-v3:hover .ind-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Icon Color Themes */
.ind-icon.blue {
    background: #EEF2FF;
    color: #4338CA;
}

.ind-icon.purple {
    background: #F5F3FF;
    color: #6D28D9;
}

.ind-icon.rose {
    background: #FFF1F2;
    color: #E11D48;
}

.ind-icon.amber {
    background: #FFFBEB;
    color: #D97706;
}

.ind-icon.teal {
    background: #F0FDFA;
    color: #0D9488;
}

.ind-icon.slate {
    background: #F8FAFC;
    color: #334155;
}

.ind-icon.violet {
    background: #EDE9FE;
    color: #7C3AED;
}

.ind-icon.orange {
    background: #FFF7ED;
    color: #EA580C;
}

.ind-icon.pink {
    background: #FDF2F8;
    color: #DB2777;
}

.industry-card-v3 h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ind-primary);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.industry-card-v3 p {
    font-size: 1rem;
    color: var(--ind-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.ind-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ind-accent);
    background: #EFF6FF;
    padding: 6px 16px;
    border-radius: 50px;
}

/* Bottom CTA */
.inds-cta-v3 {
    padding: 100px 0 150px;
    background: #fff;
}

.cta-inner {
    background: linear-gradient(135deg, var(--ind-primary) 0%, #000 100%);
    border-radius: 48px;
    padding: 80px 100px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.cta-inner p {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.corporate-btn-primary {
    background: var(--ind-accent);
    color: #fff;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.05em;
    display: inline-block;
    transition: all 0.3s;
}

.corporate-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    color: #fff;
}

/* Animations */
.pulsate {
    animation: btn-pulsate 2s infinite;
}

@keyframes btn-pulsate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .cta-inner {
        padding: 60px;
        text-align: center;
    }

    .col-lg-4.text-lg-end {
        margin-top: 40px;
    }

    .inds-hero-v3 {
        padding-top: 140px;
    }
}

@media (max-width: 575px) {
    .industry-card-v3 {
        padding: 35px;
    }

    .cta-inner {
        padding: 40px 25px;
    }
}