.hero-section {
    /* background-image: url(./images/Frame\ 23451.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 770px; */
}
body {
    font-family: 'Roboto', sans-serif;
    position: relative;
    z-index: 9;
}
.nav-top {
    display: flex;
    justify-content: left;
    column-gap: 20px;
    padding: 10px 60px;
    background-color: #9cb381;
}

.contact-detail {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

i.fa-solid.fa-envelope {
    color: #861a1a;
    font-size: 16px;
}

i.fa-solid.fa-phone {
    color: #861a1a;
    font-size: 16px;
}

.contact-detail span a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
}

nav {
    padding: 15px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #00000091;
    /* position: relative; */
    backdrop-filter: blur(6px);
}

.logo {
    color: #fff;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    transition: all 0.5s ease;
    margin: 0;
}

nav ul li {
    list-style-type: none;
    position: relative;
    /* For underline animation */
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 14px;
}

.menu-icon {
    display: none;
}

.menu-icon i {
    color: #fff;
    font-size: 30px;
    transition: transform 0.3s ease;
    /* Rotate effect for toggle button */
}

.menu-icon.active i {
    transform: rotate(90deg);
    /* Rotate toggle icon on active state */
}

/* .hero img {
    width: 100%;
    height: 750px;
} */

nav ul li a {
    text-decoration: none;
    color: #fff;
    position: relative;
    /* Needed for the pseudo-element */
    transition: color 0.3s ease, transform 0.3s ease;
    /* Smooth color and scale transition */
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    position: relative;
    /* Needed for the pseudo-element */
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Underline effect starts from the center */
nav ul li a::after {
    content: '';
    position: absolute;
    left: 50%;
    /* Start from the middle */
    bottom: -5px;
    /* Position just below the text */
    width: 0;
    height: 2px;
    background: #9cb381;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

/* Expand underline outward from the center */
nav ul li a:hover::after {
    width: 100%;
    left: 0;
    /* Move left while expanding */
}

nav ul li a:hover {
    color: #9cb381;
}

.logo img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.menu-right {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

/* search icon */

i.fa-solid.fa-search.search-icon {
    color: #fff;
    font-size: 20px;
    margin-bottom: 0px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
    transition: color 0.3s;
}

.search-icon:hover {
    color: #C49A6C;
    /* Change color on hover */
}

/*.search-input {*/
/*    position: absolute;*/
/*    right: 50px;*/
/*    top: -10px;*/
/*    width: 200px;*/
/*    padding: 5px;*/
/*    border: 1px solid #ccc;*/
/*    border-radius: 5px;*/
/*    display: none;*/
/*}*/
.search-input {
    position: absolute;
    right: 0;
    top: 25px;
    width: 200px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
}



/* banner-sec */
.banner_main {
    /*background-image: url(./images/main_banner.png);*/
    width: 100% !important;
    background-size: cover;
    margin-top: -100px;
    padding-top: 80px;
}

.banner {
    padding: 150px 60px;
    width: 50%;
}

.add_to_cart {
    position: relative;
    overflow: hidden;
    background-color: #9cb381;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;

}

/*.add_to_cart::before {*/
/*    content: "Know More";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: -100%;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: #CEA16C;*/
/*    transition: left 0.4s ease-in-out;*/
/*    color: #ffffff;*/
/*    border: none;*/
/*    padding: 12px 0px 0px 0px;*/
/*    font-size: 16px;*/
/*    font-weight: bold;*/
/*}*/

.add_to_cart:hover::before {
    left: 0;
}

.banner h1 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 65px;
    color: #fff;
}

.banner p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 35px;
}

.about-us {
    padding: 50px 60px;
}

.about-img {
    height: 100%;
    background-image: url(./images/real-stat.avif);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
    transition: box-shadow 0.5s ease-in;
}

.about-img:hover {
    box-shadow: 8px 8px 0px 0px #9cb381;
}

.about-content h1 {
    font-size: 20px;
    color: #9cb381;
    text-transform: uppercase;
    font-weight: bold;
}

.about-content h2 {
    font-size: 35px;
    padding-right: 100px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 50px;
}

.about-content p {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 35px;
    color: #000;
}

.get-listed {
    padding: 0px 60px 50px 60px;
}

.get-listed h1 {
    font-size: 20px;
    color: #9cb381;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.get-listed h2 {
    font-size: 35px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    padding: 0px 250px;
}

.dr-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 100px;
    padding-top: 20px;
    place-items:center;
}

