	
	: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);
}
	
		.activeservices {
		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;
}
 



.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;
}

.helpscontainer {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0 60px 0;
	margin: auto;
}


		 .helpscard {
            background: var(--card-bg);
            border-radius: 30px;
            padding: 50px 12px 80px 12px;
            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: 5px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-gray);
            line-height: 1.5;
			    padding: 0 0 5px 22px !important;
				
        }

        

        /* Bottom Icon Styles */
        .icon-wrapper {
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            width: 75px;
            height: 75px;
            background: #DA1D2B !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF !important;
            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) {
           

            .helpscard {
                padding: 40px 25px 70px 25px;
            }
        }

        /* 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;
        }
		


 .business-section {
            display: flex;
            align-items: center;
            gap: 60px;
            width: 100%;
        }

        /* Circular Image Section */
        .circle-container {
            position: relative;
            flex: 0 0 500px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        

        .main-circle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

        .circle-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 40px;
        }

        .circle-content i {
            font-size: 80px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .circle-content h2 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            text-transform: uppercase;
        }

        /* Pulse Animation */
        .main-circle::after {
            content: '';
            position: absolute;
            width: 105%;
            height: 105%;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Points Section */
        .points-list {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .point-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            opacity: 0;
            transform: translateX(50px);
            animation: slideIn 0.8s forwards;
        }

        .point-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .point-item:nth-child(2) {
            animation-delay: 0.3s;
        }

        .point-item:nth-child(3) {
            animation-delay: 0.5s;
        }

        .point-item:nth-child(4) {
            animation-delay: 0.7s;
        }

        .point-item:nth-child(5) {
            animation-delay: 0.9s;
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Speech Bubble Style Shape */
        .point-number {
            flex: 0 0 65px;
            height: 65px;
            background: #DA1D2B;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            position: relative;
            box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
            transition: var(--transition);
        }

        .point-number::after {
            content: '';
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-right: 12px solid #DA1D2B;
            transition: var(--transition);
        }

        .point-item:hover .point-number {
            transform: scale(1.1);
        }

        .point-info h3 {
            color: var(--primary-red);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
            transition: var(--transition);
        }

        .point-info p {
            color: var(--text-gray);
            font-size: 16px;
            font-weight: 500;
            max-width: 500px;
        }

        .point-item:hover h3 {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .business-section {
                flex-direction: column;
                gap: 50px;
                text-align: center;
            }

            .circle-container {
                flex: 0 0 400px;
                height: 400px;
            }

            .point-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                transform: translateY(30px);
            }

            .point-number::after {
                display: none;
            }

            .point-info p {
                margin: 0 auto;
            }
        }

        @media (max-width: 600px) {
           .helpscontainer {
			gap: 60px;
    grid-template-columns: repeat(1, 1fr);	
			}
			
			.point-item {
               flex-direction: row;
                align-items: start;
                text-align: left;
                transform: translateY(30px);
            }

            .helpscard {
                padding: 40px 25px 40px 25px;
				margin-bottom: 10px;
            }
            .circle-container {
				margin:auto;
                width: 300px;
                height: 300px;
                flex: 0 0 300px;
            }

            .circle-content h2 {
                font-size: 22px;
            }

            .circle-content i {
                font-size: 50px;
            }

            .point-info h3 {
                font-size: 18px;
            }
        }
		
		:root {
            --color-1: #666666;
            --color-2: #666666;
            --color-3: #666666;
            --color-4: #666666;
            --text-main: #333333;
            --text-light: #666666;
            --bg-body: #f9f9f9;
        }
		
		.process-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            position: relative;
        }

        .step-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            text-align: left;
        }

        /* Circle Styling */
        .circle-wrapper {
            position: relative;
            width: 180px;
            height: 180px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .outer-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 8px solid transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            background: #fff;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
        }

        .inner-circle {
            width: 85%;
            height: 85%;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #eee;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .inner-circle img {
         max-width:80px;
        }

        /* Color Variations for Circles */
        .step-1 .outer-circle {
            border-color: var(--color-1);
        }

        .step-2 .outer-circle {
            border-color: var(--color-2);
        }

        .step-3 .outer-circle {
            border-color: var(--color-3);
        }

        .step-4 .outer-circle {
            border-color: var(--color-4);
        }

        /* Arrows */
        .arrow {
            position: absolute;
            top: 90px;
            right: -48px;
            transform: translateY(-50%);
            z-index: 1;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .arrow::after {
            content: "\ea94";
            /* icofont-arrow-right */
            font-family: "IcoFont";
            font-weight: normal;
            font-size: 98px;
        }

        .step-1 .arrow::after {
            color: var(--color-1);
        }

        .step-2 .arrow::after {
            color: var(--color-2);
        }

        .step-3 .arrow::after {
            color: var(--color-3);
        }

        .step-4 .arrow {
            display: none;
        }

        /* Info Section */
        .step-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .step-badge {
            padding: 4px 8px;
            border-radius: 4px;
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.2;
            text-align: center;
        }

        .step-badge span {
            display: block;
            font-size: 16px;
        }

        .step-1 .step-badge {
            background-color: var(--color-1);
        }

        .step-2 .step-badge {
            background-color: var(--color-2);
        }

        .step-3 .step-badge {
            background-color: var(--color-3);
        }

        .step-4 .step-badge {
            background-color: var(--color-4);
        }

        .step-title {
               font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    /* text-transform: uppercase; */
  
    text-align: center;
        }

        .step-desc {
            font-size: 13px;
            color: var(--text-light);
            font-weight: 500;
            max-width: 250px;
        }

        /* Hover Effects */
        .step-item:hover .outer-circle {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .process-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 50px;
            }

            .step-item {
                flex: 0 0 calc(50% - 40px);
                align-items: center;
                text-align: center;
            }

            .step-header {
                justify-content: center;
            }

            .arrow {
                display: none;
            }

            .step-desc {
                max-width: 100%;
            }
        }

        @media (max-width: 600px) {
            .step-item {
                flex: 0 0 100%;
            }

            .circle-wrapper {
                width: 150px;
                height: 150px;
            }
        }

        /* Entrance Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-item {
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
        }

        .step-1 {
            animation-delay: 0.1s;
        }

        .step-2 {
            animation-delay: 0.3s;
        }

        .step-3 {
            animation-delay: 0.5s;
        }

        .step-4 {
            animation-delay: 0.7s;
        }


.icon-wrapper img {
	max-width: 45px;
}
.icon-box-4 {
box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.25) !important;	
    padding: 2rem 1.25rem 1rem;
}
h4.h4-md {
    font-size: 1rem;
	margin-top: 15px;
	margin-bottom: 0 !important;
}