/* ============================================================
   INDUSTRY SUB-PAGES (Shared Styles)
   ============================================================ */

/* --- Hero Section --- */
.industry-hero {
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #070d1b;
}
.industry-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}
.industry-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 13, 27, 0.85) 0%, rgba(7, 13, 27, 0.4) 100%);
    z-index: 1;
}
.industry-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.industry-hero .badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    background: rgba(0, 229, 255, 0.12);
    color: #00e5ff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 229, 255, 0.15);
}
.industry-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #00e5ff 60%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(0, 229, 255, 0.15));
}
.industry-hero p {
    font-size: 17px;
    color: #e2e8f0;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}
.industry-hero p strong {
    color: #ffffff;
}

/* ============================================================
   TITLE SECTION (After Our Expertise)
   ============================================================ */
.industry-title-section {
    padding: 70px 20px 60px;
    background: radial-gradient(circle at center, #0f2240 0%, #070d1b 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}
.industry-title-section .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.industry-title-section .title-content .section-subtitle {
    color: #00e5ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}
.industry-title-section .title-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}
.industry-title-section .title-content p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.industry-title-section .title-content p strong {
    color: #ffffff;
}

/* --- Services Grid (Niche Cards) --- */
.industry-services {
    padding: 80px 20px 100px;
    background: #070d1b;
}
.industry-services .container {
    max-width: 1200px;
    margin: 0 auto;
}
.industry-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}
.industry-services .section-header .subtitle {
    color: #00e5ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}
.industry-services .section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.industry-services .section-header p {
    color: #94a3b8;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.industry-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.industry-service-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 28px 30px;
    border: 1px solid rgba(0, 229, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}
.industry-service-card:hover {
    transform: translateY(-8px);
    background: rgba(23, 34, 59, 0.9);
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}
.industry-service-card .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 229, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #00e5ff;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}
.industry-service-card:hover .icon-wrapper {
    background: rgba(0, 229, 255, 0.18);
    transform: scale(1.05);
}
.industry-service-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.industry-service-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.industry-service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00e5ff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.industry-service-card .learn-more i {
    transition: transform 0.3s ease;
}
.industry-service-card:hover .learn-more i {
    transform: translateX(4px);
}

/* --- Challenges & Solutions Sections --- */
.industry-challenges {
    padding: 80px 20px;
    background: radial-gradient(circle at center, #0f2240 0%, #070d1b 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}
.industry-challenges .container {
    max-width: 1100px;
    margin: 0 auto;
}
.industry-challenges .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.industry-challenges .section-header .subtitle {
    color: #00e5ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}
.industry-challenges .section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}
.industry-challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.industry-challenge-item {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 25px 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}
.industry-challenge-item:hover {
    background: rgba(23, 34, 59, 0.7);
    border-color: rgba(0, 229, 255, 0.15);
}
.industry-challenge-item .icon {
    font-size: 22px;
    color: #00e5ff;
    min-width: 36px;
    margin-top: 2px;
}
.industry-challenge-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.industry-challenge-item p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* --- How We Help Section --- */
.industry-solutions {
    padding: 80px 20px;
    background: #070d1b;
}
.industry-solutions .container {
    max-width: 1100px;
    margin: 0 auto;
}
.industry-solutions .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.industry-solutions .section-header .subtitle {
    color: #00e5ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}
.industry-solutions .section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}
.industry-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.industry-solution-item {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}
.industry-solution-item:hover {
    background: rgba(23, 34, 59, 0.7);
    border-color: rgba(0, 229, 255, 0.15);
    transform: translateY(-4px);
}
.industry-solution-item .icon {
    font-size: 32px;
    color: #00e5ff;
    margin-bottom: 14px;
    display: block;
}
.industry-solution-item h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}
.industry-solution-item p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* --- CTA Section --- */
.industry-cta {
    padding: 80px 20px;
    background: radial-gradient(circle at center, #0f2240 0%, #070d1b 100%);
    text-align: center;
    border-top: 1px solid rgba(0, 229, 255, 0.08);
}
.industry-cta .container {
    max-width: 800px;
    margin: 0 auto;
}
.industry-cta h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.industry-cta h2 span {
    color: #00e5ff;
}
.industry-cta p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}
.industry-cta .btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0099ff, #00e5ff);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
}
.industry-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 229, 255, 0.4);
    background: linear-gradient(135deg, #1aaaff, #33ebff);
}
.industry-cta .btn i {
    margin-left: 8px;
}

/* ============================================================
   INTRODUCTION & TITLE SECTION (Merged)
   ============================================================ */
.industry-intro-title {
    padding: 70px 20px 60px;
    background: radial-gradient(circle at center, #0f2240 0%, #070d1b 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}
.industry-intro-title .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.industry-intro-title .intro-title-content .section-subtitle {
    color: #00e5ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}
.industry-intro-title .intro-title-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}
.industry-intro-title .intro-title-content p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.industry-intro-title .intro-title-content p strong {
    color: #ffffff;
}



/* ============================================================
   COMMON CHALLENGES (Simple list – no cards, no icons)
   ============================================================ */
.industry-challenges-simple {
    padding: 80px 20px;
    background: radial-gradient(circle at center, #0f2240 0%, #070d1b 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}
.industry-challenges-simple .container {
    max-width: 900px;
    margin: 0 auto;
}
.industry-challenges-simple .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.industry-challenges-simple .section-header .subtitle {
    color: #00e5ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}
.industry-challenges-simple .section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.challenges-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.challenges-list ul li {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
    padding: 10px 0 10px 32px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.challenges-list ul li:last-child {
    border-bottom: none;
}
.challenges-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    background: #00e5ff;
    border-radius: 50%;
    opacity: 0.6;
}
.challenges-list .challenges-note {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.8;
    padding: 20px 25px;
    background: rgba(0, 229, 255, 0.04);
    border-radius: 12px;
    border-left: 3px solid #00e5ff;
    margin-top: 10px;
}
.challenges-list .challenges-note strong {
    color: #ffffff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .industry-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industry-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .industry-hero {
        min-height: 50vh;
        padding: 80px 20px 60px;
    }
    .industry-hero h1 {
        font-size: 30px;
    }
    .industry-hero p {
        font-size: 15px;
    }
    .industry-services .section-header h2,
    .industry-challenges .section-header h2,
    .industry-solutions .section-header h2,
    .industry-title-section .title-content h2 {
        font-size: 28px;
    }
    .industry-services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .industry-challenges-grid {
        grid-template-columns: 1fr;
    }
    .industry-solutions-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .industry-cta h2 {
        font-size: 28px;
    }
    .industry-challenges-simple .section-header h2 {
        font-size: 28px;
    }
    .challenges-list ul li {
        font-size: 15px;
        padding: 8px 0 8px 28px;
    }
    .industry-intro-title .intro-title-content p {
        font-size: 15px;
    }
    
}

@media (max-width: 480px) {
    .industry-hero h1 {
        font-size: 24px;
    }
    .industry-cta .btn {
        width: 100%;
        text-align: center;
    }
}