/* --- HERO SECTION --- */
.industry-hero {
    position: relative;
    height: 450px;
    background: url("../../images/industry.png") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: #fff;
}

.industry-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 58, 0.8); /* Dark Blue Overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

/* --- GRID SECTION --- */
.industry-container {
    padding: 80px 10%;
    background-color: #f4f7f6;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.industry-card:hover {
    transform: translateY(-10px);
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    font-size: 20px;
    color: #0b1f3a;
    margin-bottom: 12px;
}

.card-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* --- CTA BANNER --- */
.cta-banner {
    background: #0b1f3a;
    color: white;
    padding: 40px;
    margin: 0 10% 60px 10%;
    border-radius: 15px;
}

.cta-content {
    display: flex;              
    align-items: flex-start;    
    gap: 25px;                  
}

.cta-content i {
    font-size: 50px;        
    color: #2c6cff;
    flex-shrink: 0;             
}

.cta-text {
    flex: 1;                    
}

.cta-text h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d8e8;
}

.quote {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 200px;
    padding: 40px;
    background: #f4f7f6; 
    color: #0a2e5c;
    flex: 1;
}

.quote-text {
    flex: 1;
    padding-right: 20px;
}

.quote-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.quote-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #1453a5;
}

.quote-text button {
    background: #f5a623; /* accent color */
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.quote-text button:hover {
    background: #d4881f; 
}


.quote-img {
    flex: 1;
}

.quote-img img {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}




/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .industry-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 36px; }
}