/* Section Styling */
.urban.services-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.urban .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

/* Grid */
.urban .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* Single Box */
.urban .service-box {
    background: #f7f7f7;
    padding: 40px 20px;
    border-radius: 10px;
    transition: 0.3s ease;
    border: 2px solid #d9d5d5;
}

.urban .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.urban .service-icon img {
    width: 100px;
    margin-bottom: 20px;
}

.urban .service-box h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

/* Responsive */
@media (max-width: 992px) {
    .urban .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .urban .services-grid {
        grid-template-columns: 1fr;
    }

    .urban .section-title {
        font-size: 24px;
    }
}


/*========================================*/
.urban.property-section {
    padding: 50px 20px;
    background: #fff;
}

.urban .section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Grid */
.urban .property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Box */
.urban .property-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.urban .property-box:hover {
    transform: translateY(-5px);
}

/* Image */
.urban .property-img {
    position: relative;
}

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

.urban .tag {
    position: absolute;
    top: 15px;
    background: #ff7043;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 13px;
}

.urban .tag.hot {
    right: 15px;
}

.urban .tag.rent {
    left: 15px;
    background: #ff7043;
}

/* Location */
.urban .property-location {
    padding: 8px 15px;
    font-size: 14px;
    color: #666;
}

.urban .prop-count {
    float: right;
}

/* Title */
.urban .property-title {
    padding: 0 15px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 5px;
    line-height: 1.4;
    min-height: 50px;
}

/* Price */
.urban .property-price {
    padding: 10px 15px;
    color: #d9534f;
    font-size: 20px;
    font-weight: 700;
}

.urban .property-price span {
    color: #666;
    font-size: 14px;
}

/* Description */
.urban .property-desc {
    padding: 0 15px 10px;
    font-size: 14px;
    color: #555;
}

/* Icons */
.urban .property-icons {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .urban .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .urban .property-grid {
        grid-template-columns: 1fr;
    }

    .urban .section-title {
        font-size: 26px;
    }
}

/**/
/* Section Wrapper */
.urban.testimonial-section {
    padding: 60px 20px;
    background: #242323;
}

.urban .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Grid */
.urban .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Box */
.urban .testimonial-box {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.07);
    transition: 0.3s;
    border: 2px solid #d2d2d2;
}

.urban .testimonial-box:hover {
    transform: translateY(-4px);
}

/* User Icon */
.urban .t-img img {
    width: 80px;
    height: 80px;
}

/* Stars */
.urban .t-stars {
    margin: 15px 0;
    font-size: 20px;
    color: #ffbb33;
}

/* Text */
.urban .t-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Name */
.urban .t-name {
    font-weight: 700;
    font-size: 16px;
}

/* Responsive Breakpoints */

/* Tablets */
@media (max-width: 992px) {
    .urban .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (up to 600px) */
@media (max-width: 600px) {
    .urban .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .urban .section-title {
        font-size: 26px;
    }

    .urban .testimonial-box {
        padding: 30px 20px;
    }
}

/* Very Small Mobile – 320px Ready */
@media (max-width: 360px) {
    .urban .t-img img {
        width: 65px;
        height: 65px;
    }

    .urban .t-text {
        font-size: 14px;
    }

    .urban .t-name {
        font-size: 15px;
    }
}


/*======================================*/
.about-hero {
    position: relative;
    width: 100%;
    height:700px;
    background-image: url('/public/images/caption-1.jpg');
    background-size: cover;
    /*background-position: center;*/
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.about-hero h1 {
    position: relative;
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    z-index: 2;
}

/* -------- Mobile Responsive (320px) -------- */
@media (max-width: 480px) {
    .about-hero {
        height: 60vh;
        background-position: center;
    }

    .about-hero h1 {
        font-size: 38px;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .about-hero {
        height: 55vh;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}








