.search-btn {
    padding: 6px 26px !important;
    height: 45px;
    margin-top: 5px;

}

.search-btn span {
    margin-left: -5px;
}

#openModalBtn {
    color: rgb(12, 23, 62);
    font-weight: 500;
}

.fixed-container {
    position: fixed;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: rgb(255, 255, 255);
    bottom: 0;
    height: 50px;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px,
        rgba(0, 0, 0, 0.12) 0px 4px 8px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px,
        rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.fixed-container div {
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-left: 1px solid black;
    font-weight: 500;
    padding: 5px;
}

.fixed-container div:first-child {
    border-left: none;
    /* Remove border for the first item */
}

.fixed-container div button {
    margin: 0;
    /* Remove unnecessary margin */
}

.fixed-container div a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.fixed-container div a i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .fixed-container {
        height: auto;
        /* Adjust height for better spacing */
        /* grid-template-columns: 1fr 1fr;  */
        padding: 10px 0;
    }

    .fixed-container div {
        font-size: 14px;
        padding: 6px 5px;
        /* Add padding for better touch interaction */

    }

    .fixed-container div button i {
        font-size: 20px;
    }

    .fixed-container div button {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 16px;
    }

    .fixed-container div a {
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }

    .fixed-container div a i {
        font-size: 20px;
        /* Slightly increase icon size */
    }
}



.hero {
    width: 100%;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.slider {
    width: 352px;
    height: 380px;
    overflow: hidden;
    border: 2px solid #ccc;
    /* border-radius: 10px; */
    position: relative;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    animation: slide 10s infinite linear;
}

.slider img {
    width: 352px;
    height: auto;
    flex-shrink: 0;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-352px);
    }

    45% {
        transform: translateX(-352px);
    }

    50% {
        transform: translateX(-704px);
    }

    70% {
        transform: translateX(-704px);
    }

    75% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(0);
    }
}

.counter-wrap {
    border-right: 1px solid rgb(141, 141, 164);
}

.col-lg-4 h2 {
    color: rgb(237, 59, 127) !important;
}

.col-lg-4 h3 {
    color: rgb(65, 65, 232);
}

.col-lg-4 p strong {
    color: rgb(16, 15, 16);
    font-weight: 700;
}

.col-lg-4 p {
    color: rgb(28, 27, 27);
}

.enquiry-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
}

.enquiry-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.enquiry-form label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea,
.enquiry-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

#property option:hover {
    cursor: pointer;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: 1px solid blue;
}

.enquiry-form button {
    background-color: rgb(11, 11, 69);
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.enquiry-form button:hover {
    background-color: #e3e0e0;
    color: black;
}

.enquiry-form textarea {
    resize: none;
}

.text-center h1 {
    font-size: 40px !important;
}

.text-center p {
    color: white;
    font-size: 22px;
}

/* .about-buy {
    width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.buy-para h3 {
    letter-spacing: 2px;
    color: blue;
}

.buy-para p {
    font-size: 20px;
    text-align: justify;
    color: rgb(65, 60, 60);

}

.buy-para h4 {
    font-size: 18px;
    letter-spacing: 2px;
    color: rgb(98, 98, 104);
}

.container button {
    padding: 10px 20px;
    background: rgb(11, 11, 69);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.container button:hover {
    background: #ababad;
    color: black;
}

.property-section {
    width: 80%;
    margin: 0 auto;
    padding: 50px 20px;
}

.property-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.property-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-card .details {
    padding: 15px;
}

.property-card h3 {
    margin: 0 0 10px;
}

.property-card p {
    margin: 5px 0;
    color: #262222;
    font-size: 16px;
  font-weight: 500;
} */

/*.property-card button {
    padding: 10px;
    width: 48%;
    margin: 5px 1%;
    border: none;
    background: #1d1554;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.property-card button:hover {
    background: #d3d5d8;
    color: black;
}

.property-card .buttons {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.location-icon {
    margin-right: 5px;
    vertical-align: middle;
}

.details p i {
    color: rgb(26, 19, 66);
    font-size: 18px;
    margin-right: 10px;
}*/

@media (max-width:768px) {
    .about-buy {
        flex-direction: column;
    }
} 


/* ..........................sell property................... */

.sell-section {
    padding: 50px 20px;
}

.sell-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.sell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.sell-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sell-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sell-card .details {
    padding: 15px;
}

.sell-card h3 {
    margin: 0 0 10px;
}

.sell-card p {
    margin: 5px 0;
    color: #555;
}

.sell-card button {
    padding: 10px;
    width: 48%;
    margin: 5px 1%;
    border: none;
    background: #ff7e5f;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.sell-card button:hover {
    background: #feb47b;
}

.sell-card .buttons {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.color p {
    color: rgb(82, 70, 70);
}


/* ................privacy page............. */

.btn-primary {
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: rgb(0, 0, 0) !important;
    /* Initial background color */
    border: none;
    cursor: pointer;
    outline: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(227, 226, 226) !important;
    ;
    /* Target background color */
    transition: top 0.3s ease;
    z-index: 0;
    /* Keep the background behind the text */

}

.btn-primary:hover::after {
    top: 0;
    color: black;
}

.btn-primary:hover {
    color: black !important;
}

.btn-primary span {
    position: relative;
    z-index: 1;
    /* Ensure the text stays above the background */
}



.btn-danger {
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    font-size: 16px;
    background-color: rgb(227, 226, 226);
    color: black;
    border: none;
    cursor: pointer;
    outline: none;
}

.btn-danger::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black !important;
    ;
    transition: top 0.3s ease;
    z-index: 0;

}

.btn-danger:hover::after {
    top: 0;

}

.btn-danger:hover {
    color: white;
}

.btn-danger span {
    position: relative;
    z-index: 1;
}

.btn-danger {
    background-color: rgb(227, 226, 226);
    color: black;

}

.btn-danger:hover {
    background-color: black !important;
}

/* .section-counter {
    background-color: rgb(211, 207, 207);
    padding: 20px;

} */

.caption {
    color: black !important;
}

.error {
    color: red;
    font-size: 14px;
}

.site-footer {
    background-color: rgb(15, 15, 41);
}

.widget h3 {
    color: orange !important;
    font-size: 20px !important;
}

.widget address {
    color: white;
}

.widget ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
}

