body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #000;
    caret-color: transparent;
}

.header1 {
    margin-top: 150px !important;
    background: url('./about-us-img/1.jpg') no-repeat center center !important;
    background-size:100% 100% !important;
    color: white;
    /* height: fit-content !important; */
    padding: 140px 0;
    text-align: center;
    /* position: relative; */
}

.header1 h1,
.header1 p {
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
}

.header1 h1 {
    font-size: 48px;
    font-weight: 600;
    color: #FFD700;
}

.header1 p {
    font-size: 18px;
    color: #FFD700;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.content {
    padding: 10px 0;
}

.content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFD700;
}

.content h1 {
    font-size: 36px;
    font-weight: 600;
}

.content p {
    font-size: 16px;
    color: #666;
    /* margin-bottom: 30px;  */
}



.animate {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =================icon css zoom in and zoom out effect============== */
.service-icon .fas {
    color: #ffc107;
}

.service-icon {
    margin: auto;
    width: 60px;
    height: 60px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    animation: pulse 1.5s infinite;
    border: 0.2px solid rgb(216, 216, 216);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.service-text {
    font-size: 16px;
    color: #333;
}

/* .know-more-btn {
    display: flex;
    align-items: center;
    background-color: #8b7d6b;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.know-more-btn .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: #8b7d6b;
    border: 1px solid #8b7d6b;
    margin-left: 10px;
} */

/* ===================second section css============ */
.title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    animation: fadeIn 2s;
}

.view-more {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    animation: fadeIn 2s;
}

.view-more:hover {
    text-decoration: underline;
}

.content {
    font-size: 16px;
    color: #666;
    animation: fadeIn 2s;
}

.view-more-image {
    margin-top: 10px;
    animation: fadeIn 2s;
    width: 100%;
    height: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========third section css================== */

.hero-img1 {
    background: url(./about-us-img/real-estate-agent-customer-face-mask-looking-new-project.jpg) no-repeat center center fixed !important;
    background-size: cover !important;
    color: white;
    font-family: Arial, sans-serif;
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-caption {
    right: 5%;
    left: 5%;
}

/* =================forth section css=============== */

:root {
    --primary-color: #FFC107;
    /* Yellow */
    --secondary-color: #ffffff;
    /* White */
}

body {
    background-color: var(--secondary-color);
    color: #333;
}

.feature-box {
    text-align: center;
    border: 1px solid #eaeaea;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--secondary-color);
    height: 100%;
    /* Ensures uniform height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 50px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-box:hover i {
    color: #e0a800;
    /* Slightly darker yellow on hover */
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    color: #333;
}

.feature-description {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

/* ====================new=========================== */

.icon-box {
    color: #ffc107;
    font-size: 3rem;
    animation: bounce 1.5s infinite;
}
.message{
    display: flex;
    flex-direction: column;
}
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.theme-bg {
    background-color: #ffc107;
}

/* ======================================== */



.icon-box {
    color: #ffc107;
    font-size: 3rem;
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.cta-section {
    background-color: #f8f9fa;
    padding: 1rem 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-theme {
    background-color: #ffc107;
    color: #fff;
    border: none;
    transition: all 0.3s;
}

.btn-theme:hover {
    background-color: #e0a800;
    color: #fff;
}