@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 1.2s ease-out forwards;
}

.service-tab {
    background-color: white;
    color: blue;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 2px solid white;
}

.service-tab:hover,
.active-tab {
    background-color: blue;
    color: white;
    transform: scale(1.05);
}

/* Service Cards */
.property-card {
    background-color: white;
    color: blue;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.3);
}



.real-estate-card {
    background-color: #f9fafb;
    /* Light Gray for Soft Contrast */
    color: #1e3a8a;
    /* Dark Blue */
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    cursor: pointer;
}

.real-estate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    background-color: #eff6ff;
    /* Soft Blue on Hover */
}

/* Icon Styling */
.real-estate-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #1e40af;
    /* Deep Blue */
}

/* Text Styling */
.real-estate-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1e3a8a;
    /* Darker Blue */
}

.real-estate-text {
    font-size: 1rem;
    color: #374151;
}

.real-estate-card {
    background-color: #f9fafb;
    color: #1e3a8a;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    cursor: pointer;
}

.real-estate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    background-color: #eff6ff;
}

.real-estate-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #1e40af;
}

.real-estate-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.real-estate-text {
    font-size: 1rem;
    color: #374151;
}


.property-feature {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s, background-color 0.3s;
    cursor: pointer;
}

.property-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
}

.property-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffeb3b;
}

.property-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.property-text {
    font-size: 1rem;
    color: #e0e0e0;
}

.service-card {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    background-color: #f0f9ff;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #1e40af;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1e3a8a;
}

/* Text Styling */
.service-text {
    font-size: 1rem;
    color: #374151;
}