.listing1 {
    padding: 40px 15px;
    background-image: url(./images/Group\ 128277.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    border: 2px solid #861a1a;
    width: -webkit-fill-available;
}

.listing1 h3 {
    font-size: 22px;
    text-align: center;
    color: #861a1a;
    text-transform: uppercase;
    font-weight: 700;
}

.listing1 h4 {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    padding: 10px 0px;
    color: #fff;
}

.listing1 h5 {
    text-align: center;
    font-size: 14px;
    color: #fff;
}

i.fa-solid.fa-check {
    color: #861a1a;
    font-size: 22px;
}

.listing-points span {
    font-size: 19px;
    color: #fff;
    font-weight: 400;
}

.listing-points {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 7px;
}

/* footer */
.dr-footer {
    padding: 50px 60px 20px 60px;
    background-image: url(./images/Group\ 128277.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-logo img {
    width: 100%;
    padding-bottom: 15px;
}

.footer-icon {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
}

.footer-icon span a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

.quick-links {
    padding-left: 25px;
}

.quick-links h1 {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

.quick-links p a {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
    text-decoration: none;
}

.newsletter h1 {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

.newsletter-input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.subscribe-btn {
    margin-top: 10px;
    padding: 17px 40px;
    font-size: 15px;
    color: white;
    background: #861a1a;
    /* Brownish button */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

.copyright {
    text-align: center;
}

.copyright span {
    font-size: 20px;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
}

.copyright {
    text-align: center;
    padding: 15px 0px 0px 0px;
    border-top: 1px solid #861a1a;
}

.dr-contact {
    padding: 0px 60px 50px 60px;
}

.contact-left h1 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: #9cb381;
    padding-bottom: 35px;
    margin: 0;
}

.contact-left h2 {
    font-size: 35px;
    text-transform: capitalize;
    font-weight: bold;
    text-align: left;
}

.contact-icon {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 0px;
}

.contact-fig {
    height: 40px;
    width: 40px;
    background-color: #ebe8e4;
    text-align: center;
    align-content: center;
    /*border-radius: 100%;*/
    border: 1px solid #861a1a;
}

.contact-fig img {
    height: 20px;
    width: 20px;
}
.newsletter ul {
    list-style: none;
    padding: 0;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.contact-details h3 {
    font-size: 15px;
    color: #fff;
    margin: 0;
    padding: 0;
    padding-bottom: 5px;
}

.contact-details h4 {
    font-size: 15px;
    color: #fff;
    margin: 0;
    padding: 0;
}
.contact-details a{
    color: #fff;
    text-decoration: none;
}


.contact-left span {
    font-size: 20px;
    line-height: 35px;
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    background: rgba(156, 179, 130, 0.85);
    /* Green overlay */
    padding: 15px;
    text-align: center;
    width: 100%;
    border-top: 4px solid #861a1a;
}

.contact-container h2 {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
    text-align: left;
    padding-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid white;
    background: transparent;
    color: white;
    font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: white;
}

.contact-form button {
    background: #861a1a;
    color: #fff;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background: #fff;
    color: #861a1a;
}


/*------------------new-contact--------------css*/

        .table-container {
            max-width: 600px;
            margin: auto;
            overflow-x: auto;
        }
      .contact_table  table {
            width: 100%;
            border-collapse: collapse;
        }
       .contact_table th, td {
            border: 1px solid #ddd;
            padding: 5px 10px;
            text-align: left;
        }
        .contact_table th {
            background-color: #861a1a;
            color: white;
        }
      .contact_table  tr:nth-child(even) {
            background-color: #f2f2f2;
        }
       
        
/*new-contact-css-end*/
/* slider */
.brand-slider {
    padding: 50px 60px 50px 60px;
}

.slider-container {
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 25%;
    /* 4 images at a time */
    box-sizing: border-box;
    padding: 10px;
}

.slide img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    background: #fff;
    border-radius: 10px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
}

/* locations */
.pi {
    background-color: #9cb381;
    padding: 50px 60px;
}

.dr-location .row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.loc1 {
    width: 23%;
    border-radius: 20px;
    border: 1px #fff solid;
    text-align: center;
    padding-top: 15px;
}

.loc1 h4 {
    color: #fff;
    padding-bottom: 20px;
}

.loc1 p {
    color: #a35500;
    font-weight: 500;
    line-height: 34px;
}

.loc1 a {
    color: #fff;
    text-decoration: none;
}

.pi h1 {
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-weight: 700;
}

.pi h2 {
    text-align: center;
    font-size: 35px;
    text-transform: capitalize;
    padding: 0px 200px;
    color: #fff;
    padding-bottom: 20px;
    font-weight: 700;
}

.dr-testimonial {
    padding: 100px 60px;
    background-image: url(./images/one.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}

.testi-left h1 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.testi-left h2 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    padding-right: 250px;
    line-height: 50px;
    padding-bottom: 30px;
}

.testi-left p {
    font-size: 22px;
    color: #ffff;
}

/* slider */
.container {
    max-width: 600px;
    background: #fff;
    padding: 28px calc(28px + 10px + 16px) 28px 28px;
    border-radius: 10px;
    position: relative;
}

.card-wrapper {
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    scrollbar-width: none;
    height: 100%;
    scroll-behavior: smooth;
}

.card {
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
}

.card .head {
    display: flex;
    grid-gap: 12px;
    margin-bottom: 16px;
}

.card .profile h3 {
    font-weight: 600;
    font-size: 20px;
}

.card .profile p {
    font-size: 14px;
    font-weight: 500;
    color: #888;
}

.card .review {
    flex-grow: 1;
    margin-bottom: 16px;
}

.card .head img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.card .ratings i {
    color: var(--yellow);
}

.indicator {
    display: flex;
    flex-direction: column;
    grid-gap: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 28px;
    justify-content: center;
}

.indicator a {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: royalblue;
    transition: all .3s ease;
    opacity: .5;
}

.indicator a:hover {
    opacity: 1;
}

.indicator a.active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px royalblue;
    opacity: 1;
}

/* testimonials */
.dr-testimonial .row {
    display: flex;
    align-items: center;
}

.testimonial-container {
    position: relative;
    width: 100%;
    /*max-width: 600px;*/
    background-image: url(./images/two.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0px 40px 40px 40px;
}

/* Header Section with Flexbox */
.testimonial-header {
    display: flex;
    justify-content: space-between;
}

/* Circular Image */
.testimonial-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid #861a1a;
    object-fit: cover;
    background: white;
    margin-right: 15px;
    position: relative;
    top: -35px;
}

.name-container {
    flex-grow: 1;
    margin-top: 20px;
}

.testimonial-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #6d825f;
}

/* Quote Icon */
.quote-icon {
    font-size: 80px;
    color: #b08968;
    margin-top: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #7d9367;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

/* Pagination Dots */
.pagination {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #7d9367;
}

i.fa-solid.fa-quote-right {
    font-size: 24px;
    color: #fff;
    background: #861A1A;
    padding: 5px;
}




/*Testmonials_css_start*/

body {
    font-family: 'Roboto', sans-serif;
}
.breadcrumb {
    background-image:url(./images/house-isolated-field\ \(1\).jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0px 80px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1    
}
.breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: -1;
}
.breadcrump-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}
.breadcrump-top h1 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.breadcrump-top i.fa-solid.fa-caret-right {
    font-size: 15px;
    color: #fff;
    margin-bottom: 7px;
}
.breadcrumb-bottom h1 {
    font-size: 45px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}
.test_main .test {
    padding: 30px 60px 30px 60px;
}
.test_main .test .row{
    column-gap: 20px;
}
.test .row .col-md-6{
    width:49%;
}
.test_main .testimonial-container {
    display: flex;
    align-items: center;
    position: relative;
    background: white;
    border-radius: 0px 50px 0px 50px;
    padding: 60px 40px 30px 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #b08d57;
}

.test_main .testimonial-container::before {
    content: url('/img/quotation.png');
    color: #b08d57;
    position: absolute;
    top: 40px;
    right: 59px;
}

.test_main .profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #b08d57;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    left: -25px;
    position: absolute;
    top: 30px;
}

.test_main .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test_main .testimonial-content {
    margin-left: 60px;
}

.test_main .customer-name {
    font-weight: bold;
    color: #6a9e76;
    text-transform: uppercase;
    font-size: 14px;
}

.test_main .testimonial-text {
    margin-top: 10px;
    color: #555;
    font-size: 16px;
}




/*Testmonials_css_end*/


/*Sell-your-homes-start*/

.syh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px 60px 50px 60px;
}

.price {
    padding: 50px 25px 50px 25px;
    border: 1px solid #C49A6C;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

.price h1 {
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    padding-bottom: 16px;
}

.price h1,
.price p {
    transition: color 0.3s ease-in-out;
}

.price p {
    text-align: center;
    font-size: 17px;
    color: #000;
    font-weight: 400;
}

.price:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #C49A6C;
}

.price:hover h1,
.price:hover p {
    color: white;
}

.syh-text {
    padding: 0px 60px 50px 60px;
}

.syh-text h1 {
    font-size: 22px;
    text-align: center;
    color: #9cb382;
    font-weight: bold;
    padding: 0px 180px 0px 180px;
    line-height: 38px;
}

.syh-form {
    padding: 50px 60px 50px 60px;
    margin: 0px 60px 50px 60px;
    background-image: url(./images/Group\ 128277.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    text-align: center;
}

.syh-form h1 {
    text-align: left;
    color: #c49a6c;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: bold;
}

.syh-form h2 {
    color: white;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: left;
    font-size: 30px;
}

.syh-input {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.syh-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.syh-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #C49A6C;
    color: white;
}

.syh-form textarea {
    min-height: 130px;
    resize: both;
}

.syh-btn {
    background: #C49A6C;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 15px;
    display: inline-block;
}

.syh-form .syh-btn-wrapper {
    text-align: left !important;
    /* Aligns button to the left */
}

.syh-btn:hover {
    background: #A07E50;
    transform: scale(1.05);
} 

/*Sell-your-homes-end*/


/*Product-css-start*/

.dr-products {
    padding: 50px 60px 50px 60px;

}

.dr-products .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.dr-products .product1 {
    overflow: hidden;
    display: inline-block;
    /*transition: transform 0.4s ease-in-out;*/
}

/*.dr-products .product1:hover {*/
/*    transform: scale(0.9);*/
/*}*/

.product1 img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    /*transition: transform 0.4s ease-in-out;*/
}

.dr-products .product1:hover img {
    /*transform: scale(1.1);*/
    /* The image will zoom in at the same time */
}

.name-price h1 {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

.dr-products .product1:hover .name-price h1 {
    padding-top: 10px;
    transition: padding 0.4s ease;
}

.name-price h2 {
    font-size: 20px;
    text-align: center;
    color: #cea16c;
}

.name-price {
    padding: 20px;
    border-left: 1px solid #9cb381;
    border-right: 1px solid #9cb381;
    border-bottom: 5px solid #9cb381;
    text-align: center;
}

.add_to_cart {
    position: relative;
    overflow: hidden;
    background-color: #9cb381;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;

}

/*.add_to_cart::before {*/
/*    content: "Add To Cart";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: -100%;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: #CEA16C;*/
/*    transition: left 0.4s ease-in-out;*/
/*    color: #ffffff;*/
/*    border: none;*/
/*    padding: 12px 0px 0px 0px;*/
/*    font-size: 16px;*/
/*    font-weight: bold;*/
/*}*/

.add_to_cart:hover::before {
    left: 0;
}

/*product-css-end*/


/*contact-us-start*/
.cont-form {

    margin: 50px 60px 50px 60px;
    column-gap: 60px;
}

.contact {
    background-color: #efebeb;
    padding: 20px;
    border-radius: 15px;
}

.contact h1 {
    padding-bottom: 20px;
}

.contact #YourName {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.contact input,
.contact textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.contact #msg-area {
    height: 100px;

}

.contact button {
    padding: 10px;
    background-color: #9cb381;
    color: #fff;
    border: #9cb381;
}

.cont-form {
    display: flex;
    align-items: center;
}

.detail {
    display: flex;

    flex-direction: column;
    row-gap: 6px;
}


/*contact-us-end*/

/*privacy-policy_css start*/

.privacy{
   margin: 60px;

}
.privacy h2{
    color: #DE7B0D;
    padding-bottom: 20px;
}
 h3, p {
    padding-bottom: 11px;
}

/*privacy-policy_css end*/



        .copyright a {
            color: #fff; /* Default link color */
            text-decoration: none;
            position: relative;
            padding-bottom: 3px;
        }

        .copyright a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: #861a1a;
            transition: width 0.4s ease-in-out;
        }

        .copyright a:hover::after {
            width: 100%;
        }

