  /* 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;
}

  :root {
            --primary-red: #d32f2f;
            --secondary-red: #f44336;
            --gradient-red: linear-gradient(135deg, #e53935, #b71c1c);
            --text-dark: #212121;
            --text-gray: #616161;
            --bg-light: #f8f9fa;
            --card-bg: #ffffff;
            --white: #ffffff;
            --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }


/* Main Chart Area */
.chart-flex-wrapper {
    display: flex;
    justify-content: space-between;
    height: 500px;
    /* Fixed height for the staggered layout */
    align-items: flex-end;
    /* All columns align to bottom, but we control their internal spacing */
}

/* Base Column Style */
.chart-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    /* Fill the wrapper height */
    position: relative;
    padding: 0 0.5rem;
    /* Add some padding */
}

/* Staggered Heights via Padding Top on the Container */
/* The columns are full height, but content flows. To stagger, we push content down. */

/* Specific Staggering - Adjusted for 6 columns */
/* Step size ~30px: 180, 150, 120, 90, 60, 30 */

.chart-column.blue-theme .upper-content {
    margin-top: 130px;
}

.chart-column.green-theme .upper-content {
    margin-top: 190px;
}

.chart-column.yellow-theme .upper-content {
    margin-top: 50px;
}

.chart-column.red-theme .upper-content {
    margin-top: 160px;
}

.chart-column.purple-theme .upper-content {
    margin-top: 100px;
}

.chart-column.orange-theme .upper-content {
    margin-top: 20px;
}

/* Upper Content Block */
.upper-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    /* This pushes the footer down? No, we want the line to grow. */
    width: 100%;
    padding: 0 0.5rem;
}

/* Icon Box */
.icon-box {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.purple-theme .icon-box img{
    color: #DA1D2B;
    border: 2px solid #666666;
}

.green-theme .icon-box img{
    color: #DA1D2B;
    border: 2px solid #666666;
}

.icon-box img {
    padding: 15px;
    border-radius: 20%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* Adjust font size for icofont */
}

.icon-box i,
.icon-box svg {
    padding: 15px;
    border-radius: 20%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* Adjust font size for icofont */
}

.blue-theme .icon-box i,
.blue-theme .icon-box svg {
    color: #DA1D2B;
    border: 2px solid #666666;
}

.green-theme .icon-box i,
.green-theme .icon-box svg {
    color: #DA1D2B;
    border: 2px solid #666666;
}

.yellow-theme .icon-box i,
.yellow-theme .icon-box svg {
    color: #DA1D2B;
    border: 2px solid #666666;
}

.red-theme .icon-box i,
.red-theme .icon-box svg {
    color: #DA1D2B;
    border: 2px solid #666666;
}

.purple-theme .icon-box i,
.purple-theme .icon-box svg {
    color: #DA1D2B;
    border: 2px solid #666666;
}

.orange-theme .icon-box i,
.orange-theme .icon-box svg {
    color: #DA1D2B;
    border: 2px solid #666666;
}

/* Description Text */
.desc-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
    max-width: 100%;
}

/* Connector Dot */
.connector-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 0;
    /* Connected explicitly to line */
    background-color: var(--primary-color);
}

/* Connector Line */
.connector-line {
    width: 2px;
    background-color: var(--primary-color);
    flex-grow: 1;
    /* Key to filling the space! */
    margin-bottom: 0;
}

/* Footer Segment (The colored bar part) */
.footer-segment {
    width: 100%;
    height: 60px;
    /* Thick bar */
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Circle Badge with Letter */
.circle-badge {
    width: 36px;
    height: 36px;
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid var(--primary-color);
    /* Optional border */
}

/* Footer Label */
.footer-label {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    /* Slightly smaller for 6 items */
    text-transform: uppercase;
    /* Looks title case but stylized */
}

/* Responsive */
@media (max-width: 900px) {
    .chart-flex-wrapper {
        flex-direction: column;
        height: auto;
    }

    .chart-column {
        margin-bottom: 2rem;
        width: 100%;
    }

    .upper-content {
        margin-top: 0 !important;
    }

    .connector-line {
        height: 50px;
        width: 2px;
        flex-grow: 0;
    }

    .footer-segment {
        width: 100%;
        margin-top: 1rem;
    }
}


.services .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 65px;
}

.services .icon-badge {
    top: -40px;
}
.services .card {
    padding: 65px 15px 20px;
}

.services .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}


 /* Main Container with Background */
        .bg-container {
            /* Dark overlay with background image */
            background: linear-gradient(rgba(30, 35, 45, 0.85), rgba(30, 35, 45, 0.85)),
                url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        /* 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;
            }
        }
		
		
		.helpscontainer {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0 60px 0;
	margin: auto;
}


		 .helpscard {
            background: var(--card-bg);
            border-radius: 30px;
            padding: 50px 30px 80px 30px;
            box-shadow: var(--shadow);
            position: relative;
            text-align: center;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }

        .helpscard:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .helpscard h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 30px;
            position: relative;
        }

        .helpscard ul {
            list-style: none;
            text-align: left;
            margin-top: 10px;
            padding: 0;
        }

        .helpscard ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 18px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-gray);
            line-height: 1.5;
        }

        .helpscard ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background-color: var(--text-gray);
            border-radius: 50%;
        }

.icon-wrapper img{
	max-width:38px;
}
        /* Bottom Icon Styles */
        .icon-wrapper {
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            width: 75px;
            height: 75px;
            background: var(--gradient-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 28px;
            border: 5px solid var(--white);
            box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
            transition: var(--transition);
            z-index: 2;
        }

        .helpscard:hover .icon-wrapper {
            transform: translateX(-50%) rotate(360deg) scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
           
			.helpscontainer {
			gap: 60px;
    grid-template-columns: repeat(1, 1fr);	
			}

            .helpscard {
                padding: 40px 25px 40px 25px;
				margin-bottom: 10px;
            }
			.counter-style-1 {
				font-size: 10px;
			}
			.counter-style-1 span {
				font-size: 2rem;
			}
			
        }

        /* Animation for cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .helpscard {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .helpscard:nth-child(1) {
            animation-delay: 0.1s;
        }

        .helpscard:nth-child(2) {
            animation-delay: 0.3s;
        }

        .helpscard:nth-child(3) {
            animation-delay: 0.5s;
        }
		
		
		.client-inner-content i {
			    font-size: 50px;
    position: absolute;
    bottom: 34px;
    right: 54px;
    color: #DA1D2B;
		}