body {
    /* -webkit-user-select: none; */
    /* Safari */
    /* -ms-user-select: none; */
    /* IE 10 and IE 11 */
    /* cursor: none;   */
    /* pointer-events: none;     */
    /* Standard syntax */
    caret-color: transparent;
}

.hero-img {
    background: url(./real-estate-img/real-estate-hero-img.jpg) no-repeat center center fixed !important;
    background-size: cover !important;
    color: white;
    font-family: Arial, sans-serif;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-caption1 {
    bottom: 5rem;
}

/* ==============add-property-section=============== */
.property-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.property-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.property-card:hover img {
    transform: scale(1.05);
}

.property-card .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #c9c7c0;
    color: #000000;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
}

.property-card .favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffffff;
    color: #000000;
    font-weight: 600;
    padding: 5px;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.property-card .favorite.active {
    color: #d8b47a;
}

.property-card .agent-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.property-card .agent-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.property-card .details {
    padding: 15px;
}

.property-card .details .title {
    font-size: 1.25rem;
    font-weight: 700;
}

.property-card .details .location {
    color: #757575;
    font-size: 0.875rem;
}

.property-card .details .description {
    color: #757575;
    font-size: 0.875rem;
    margin: 10px 0;
}

.property-card .details .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.property-card .details .icons {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #757575;
    font-size: 0.875rem;
}

.property-card:hover .favorite {
    opacity: 1;
    transform: scale(1);
}

.property-card:hover .agent-info {
    opacity: 1;
    transform: translateY(0);
}




/* Adding this to ensure that the images inside the property-card behave as a slider */
.property-card .slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.property-card .slider-images {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.property-card .slider-images img {
    width: 100%;
    height: auto;
}

/* =====================second================== */
/* 
.content-card {
    background: #fff;
    border-radius: 10px;
    
    padding: 20px;
    margin: 10px;
    height: 100%;
}

.content-card img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.zoom-effect-container {
    overflow: hidden;
    position: relative;
}

.zoom-effect-container:hover .zoom-effect {
    transform: scale(1.05);
}

.zoom-effect {
    transition: transform 0.3s ease;
} */


.hero-section {
    /* padding: 50px; */
    text-align: left;
    background-color: #fff;
}

.hero-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #f5b642, #a67c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1rem;
    margin-top: 20px;
    color: #666;
}

.btn-learn-more {
    margin-top: 30px;
    padding: 10px 20px;
    border: 2px solid #f5b642;
    border-radius: 25px;
    background-color: transparent;
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

.btn-learn-more:hover {
    background-color: #f5b642;
    color: #fff;
}



/* ======================third-section================= */
.testimonial {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.testimonial .stars {
    color: #ffc107;
}

/* ======================third-section================= */
.ancher:hover {
    color: #d4a14e !important;
}

.section-title {
    padding: 30px;
}

.section-title-container {
    display: flex;
    align-items: center;

}

.section-title-container::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background-color: #d4af37;
    margin-left: 10px;
}

.nav-links {
    margin-top: 10px;
    margin-bottom: 20px;
}

.nav-links a {
    color: #d4af37;
    margin-right: 10px;
    text-decoration: none;
}

.nav-links a:not(:first-child) {
    color: #6c757d;
}

.project-image {
    width: 100%;
    height: auto;
    transition: transform 0.6s, filter 0.6s;
    transform-style: preserve-3d;
}

.project-image-container:hover .project-image {
    transform: scale(1.1);
    /* filter: brightness(50%); */
}

.project-image-container {
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

/* 
.project-button {    
    background-color: #d4af37;
    color: white;
    border: none;
    padding: 8px 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 10px;

} */


.project-button:hover {
    background-color: #636364;
}

.project-image-container:hover .project-button {
    display: block;
}

.hero-img1 {
    background: url(./real-estate-img/pic-bg-1.jpg) no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: Arial, sans-serif;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =================Services================== */
.services-section {
    text-align: center;
    padding: 50px 0;
}

.services-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #f5b642, #a67c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-section h2 {
    font-size: 36px;
    color: #2c3e50;
}

.services-section p {
    font-size: 18px;
    color: #b08d57;
}

.service-item {
    margin-top: 30px;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: scale(1.1);
}

.service-item i {
    font-size: 50px;
    color: #b08d57;
}

.service-item h4 {
    font-size: 20px;
    margin-top: 20px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    color: #2c3e50;
}

.learn-more-btn {
    margin: 30px 30px;
    padding: 10px 30px;
    border: 1px solid #b08d57;
    color: #2c3e50;
    text-transform: uppercase;
    font-size: 16px;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}

.learn-more-btn:hover {
    background-color: #b08d57;
    color: #fff;
}

/* =============new- section===================== */
.team-section h2 {
    font-size: 28px;
    font-weight: bold;
    animation: fadeIn 2s;
}

.team-section p {
    font-size: 16px;
    color: #666;
    animation: fadeIn 2s;
}

.team-section .btn {
    background-color: #f0ad4e;
    color: white;
    border: none;
    animation: fadeIn 2s;
}

.team-section .btn:hover {
    background-color: #ec971f;
}

.team-section .team-images img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.team-section .team-images img:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===============start today=================== */
.hero-img2 {
    background: url(./real-estate-img/start-today.jpg) no-repeat center center fixed !important;
    background-size: cover !important;
    color: white;
    font-family: Arial, sans-serif !important;
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-attachment: fixed; */
}

.carousel-caption1 {
    /* top: 10%; */
    height: fit-content;
    /* width: 95%; */
    bottom: 10%;
    /* min-height: 200px !important; */

}

@media(max-width: 1024px) {
    .hero-img1 {
        height: 40vh !important;
    }

    .hero-img {
        height: 60vh;
    }

    .hero-img2 {
        height: 56vh;
        /* min-height: 900px !important; */
    }

    .carousel-caption1 {
        /* top: 10%; */
        bottom: 2%;
        left: 2%;
        right: 2%;
        /* min-height: 200px !important; */
    }

    .carousel-caption2 {
        left: 2%;
        right: 2%;
    }

    .hero-section h2 {
        font-size: 1.6rem;
    }

    .services-section h1 {
        font-size: 1.6rem;
    }
}