/* Our Key Strengths Section */
.our-key-section {
    background: var(--white);
    overflow: hidden;
}

.our-key-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    .hd-type1{
        margin-bottom: 0;
    }
    @media (max-width: 768px) {
        align-items: flex-start;
        gap: 20px;
    }
}

.our-key-navigation {
    display: flex;
    gap: 20px;
    align-items: center;
    
    @media (max-width: 768px) {
        align-self: flex-end;
    }
}

.our-key-prev,
.our-key-next {
    background: var(--primary-color);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Our Key Strengths Custom Navigation Buttons */

.our-key-prev:hover,
.our-key-next:hover {
	opacity: 0.8;
}

.our-key-prev:focus,
.our-key-next:focus {
	outline: none;
}

.our-key-prev svg,
.our-key-next svg {
	display: block;
	transition: all 0.3s ease;
}

.our-key-prev:disabled,
.our-key-next:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.our-key-prev:disabled:hover,
.our-key-next:disabled:hover {
	transform: none;
	opacity: 0.5;
}

/* RTL Support for Navigation Buttons */
[dir="rtl"] .our-key-prev svg {
	transform: scaleX(-1);
}

[dir="rtl"] .our-key-next svg {
	transform: scaleX(-1);
}

/* Slider Styles */


.our-key-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.our-key-slider .slick-slide {
    /* height: inherit; */
    margin: 0 15px;
}

/* Strength Card Styles */
.strength-card {
    position: relative;
    /* height: 508px; */
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* @media (max-width: 1200px) {
        height: 450px;
    }
    
    @media (max-width: 768px) {
        height: 400px;
    }
    
    @media (max-width: 576px) {
        height: 350px;
    } */
}

/* .strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 19, 234, 0.15);
} */

/* .card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
} */

.card-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: var(--white);
    border-radius: 5px;
    margin: 20px;
    
    @media (max-width: 768px) {
        margin: 15px;
    }
    
    @media (max-width: 576px) {
        position: static;
        margin: 0px;
    }
}

.card-title {
    color: var(--primary-color);
    font-family: var(--font-type2);
    font-size: 30px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 10px;
    
    @media (max-width: 1200px) {
        font-size: 26px;
        line-height: 30px;
    }
    
    @media (max-width: 768px) {
        font-size: 22px;
        line-height: 26px;
    }
    
    @media (max-width: 576px) {
        font-size: 20px;
        line-height: 24px;
    }
}



.key-content {
    padding: 15px;
    @media (max-width:576px){
        padding: 15px 0 0;
    }
    .key-title {
        color: var(--primary-color);
        font-family: var(--font-type2);
        font-size: 26px;
        font-weight: 400;
        line-height: 25px;
        margin: 0 0 15px;
        flex: 1;
        @media(max-width: 1400px){
            font-size: 24px;
            line-height: 25px; 
        }
        @media(max-width: 991px){
            font-size: 22px;
            line-height: 23px; 
        }
    }
    .key-description {
        color: var(--text-default-color);
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
        margin: 0;
        
        @media (max-width: 768px) {
            font-size: 16px;
            line-height: 24px;
        }
        
        @media (max-width: 576px) {
            font-size: 14px;
            line-height: 22px;
        }
    }
}

/* Card Variations */
.card-top-overlay .card-overlay {
    top: 0px;
    bottom: auto;
}

.card-text-only .card-overlay {
    top: 20px;
    bottom: auto;
    background: var(--white);
}

/* RTL Support */


[dir="rtl"] .our-key-navigation {
    @media (max-width: 768px) {
        align-self: flex-start;
    }
}

[dir="rtl"] .card-title,
[dir="rtl"] .card-description {
    text-align: right;
}

/* Slick Slider Responsive Breakpoints */