.mls_today {
    padding-top: 20px;
}

/*new-banner-css-start*/
.container {
            width: 90%;
            max-width: 1200px;
            margin: 50px auto;
        }

        .owl-carousel img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        /* Dots Styling */
        .owl-dots {
            text-align: center;
            margin-top: 15px;
        }

        .owl-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin: 5px;
            background-color: #bbb;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .owl-dot.active {
            background-color: #333;
        }
        
        
.banner_main {
    width: 100% !important;
    background-size: cover;
    margin-top: -170px;
    position: relative;
    z-index: 0;
}

.container_main {
    position: relative;
    z-index: -1;
}

.banner,
.banner2,
.banner3 {
    width: 100%;
    height: 730px;
    text-align: left;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner {
    background-image: url(./images/banner1.png);
    padding: 230px 60px 60px 60px;
}

.banner2 {
    background-image: url(./images/banner2.png);
    padding: 230px 60px 60px 60px;
}

.banner3 {
    background-image: url(./images/estate_fig.png);
    padding: 230px 60px 60px 60px;
}

header {
    position: relative;
    z-index: 9;
}

.banner h1,
.banner2 h1,
.banner3 h1 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 65px;
    color: #fff;
}

.banner p,
.banner2 p,
.banner3 p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 35px;
}