.widget ul li a:hover {
    transform: scale(1.1);
    color: orange;
}

.social a {
    background-color: rgb(241, 241, 241) !important;
    color: black;
    /* background-color: orange !important; */

}

.social a span {
    font-size: 18px;
    color: black;
}

.social a:hover {
    background-color: orange !important;
    /* background-color: rgb(241, 241, 241) !important;
    color: black; */
}

.social a:hover span {

    color: black;

}

.copy p {
    color: rgb(212, 203, 203);
    font-size: 18px;

}

.copy p a {
    color: orange;
}

.copy p a:hover {
    color: #f46134;
}



/* modal box css */

.error {
    color: red;
    font-size: 12px !important;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    color: #140f2d;
    border: none;
    border-radius: 5px;
    background-color: white;
    font-size: 20px;
}

.submit {
    background-color: rgb(14, 14, 56);
    color: white;
}

.submit:hover {
    background-color: rgb(231, 231, 237);
    color: rgb(20, 19, 19);
}



/* Modal Styles */
.enquiry-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.enquiry-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
    max-width: 800px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 100px;
    right: 400px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width:1200px) {
    .close {
        right: 270px;
    }
}

@media (max-width:1060px) {
    .close {
        right: 250px;
        top: 80px;
    }
}

@media (max-width:950px) {
    .close {
        right: 230px;
        top: 80px;
    }
}

@media (max-width:850px) {
    .close {
        right: 200px;
        top: 60px;
    }
}

@media (max-width:768px) {
    .close {
        right: 120px;
        top: 130px;
    }
}

@media (max-width:608px) {
    .close {
        right: 90px;
        top: 110px;
    }
}

@media (max-width:450px) {
    .close {
        right: 60px;
        top: 80px;
    }
}

@media (max-width:250px) {
    .close {
        right: 30px;
        top: 60px;
    }
}





/* For small screens like mobile */
@media screen and (max-width: 600px) {
    .enquiry-modal-content {
        width: 90%;
        margin: 10% auto;
    }

    input,
    textarea {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}

/* For medium screens like tablets */
@media screen and (max-width: 768px) {
    .enquiry-modal-content {
        width: 80%;
        margin: 15% auto;
    }
}

/* For large screens */
@media screen and (min-width: 1200px) {
    .enquiry-modal-content {
        width: 50%;
    }
}



/* form css */

.form-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    resize: none;
}

.error {
    color: red;
    font-size: 0.9em;
    margin-top: -10px;
    margin-bottom: 10px;
}



