/* Override any parent overflow issues */ 
body, 
.benfitsection {
    overflow: visible !important;
}

.full-width-container {
    width: 100%;
    padding: 0 16px;
    overflow: visible !important;
}

.main-container {
    width: min(96%, 1400px);
    margin-inline: auto;
    padding-block: 70px;
    overflow: visible !important;
}

/* .two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    overflow: visible !important;
} */

/* Left Column Styles */
.left-column {
    position: sticky;
    top: 60px;
    height: fit-content;
    align-self: start;
    z-index: 10;
}

.left-heading {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 40px;
    line-height: 1.2;
}

.paragraph-container {
    position: relative;
    min-height: 250px;
}

.paragraph-container .paragraphh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.8;
    pointer-events: none;
    filter: blur(10px);
}

.paragraph-container .paragraphh.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    filter: blur(0px);
    z-index: 2;
}

.paragraph-container .paragraphh.vanishing {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
    filter: blur(10px);
    z-index: 1;
}

/* Right Column Styles */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.cardd {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: clamp(1rem, 2vw, 1.25rem);
}

.cardd:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.cardd .card-image {
    width: 100%;
    height: 282px;
    object-fit: cover;
	border-radius: 24px;
}

.cardd .card-content {
    padding: 3rem 1.5rem;
}

.cardd .card-title {
    font-size: 2.25rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'SF Pro';
}

.cardd .card-description {
    color: #7F8C8D;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-column {
        position: relative;
        top: 0;
    }

    .right-column {
        gap: 40px;
    }

    .left-heading {
        font-size: 2rem;
    }
    
    .paragraph-container {
        min-height: 300px;
    }
    
    .paragraph-container .paragraphh {
        position: relative;
        opacity: 1;
        transform: none;
        filter: none;
        pointer-events: auto;
    }
}

/*New Css Added*/

#benefitAnimationSection .title-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: clamp(400px, 50vw, 588px);
}

.paragraph-container {
    position: relative;
    min-height: 160px;
}

.card-content p {
  color: rgba(0,0,0,0.7);
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: -0.009rem;
}


@media(max-width: 767px){
	.cardd .card-content {
    padding: 2rem 1rem;
}
}
