/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    --primary-color: #2196f3;
    --secondary-color: #f44336;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
}

body {
    color: var(--text-color);
}
 
.main-wrap{
    margin: 0px 40px;
}

/* Navigation Styles */
.HR-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.HR-nav-links {
    display: flex;
    gap: 2rem;
}

.HR-nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.HR-nav-links a:hover,
.HR-nav-links a.active {
    color: var(--primary-color);
}

.HR-nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-number {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-property-btn {
    background: #F7F6F7;
    color: black;
    border: none;
    font-size: 15px;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 100px;
    transition: background-color 0.3s;
}

.add-property-btn:hover {
    background: #1976d2;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section Styles */
.HR-hero {
    background: url('../images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem 5%;
    position: relative;
    margin: 0px;
    border-radius: 24px;
}

.HR-hero-content {
    /* max-width: 1200px; */
    width: 100%;
    color: var(--white);
    /* margin-top: 4rem; */
}

.tag-line {
    display: inline-block;
    /* background: rgba(255, 255, 255, 0.2); */
    padding: 0.5rem 1.5rem;
    border: 1px solid white;
    border-radius: 25px;
    font-size: 13px;
    /* margin-bottom: 1.5rem; */
}

.HR-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.HR-hero-content p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Search Container Styles */
.search-container {
    background: transparent;
    padding: 2rem;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.property-type-tabs {
    display: flex;
    justify-content: center;

    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: white;
}

.property-type-tabs-container {
    display: flex;
    background-color: white;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.tab {
    padding: 1rem 2rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    background-color: black;
    color: white;
    transition: all 0.3s;
}

.tab.active {
    background: white;
    color: black;
    /* border-radius: 5px; */
}

.search-form {
    display: flex;
    gap: 1rem;
    border-radius: 24px;
    padding: 1rem;
    background: var(--white);
    align-items: center;
}

.search-input,
.type-dropdown {
    flex: 1;
}

.search-input label,
.type-dropdown label {
    display: block;
    color: grey;
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight: 500;
}

.search-input input,
.type-dropdown select {
    width: 100%;
    /* padding: 0.75rem; */
    border: 0px;
    color: black;
    border-radius: 5px;
    font-size: 1rem;
}
a.user-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b4b4b4;
    border-radius: 50%;
    color: #666;
}
.filter-btn,
.search-btn {
    padding: 1.3rem 1.7rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
}

.filter-btn {
    background: #f5f5f5;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn {
    background: #EE5E5E;
    color: var(--white);
}

/* Stats Container Styles
.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    width: 100%;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
} */
.stats-container {
    display: flex;
    position: absolute;
    bottom: -30px;
    justify-content: space-around;
    max-width: 760px;
    width: 100%;
    background-image: url('../images/stats-bg.png');
    background-size: cover;
    background-position: center;
    height: 95px;
    margin: 3rem auto 0;
    padding: 1rem;
    color: black;
    border-radius: 10px;
    right: 0px;
}

.stat-item {
    text-align: start;
    color: black;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .HR-hero-content h1 {
        font-size: 3rem;
    }
    
    .search-form {
        flex-wrap: wrap;
    }
    
    .search-input,
    .type-dropdown {
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    .filter-btn,
    .search-btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .HR-nav-links,
    .HR-nav-right {
        display: none;
    }
    .main-wrap{
        margin: 0px 10px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .HR-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .search-container {
        padding: 1.5rem;
    }
    
    .search-input,
    .type-dropdown {
        flex: 0 0 100%;
    }
    
    .stats-container {
        /* flex-direction: row; */
        gap: 2rem;
    }
    .stat-item h3 {
        font-size: 1.5rem;
    }
    .stat-item p {
        font-size: 0.9rem;
    }
    .HR-navbar {
    padding: 0rem 5%;
}
}

@media (max-width: 480px) {
    .HR-hero-content h1 {
        font-size: 2rem;
    }
    
    .property-type-tabs {
        flex-wrap: wrap;
    }
    
    .tab {
        flex: 1;
        padding: 0.5rem 1rem;
    }
}

/* Property Listings Section */
.property-listings {
    padding: 5rem 0;
    background: #f8f9fa;
}

.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.property-slider {
    position: relative;
    padding: 0 50px;
}

.slider-container {
    overflow: hidden;
    margin: 0 -12px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
}

.property-card {
    flex: 0 0 calc(33.333% - 24px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.property-image {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.property-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-tag {
    position: absolute;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-tag.for-sale {
    background: #28a745;
    color: white;
    top: 16px;
    left: 16px;
}

.property-tag.for-rent {
    background: #2196f3;
    color: white;
    top: 16px;
    left: 16px;
}

.property-tag.featured {
    background: #ffc107;
    color: #333;
    top: 16px;
    right: 16px;
}

.property-content {
    padding: 20px;
}

.property-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.location {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location i {
    color: #2196f3;
}

.property-details {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.property-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-details i {
    color: #2196f3;
}

.property-price {
    font-size: 20px;
    color: #2196f3;
    font-weight: 600;
}

.period {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-btn:hover {
    background: #2196f3;
    color: white;
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .property-card {
        flex: 0 0 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .property-listings {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .property-card {
        flex: 0 0 calc(100% - 24px);
    }

    .property-slider {
        padding: 0 30px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .HR-hero {
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

    .property-content {
        padding: 16px;
    }

    .property-details {
        flex-wrap: wrap;
        gap: 12px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* Featured Categories Section */
.featured-categories {
    padding: 150px 20px;
    text-align: center;
}

.featured-categories h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.featured-categories > p {
    color: #666;
    margin-bottom: 40px;
}

.categories-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    flex: 1;
    min-width: 200px;
    height: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

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

.category-card h3 {
    margin: 15px 0 5px;
    font-size: 18px;
}

.category-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .categories-container {
        gap: 15px;
    }
    
    .category-card {
        min-width: 150px;
        height: 170px;
        max-width: calc(50% - 15px);
    }
    
    .category-card img {
        height: 150px;
    }
    
    .category-card h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .featured-categories {
        padding: 40px 15px;
    }
    
    .featured-categories h2 {
        font-size: 24px;
    }
    
    .categories-container {
        gap: 10px;
    }
    
    .category-card {
        min-width: 140px;
        max-width: calc(50% - 10px);
    }
    
    .category-card img {
        height: 120px;
    }
    
    .category-card h3 {
        font-size: 14px;
        margin: 10px 0 5px;
    }
    
    .category-card p {
        font-size: 12px;
        margin-bottom: 10px;
    }
}



/* Rohite css ------- */





.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding: 1rem;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: #1a1a1a;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Homes For You Section */
.homes-for-you {
    text-align: center;
    border-top: 1px solid #d8d8d8;
    padding: 4rem;
    margin-bottom: 4rem;
}

.homes-for-you h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.homes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.property-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.property-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-image .badge {
    position: absolute;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1;
}

.property-image .badge:first-child {
    top: 1rem;
    left: 1rem;
}

.property-image .badge + .badge {
    left: auto;
    right: 7rem;
    top: 1rem;
}

.property-info {
    padding: 1.5rem;
}

.property-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F85757;
}

.price small {
    font-size: 0.875rem;
    color: #666;
    font-weight: normal;
}

.location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.location i {
    color: #666;
}

.property-features {
    display: flex;
    gap: 1.5rem;
    color: #666;
    font-size: 0.875rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-features i {
    font-size: 1.1rem;
    color: #666;
}

.bg-success {
    background-color: #1F4B43  !important;
}

.bg-primary {
    background-color: #1F4B43 !important;
}

.bg-warning {
    background-color: #E7C873 !important;
}

/* Carousel Indicators */
.carousel-indicators {
    position: relative;
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    /*width: 10px;*/
    /*height: 10px;*/
    /*border-radius: 50%;*/
    /*background-color: #ccc;*/
    /*opacity: 0.5;*/
    /*transition: opacity 0.3s ease;*/
}

.carousel-indicators .active {
    background-color: #2ecc71;
    opacity: 1;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

/* Carousel Animation */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .homes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .homes-grid {
        grid-template-columns: 1fr;
    }

    .property-card {
        margin-bottom: 1.5rem;
    }
    
    .property-image {
        height: 200px;
    }
    
    .property-features {
        flex-wrap: wrap;
    }
    .homes-for-you {
    text-align: center;
    border-top: 1px solid #d8d8d8;
    padding: 0px;
    margin-bottom: 4rem;
}
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .property-features {
        gap: 0.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 8rem;
    background-color: #f3f3f3;
}

.testimonials-header {
    margin-bottom: 3.5rem;
}

.testimonials-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

.ratings-summary {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 3rem;
}

.rating-item {
    text-align: left;
}

.rating-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

.stars {
    color: #ffd700;
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

.stars i {
    margin-right: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.quote-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    margin-top: 0.5rem;
}

.quote-icon i {
    font-size: 1.5rem;
    color: #666;
}

.testimonial-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles for testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-header {
        text-align: center;
    }
    .testimonials {
        padding: 0.5rem 0.5rem;
        margin: 0px;
        background-color: #f3f3f3;
        
    }
    
    .ratings-summary {
        justify-content: center;
        margin-top: 1.5rem;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .rating-item {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ratings-summary {
        flex-direction: row;
        gap: 1rem;
        justify-content: space-evenly;
        /*align-items: center;*/
    }
}

/* Team Section */
.team-section {
    padding: 4rem 8rem;
    background-color: #fff;
}

.team-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 330px;
    overflow: hidden;
    border-radius: 16px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.25rem 0.5rem;
    text-align: start;
}

.team-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    margin-bottom: 0.25rem;
}

.team-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Responsive styles for team section */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .team-image {
        height: 240px;
    }
    .team-section {
    padding: 2rem 1rem;
    background-color: #fff;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 300px;
    }
}

/* Discover Section */
.discover-section {
    /* padding: 4rem 0; */
    background-color: #f8f9fa;
    border-radius: 24px;
    margin: 2rem 0;
}

.discover-content {
    padding: 4rem 4rem !important;
}

.discover-content h2 {
    font-size: 52px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.discover-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #EE5E5E;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background-color: #EE5E5E;
    transform: translateY(-2px);
    color: white;
}

.discover-btn i {
    font-size: 1.1rem;
}

.discover-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.discover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* Responsive styles for discover section */
@media (max-width: 768px) {
    .discover-section {
        padding: 2rem 0;
        overflow: hidden;
    }

    .discover-content {
        padding: 2rem !important;
        text-align: center;
    }

    .discover-content h2 {
        font-size: 25px;
    }

    .discover-image {
        margin-top: 2rem;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .discover-content {
        padding: 1.5rem;
    }

    .discover-content h2 {
        font-size: 1.75rem;
    }

    .discover-image {
        height: 250px;
    }
}

/* Local Expertise Section */
.expertise-section {
    padding: 4rem 0;
    margin: 2rem 0;
}

.expertise-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.expertise-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.client-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 1.25rem;
    color: #1a1a1a;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 2px;
}

.badge-number {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.expertise-content {
    padding-left: 3rem;
}

.expertise-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.expertise-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #EE5E5E;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #e64545;
    transform: translateY(-2px);
    color: white;
}

.learn-more-btn i {
    font-size: 1.1rem;
}

/* Responsive styles for expertise section */
@media (max-width: 768px) {
    .expertise-section {
        padding: 2rem 0;
                overflow: hidden;
    }

    .expertise-content {
        padding-left: 0;
        padding-top: 2rem;
        text-align: center;
    }

    .expertise-content h2 {
        font-size: 2rem;
    }

    .client-badge {
        top: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .expertise-content h2 {
        font-size: 1.75rem;
    }

    .client-badge {
        padding: 8px 12px;
    }

    .badge-icon {
        width: 32px;
        height: 32px;
    }

    .badge-number {
        font-size: 1rem;
    }
}

.property-card.ft {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.property-card.ft:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.property-card.ft .property-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.property-card.ft .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card.ft:hover .property-image img {
    transform: scale(1.05);
}

.property-card.ft .property-info {
    padding: 1.5rem;
}

.property-card.ft .property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.property-card.ft h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.property-card.ft .price {
    font-size: 1rem;
    font-weight: 600;
    color: #F85757;
    white-space: nowrap;
    margin-left: 1rem;
}

.property-card.ft .price small {
    font-size: 0.875rem;
    color: #666;
    font-weight: normal;
    margin-left: 2px;
}

.property-card.ft .location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    
}
.property-card.ft .location .location-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    flex: 1;
}
.property-card.ft .location i {
    color: #666;
    font-size: 1rem;
}

.property-card.ft .property-features {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0;
}

.property-card.ft .property-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4A4A4A;
    font-size: 0.813rem;
}

.property-card.ft .property-features i {
    font-size: 1.125rem;
    color: #4A4A4A;
}

.property-card.ft .badge {
    position: absolute;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.813rem;
    font-weight: 500;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.property-card.ft .badge.bg-success {
    background-color: #1B4B40 !important;
    color: white;
    top: 1rem;
    left: 1rem;
}

.property-card.ft .badge.bg-primary {
    background-color: #2563EB !important;
    color: white;
    top: 1rem;
    left: 1rem;
}

.property-card.ft .badge.bg-warning {
    background-color: #FFD700 !important;
    color: #1a1a1a;
    top: 1rem;
    right: 1rem;
    left: auto;
}

.property-card.ft .stats-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.property-card.ft .stats-badge .icon {
    width: 32px;
    height: 32px;
    background: #FFF9E7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-card.ft .stats-badge .icon i {
    color: #FFB800;
    font-size: 1rem;
}

.property-card.ft .stats-badge .stats-info {
    display: flex;
    flex-direction: column;
}

.property-card.ft .stats-badge .stats-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.125rem;
}

.property-card.ft .stats-badge .stats-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Navigation Links */
.HR-nav-links {
    /* margin-bottom: 2rem; */
    border-bottom: 1px solid #eee;
}

.HR-nav-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.HR-nav-links li {
    padding: 1rem 0;
}

.HR-nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 1rem;
}

.HR-nav-links a:hover {
    color: #1a1a1a;
}

.HR-nav-links a.active {
    color: #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
}

/* Real Estate Links Grid */
.real-estate-links {
    padding: 2rem 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.links-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.links-column a {
    text-decoration: none;
    color: #666;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.links-column a:hover {
    color: #1a1a1a;
}

/* Responsive styles for navigation and links */
@media (max-width: 1024px) {
    .links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .HR-nav-links ul {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .HR-nav-links ul {
        flex-direction: column;
        gap: 0;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .links-column {
        gap: 0.75rem;
    }
} 



/* _____________listing page ______________ */


.Rb_lp-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
  }
  
  .Rb_lp-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .Rb_lp-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
  }
  
  .subtitle {
    color: #666;
    margin-bottom: 2rem;
  }
  
  .search-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .Rb_lp-search-box {
    flex: 1;
    position: relative;
    max-width: 196px;
  }
  
  .Rb_lp-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
    padding: 10px;
  }
  
  .Rb_lp-search-input:focus {
    border-color: #666;
  }
  
  .Rb_lp-search-icon {
    position: absolute;
    left: 9.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #666;
  }
  
  .Rb_lp-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    background: white;
    color: #1a1a1a;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  
  .Rb_lp-filter-btn:hover {
    border-color: #666;
  }
  
  .filter-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .Rb_lp-property-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
    margin-top: 24px;
  }
  
  .property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    width: 100%;
  }
  
  .property-card:hover {
    transform: translateY(-4px);
  }
  
  .property-image {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    background-image: url("d5872fdae33aa1725da96d7ba5f23d22\ copy.jpeg");
    height: 200px;
  
  }
  
  .property-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin: 6px auto;
    padding: 0 6px;
  }
  
  .tag {
    position: absolute;
    padding: 6px 12px;
    border-radius: 33px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
  }
  
  .sale {
    background: #1f4b43;
    color: white;
    top: 19px;
    left: 20px;
  }
  
  .rent {
    background: #1f4b43;
    color: white;
    top: 19px;
    left: 16px;
  }
  
  .featured {
    background: #e7c873;
    color: #333;
    top: 19px;
    right: 66.36px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 33px;
    font-size: 12px;
  }
  
  .property-info {
    padding: 16px;
  }
  
  .price {
    font-size: 20px;
    font-weight: 600;
    color: #eb664e;
    margin-bottom: 8px;
  }
  
  .price .period {
    font-size: 14px;
    color: #666;
  }
  
  .property-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 250px;
  }
  
  .property-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #666;
    font-size: 14px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    justify-content: space-between;
  }
  
  .property-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
  }
  
  .icon {
    width: 16px;
    height: 16px;
    color: #666;
    opacity: 0.8;
  }
  
  /* Tablet breakpoint */
  @media screen and (min-width: 768px) {
    body {
      padding: 24px;
    }
  
    .Rb_lp-header h1 {
      font-size: 28px;
    }
  
    .search-filter {
      flex-direction: row;
      padding: 0 31px;
    }
  
    .Rb_lp-filter-btn {
      width: auto;
    }
  
    .Rb_lp-property-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      padding: 24px;
  
    }
  
    .property-info {
      padding: 20px;
    }
  
    .price {
      font-size: 22px;
    }
  
    .property-name {
      font-size: 16px;
    }
  }
  
  /* Desktop breakpoint */
  @media screen and (min-width: 1024px) {
    body {
      padding: 32px;
    }
  
    .Rb_lp-header h1 {
      font-size: 32px;
    }
  
    .Rb_lp-property-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      padding: 32px;
    }
  }
  
  /* Large desktop breakpoint */
  @media screen and (min-width: 1280px) {
    .Rb_lp-property-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .property-info {
      padding: 24px;
    }
  
    .price {
      font-size: 16px;
    }
  
    .property-name {
      font-size: 18px;
    }
  }
  
  
  
  /*index page home slider */
        .Hr-custom-home-slider-container {
            width: 75%;
            margin: auto;
            padding: 20px 0;
            text-align: center;
            position: relative;
        }
        .Hr-custom-home-card {
            background: #fff;
            border-radius: 10px;
            padding: 15px;
            /*box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
            text-align: center;
        }
        .Hr-custom-home-card img {
            width: 100%;
            border-radius: 10px;
        }
        .Hr-custom-home-card h3 {
            margin: 10px 0;
        }
        .Hr-custom-home-price {
            color: red;
            font-weight: bold;
        }
        .slick-prev, .slick-next {
            z-index: 10;
        }
       
        .Hr-custom-home-slider-buttons {
           margin-top: 20px;
            position: absolute;
            top: 50%;
            left: -60px;
            width: 111%;
            display: flex;
            font-size: 25px;
            justify-content: space-between;
        }
        .Hr-custom-home-slider-buttons button {
                padding: 10px 20px;
                margin: 5px;
                border: none;
                background-color: white;
                color: #000000;
                box-shadow: 0px 0px 10px #07070729;
                cursor: pointer;
                border-radius: 50px;
        }
        .Hr-custom-home-slider-buttons button:hover {
            /*background-color: #0056b3;*/
        }
         .tab.active {
                 background: #fafafa;
                 color: #383838;
        }
    
        .search-form form {
                 display: none;
                 width: 100%;
        }
    
        .search-form form.active {
                display: flex;
        }
  @media (max-width: 500px) {
     .Hr-custom-home-slider-container {
            width: 100%;
            margin: auto;
            padding: 20px 0;
            text-align: center;
        }
         .Hr-custom-home-slider-buttons {
           margin-top: 20px;
            position: absolute;
            top: 38%;
            left: 0px;
            width: 100%;
            display: flex;
            font-size: 14px;
            justify-content: space-between;
        }
        .search-form form.active {
              display: block;
            }
            .filter-btn, .search-btn {
            padding: 5px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 500;
            width: 100%;
            margin-top: 15px;
            }
} 
span.location-text {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
}




/*______----single page contact us _____________________*/
    /*.single-contact-broker-buttons {*/
    /*  width: 100%;*/
    /*  background: #ffffff;*/
    /*  padding: 10px 12px;*/
    /*  display: flex;*/
    /*  justify-content: start;*/
    /*  align-items: center;*/
    /*  flex-wrap: wrap;*/
    /*  gap: 10px;*/
    /*  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);*/
    /*  z-index: 999;*/
    /*}*/

    /* Relative on desktop */
    /*@media (min-width: 769px) {*/
    /*  .single-contact-broker-buttons {*/
    /*    position: relative;*/
    /*  }*/
    /*}*/

    /* Fixed on mobile */
    /*@media (max-width: 768px) {*/
    /*  .single-contact-broker-buttons {*/
    /*    position: fixed;*/
    /*    bottom: 0;*/
    /*    left: 0;*/
    /*  }*/
    /*}*/

    .single-contact-broker-buttons a {
      text-decoration: none;
      font-family: sans-serif;
      font-size: 15px;
      /*font-weight: bold;*/
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .btn-whatsapp {
      border: 2px solid #25D366;
      color: #25D366;
      padding: 8px 16px;
      border-radius: 25px;
      background: #fff;
    }

    .btn-view-number {
      background: #007bff;
      color: white;
      padding: 8px 16px;
      border-radius: 25px;
    }

    .btn-call {
      background: #007bff;
      color: white;
      padding: 10px;
      border-radius: 50%;
      width: 42px;
      height: 42px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .btn-whatsapp svg,
    .btn-call svg {
      margin-right: 6px;
    }
    
        .single-contact-broker-buttons {
      width: 100%;
      background: #ffffff;
      padding: 10px 12px;
      display: flex;
      justify-content: start;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
      z-index: 999;
    }

    /* Relative on desktop */
    @media (min-width: 769px) {
      .single-contact-broker-buttons {
        position: relative;
      }
    }

    /* Fixed on mobile */
    @media (max-width: 768px) {
      .single-contact-broker-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
      }
    }

    .single-contact-broker-buttons a {
      text-decoration: none;
      font-family: sans-serif;
      font-size: 15px;
      /*font-weight: bold;*/
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .btn-whatsapp {
      border: 2px solid #25D366;
      color: #25D366;
      padding: 8px 16px;
      border-radius: 25px;
      background: #fff;
    }

    .btn-view-number {
      background: #007bff;
      color: white;
      padding: 8px 16px;
      border-radius: 25px;
    }

    .btn-call {
      background: #007bff;
      color: white;
      padding: 10px;
      border-radius: 50%;
      width: 42px;
      height: 42px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .btn-whatsapp svg,
    .btn-call svg {
      margin-right: 6px;
    }
/*_______________________bloging page ____________________*/

      #HR-blog-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            width: 100%;
        }
      #HR-blog-section a{ 
          text-decoration: none;
          color: white;
      }
      .HR-blog-section{ 
         margin-bottom: 150px;
      }
      .HR-blog-section h2{ 
          text-align: center;
      }
      .HR-blog-section p{ 
          text-align: center;
      }
        .HR-blog-card {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 350px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .HR-blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .HR-blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }
        
        .HR-blog-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .HR-blog-card:hover .HR-blog-card-bg {
            transform: scale(1.05);
        }
        
        .HR-blog-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            z-index: 2;
            color: white;
            transform: translateY(60px);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .HR-blog-card:hover .HR-blog-card-content {
            transform: translateY(0);
        }
        
        .HR-blog-category {
            display: inline-block;
            padding: 5px 15px;
            background-color: #e63946;
            color: white;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .HR-blog-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .HR-blog-excerpt {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0;
            max-height: 0;
            transition: all 0.5s ease;
            text-align: start !important;
        }
        
        .HR-blog-card:hover .HR-blog-excerpt {
            opacity: 1;
            max-height: 100px;
        }
        
        .HR-blog-meta {
            display: flex;
            align-items: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .HR-blog-meta span {
            display: flex;
            align-items: center;
            margin-right: 15px;
        }
        
        .HR-blog-meta i {
            margin-right: 5px;
            color: #e63946;
        }
        
        .HR-blog-read-more,
        .HR-blog-read-more {
            position: absolute;
            right: 30px;
            bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #e63946;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.5s ease;
        }
        
        .HR-blog-card:hover .HR-blog-read-more,
        .HR-blog-card:hover .HR-blog-read-more {
            opacity: 1;
            transform: translateX(0);
        }
        
        .HR-blog-read-more:hover {
            background-color: #c1121f;
            transform: translateX(0) scale(1.1);
        }
        
            /* Relative on desktop */
        @media (max-width: 769px) {
           .HR-blog-section{ 
         margin-bottom: 20px;
      }
        }
        
        
        
        /*___________sigle blog page________________ */
        
        
              #Hr-single-blog-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
            position: relative;
        }
        
        #Hr-single-blog-header-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .Hr-single-blog-category {
            display: inline-block;
            padding: 8px 20px;
            background-color: #e63946;
            color: white;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .Hr-single-blog-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .Hr-single-blog-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .Hr-single-blog-meta span {
            display: flex;
            align-items: center;
            margin: 0 15px;
        }
        
        .Hr-single-blog-meta i {
            margin-right: 8px;
            color: #e63946;
        }
        
        #Hr-single-blog-container {
            max-width: 800px;
            margin: -50px auto 50px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            position: relative;
            z-index: 1;
        }
        
        .Hr-single-blog-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        
        .Hr-single-blog-content p {
            margin-bottom: 20px;
        }
        
        .Hr-single-blog-content h2, 
        .Hr-single-blog-content h3 {
            color: #222;
            margin: 30px 0 20px;
        }
        
        .Hr-single-blog-content h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e63946;
            padding-bottom: 10px;
            display: inline-block;
        }
        
        .Hr-single-blog-content h3 {
            font-size: 1.5rem;
        }
        
        .Hr-single-blog-content blockquote {
            border-left: 4px solid #e63946;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #666;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 5px;
        }
        
        .Hr-single-blog-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .Hr-single-blog-tags {
            display: flex;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .Hr-single-blog-tag {
            padding: 6px 15px;
            background-color: #f5f5f5;
            color: #555;
            border-radius: 20px;
            font-size: 14px;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .Hr-single-blog-tag:hover {
            background-color: #e63946;
            color: white;
        }
        
        .Hr-single-blog-feature-box {
            background: #f9f9f9;
            border-left: 4px solid #e63946;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .Hr-single-blog-feature-box h4 {
            color: #e63946;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        #Hr-single-blog-author {
            display: flex;
            align-items: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        #Hr-single-blog-author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 3px solid #e63946;
        }
        
        #Hr-single-blog-author-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #222;
        }
        
        #Hr-single-blog-author-info p {
            color: #777;
            font-size: 0.9rem;
        }
        
        #Hr-single-blog-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .Hr-single-blog-nav-button {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background-color: #f5f5f5;
            color: #555;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .Hr-single-blog-nav-button:hover {
            background-color: #e63946;
            color: white;
        }
        
        .Hr-single-blog-nav-button i {
            margin: 0 5px;
        }
        
        .Hr-single-blog-cta {
            background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
            color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            margin: 40px 0;
        }
        
        .Hr-single-blog-cta h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .Hr-single-blog-cta p {
            margin-bottom: 20px;
            color: rgba(255,255,255,0.9);
        }
        
        .Hr-single-blog-cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: white;
            color: #e63946;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .Hr-single-blog-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        @media (max-width: 768px) {
            #Hr-single-blog-header {
                height: 50vh;
            }
            
            .Hr-single-blog-title {
                font-size: 2rem;
            }
            
            #Hr-single-blog-container {
                margin: -30px 20px 30px;
                padding: 30px 20px;
            }
            
            #Hr-single-blog-author {
                flex-direction: column;
                text-align: center;
            }
            
            #Hr-single-blog-author-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            #Hr-single-blog-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .Hr-single-blog-nav-button {
                justify-content: center;
            }
        }