/* Industry-specific styling */
.industry-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.industry-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.industry-banner .container {
    position: relative;
    z-index: 2;
}

.industry-banner h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.industry-banner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.industry-header-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 2rem;
}

/* Remove custom button styles since we're using existing classes */
.industry-header-buttons .greenbtn,
.industry-header-buttons .bluebtn {
    margin: 0;
}

.scroll-down-arrow {
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}

.scroll-down-arrow span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* Industry Features Section */
.industry-features {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--menu-color-5);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--menu-color-5);
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.feature-text {
    color: #666;
    line-height: 1.6;
}

.industry-content {
    padding: 80px 0;
}

.industry-content h2 {
    color: var(--menu-color-5);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.industry-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--menu-color-5);
}

/* Testimonials Section */
.industry-testimonials {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #333;
}

.testimonial-author-info p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--menu-color-5);
    opacity: 0.2;
    font-size: 40px;
}

.industry-cta {
    background-color: var(--menu-color-5);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.industry-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.industry-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.industry-cta .greenbtn {
    background-color: #fff;
    color: var(--menu-color-5);
    border: none;
}

.industry-cta .greenbtn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.industry-cta .greenbtn span {
    color: var(--menu-color-5);
}

.related-industries {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.related-industries h3 {
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.related-industries ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.related-industries li {
    margin: 10px;
}

.related-industries a {
    display: inline-block;
    padding: 12px 25px;
    background-color: #fff;
    color: #333;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-industries a:hover {
    background-color: var(--menu-color-5);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .industry-banner {
        padding: 80px 0;
    }
    
    .industry-banner h1 {
        font-size: 2.5rem;
    }
    
    .industry-banner p {
        font-size: 1.1rem;
    }
    
    .industry-header-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .industry-content, .industry-features, .industry-cta, .related-industries, .industry-testimonials, .industry-case-studies {
        padding: 60px 0;
    }
} 