.navbar{
    border-bottom: 2px solid #B48722 !important;
}

.navbar span{
    color: #B48722;
}






/* banner */



.banner img{
    width: 300px;
    height: 300px;
}

.banner{
    height: auto;
    background-color: #f6f1e4;
}

.banner button{
    background-color: #B48722;
    color: white;
    font-weight: 800;
    padding: 7px;
    border-radius: 5px;
    border: none;
}

.banner h1{
    font-weight: 700;
    color: #B48722;
}

.banner h2{
    font-weight: 600;
}





/* card */



.card{
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 10px;
}




/* process  */


.process-container {
    background-color: #B48722;
    color: white;
    border-radius: 15px;
    padding: 40px;
    margin: 50px auto;
    /* max-width: 1000px; */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.process-header {
    text-align: center;
    margin-bottom: 50px;
}
.process-header h1 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
}
.process-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.process-step {
    text-align: center;
    width: 16%;
    margin-bottom: 30px;
    position: relative;
}
.step-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #B48722;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.process-step:hover .step-icon {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0,0,0,0.15);
}
.step-name {
    font-weight: 600;
    font-size: 1.1rem;
}
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -50px;
    width: 40px;
    height: 2px;
    background-color: rgba(255,255,255,0.5);
}
.arrow-icon {
    position: absolute;
    top: 25px;
    right: -55px;
    color: white;
    font-size: 20px;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-step {
        width: 30%;
    }
    .process-step:nth-child(3)::after {
        display: none;
    }
    .process-step:nth-child(3) .arrow-icon {
        display: none;
    }
}
@media (max-width: 768px) {
    .process-step {
        width: 100%;
        margin-bottom: 40px;
    }
    .process-step:not(:last-child)::after {
        top: auto;
        bottom: -35px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 2px;
        height: 25px;
    }
    .arrow-icon {
        top: auto;
        bottom: -35px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotate(90deg);
        z-index: 99;
    }
}











.floating-widgets {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-widgets a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.floating-widgets a.phone-widget {
    background-color: #007BFF;
}

.floating-widgets a:hover {
    transform: scale(1.1);
}

/* Ensure visibility on smaller screens */
@media (max-width: 576px) {
    .floating-widgets {
        bottom: 15px;
        right: 15px;
    }

    .floating-widgets a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}