.banner_main button.owl-dot {
    background-color: #ffffff !important;
    width: 10px;
    height: 10px;
}
.container_main .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}
.new_slider_sec button.owl-dot.active {
    background-color: #861a1a !important;
}


.new_slider_sec .owl-dots {
    display: block !important;
}
.owl-theme .owl-dots .owl-dot span {
    display: none !important;
}
/*new-banner-css-end*/
        
/*How-it-works css start*/
        .timeline-container {
    width: 100%;
    padding: 30px 60px;
    text-align: center;
}

/* Title Styling */
.title {
    font-size: 30px;
    font-weight: bold;
    color: #702222;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.title span {
    border-bottom: 4px solid #702222;
    padding-bottom: 5px;
}

/* Timeline Layout */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Row Styling */
.timeline .row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Timeline Items */
.timeline-item {
    flex: 1;
    padding: 20px;
    background: linear-gradient(135deg, #9cb381, #b7d0a8);
    color: white;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover Effect - Reverse Gradient */
.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #b7d0a8, #9cb381);
}

/* Add a subtle glow effect on hover */
.timeline-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.timeline-item:hover::after {
    opacity: 1;
}

/* Timeline Icons */
.timeline-icon {
    width: 60px;
    height: 60px;
    background: white;
    color: #4f6f52;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8em;
    margin-right: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

/* Slight pop effect on hover */
.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
}

/* Timeline Content */
.timeline-content {
    text-align: left;
}

.timeline-content h3 {
    margin: 0;
    font-size: 1.6em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    margin: 5px 0 0;
    font-size: 1em;
    line-height: 1.5;
}

/* Info Section */
.info {
    height: 100%;
    background-image: url(./images/modern-farmhouse-meadow-hill-generative-ai_587448-2232.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}
.info {
    padding: 50px 60px 50px 60px;
}
.info-texts {
    background-color: #000000a6;
    backdrop-filter: blur(10px);
    padding: 50px;
}
.info-texts h1 {
    font-weight: bold;
    color: #fff;
    font-size: 25px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 17px;
    display: flex;
    justify-self: center;
    border-bottom: 2px solid white;
    padding-bottom: 15px;
}
.info-texts p {
    color: #fff;
    text-align: center;
    line-height: 35px;
    font-size: 17px;
}


/*how-it-works css end*/



/*contect-new-css start*/
.cont-form .col-md-5 {
    background: #a6ba8d;
    padding: 25px 25px 25px 25px;
    border-radius: 15px;
    transition: border-radius 0.5s ease;
}


.cont-form .col-md-5:hover {
    border-radius:0px;
}

.detail span a {
    color: #fff;
    text-decoration: none;
}

.detail span a:hover {
    color: black;
}

.contact h1 {
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
font-size:25px;
}

.addr h3 {
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 700;
}

.addr h4 {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}

/*contact-new-css-end*/




/*list-on-the-mls-start*/
.mls_listt {
    padding: 0px 60px;
    align-items: center;
}

.listing .row {
    row-gap: 25px;
    display: flex;

    align-items: center;
}

.btn_list2 {
    background-color: #9cb381;
    border-color: transparent;
    padding: 6px 16px;
    text-decoration: none;
    color: #fff;
}

.btn_list1 {
    background-color: #2b2929;
    border-color: transparent;
    padding: 6px 16px;
    text-decoration: none;
    color: #fff;
}

.btn_mls {
    display: flex;

    justify-content: center;
    gap: 20px;
}

.card {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;

}

.card-body {
    background-color: #e7e7e7;
    padding: 37px;
    text-align: center;
}

.listing {
    padding: 50px 0px;
}

.card-text {
    color: #751c1e;
    font-weight: 600;
}

.head-listing h1 {
    text-align: center;
    margin-top: 50px;
}

/*list-on-the-mls-end*/

/*banner hedaing styling*/
        .typed-words {
            font-size: 2rem;
            font-weight: bold;
            text-transform: uppercase;
            color: white;
        }
        .typed-cursor {
            color: #861a1a;
        }
        .typed {
        color: #9cb381;
        font-weight: 800;
}
/*Banner Styling Heading End*/

/*Banner modification*/

.banner_main{
    position:relative;
}

.drbanner-content{
    position: absolute;
    top: 42%;
    left: 5%;
}

.drbanner-content p {
    font-size: 18px;
    color: #fff;
    line-height: 35px;
    padding: 20px 0px;
}

/*Banner Modification end*/


/*----------------faqs-css-start---------------------*/

.faqs {
    padding: 20px 60px 30px 60px;
}

.faqs .accordion-item:not(:first-of-type) {
    border-top: 4px solid #9cb381;
}

.faqs .faq-item {
    border: 4px solid #9CB381;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
    margin-top: 25px;
}

.faqs .accordion-item {
    border: 3px solid #9CB381;
    border-radius: 40px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.faqs .accordion-button {
    background-color: white;
    color: black;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 25px;
}

.faqs .accordion-button:focus {
    box-shadow: none;
}

.faqs .accordion-button::after {
    display: none !important;
    /* Removes Bootstrap default arrow */
}

.faqs .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: black;
}

.faqs .faq-icon {
    margin-left: 10px;
}

.faqs .accordion-body {
    font-size: 18px;
}

/*----------------faqs-css-start---------------------*/


/*faqsb-css-start*/

.faqsb {
    padding: 20px 60px 30px 60px;
}

.faqsb .accordion-item:not(:first-of-type) {
    border-top: 4px solid #9cb381;
}

.faqsb .faq-item {
    border: 4px solid #9CB381;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
    margin-top: 25px;
}

.faqsb .accordion-item {
    border: 3px solid #9CB381;
    border-radius: 40px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.faqsb .accordion-button {
    background-color: white;
    color: black;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 25px;
}

.faqsb .accordion-button:focus {
    box-shadow: none;
}

.faqsb .accordion-button::after {
    display: none !important;
    /* Removes Bootstrap default arrow */
}

.faqsb .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: black;
}

.faqsb .faq-icon {
    margin-left: 10px;
}

.faqsb .accordion-body {
    font-size: 18px;
}
.quick-links p{
    /*padding: 0;*/
    margin: 0;
}
/*faqsb_sec-css-end*/



/*Abou-css-start*/
.dr-about{
    padding: 50px 60px;
    background-image: url(./images/filler-background.png);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
}
.dr-about .row{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    column-gap: 30px;
}
.abt-left {
    position: relative;
    background-image: url(./images/logo_make_11_06_2023_8.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    transition: box-shadow 0.5s ease-in-out, transform 0.5s ease-in-out;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 0px #0066002e;
    overflow: hidden;
    z-index: 1;
}

.abt-left:hover {
    transform: scale(1.07); 
    box-shadow: 0px 0px 50px 10px rgba(0, 102, 0, 0.4); 
}

.abt-right h1 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006600;
    padding-bottom: 10px;
    border-bottom: 2px solid #006600;
    display: inline-block;
}
.abt-right h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    padding-right: 50px;
}
.abt-right p {
    font-size: 16px;
    line-height: 30px;
    padding-right: 20px;
    text-align: left;
}
.mission-vision{
    padding: 50px 60px 50px 60px;
    background-color: #f8f8f8;
}
.mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 25px 0px 25px 0px;
    background: #006600;
    gap: 10px;
    transition: transform 0.4s ease-in-out;
}
.mission:hover {
    transform: scale(1.05);
}
.mission img {
    max-width: 100%;
    width: 80px;
    padding: 15px;
    background: #fff;
    border-radius: 50%;
}
.mission h1 {
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    padding: 10px 0px;
    border-bottom: 2px solid;
    text-align: center;
}
.mission p {
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
}

