body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

h5 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

small {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.top-section{
    padding: .2rem .4rem;
}

.top-section .logo-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.top-section-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topmenu.bg-light {
    background-color: #f5f5f5 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.main-menu-nav .add-property {
    background-color: #F5C000;
    border: 1px solid #F5C000;
    transition: .3s all ease-in-out;
    color: #fff;
}

.main-menu-nav .add-property:hover {
    background-color: #292D30;
    border: 1px solid #292D30;
    transition: .3s all ease-in-out;
    color: #fff;
}

.main-header .main-menu-content .menu>li {
    display: inline-block;
    padding: .8rem 0.99rem;
}

.add-property {
    margin-left: 60px;
}

.item-price-wrap li {
    background-color: rgb(237 31 39 / 80%);
}
.item-price-wrap li:not(.h-type):before {
    border-bottom: 30px solid rgba(237, 31, 39, .8);
}

.topsearch .typesearch a {
    color: #292D30;
    font-size: 14px;
}
.advanced-search>a {
    color: #292D30;
    font-size: .8rem;
    font-weight: 500;
}

.advanced-search .advanced-search-content label{
    font-size: 14px;
    font-weight: 500;
}

footer .copyright {
    font-size: 13px;
}


/* Base Styles */

/* Equal Height Row Container */
.equal-height-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* This ensures columns stretch to same height */
}

.equal-height-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
.categories-col {
    padding-right: 15px;
}

/* Categories Grid Styles */
.property-category-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fixed-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 320px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-card-link {
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: block;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.category-title-overlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    text-align: center;
}

.category-title-overlay h3{
    font-size: 20px;
}

/* Ads Column Styles */
.ads-col {
    height: 100%;
    display: flex;
}

.equal-height-ads-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.ad-row {
    flex: 1;
    display: flex;
    gap: 15px;
    min-height: 0; /* Allows proper shrinking */
}

.ad-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%; /* Fill parent height */
}

.ad-inner {
    height: 100%;
    width: 100%;
}

.ad-inner img {
    width: 100%;
    height: 320px;
    object-fit: fill;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .fixed-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        min-height: 320px;
    }
}
@media (max-width: 992px) {
    .equal-height-row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ads-col {
        padding-left: 0;
        padding-top: 15px; /* Add spacing between stacked columns */
    }

    .fixed-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        height: 320px;
    }

    .ad-row {
        height: auto;
        min-height: 250px; /* Ensure ads have minimum height on mobile */
    }
}

@media (max-width: 768px) {
    .fixed-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 320px;
    }

    .ad-item {
        min-height: 200px; /* Ensure ads have minimum height on mobile */
    }
}

/* Ensure all containers maintain equal height */
.categories-col, .ads-col {
    height: 100%;
}

@media (max-width: 480px) {
    .fixed-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        /*min-height: 700px;  Adjust min-height for mobile */
    }

    .ad-inner img{
        height: 100% !important;
    }
}


/*contact form*/

#contact .wrapper {
    background: transparent !important;
}
.contact-info{
    padding: 2rem 0rem;
    font-size: 15px;
}
.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-icon {
    height: 60px;
    width: 60px;
    background-color: #00a770;
    text-align: center;
    border-radius: 50%;
}

.contact-info-icon i {
    font-size: 20px;
    line-height: 60px;
    color: #fff;
}

.contact-info-content {
    margin-left: 20px;
}

.contact-info-content h4 {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 600;
}

.contact-info-content div a {
    color: #292D30;
}


#contact textarea.form-control {
    margin-left: 1rem;
}


#contact #content {
    width: 500px;
}

@media (max-width: 1024px) {
    #contact #content {
        width: 400px !important;
    }
}

@media (max-width: 768px) {
    #contact #content {
        width: 290px !important;
    }
}

@media (max-width: 480px) {
    #contact #content {
        width: 355px !important;
    }
}


.status-label {
    color: #fff;
    font-size: .75rem !important;
    padding: 3px 7px;
    border-radius: 2px;
}


/*About page stypes*/

.mis-vis-box{
    position: relative;
    padding: 40px 40px 40px 40px;
    border: 1px solid #5ea872;
    min-height: 340px;
}

.mis-vis-box .wt-icon-box-wraper {
    margin-bottom: 30px;
}

.mis-vis-box .mis-vis-box-title .wt-title {
    margin-bottom: 30px;
    padding-right: 60px;
}

section {
    padding: 60px 0;
    /* min-height: 100vh;*/
}
.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #00a770;
    font-weight: 500;
    margin-bottom: 15px;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.28em;
    color: #222222;
    font-weight: 600;
    padding-bottom: 18px;
}

.sec-title h2:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 50px;
    height: 3px;
    background-color: #d1d2d6;
}

.sec-title .text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    margin-top: 35px;
}

.sec-title.light h2 {
    color: #ffffff;
}

.sec-title.text-center h2:before {
    left: 50%;
    margin-left: -25px;
}

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: #00a770;
    transition: .3s all ease-in-out;
}

.btn-style-one:hover {
    background-color: #535353;
    color: #ffffff;
    transition: .3s all ease-in-out;
}

.about-section {
    position: relative;
    padding: 120px 0 70px;
}

.about-section .sec-title {
    margin-bottom: 45px;
}

.about-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .content-column .inner-column {
    position: relative;
    padding-left: 30px;
}

.about-section .text {
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.about-section .list-style-one {
    margin-bottom: 45px;
}

.about-section .btn-box {
    position: relative;
}

.about-section .btn-box a {
    padding: 15px 50px;
}

.about-section .image-column {
    position: relative;
}

.about-section .image-column .text-layer {
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column {
    position: relative;
    padding-left: 120px;
    padding-bottom: 125px;
}

.about-section .image-column .inner-column:before {
    position: absolute;
    left: -75px;
    top: 65px;
    height: 520px;
    width: 520px;
    background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
    content: "";
}

.about-section .image-column .image-1 {
    position: relative;
}

.about-section .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img {
    box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
}

.service-section {
    background-color: #f5f5f5;
    border-top: 6px solid #5ea872;
    border-radius: 10px;
}

.service-icon-box-two {
    position: relative;
    padding: 40px 40px 40px 40px;
    border: 1px solid #e7e7e7;
    min-height: 340px;
    margin-bottom: 10px;
}

/* Container for icon + title */
.wt-icon-box-wraper {
    display: flex;
    align-items: center; /* vertically center the icon with title */
    gap: 10px;           /* space between icon and title */
    flex-wrap: wrap;      /* allows wrapping on small screens */
}

/* Icon styling */
.wt-icon-box-wraper .icon-cell i {
    font-size: 30px;
    color: #535353;
    line-height: 1;      /* ensure proper vertical alignment */
}

/* Title styling */
.wt-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* Optional: Adjust for smaller screens */
@media (max-width: 576px) {
    .wt-icon-box-wraper {
        justify-content: flex-start; /* keeps layout consistent on mobile */
    }
    .wt-title {
        font-size: 1rem;
    }
    .wt-icon-box-wraper .icon-cell i {
        font-size: 24px;
    }
}

.ck-content h2 {
    font-size: 20px;
    font-weight: 700;
}
.ck-content ol li::marker {
    list-style-type: decimal;
    font-size: 20px;
    font-weight: 700;
}

.ck-content ul li::marker {
    font-size: 16px;
}

/*Custom pricing on hotel*/

.custom-price-starting{
    display: block;
    text-align: right;
    margin-top: 10px;
    font-size: 14px;
}

.custom-price-starting .price{
    font-weight: 700;
    font-size: 16px;
}

