body {
    margin: 0;
    font-family: Arial, sans-serif;
}

h1 {
    font-family: 'Antic Didone', serif;
}

h2 {
    font-family: 'Antic Didone', serif;
}

h3 {
    font-family: 'Antic Didone', serif;
}

.navbar {
    background: #fff;
    padding: 0.8rem 1rem;
    z-index: 1050;
    position: relative;
    border-bottom: 1px solid #eee;
    font-family: 'Inter', sans-serif;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .menu-item a {
    font-weight: 300;
    color: #000 !important;
    margin: 0 8px;
    text-decoration: none;
}

.navbar-toggler {
    border: none;
    background-color: #ffeaa7;
    border-radius: 20%;
    width: 45px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1101;
    cursor: pointer;
    padding-top: 12px;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler-icon::before {
    content: "\2630";
    /* Hamburger */
    font-size: 20px;
}

.search-icon {
    font-size: 18px;
    margin-left: 15px;
    cursor: pointer;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1100;
    padding: 2rem 1.5rem;
}

.side-menu.active {
    right: 0;
}

.side-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.side-menu ul li {
    margin: 15px 0;
}

.side-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    display: block;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1099;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}



/*banner css*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 60px 0;
    background-image: url("../images/banner.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'Antic Didone', serif;
}

.hero p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #444;
}

.btn-main {
    background: #ff5a1f;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    margin-right: 15px;
}

.btn-main:hover {
    background: #e04d18;
    color: #fff;
}

.btn-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 18px;
    background: transparent;
    transition: 0.3s;
}

.btn-circle:hover {
    background: #222;
    color: #fff;
}

.avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.avatars {
    display: inline-flex;
    margin-left: 15px;
}

.social-proof {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

.hero-img img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}


.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(var(--bs-border-width) * -1);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 20px 10px;
}

.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 0px 20px;
}

.buttonsearch {
    padding: 20px 10px;
}

.search-section h2 {
    font-family: 'Antic Didone', serif;
}

.search-section {
    background: #f1d05d;
    padding: 100px 0px;
}

.carousel-container {
    position: relative;
}

/* Move arrows outside */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    top: 40%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -50px;
    /* push left */
}

.carousel-control-next {
    right: -50px;
    /* push right */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
    padding: 15px;
}

/* Indicators styling */
.carousel-indicators {
    position: static;
    margin-top: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #bbb;
}

.carousel-indicators .active {
    background-color: orange;
}

/* Button same as screenshot */
.btn-book {
    border: 1px solid #000;
    border-radius: 50px;
    padding: 8px 8px 8px 22px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #F64F02;
    color: #fff;
}

.btn-book i {
    background-color: #F64F02;
    padding: 10px 10px;
    border-radius: 20px;
    color: #FFF;
}


.carouselnew h2 {
    font-family: 'Antic Didone', serif;
}

.card-title {
    font-family: 'Antic Didone', serif;
}

a.chobtn {
    background: #F64F02;
    padding: 10px 20px;
    border-radius: 30px;
    color: #FFF;
}

.signup {
    background-image: url("../images/signup.png");
    background-repeat: no-repeat;
    min-height: 500px;
    background-size: 100%;
    border-radius: 60px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inputsignupform {
    width: 70%;
}

.signupbtn {
    min-width: 250px;
    padding: 10px 20px;
}

/* Footer Base */
.custom-footer {
    background-color: #0d161f;
}

.footer-logo {
    height: 50px;
}

.footer-brand {
    font-weight: bold;
    color: #ffffff;
    margin-left: 8px;
}

/* Headings */
.footer-heading {
    font-weight: 600;
    color: #ffffff;
}

.custom-footer {
    color: #fff;
}

/* Text & Links */
.footer-text,
.custom-footer a {
    color: #68829c !important;
    font-size: 0.95rem;
    padding: 8px 0px;
    line-height: 30px;
    text-decoration: none;
}



.custom-footer a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    column-gap: 17px;
    flex-wrap: wrap;
}

/* Icons */
.footer-icon {
    font-size: 1.5rem !important;
    color: #68829c;
    transition: color 0.3s;
}

.footer-icon:hover {
    color: #ffffff;
}

/* Borders */
.footer-border {
    border-left: 1px solid #22303f;
}

.footer-border-top {
    border-top: 1px solid #22303f;
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ---------- IMAGE SECTION ---------- */
.service-card .img-wrapper {
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.service-card .img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .img-wrapper img {
    transform: scale(1.05);
}

/* ---------- CONTENT SECTION ---------- */
.service-card .content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card .date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    padding: 0px 10px;

}

.service-card .blog-content {
    flex-grow: 1;
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    padding: 0px 10px;
}

/* ---------- BUTTON ---------- */
.white-btn {
    display: inline-block;
    background: #730100;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    align-self: start;
    margin-bottom: 20px;
    margin-left: 10px;
}

.white-btn:hover {
    background: #500000;
    color: #fff;
}

.page-content {
    padding: 50px 15px;
    font-family: Arial, sans-serif;
    color: #333;
    max-width: 1024px;
    margin: auto;
}

.page-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #730100;
    text-align: center;
    margin-bottom: 20px;
}

.page-content p.lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.page-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.page-content p strong {
    color: #000;
}

.page-content a {
    color: #730100;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.page-content .date {
    font-weight: bold;
    color: #555;
}

.wp-block-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #730100;
}

.wpcf7-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    margin: 15px auto;
}

.wpcf7-form label {
    width: 100%;
}

.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 1rem;
    box-sizing: border-box;
}