/* Main Section Styling */
.why-choose-us {
    padding: 50px 60px; /* Spacing around the section */
}

/* Bootstrap Row for Layout */
.why-choose-us .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
}

/* Left Side - Image */
.left-img {
    background-image: url(./images/location-symbol-with-building.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 100%;
    /* transition: transform 0.4s ease-in-out; */
    transition: box-shadow 0.4s ease-in-out;
    border-radius: 20px;
    height: 720px;
}

/* Hover Effect for Image */
.left-img:hover {
    /* transform: scale(1.05); */
    box-shadow: 10px 10px 0px 0px #006600;
}

/* Right Side - Content */
.col-md-6.right-content {
    flex: 1.2;
}

.right-content h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006600;
    padding-bottom: 10px;
    border-bottom: 2px solid #006600;
    display: inline-block;
}

.intro-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
}

/* Feature Boxes */
.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 102, 0, 0.3);
}

.feature-box h3 {
    color: #006600;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.feature-box p {
    color: #555;
    font-size: 1rem;
}
.what-we-offer {
    background-image: url(./images/4.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 60px;
}
.wwo-inner {
    padding: 30px;
    background-color: #0066004a;
    backdrop-filter: blur(15px);
    text-align: center;
}
.wwo-inner h1 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
}
.wwo-inner p {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
}

