.service-hero {
            background: linear-gradient(to right, #c12127, #e83a3a);
            color: white;
            padding-top: 80px;
            padding-bottom: 80px;
            text-align: center;
        }
        .service-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .service-hero p {
            font-size: 1.125rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .btn-custom-dark {
            background-color: #212529;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 500;
            text-decoration: none;
            margin-right: 10px;
            border: 1px solid #212529;
            transition: all 0.3s ease;
        }
        .btn-custom-dark .material-icons {
            font-size: 1rem;
            vertical-align: middle;
        }
        .btn-custom-dark:hover {
            background-color: transparent;
            color: #212529;
        }
        .btn-custom-light {
            background-color: transparent;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 500;
            text-decoration: none;
            border: 1px solid white;
            transition: all 0.3s ease;
        }
        .btn-custom-light:hover {
            background-color: white;
            color: #e83a3a;
        }
        .stats-container {
            margin-top: 50px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .stat-card {
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            padding: 20px;
            width: 230px;
            text-align: center;
        }
        .stat-card .value {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .stat-card .label {
            font-size: 1rem;
        }
        @media (max-width: 992px) {
            .service-hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .service-hero h1 {
                font-size: 2.2rem;
            }
            .service-hero p {
                font-size: 1rem;
            }
            .btn-group {
                flex-direction: column;
                align-items: center;
            }
            .btn-custom-dark, .btn-custom-light {
                width: 100%;
                max-width: 300px;
                margin-bottom: 15px;
                margin-right: 0;
            }
            .stat-card {
                width: 45%;
            }
        }
        @media (max-width: 576px) {
             .stat-card {
                width: 100%;
            }
        }





         #service-cards {
            padding: 80px 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }
        .section-title h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: #dc3545;
            margin: 20px auto 0;
        }
        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        .service-card {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .service-card-header {
            padding: 30px;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            color: #fff;
            position: relative;
            flex-shrink: 0;
        }
        .service-card-header-blue { background-color: #1d4ed8; }
        .service-card-header-purple { background-color: #8b5cf6; }
        .service-card-header-green { background-color: #16a34a; }
        .service-card-header-orange { background-color: #c2410c; }
        .service-card-header-yellow { background-color: #ca8a04; }
        .service-card-header-indigo { background-color: #4f46e5; }
        .service-card-header i {
            font-size: 40px;
            margin-bottom: 15px;
        }
        .service-card-header h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .service-card-header p {
            font-size: 14px;
            margin-bottom: 15px;
            opacity: 0.9;
        }
        .service-card-badge {
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 13px;
            font-weight: 500;
            display: inline-block;
        }
        .service-card-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .service-card-body > p {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        .service-card-body ul {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
            flex-grow: 1;
        }
        .service-card-body ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            color: #333;
            font-size: 15px;
        }
        .service-card-body ul li i {
            color: #dc3545;
            margin-right: 10px;
            font-size: 20px;
        }
        .learn-more-btn {
            background-color: #dc3545;
            color: #fff;
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        .learn-more-btn:hover {
            background-color: #c82333;
            transform: translateY(-2px);
        }


        .in-section {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
        }
        .section-title p {
            font-size: 1.125rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }
        .section-title .divider {
            width: 80px;
            height: 4px;
            background-color: #dc3545;
            margin: 0 auto;
            margin-top: 20px;
            border-radius: 2px;
        }
        .industry-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        .industry-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 15px;
        }
        .industry-card p {
            font-size: 1rem;
            color: #6c757d;
        }
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.5rem;
            }
            .in-section {
                padding-top: 60px;
                padding-bottom: 60px;
            }
        }


         .c-section {
            background-color: #c02425;
            padding: 6rem 1rem;
            color: #ffffff;
            text-align: center;
            font-family: 'Roboto', sans-serif;
        }
        .c-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .c-section p {
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto 2.5rem auto;
        }
        .c-section .btn {
            border-radius: 0.375rem;
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            margin: 0 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .c-section .btn-dark {
            background-color: #212529;
            border-color: #212529;
            color: #ffffff;
        }
        .c-section .btn-light {
            background-color: #ffffff;
            border-color: #ffffff;
            color: #212529;
        }
        .c-section .btn .material-icons {
            font-size: 1.25rem;
            margin-left: 0.5rem;
        }
        @media (max-width: 768px) {
            .c-section {
                padding: 4rem 1rem;
            }
            .c-section h2 {
                font-size: 2rem;
            }
            .c-section p {
                font-size: 1rem;
            }
            .c-section .btn-group-custom {
                flex-direction: column;
            }
            .c-section .btn {
                width: 100%;
                margin: 0.5rem 0;
            }
        }