.eleks-accordion-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	
}

.eleks-accordion-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: white;
	
}

.eleks-accordion-banner {
    display: flex;
    height: 80vh;
    position: relative;
    gap: 10px;
}

.eleks-panel {
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    border-radius: 10px;
}

.eleks-panel.eleks-active {
    flex: 3;
}

.eleks-panel:not(.eleks-active) {
    flex: 0.3;
}

.eleks-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 15px;
    transition: all 0.6s ease;
}

.eleks-panel:not(.eleks-active)::before {
    backdrop-filter: blur(5px);
}

.eleks-panel-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
    transform: translateX(0);
    transition: all 0.6s ease;
    width: 100%;
}

.eleks-panel-label {
    position: absolute;
    z-index: 3;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    pointer-events: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    white-space: nowrap;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.eleks-panel-description{
	font-size:20px !important;
}


.eleks-panel:not(.eleks-active) .eleks-panel-label {
    top: 25% !important;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    writing-mode: initial;
    text-orientation: initial;
    font-size: 14px;
    letter-spacing: 3px;
}

.eleks-panel.eleks-active .eleks-panel-label {
    top: 2rem;
    right: 2rem;
    left: auto;
    transform: translate(0, 0) rotate(0deg);
    writing-mode: initial;
    text-orientation: initial;
    font-size: 1rem;
    letter-spacing: 1px;
}

.eleks-panel:not(.eleks-active) .eleks-panel-content {
    transform: translateX(-50px);
    opacity: 0;
}

.eleks-panel.eleks-active .eleks-panel-content {
    transform: translateX(0);
    opacity: 1;
}

/* Add this to your public.css file to make the heading responsive */

.eleks-panel-title {
    font-size: 3.5rem;
    font-weight: 500 !important;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: white !important;
    font-family: Inter Tight !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Tablet landscape and smaller desktops */
@media (max-width: 1024px) {
    .eleks-panel-title {
        font-size: 2.8rem;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .eleks-panel-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .eleks-panel-content {
        padding: 1.5rem;
    }
}

/* Mobile landscape */
@media (max-width: 640px) {
    .eleks-panel-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .eleks-accordion-banner {
        height: 70vh; /* Reduce height on mobile */
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .eleks-panel-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .eleks-panel-content {
        padding: 1rem;
    }
    
    .eleks-accordion-banner {
        height: 60vh;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .eleks-panel-title {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .eleks-panel-description {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }
    
    .eleks-panel-content {
        padding: 0.8rem;
    }
}

/* Additional responsive improvements for other elements */
@media (max-width: 768px) {
    .eleks-panel-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .eleks-panel-cta {
        padding: 6px 1.5rem;
        font-size: 1rem;
    }
    
    .eleks-consultation-card {
        max-width: 250px;
        padding: 1.5rem;
    }
    
    .eleks-consultation-title {
        font-size: 1.1rem;
    }
    
    .eleks-consultation-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .eleks-consultation-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 1rem 0;
        max-width: 100%;
    }
    
    .eleks-awards-section {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }
    
    .eleks-award-badge {
        width: 60px;
        height: 45px;
    }
    
    .eleks-navigation-arrows {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Ultra-wide screens optimization */
@media (min-width: 1400px) {
    .eleks-panel-title {
        font-size: 4rem;
    }
}

/* Ensure text doesn't overflow on very long titles */
.eleks-panel-title {
    max-width: 100%;
    white-space: normal;
}
}

.eleks-panel-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.eleks-panel-cta {
    display: inline-block;
    padding: 8px 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
	margin-top:30px;
}

.eleks-panel-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.eleks-consultation-card {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    color: #333;
    max-width: 300px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 4;
    transition: all 0.6s ease;
	display:none!important;
}

.eleks-panel:not(.eleks-active) .eleks-consultation-card {
    opacity: 0;
    transform: translateY(-50%) translateX(100px);
    pointer-events: none;
}

.eleks-consultation-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.eleks-consultation-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

.eleks-consultation-btn {
    display: inline-block;
    padding: 8px 10px 8px 10px1.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.eleks-consultation-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.eleks-awards-section {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 3;
    transition: all 0.6s ease;
}

.eleks-panel:not(.eleks-active) .eleks-awards-section {
    opacity: 0;
    transform: translateY(50px);
}

.eleks-award-badge {
    width: 80px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px;
}

.eleks-award-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.eleks-award-badge:hover .eleks-award-logo {
    filter: grayscale(0);
}

.eleks-panel-plus {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.eleks-panel-plus:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%) scale(1.1);
}

.eleks-panel.eleks-active .eleks-panel-plus {
    opacity: 0;
    pointer-events: none;
}

.eleks-navigation-arrows {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 3;
    transition: all 0.6s ease;
}

.eleks-panel:not(.eleks-active) .eleks-navigation-arrows {
    opacity: 0;
}

.eleks-nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.eleks-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}