/*about-css-end*/


/*comparables-css-start*/

.comparables-inner {
    padding: 50px 60px;
}
.comparables-inner .row {
    flex-wrap: nowrap;
    gap: 30px;
}
.comparables-img {
    background-image: url(./images/architecture-small-residential-cottage-surrounded-by-nature-generative-ai.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 0px #0066002e;
    transition: transform 0.5s ease-in-out;
}
.comparables-img:hover {
    transform: scale(1.07);
    box-shadow: 0px 0px 50px 10px rgba(0, 102, 0, 0.4);
}
.comparables-right h1 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006600;
    padding-bottom: 10px;
    border-bottom: 2px solid #006600;
    display: inline-block;
}
.comparables-right h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    padding-right: 50px;
}
.comparables-right p {
    font-size: 16px;
    line-height: 30px;
}
/* Style for the price paragraph */
.price-paragraph {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* Clickable price text */
.price-paragraph .price-text {
    font-size: 18px;
    font-weight: bold;
    color: #006600;
    background: rgba(0, 102, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    text-align: center;
}

/* Hover effect before clicking */
.price-paragraph .price-text:hover {
    background: #006600;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 102, 0, 0.3);
}

/* Revealed price style with smoother transition */
.price-paragraph .price-text.revealed {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: #006600;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 102, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Makes it feel smoother */
    transform: scale(1.1);
    cursor: default;
}
.comparables-right button {
    background-color: #861a1a; /* Green background */
    color: #fff; /* White text */
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 102, 0, 0.3);
    outline: none;
}

/* Hover Effect */
.comparables-right button:hover {
    background-color: #004d00; /* Slightly darker green */
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 102, 0, 0.5);
}

/* Focus Effect (Keyboard Navigation) */
.comparables-right button:focus {
    outline: 2px solid #006600; /* Light green focus ring */
    outline-offset: 3px;
}

/*comparables-css-end*/


