/* --- /css/sections/why-klinjal-section.css --- */

.why-klinjal-section {
    /* Padding to create space above BOTH aligned images */
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden; 
}

.sticky-layout-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    /* This rule aligns the top of the left and right columns perfectly */
    align-items: start; 
}

.why-klinjal-top-image {
    width: 100%;
    border-radius: 12px; 
    margin-bottom: 50px;
}

.why-klinjal-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.why-klinjal-images {
    position: sticky;
    top: 120px; 
}

.why-klinjal-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px; 
}

.feature-item {
    display: flex;
    align-items: center; 
    gap: 30px; 
    margin-bottom: 40px;
}

.feature-icon {
    flex-shrink: 0;
    width: 70px; 
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 50px; 
    height: 50px;
}

.feature-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-text p {
    margin: 0;
    color: var(--text-muted); 
}

.btn-dark {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* --- Responsive Styles --- */
@media (max-width: 991px) {
    .sticky-layout-wrapper {
        grid-template-columns: 1fr;
    }
    .why-klinjal-images {
        position: static;
        margin-top: 40px;
    }
}