﻿.industries-hero {
    background: linear-gradient( 135deg, #ffffff, #f5ffff, #e8ffff);
    min-height: 100vh;
}

.hero-badge {
    background: #dffcfb;
    color: #009d98;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
}

.hero-title {
    font-size: 65px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 25px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: #475569;
}

.hero-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

    .hero-card ul {
        list-style: none;
        padding: 0;
    }

    .hero-card li {
        padding: 12px 0;
        font-size: 18px;
        font-weight: 500;
    }

        .hero-card li::before {
            content: "✓";
            color: #00cfc8;
            margin-right: 10px;
        }

.industry-grid-section {
    padding: 120px 0;
}

.industry-card {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .4s;
}

    .industry-card:hover {
        transform: translateY(-10px);
    }

    .industry-card i {
        font-size: 55px;
        color: #00cfc8;
        margin-bottom: 20px;
    }

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
}


.industry-detail-section {
    padding: 120px 0;
}

.industry-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient( 135deg, #00cfc8, #00b3ad);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 25px;
}

.industry-detail-section h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.industry-detail-section p {
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
}

.industry-list {
    margin-top: 25px;
}

    .industry-list li {
        margin-bottom: 12px;
        font-size: 17px;
    }

.industry-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.industries-cta {
    padding: 120px 0;
}

.cta-box {
    background: linear-gradient(135deg,#00cfc8,#00a9a2);
    padding: 80px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
}

.btn-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: #fff;
    color: #00a9a2;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
}