/*broker-tour-css-start*/
.broker-inner {
    padding: 50px 60px;
}
.broker-inner .row {
    flex-wrap: nowrap;
    gap: 30px;
}
.broker-img {
    background-image: url(./images/architecture-small-residential-cottage-surrounded-by-nature-generative-ai.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 0px #0066002e;
    transition: transform 0.5s ease-in-out;
}
.broker-img:hover {
    transform: scale(1.07);
    box-shadow: 0px 0px 50px 10px rgba(0, 102, 0, 0.4);
}
.broker-right h1 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006600;
    padding-bottom: 10px;
    border-bottom: 2px solid #006600;
    display: inline-block;
}
.broker-right h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    padding-right: 50px;
}
.broker-right p {
    font-size: 16px;
    line-height: 30px;
}
/* Style for the price paragraph */
.price-paragraph {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* Clickable price text */
.price-paragraph .price-text {
    font-size: 18px;
    font-weight: bold;
    color: #006600;
    background: rgba(0, 102, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    text-align: center;
}

/* Hover effect before clicking */
.price-paragraph .price-text:hover {
    background: #006600;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 102, 0, 0.3);
}

/* Revealed price style with smoother transition */
.price-paragraph .price-text.revealed {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: #006600;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 102, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Makes it feel smoother */
    transform: scale(1.1);
    cursor: default;
}
.broker-right button {
    background-color: #861a1a; /* Green background */
    color: #fff; /* White text */
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 102, 0, 0.3);
    outline: none;
}

/* Hover Effect */
.broker-right button:hover {
    background-color: #004d00; /* Slightly darker green */
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 102, 0, 0.5);
}

/* Focus Effect (Keyboard Navigation) */
.broker-right button:focus {
    outline: 2px solid #006600; /* Light green focus ring */
    outline-offset: 3px;
}

/*broker-tour-css-end*/


.brand_slider_sec .ftr_brand_sldr .item {
    padding: 0;
    text-align: center;
    color: white;
    border-radius: 10px;
    margin: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand_slider_sec .brand_slider_lr {
    padding: 30px 60px 20px 60px;
}
.brand_slider_sec .ftr_brand_sldr .item img {
    width: 150px !important;
    height: 100px;
    object-fit: cover;
}
.brand_slider_sec .ftr_brand_sldr .owl-item {
    height: 130px !important;
}
.dr-contact .row{
    display: flex;
    align-items: center;
}
.footer-left P{
    color: #fff;
    font-size: 16px;
}



/*==================Open-house=====================*/
.openhouse-inner {
    padding: 50px 60px;
}
.openhouse-inner .row {
    flex-wrap: nowrap;
    gap: 30px;
}
.openhouse-img {
    background-image: url(./images/freepik__a-twostory-beige-house-with-a-blue-roof-and-a-twoc__2350.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 0px #0066002e;
    transition: transform 0.5s ease-in-out;
}
.openhouse-img:hover {
    transform: scale(1.07);
    box-shadow: 0px 0px 50px 10px rgba(0, 102, 0, 0.4);
}
.openhouse-right h1 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006600;
    padding-bottom: 10px;
    border-bottom: 2px solid #006600;
    display: inline-block;
}
.openhouse-right h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    padding-right: 50px;
}
.openhouse-right p {
    font-size: 16px;
    line-height: 30px;
}
/* Style for the price paragraph */

/* Clickable price text */
.openhouse-paragraph .openhouse-text {
    font-size: 18px;
    font-weight: bold;
    color: #006600;
    background: rgba(0, 102, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    text-align: center;
}

/* Hover effect before clicking */
.openhouse-paragraph .openhouse-text:hover {
    background: #006600;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 102, 0, 0.3);
}

/* Revealed openhouse style with smoother transition */
.openhouse-paragraph .openhouse-text.revealed {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: #006600;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 102, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Makes it feel smoother */
    transform: scale(1.1);
    cursor: default;
}
.openhouse-right button {
    background-color: #861a1a; /* Green background */
    color: #fff; /* White text */
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 102, 0, 0.3);
    outline: none;
}

/* Hover Effect */
.openhouse-right button:hover {
    background-color: #004d00; /* Slightly darker green */
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 102, 0, 0.5);
}

/* Focus Effect (Keyboard Navigation) */
.openhouse-right button:focus {
    outline: 2px solid #006600; /* Light green focus ring */
    outline-offset: 3px;
}

/*==================Open-house-end==========================*/



/*======================25-house==================================*/
.mlsphotos-inner {
    padding: 50px 60px;
}
.mlsphotos-inner .row {
    flex-wrap: nowrap;
    gap: 30px;
}
.mlsphotos-img {
    background-image: url(./images/photos.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 0px #0066002e;
    transition: transform 0.5s ease-in-out;
}
.mlsphotos-img:hover {
    transform: scale(1.07);
    box-shadow: 0px 0px 50px 10px rgba(0, 102, 0, 0.4);
}
.mlsphotos-right h1 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006600;
    padding-bottom: 10px;
    border-bottom: 2px solid #006600;
    display: inline-block;
}
.mlsphotos-right h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    padding-right: 50px;
}
.mlsphotos-right p {
    font-size: 16px;
    line-height: 30px;
}
/* Style for the price paragraph */

