.overview-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.overview-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.03;
}

.section-hdtxt.foo {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1c3837 30%, #2a5654 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    position: relative;
    text-align: left;
}

.highlight-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-left: 5px solid #1c3837;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.highlight-icon {
    background: linear-gradient(45deg, #1c3837, #2a5654);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-bottom: 4px solid #1c3837;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}



.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}



.feature-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #1c3837, #2a5654);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text h4 {
    color: #1c3837;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.feature-text h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #1c3837, #2a5654);
}

.property-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.property-image:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.image-overlay {
    background: linear-gradient(to top, rgba(28,56,55,0.9) 0%, rgba(28,56,55,0) 100%);
    padding: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
}

.badge {
    background: #e5262d;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(229,38,45,0.3);
    margin-bottom: 1rem;
    display: inline-block;
}

/* Animations */
.fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.fadeInLeft {
    animation: fadeInLeft 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.fadeInRight {
    animation: fadeInRight 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-hdtxt.foo {
        font-size: 2rem;
        text-align: center;
    }
    
    .highlight-box,
    .feature-card {
        padding: 1.5rem;
    }
    
    .property-image {
        margin-top: 2rem;
    }
}
