/* SERVICE PAGE ENHANCEMENTS CSS - ALL NEW CLASSES */
.service-page-body { background: #f8f9fa; }
.service-page-hero {
    background: linear-gradient(135deg, var(--service-primary-color, #3b82f6) 0%, var(--service-dark-color, #1e40af) 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}
.service-page-hero-content { max-width: 900px; 
    padding-top: 2%;
    margin: 0 auto; }
.service-page-hero-image {
    width: 650px;
    height: 400px;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.service-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-hero-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
  
    justify-content: center;
    font-size: 80px;
    background: rgba(255,255,255,0.1);
}
.service-page-hero-image:has(.service-hero-img[src]) .service-hero-img-placeholder {
    display: none;
}
.service-page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.service-page-description {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}
.service-page-wrapper {
    background: var(--service-light-color, #dbeafe);
    padding: 60px 0;
    min-height: 100vh;
}
.service-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.service-page-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.service-page-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--service-primary-color, #3b82f6);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--service-primary-color, #3b82f6);
}
.service-page-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.service-feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}
.service-feature-card:hover {
    border-color: var(--service-primary-color, #3b82f6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.servicei{
    height: 150px;
    width: 150px;
}
.service-feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.service-feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}
.feature-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-benefits-list li {
    font-size: 14px;
    color: #555;
    padding: 6px 0;
}
.service-applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.application-card {
    background: linear-gradient(135deg, var(--service-light-color, #dbeafe) 0%, white 100%);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid var(--service-primary-color, #3b82f6);
}
.application-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--service-primary-color, #3b82f6);
    margin-bottom: 10px;
}
.application-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}
.service-why-choose {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.why-choose-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--service-primary-color, #3b82f6);
}
.why-choose-icon {
    font-size: 36px;
    flex-shrink: 0;
}
.why-choose-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.why-choose-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}
.service-brands-carousel-wrapper {
    margin-top: 30px;
    padding: 20px 0;
}
.service-brand-item {
    padding: 15px;
    text-align: center;
}
.service-brand-logo {
    width: 160px;
    height: 90px;
    background: white;
    border: 2px solid var(--service-primary-color, #3b82f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s;
    font-size: 13px;
    color: #666;
    text-align: center;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.service-brand-logo:hover {
    border-color: var(--service-dark-color, #1e40af);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.service-brands-carousel .owl-stage-outer {
    padding: 10px 0;
}
.service-page-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--service-light-color, #dbeafe) 0%, white 100%);
    border: 2px solid var(--service-primary-color, #3b82f6);
}
.service-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}
.service-btn {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}
.service-btn-primary {
    background: var(--service-primary-color, #3b82f6);
    color: white;
    border: 2px solid var(--service-primary-color, #3b82f6);
}
.service-btn-primary:hover {
    background: var(--service-dark-color, #1e40af);
    border-color: var(--service-dark-color, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-btn-secondary {
    background: white;
    color: var(--service-primary-color, #3b82f6);
    border: 2px solid var(--service-primary-color, #3b82f6);
}
.service-btn-secondary:hover {
    background: var(--service-primary-color, #3b82f6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    .service-page-hero { padding: 60px 0 40px; }
    .service-page-hero-image { width: 150px; height: 150px; }
    .service-hero-img-placeholder { font-size: 60px; }
    .service-page-title { font-size: 32px; }
    .service-page-description { font-size: 16px; }
    .service-page-section { padding: 25px; }
    .service-page-heading { font-size: 26px; }
    .service-features-grid,
    .service-applications-grid,
    .service-why-choose {
        grid-template-columns: 1fr;
    }
    .service-page-hero-content {  
    padding-top: 10%;
     }
    .service-cta-buttons { flex-direction: column; }
    .service-btn { width: 100%; max-width: 300px; }
    .service-brand-logo { width: 140px; height: 80px; font-size: 12px; }

    .service-feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}
.service-feature-card:hover {
    border-color: var(--service-primary-color, #3b82f6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
}
@media (max-width: 480px) {
    .service-page-title { font-size: 28px; }
    .service-page-description { font-size: 14px; }
    .service-page-hero-image { width: 120px; height: 120px; }
    .service-hero-img-placeholder { font-size: 50px; }
}

/* Update the feature-card-icon to support images */
.feature-card-icon {
    font-size: 48px;
    margin-bottom: 15px;
    width: 280px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* New class for image icons */
.feature-card-icon img {
    width: 100%;
    height: 100%;
    
    border-radius: 8px;
}

/* Optional: Add background circle for icons */
.feature-card-icon.with-bg {
    background: var(--service-light-color);
    border-radius: 50%;
    padding: 15px;
}

/* Optional: Hover effect for images */
.service-feature-card:hover .feature-card-icon img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