/* Clickable price text */
.mlsphotos-paragraph .mlsphotos-text {
    font-size: 18px;
    font-weight: bold;
    color: #006600;
    background: rgba(0, 102, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    text-align: center;
}

/* Hover effect before clicking */
.mlsphotos-paragraph .mlsphotos-text:hover {
    background: #006600;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 102, 0, 0.3);
}

/* Revealed mlsphotos style with smoother transition */
.mlsphotos-paragraph .mlsphotos-text.revealed {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: #006600;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 102, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Makes it feel smoother */
    transform: scale(1.1);
    cursor: default;
}
.mlsphotos-right button {
    background-color: #861a1a; /* Green background */
    color: #fff; /* White text */
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 102, 0, 0.3);
    outline: none;
}

/* Hover Effect */
.mlsphotos-right button:hover {
    background-color: #004d00; /* Slightly darker green */
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 102, 0, 0.5);
}

/* Focus Effect (Keyboard Navigation) */
.mlsphotos-right button:focus {
    outline: 2px solid #006600; /* Light green focus ring */
    outline-offset: 3px;
}

/*========================25-house==============================*/


/*============additional_photos=================*/
.additional-inner {
    padding: 50px 60px;
}
.additional-inner .row {
    flex-wrap: nowrap;
    gap: 30px;
}
.additional-img {
    background-image: url(./images/photos.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 0px #0066002e;
    transition: transform 0.5s ease-in-out;
}
.additional-img:hover {
    transform: scale(1.07);
    box-shadow: 0px 0px 50px 10px rgba(0, 102, 0, 0.4);
}
.additional-right h1 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006600;
    padding-bottom: 10px;
    border-bottom: 2px solid #006600;
    display: inline-block;
}
.additional-right h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    padding-right: 50px;
}
.additional-right p {
    font-size: 16px;
    line-height: 30px;
}
/* Style for the price paragraph */

/* Clickable price text */
.additional-paragraph .additional-text {
    font-size: 18px;
    font-weight: bold;
    color: #006600;
    background: rgba(0, 102, 0, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    text-align: center;
}

/* Hover effect before clicking */
.additional-paragraph .additional-text:hover {
    background: #006600;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 102, 0, 0.3);
}

/* Revealed additional style with smoother transition */
.additional-paragraph .additional-text.revealed {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: #006600;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 102, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Makes it feel smoother */
    transform: scale(1.1);
    cursor: default;
}
.additional-right button {
    background-color: #861a1a; /* Green background */
    color: #fff; /* White text */
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 102, 0, 0.3);
    outline: none;
}

/* Hover Effect */
.additional-right button:hover {
    background-color: #004d00; /* Slightly darker green */
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 102, 0, 0.5);
}

/* Focus Effect (Keyboard Navigation) */
.additional-right button:focus {
    outline: 2px solid #006600; /* Light green focus ring */
    outline-offset: 3px;
}

/*============additional_photos=================*/
.product_switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.view_more {
    background-color: transparent;
    color: #000;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #9cb381;
}


.new_slider_sec .title_main h2 {
    font-size: 32px;
    min-height: 50px;
    margin: 0px 0;
    color: #9cb381;
    font-weight: 800;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    text-align: left;
}






/*new-slider-css*/

.title {
    margin-bottom: 0;
    padding-bottom: 0px;
}
.new_banner_cars {
  overflow-x: hidden;  
}
.carousel {
    height: 100vh;
    margin-top: -50px;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .list .item .content {
    position: absolute;
    top: 20%;
    width: 82%;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

.carousel .list .item .author {
    font-weight: bold;
    letter-spacing: 10px;
}

.carousel .list .item .title,
.carousel .list .item .topic {
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}

.carousel .list .item .topic {
    color: #f1683a;
}

.carousel .list .item .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}

.carousel .list .item .buttons button {
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
    width: max-content;
    padding: 0 16px;
}

.carousel .list .item .buttons button:nth-child(2) {
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}

/* thumbail */
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content {
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.thumbnail .item .content .title {
    font-weight: 500;
    font-size: 15px;
    color: #fff;
}

.thumbnail .item .content .description {
    font-weight: 300;
}

/* arrows */
.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}

.arrows button:hover {
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1) {
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.carousel .list .item:nth-child(1) .content .title {
    animation-delay: 0.2s !important;
}

.carousel .list .item:nth-child(1) .content .topic {
    animation-delay: 0.4s !important;
}

.carousel .list .item:nth-child(1) .content .des {
    animation-delay: 0.6s !important;
}

.carousel .list .item:nth-child(1) .content .buttons {
    animation-delay: 0.8s !important;
}

/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.carousel.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time {
    animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}


/* prev click */

.carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
    pointer-events: none;
}

.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
.des {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Clamp to 4 lines on mobile screens */
@media screen and (max-width: 768px) {
  .des {
    -webkit-line-clamp: 4;
  }
  .carousel .list .item .title, .carousel .list .item .topic {
    font-size: 2em;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel {
    width: 100%;
}
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content {
        padding-right: 0;
    }

    .carousel .list .item .content .title {
        font-size: 30px;
    }
    .carousel .list .item .content {
        left: 44%;
    }
}