.industries-header {
	background: #fff;
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.08);
	text-align: center;
}

.industries-header h1 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.industries-header p {
	font-size: 1.1rem;
	color: #4b5563;
	max-width: 800px;
	margin: 0 auto;
}

.industries-grid {
	margin-top: 5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.industry-card {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.08);
	transition: box-shadow 0.3s ease;
}

.industry-card:hover {
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.industry-card img {
	width: 100%;
	border-radius: 10px;
	margin-bottom: 1rem;
}

.industry-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.industry-card p {
	color: #6b7280;
}

.industries-cta {
	margin-top: 6rem;
	background: #1d4ed8;
	color: #fff;
	padding: 3rem;
	border-radius: 12px;
	text-align: center;
}

.industries-cta h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.industries-cta p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.cta-button {
	background: #fff;
	color: #1d4ed8;
	padding: 0.8rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s ease;
}

.cta-button:hover {
	background: #f3f4f6;
}

/* =======================
   INDUSTRIES PAGE RESPONSIVE
======================= */

/* Large screens / smaller desktops */
@media (max-width: 1024px) {
    .industries-header {
        padding: 2.5rem;
    }

    .industries-header h1 {
        font-size: 2.25rem;
    }

    .industries-header p {
        font-size: 1rem;
        max-width: 700px;
    }

    .industries-grid {
        gap: 1.5rem;
    }

    .industry-card h3 {
        font-size: 1.15rem;
    }

    .industry-card p {
        font-size: 0.95rem;
    }

    .industries-cta h2 {
        font-size: 1.75rem;
    }

    .industries-cta p {
        font-size: 1rem;
    }
}

/* Tablets / medium screens */
@media (max-width: 768px) {
    .industries-header {
        padding: 2rem;
    }

    .industries-header h1 {
        font-size: 2rem;
    }

    .industries-header p {
        font-size: 0.95rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .industry-card h3 {
        font-size: 1.1rem;
    }

    .industry-card p {
        font-size: 0.9rem;
    }

    .industries-cta {
        padding: 2rem;
    }

    .industries-cta h2 {
        font-size: 1.5rem;
    }

    .industries-cta p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Small phones / very small screens */
@media (max-width: 480px) {
    .industries-header {
        padding: 1.5rem;
    }

    .industries-header h1 {
        font-size: 1.75rem;
    }

    .industries-header p {
        font-size: 0.9rem;
    }

    .industries-grid {
        gap: 0.75rem;
    }

    .industry-card h3 {
        font-size: 1rem;
    }

    .industry-card p {
        font-size: 0.85rem;
    }

    .industries-cta {
        padding: 1.5rem;
    }

    .industries-cta h2 {
        font-size: 1.25rem;
    }

    .industries-cta p {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

