.activeconsult{
		background: #f4f4f4 !important;
    color: var(--primary-color) !important;
	}
	 .activeoffer {
	    color: var(--primary-color) !important;
	}
        /* Hide all icons by default */
.e-opened, .e-closed {
  display: none;
}

/* Display the plus icon when the accordion is closed */
details:not([open]) .e-closed {
  display: inline-block;
}

/* Display the minus icon when the accordion is open */
details[open] .e-opened {
  display: inline-block;
}

.divheader {
    text-align: center;
    margin-bottom: 4rem;
}
.divheader h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.title-underline {
    width: 80px;
    height: 6px;
    background-color: #c00000;
    margin: 0 auto;
    border-radius: 3px;
}

.icon-circle img{
	max-width:60px;
}
 /* Grid Layout */
        .services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        /* Card Card Styling */
        .service-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 1rem;
            flex: 1 1 320px;
            /* Flex Basis 320px */
            min-width:300px;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            border-top: 4px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-top-color: #c00000;
        }

        /* Icon Styling */
        .icon-wrapper {
            width: 70px;
            height: 70px;
            background-color: rgba(192, 0, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #da1d2b;
            font-size: 2rem;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .service-card:hover .icon-wrapper {
            background-color: #c00000;
            color: #fff;
        }

        .service-card h3 {
            font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
        }

        .service-card p {
           
            color: #555;
            margin-bottom: 1rem;
        }

        /* Specific style for example block */
        .example-block {
            background-color: #f9f9f9;
            border-left: 3px solid #c00000;
            padding: 0.8rem;
            font-size: 0.85rem;
            color: #444;
            
            margin-top: 1rem;
        }

        .example-block strong {
            color: #c00000;
            font-style: normal;
        }

        /* Responsive */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }

            .service-card {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }
		



:root {
            --blue-main: #3fa7e1;
            --blue-light: #9bd1ef;
            --pink-main: #be228b;
            --pink-light: #df91c5;
            --bg-color: #f7f9fb;
            --card-bg: #e9eaec;
            --text-gray: #777;
            --text-dark: #333;
            --white: #ffffff;
        }

 .line-divider {
            height: 4px;
            width: 180px;
            margin: 0 auto;
            position: relative;
            background: linear-gradient(to right, var(--blue-main) 50%, var(--pink-main) 50%);
            border-radius: 2px;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .card {
            background-color: var(--card-bg);
            border-radius: 20px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            padding-bottom: 25px;
            /* for the dots */
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .cardheader {
            position: relative;
            margin: 40px 20px 25px 20px;
            display: flex;
            align-items: center;
        }

        .outsourcing-card .cardheader {
            flex-direction: row;
        }

        .insourcing-card .card-header {
            flex-direction: row-reverse;
        }

        .header-pill {
            flex-grow: 1;
            padding: 18px 25px;
            border-radius: 10px;
            color: var(--white);
            font-size: 1.4rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .outsourcing-card .header-pill {
            background-color: #DA1D2B;
            text-align: right;
            padding-left: 60px;
            margin-left: 20px;
        }

        .insourcing-card .header-pill {
            background-color: #DA1D2B;
            text-align: left;
            padding-right: 60px;
            margin-right: 20px;
        }

        .icon-circle {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            z-index: 2;
            border: 5px solid var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .outsourcing-card .icon-circle {
            background-color: #DA1D2B;
            left: -10px;
            top: 50%;
            transform: translateY(-50%);
        }

        .insourcing-card .icon-circle {
            background-color: #DA1D2B;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
        }

        .icon-circle i {
            color: var(--white);
            font-size: 3rem;
            /* Simple SVG recreation or font awesome */
        }

        /* Custom SVG-like icons for accuracy if needed, for now standard FontAwesome */

        .card-body {
            padding: 0 40px 30px 40px;
            text-align: left;
            flex-grow: 1;
        }

        .card-body p {
            font-size: 0.95rem;
          
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .card-body ul {
            list-style: none;
			padding-left: 1rem
        }

        .card-body li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
          
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .card-body li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ccc;
        }

        .cardfooter {
            padding: 0 20px;
        }

        .dots-container {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 25px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .outsourcing-card .dot {
            background-color: #DA1D2B;
        }

        .insourcing-card .dot {
            background-color: #DA1D2B;
        }

        .bottom-bar {
            height: 12px;
            width: 100%;
            border-radius: 6px;
            margin-bottom: -15px;
            /* Offset to sit at the very bottom */
        }

        .outsourcing-card .bottom-bar {
            background-color: #DA1D2B;
        }

        .insourcing-card .bottom-bar {
            background-color: #DA1D2B;
        }

        /* Responsive Design */
        @media (max-width: 850px) {
            .cards-container {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 40px auto;
            }
        }

        @media (max-width: 480px) {
            .header-section h1 {
                font-size: 1.6rem;
            }

            .header-pill {
                font-size: 1.1rem;
            }

            .icon-circle {
                width: 80px;
                height: 80px;
            }

            .icon-circle i {
                font-size: 2rem;
            }

            .outsourcing-card .header-pill {
                padding-left: 50px;
            }

            .insourcing-card .header-pill {
                padding-right: 50px;
            }
        }
		
		.icon-wrapper img{
			max-width:35px;
		}
		
		 /* Workflow Wrapper */
        .workflow-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            /* Allows wrapping on smaller screens */
            gap: 15px;
            width: 100%;
            max-width: 1400px;
        }

        /* Individual Step Container */
        .step-wrapper {
            display: flex;
            align-items: center;
        }

        /* The Box Styling */
        .process-box {
            width: 160px;
            height: 160px;
            border-radius: 20px;
            border: 4px solid;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            background: rgba(255, 255, 255, 0.05);
            /* Slight transparency */
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            text-align: center;
        }

        .process-box:hover {
            transform: translateY(-5px);
        }

        /* Icon & Text */
        .process-box i {
            font-size: 3.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .process-box span {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            /* Fallback to sans-serif if not loaded */
        }

        /* Individual Colors */
        /* 1. AUDIT - Cyan/Blue */
        .box-audit {
            border-color: #ffffff;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
        }

        .box-audit:hover {
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
            background: rgba(0, 212, 255, 0.1);
        }

        /* 2. DESIGN - Green */
        .box-design {
            border-color: #ffffff;
            box-shadow: 0 0 15px rgba(76, 235, 88, 0.3);
        }

        .box-design:hover {
            box-shadow: 0 0 25px rgba(76, 235, 88, 0.6);
            background: rgba(76, 235, 88, 0.1);
        }

        /* 3. AUTOMATE - Yellow */
        .box-automate {
            border-color: #ffffff;
            box-shadow: 0 0 15px rgba(255, 230, 0, 0.3);
        }

        .box-automate:hover {
            box-shadow: 0 0 25px rgba(255, 230, 0, 0.6);
            background: rgba(255, 230, 0, 0.1);
        }

        /* 4. OPERATE - Orange */
        .box-operate {
            border-color: #ffffff;
            box-shadow: 0 0 15px rgba(255, 145, 0, 0.3);
        }

        .box-operate:hover {
            box-shadow: 0 0 25px rgba(255, 145, 0, 0.6);
            background: rgba(255, 145, 0, 0.1);
        }

        /* 5. OPTIMIZE - Red */
        .box-optimize {
            border-color: #ffffff;
            box-shadow: 0 0 15px rgba(255, 59, 59, 0.3);
        }

        .box-optimize:hover {
            box-shadow: 0 0 25px rgba(255, 59, 59, 0.6);
            background: rgba(255, 59, 59, 0.1);
        }

        /* Arrows */
        .arrow {
            color: rgba(255, 255, 255, 0.8);
            font-size: 2rem;
            margin: 0 15px;
            font-weight: bold;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .workflow-wrapper {
                flex-direction: column;
                gap: 20px;
            }

            .step-wrapper {
                flex-direction: column;
            }

            .arrow {
                transform: rotate(90deg);
                /* Point down */
                margin: 15px 0;
            }
        }