/* service-pages.css - For all service detail pages */

/* Page Header */
.service-header {
    background: linear-gradient(135deg, #05368c 0%, #022559 100%);
    padding: 100px 0 60px;
    position: relative;
}

.service-header h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-header .breadcrumb {
    margin-bottom: 0;
}

.service-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-header .breadcrumb-item a:hover {
    color: #fff;
}

.service-header .breadcrumb-item.active {
    color: #fff;
}

/* Section Spacing */
.service-section {
    padding: 80px 0;
}

.service-section.bg-light {
    background-color: #f8f9fc;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h6 {
    color: #05368c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title h2 {
    color: #1e2a3a;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #6c757d;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Overview */
.service-overview-content h6 {
    color: #05368c;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-overview-content h2 {
    color: #1e2a3a;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-overview-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(5, 54, 140, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(5, 54, 140, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 32px;
    color: #05368c;
}

.feature-card h4 {
    color: #1e2a3a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Why Choose Section */
.why-choose-content h6 {
    color: #05368c;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choose-content h2 {
    color: #1e2a3a;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.why-choose-item {
    display: flex;
    margin-bottom: 25px;
}

.why-choose-icon {
    width: 50px;
    height: 50px;
    background: rgba(5, 54, 140, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.why-choose-icon i {
    font-size: 24px;
    color: #05368c;
}

.why-choose-text h5 {
    color: #1e2a3a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-choose-text p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Industries Grid */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.industry-item {
    text-align: center;
    padding: 25px 20px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.industry-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(5, 54, 140, 0.1);
}

.industry-item i {
    font-size: 42px;
    color: #05368c;
    margin-bottom: 12px;
}

.industry-item span {
    display: block;
    font-weight: 600;
    color: #1e2a3a;
    font-size: 14px;
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: 1px solid #eef2f6;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: #fff;
    color: #1e2a3a;
    font-weight: 600;
    padding: 20px 25px;
    font-size: 18px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: #05368c;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    border-color: rgba(5, 54, 140, 0.2);
    box-shadow: 0 0 0 0.2rem rgba(5, 54, 140, 0.1);
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    color: #6c757d;
    line-height: 1.6;
    border-top: 1px solid #eef2f6;
}

/* CTA Section */
.service-cta {
    background: #05368c;
    padding: 70px 0;
    text-align: center;
}

.service-cta h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.service-cta .btn-light {
    background: #fff;
    color: #05368c;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-cta .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-cta .btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-cta .btn-outline-light:hover {
    background: #fff;
    color: #05368c;
}

/* Responsive */
@media (max-width: 991px) {
    .service-header {
        padding: 80px 0 50px;
    }
    
    .service-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .service-overview-content h2 {
        font-size: 32px;
        margin-top: 20px;
    }
    
    .why-choose-item {
        margin-bottom: 20px;
    }
    
    .service-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .service-section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
}