@media screen and (max-width: 600px) {
    .container {
        padding: 15px;
    }

    /* button {
        font-size: 16px;
    } */
}



.team-container {
    max-width: 80%;
    margin: 0 auto;
}

.slide-btn {
    background-color: rgb(217, 212, 212) !important;
    color: black !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 15px !important;
    margin-bottom: -80px !important;

}

.slide-btn:hover {
    background-color: rgb(16, 16, 49) !important;
    color: white !important;
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client h2 {
    margin-bottom: 40px;
}

.team-slider-wrapper .team-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.team-slider-wrapper .team-slider::-webkit-scrollbar {
    display: none;
}

.team-card {
    min-width: 420px;
    object-fit: cover;
    background-color: white;
    padding: 10px;
    position: relative;

}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 150px;
}

.team-card h2 {
    margin-top: 40px;
    font-size: 22px;
    text-align: center;
}

.team-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -10px;
    color: black;
}

.team-card p {
    margin-top: 20px;
    text-align: center;
    color: rgb(61, 59, 59);
}

@media (max-width: 768px) {
    .team-card {
        width: 100%;
        min-width: 350px;
    }

    .team-card img {
        margin-left: 120px;
    }
}


.about-buy {
    width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.buy-para h3 {
    letter-spacing: 2px;
    color: blue;
}

.buy-para p {
    font-size: 20px;
    text-align: justify;
    color: rgb(65, 60, 60);

}

.buy-para h4 {
    font-size: 18px;
    letter-spacing: 2px;
    color: rgb(98, 98, 104);
}

.container button {
    padding: 10px 20px;
    background: rgb(11, 11, 69);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.container button:hover {
    background: #ababad;
    color: black;
}

.property-section {
    width: 87%;
    margin: 0 auto;
    padding: 50px 20px;
    margin-top: -100px;
}

/* .property-section h2 {
    text-align: center;
    margin-bottom: 30px;
    margin: 100px 0;

} */

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;

}

.property-item {
    background-color: white;

}

.img-slider {
    width: 352px;
    height: 280px;
    overflow: hidden;
    border: 1px solid rgb(219, 218, 218);
    /* border-radius: 10px; */
    position: relative;

}

.img-slider-wrapper {
    display: flex;
    width: 100%;
    animation: img-slide 10s infinite linear;
}

.img-slider img {
    width: 352px;
    height: 100%;
    flex-shrink: 0;
}

@keyframes img-slide {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-352px);
    }

    45% {
        transform: translateX(-352px);
    }

    50% {
        transform: translateX(-704px);
    }

    70% {
        transform: translateX(-704px);
    }

    75% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(0);
    }
}

.property-details {
    padding: 10px 20px;
    width: 352px;
    border-left: 1px solid rgb(219, 218, 218);
    border-right: 1px solid rgb(219, 218, 218);
}

.property-details h3 {
    font-size: 24px;
}

.property-details p {
    color: rgb(26, 25, 25);
    font-size: 20px;
    font-weight: 500;
}

.property-details p i {
    color: orange;
}

.price {
    display: flex;
    align-items: center;
    gap: 40px;
}

.price p {
    font-size: 14px;
    font-weight: 100;
    display: flex;
    align-items: center;

}

.price p span {
    font-size: 18px;
    font-weight: 100;
}

.slider-buttons {
    display: flex;
    width: 352px;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    border-left: 1px solid rgb(219, 218, 218);
    border-bottom: 1px solid rgb(219, 218, 218);
    border-right: 1px solid rgb(219, 218, 218);
}

.slider-buttons button {
    padding: 4px 18px;
    background-color: rgb(220, 219, 219);
    border-radius: 20px;
    font-size: 16px;
}

.slider-buttons button:hover {
    background-color: rgb(43, 42, 42);
    color: white;
}

.ty{
    position: absolute;
    /* text-align: left; */
}

about-slider {
    width: 708px;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.about-slider-wrapper {
    display: flex;
    width: 100%;
    animation: about-slide 10s infinite linear;
}

.about-slider-wrapper img {
    width: 708px;
    height: auto;
    flex-shrink: 0;
}

@keyframes about-slide {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-708px);
    }

    45% {
        transform: translateX(-708px);
    }

    50% {
        transform: translateX(-1416px);
    }

    70% {
        transform: translateX(-1416px);
    }

    75% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(0);
    }
}

.about-text {
    text-align: justify;
}


@media (max-width:768px) {
    .other-property {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .property-section {
        padding: 50px 0;
    }
}



