.activesolution {
		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;
}

.solution-item {
            display: flex;
            align-items: flex-start;
            gap: 35px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
        }

        .solution-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .solution-item:nth-child(2) {
            animation-delay: 0.3s;
        }

        .solution-item:nth-child(3) {
            animation-delay: 0.5s;
        }

        .solution-item:nth-child(4) {
            animation-delay: 0.7s;
        }

        /* Image with red offset background */
        .image-box {
            position: relative;
            flex: 0 0 200px;
            height: 230px;
            transition: var(--transition);
        }

        .image-box-inner {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 2;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .image-box-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .red-accent {
            position: absolute;
            bottom: -12px;
            right: -12px;
            width: 100%;
            height: 100%;
            background-color: var(--primary-red);
            z-index: 1;
            transition: var(--transition);
        }

        .solution-item:hover .image-box {
            transform: translate(-5px, -5px);
        }

        .solution-item:hover .red-accent {
            transform: translate(10px, 10px);
            opacity: 0.9;
        }

        .solution-item:hover .image-box-inner img {
            transform: scale(1.1);
        }

        /* Content Styling */
        .content {
            flex: 1;
        }

        .content h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.2;
            position: relative;
        }

        .content p {
            font-size: 15px;
            color: var(--text-gray);
            font-weight: 500;
        }

        .example {
            display: block;
            margin-top: 10px;
            font-size: 14px;
            border-left: 3px solid #eee;
            padding-left: 12px;
        }

        .example i {
            display: block;
            margin-bottom: 2px;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .image-box {
                flex: 0 0 220px;
                height: 160px;
            }
        }

        @media (max-width: 900px) {
          

            .solution-item {
                flex-direction: column;
                max-width: 600px;
                margin: 0 auto;
            }

            .image-box {
                width: 100%;
                flex: none;
                height: 300px;
            }

           .containsolu {
			      gap: 20px 60px !important; 
    grid-template-columns: repeat(1, 1fr) !important; 
		   }

            .example {
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .image-box {
                height: 200px;
            }

            .content h3 {
                font-size: 18px;
            }
        }
		
	:root {
            --primary-red: #c00000;
            --text-dark: #1a1a1a;
            --text-gray: #4a4a4a;
            --bg-light: #ffffff;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
		
		.containsolu {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 80px 60px;
        }
		
		
		
		  /* Hero Section */
        .partners-section {
            position: relative;
            padding-top: 80px;
            text-align: center;
        }

        .bg-red {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 240px;
            /* Red background height */
            background-color: var(--primary-red);
            z-index: 1;
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            color: #ffffff;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 60px;
            /* Distance from title to cards */
            letter-spacing: 0.5px;
        }

        /* Cards Grid */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            align-items: center;
        }

        .partner-card {
            background-color: #fff;
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            border-bottom: 4px solid var(--primary-red);
            box-shadow: var(--shadow);
            border-radius: 4px;
            transition: var(--transition);
            cursor: pointer;
        }

        .partner-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .partner-card img {
            max-width: 100%;
            max-height: 80%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.8;
            transition: var(--transition);
        }

        .partner-card:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .bg-red {
                height: 450px;
            }
        }

        @media (max-width: 600px) {
            .partners-grid {
                grid-template-columns: 1fr;
            }

            .bg-red {
                height: 700px;
                /* Taller on mobile to cover title space */
            }

            .section-title {
                font-size: 18px;
                margin-bottom: 60px;
            }

            .partners-section {
                padding-top: 60px;
            }
        }
		