.wpcf7-form textarea {
    resize: vertical;
    height: 60px;
}

.submit-btn {
    display: flex;
    justify-content: center;
}

.wpcf7-form input[type="submit"] {
    background: #730100;
    color: #fff;
    border: none;
    padding: 12px 60px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
    display: block;
    width: 100%;
}

.wpcf7-form input[type="submit"]:hover {
    background: #500000;
}

.contact-info {
    background: #f9f9f9;
    padding: 25px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    font-weight: bold;
}

a.chobtn:hover {
    border: 1px solid #f24b20;
}

.noptin-form-fields {
    background: #fff;
    padding: 6px;
    border-radius: 10px;
}

#noptin-form-1__wrapper {
    background-color: transparent !important;
    --noptin-background-color: transparent !important;
}


/* NEs css */

.testimonial-slider-sec .owl-nav {
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
}

.card-body img {
    width: 28px !important;
}

.modal-dialog.modal-dialog-centered.modal-lg {
    max-width: 600px;
}

.modal-content img {
    height: 600px !important;
}

.owl-carousel .owl-nav.disabled {
    display: flex !important;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-150%);
    pointer-events: none;
}

.owl-carousel .owl-nav.disabled button {
    pointer-events: all;
}

.owl-carousel .owl-prev {
    transform: translateX(-60px);
}

.owl-carousel .owl-next {
    transform: translateX(60px);
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
    color: #FFF;
    text-decoration: none;
}

.owl-dots.disabled {
    display: flex !important;
    justify-content: center;
    margin: 20px 0px;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #ff5a1f !important;
}

.testimonial-slider-sec .card {
    height: 300px !important;
    display: flex;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    display: inline;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-col {
    flex: 1 1 48%;
}

.form-row .form-col label {
    display: block;
    width: 100%;
}

.property-meta {
    display: flex;
    gap: 10px;
    margin-left: 10px;
}

.page-template-blog .service-section,
.single main.container,
.apartment-gallery,
.archive .service-section {
    min-height: 50vh;
}
 .testimonial-slider-sec .card small.text-muted{
    position: absolute;
    bottom: 30px;
    border-top: 1px solid #757575;
    display: block;
    width: 80%;
    padding-top: 10px;
}

@media(max-width:1250px) {
    .owl-carousel .owl-next {
        transform: translateX(50px);
    }
}

@media(max-width:1150px) {
    .navbar-brand img {
        height: 40px;
        width: 220px;
    }
}
@media(max-width:1024px) {
    .owl-carousel .owl-next {
        transform: translateX(40px);
    }
    
.owl-carousel .owl-prev {
    transform: translateX(-40px);
}
}

@media(max-width:991.99px) {

    #menu-h-left,
    #menu-h-right {
        display: none;
    }

    .hero {
        min-height: auto;
        background-position: center;
    }

    .input-group-text {
        padding: 0px 10px !important;
    }

    .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
        padding: 12px 10px !important;
        font-size: 13px;
    }

    .buttonsearch {
        padding: 10px 10px;
    }

    section.service-section {
        padding: 0px 20px;
    }

    .custom-footer,
    .custom-footer a {
        font-size: 14px;
    }

    .custom-footer .col-md-6 {
        padding-right: 0 !important;
    }

    .custom-footer .col-md-3 {
        padding-left: 1rem !important;
    }

    .hero h1 {
        font-size: 2.5rem;
        max-width: 70%;
    }

    .banner-desc {
        max-width: 70%;
    }
     .owl-carousel .owl-next {
        transform: translateX(30px);
    }
    
.owl-carousel .owl-prev {
    transform: translateX(-30px);
}
.social-proof {
    background: #ffffffe3;
    margin-top: 0px;
    padding: 5px;
}


}

@media (max-width: 769px) {
    .page-content {
        padding: 30px 15px;
    }

    .owl-carousel .owl-prev {
        transform: translateX(-30px);
    }

    .owl-carousel .owl-next {
        transform: translateX(30px);
    }


}
@media (max-width: 768px) {
    .form-row .form-col {
        flex: 1 1 100%;
    }
}

@media (max-width: 767px) {
    .hero {
        background-position: left;
    }

    .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }

    .noptin-form-fields {
        display: flex;
        flex-direction: row !important;
        gap: 0 !important;
        justify-content: space-around;

    }

    .page-content h1 {
        font-size: 2.2rem;
    }

    .modal-content img {
        height: 400px !important;
    }

    .testimonial-slider-sec .card {
        height: 270px !important;
        display: flex;
    }
    .owl-carousel .owl-prev {
        transform: translateX(-12px);
    }

    .owl-carousel .owl-next {
        transform: translateX(12px);
    }

    .footer-border {
        border: none;
        margin-top: 20px;
    }

    .submit-btn {
        display: block;
    }
   .footer-logo {
        height: 35px ;
    }
    .wpcf7 form .wpcf7-response-output,
    .wpcf7 form.invalid .wpcf7-response-output,
    .wpcf7 form.sent .wpcf7-response-output{
        display: block;
    }
    .wpcf7 form .wpcf7-response-output{
        border: none !important;
        padding: 0 !important;
    }
    .wpcf7 form .wpcf7-response-output{
        color: red;
    }
    .wpcf7 form.sent .wpcf7-response-output {
    color: green !important;
}
.social-proof {
    background: transparent;
}
}

    



@media (max-width: 420px) {
    .navbar-brand {
        margin: 0px !important;
    }

    .navbar-brand img {
        height: 35px;
        width: 180px;
    }

    

    input#noptin-form-1__field-email {
        width: 160px;
    }


}

