@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');


body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

}

.top-banner {
    background: linear-gradient(to right, #d9a7c7, #fffcdc);
    color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    text-align: center;
    flex-wrap: wrap;
}

.top-banner .top-phone {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.top-banner .top-phone:hover {
    text-decoration: underline;
}

.top-banner .signup {
    background-color: #fff;
    color: #333;
    padding: 5px 12px;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 5px;
    font-weight: 500;
}


nav.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 110px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: -1px;
    z-index: 1000;

}

.nav-logo img {
    width: 120px;
}

.nav-links {
    display: flex;
    gap: 20px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.nav-links .quick-link {
    color: #333;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    
}

.nav-buttons .login {
    text-decoration: none;
    color: #6b4eff;
    font-weight: bold;
}

/* .nav-buttons .login:hover{
    border: 2px solid gray;
    padding: 6px 20px;
    border-radius: 10px;
    background-color: #6b4eff;
    color: #fff;
} */

/* Normal button style */
.nav-buttons .try-free {
    background-color: transparent;
    border: 2px solid gray;
    border-radius: 10px;
    color: #34414c;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    line-height: normal;
    padding: 2px 15px;
    transition: background 280ms ease, box-shadow 280ms ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none !important; 
}

.nav-buttons .try-free img {
    width: 30px;
    height: 30px;
}

.nav-buttons .try-free:hover {
    background-color: transparent;
}

.nav-buttons .try-free:active {
    outline: none;
}

/* Dropdown Menu */
.dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 27px);
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show dropdown on hover */
.nav-links:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Dropdown links */
.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

/* Dropdown toggle and arrows handling */
.dropdown-toggle i {
    font-size: 14px;
    color: #999;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown-toggle:hover i,
.dropdown-menu:hover i {
    transform: rotate(180deg);
    color: #333;
}

.dropdown-toggle i {
    transform: rotate(0deg);
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
    width: 200px;
}

/* Show submenu on hover */
.dropdown-item:hover .submenu {
    display: block;
}

.submenu a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.submenu a:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

/* Bottom Navigation Styles */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
    display: none;
    /* Hidden by default */
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    /* Higher z-index to stay above the popup */
}

.nav-item {
    text-align: center;
}

.nav-item a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-item a i {
    font-size: 20px;
}

.nav-item.center {
    position: relative;
    top: -20px;
}

.fab {
    width: 60px;
    height: 60px;
    background-color: #6b4eff;
    color: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.fab:hover {
    background-color: #5a3ed7;
}

.bottom-nav .nav-item a:hover {
    color: #6b4eff;
}

/* Popup Menu Styles */
.design-menu {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    max-height: 70%;
    background: #fff;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 50;
    border-radius: 10px 10px 0 0;
    overflow-y: auto;
}

/* Make the design menu slide up when active */
.design-menu.active {
    transform: translateY(0);
}

/* Close Button Styles */
.close-btn {
    background: none;
    border: none;
    font-size: 38px;
    color: #6b4eff;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(107, 78, 255, 0.1);
    border-radius: 50%;
}

/* Popup Menu Styles */
.design-menu {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    max-height: 70%;
    background: #fff;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 50;
    border-radius: 10px 10px 0 0;
    overflow-y: auto;
    display: none;
}

.design-menu.active {
    display: block;
    transform: translateY(0);
}

.design-menu ul li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.design-menu ul li i {
    margin-right: 10px;
    font-size: 18px;
    color: #333;
}


/* Media query for phone view only */
@media (max-width: 768px) {
    .design-menu {
        display: none;
    }

    .design-menu.active {
        display: block;
    }
}

.menu-header {
    padding: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.menu-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.design-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.design-menu ul li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}


/* Media query for phone view */
@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }


    .nav-links {
        display: none;
    }

    .top-banner {
        display: none;
    }

    nav.navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    .nav-logo,
    .nav-buttons {
        display: flex;
        align-items: center;
    }

    .nav-buttons {
        flex: 1;
        justify-content: flex-end;
        gap: 10px;
    }

    .nav-logo img {
        width: 100px;
    }

    .nav-buttons .try-free {
        padding: 7px 5px;
        font-size: 12px;
    }

    .nav-buttons .try-free img {
        width: 22px;
        height: 22px;
    }

    .nav-buttons .login {
        font-size: 16px;
        font-weight: 700;
    }

}

/* Main Section Styling */
.head_section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.head_background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.head_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
}

/* Content Styling */
.head_content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    /* margin-top: 300px; */
}

.head_content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.head_cta-button {
    background-color: #f06292;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .head_section {
        height: 400px;
    }

    .head_content h1 {
        font-size: 28px;
    }

    .head_cta-button {
        padding: 8px 16px;
    }
}

/* Count Section  */
.count_section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.count_item {
    display: flex;
    align-items: center;
    width: 22%;
    padding: 20px;
    box-sizing: border-box;
    border-right: 1px solid #ccc;
}

.count_icon {
    font-size: 40px;
    margin-right: 20px;
    color: #000;
}

.count_content h2 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: bold;
}

.count_content p {
    font-size: 1rem;
    color: #666;
    margin: 5px 0 0 0;
}

/* For screens up to 768px */
@media (max-width: 768px) {
    .count_section {
        flex-direction: row;
        /* Keep the main container in a horizontal row */
        flex-wrap: wrap;
        /* Allow items to wrap to fit the screen */
        justify-content: space-around;
        /* Distribute space between items */
        padding: 20px;
    }

    .count_item {
        width: 45%;
        /* Make items smaller to fit two per row */
        margin-bottom: 20px;
        /* Add space between rows */
        padding: 10px;
        box-sizing: border-box;
        border-right: none;
        /* Remove border-right for smaller screens */
    }

    .count_icon {
        font-size: 30px;
        /* Smaller icon size */
        margin-bottom: 10px;
    }

    .count_content h2 {
        font-size: 1.1rem;
    }

    .count_content p {
        font-size: 0.85rem;
    }
}

/* For screens up to 576px */
@media (max-width: 576px) {
    .count_section {
        padding: 10px;
    }

    .count_item {
        width: 48%;
        /* Slightly smaller to fit better on narrow screens */
        padding: 8px;
    }

    .count_icon {
        font-size: 25px;
    }

    .count_content h2 {
        font-size: 1rem;
    }

    .count_content p {
        font-size: 0.8rem;
    }
}

/* For very small screens up to 480px */
@media (max-width: 480px) {
    .count_section {
        padding: 8px;
    }

    .count_item {
        width: 100%;
        /* Make each item take up full width */
        margin-bottom: 15px;
        padding: 6px;
    }

    .count_icon {
        font-size: 22px;
    }

    .count_content h2 {
        font-size: 0.9rem;
    }

    .count_content p {
        font-size: 0.75rem;
    }
}

/* For very small screens up to 375px */
@media (max-width: 375px) {
    .count_section {
        padding: 5px;
    }

    .count_item {
        width: 100%;
        /* Each item remains full width for very small screens */
        padding: 5px;
    }

    .count_icon {
        font-size: 20px;
    }

    .count_content h2 {
        font-size: 0.85rem;
    }

    .count_content p {
        font-size: 0.7rem;
    }
}

/* About Section */
.about_main-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.about_container {
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.about_image-container {
    flex: 1;
}

.about_image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about_content-container {
    flex: 1;
    padding-left: 40px;
}

.about_content-container h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.about_content-container p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about_second-section {
    width: 80%;
    max-width: 1200px;
    margin: 80px auto 0;
    text-align: center;
}

.about_second-section h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.about_second-section p {
    color: #777;
}

.about_second-section-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.about_large-image-container {
    flex: 1;
    padding-right: 20px;
}

.about_large-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about_features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1;
    max-width: 450px;
    margin-bottom: 30px;
}

.about_feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about_feature-card img {
    max-width: 120px;
}

.about_feature-card h3 {
    font-size: 0.9rem;
}

.about_feature-card p {
    color: #555;
}

/* Media Queries for Responsiveness */

@media (max-width: 768px) {
    .about_container {
        flex-direction: column;
        text-align: center;
    }

    .about_content-container {
        padding-left: 0;
        padding-top: 20px;
    }

    .about_second-section-content {
        flex-direction: column;
        align-items: center;
    }

    .about_large-image-container {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about_features-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .about_main-container {
        padding: 20px 10px;
    }

    .about_content-container h1 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .about_content-container p {
        font-size: 0.9em;
    }

    .about_second-section h2 {
        font-size: 2em;
    }

    .about_second-section p {
        font-size: 0.9em;
    }

    .about_feature-card h3 {
        font-size: 1em;
    }

    .about_feature-card p {
        font-size: 0.8em;
    }


    .about_features-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 10px 20px;
    }
}

/* Cat section */
.cat_services {
    text-align: center;
    /* margin: 50px 0; */
    padding: 15px 80px;
}

.cat_heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cat_subheading {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
}

.cat_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cat_item {
    border: 1px solid rgb(222, 220, 220);
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 170px;
    height: 170px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.cat_item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, #fff, #fde2e2);
}

.cat_item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.cat_item p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

/* Media Queries for Responsive 3 items per row */
@media (max-width: 1200px) {
    .cat_grid {
        justify-content: center;
    }

    .cat_item {
        width: calc(33.333% - 40px);
        /* 3 cards per row */
    }
}

@media (max-width: 992px) {
    .cat_grid {
        justify-content: center;
    }

    .cat_item {
        width: calc(33.333% - 40px);
    }
}

@media (max-width: 768px) {
    .cat_services {
        display: none;
    }
}

@media (max-width: 600px) {
    .cat_services {
        display: none;
    }
}

@media (max-width: 480px) {
    .cat_services {
        display: none;
    }
}

/* Scroll Section */
.scroll_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 155px;
    margin-top: 50px;
}

.scroll_header h1 {
    font-size: 3em;
    margin: 0;
}

.scroll_highlight {
    color: #5a50f0;
}

.scroll_subtitle {
    font-size: 25px;
    color: #666;
    margin: 0;
}

.scroll_slider {
    position: relative;
    padding: 4px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.scroll_buttons {
    display: flex;
    gap: 10px;
}

.scroll_cards-container {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth;
    padding-top: 20px;
    padding-bottom: 30px;
}

.scroll_card {
    background-color: transparent linear-gradient(153deg, #fffffd, #fff9dd) 0 0 no-repeat padding-box;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 450px;
    border: 0.1px solid rgb(189, 189, 189);
}

.scroll_card-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.scroll_card h2 {
    color: #333;
    margin: 10px 0;
    text-align: left;
}

.scroll_card p {
    color: #666;
    text-align: left;
}


.scroll_card a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 50px;
    background-color: #5a50f0;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    left: 0;
}

.scroll_btn {
    background-color: #5a50f0;
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.scroll_btn:hover {
    background-color: #4a40d0;
}

.scroll_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Media Queries for Scroll Section */

/* For screens up to 1200px */
@media (max-width: 1200px) {
    .scroll_header {
        padding: 10px 80px;
    }

    .scroll_card {
        min-width: 350px;
    }
}

/* For screens up to 991px */
@media (max-width: 991px) {
    .scroll_header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 50px;
    }

    .scroll_header h1 {
        font-size: 2.5em;
    }

    .scroll_subtitle {
        font-size: 32px;
    }

    .scroll_slider {
        max-width: 100%;
        padding: 0;
    }

    .scroll_card {
        min-width: 300px;
    }
}

/* For screens up to 768px */
@media (max-width: 768px) {
    .scroll_header {
        padding: 10px 30px;
    }

    .scroll_header h1 {
        font-size: 2em;
    }

    .scroll_subtitle {
        font-size: 28px;
    }

    .scroll_card {
        min-width: 250px;
    }

    .scroll_buttons {
        gap: 5px;
    }
}

/* For screens up to 576px */
@media (max-width: 576px) {
    .scroll_header {
        padding: 10px 15px;
        margin-top: 30px;
    }

    .scroll_header h1 {
        font-size: 1.8em;
    }

    .scroll_subtitle {
        font-size: 24px;
    }

    .scroll_card {
        min-width: 200px;
        padding: 15px;
    }

    .scroll_card h2,
    .scroll_card p {
        text-align: center;
    }

    .scroll_card a {
        padding: 8px 30px;
    }

    .scroll_btn {
        font-size: 20px;
        padding: 8px;
    }
}

/* For very small screens up to 375px */
@media (max-width: 375px) {
    .scroll_header h1 {
        font-size: 1.5em;
    }

    .scroll_subtitle {
        font-size: 20px;
    }

    .scroll_card {
        min-width: 180px;
        padding: 10px;
    }

    .scroll_card a {
        padding: 6px 20px;
    }

    .scroll_btn {
        font-size: 18px;
        padding: 6px;
    }
}

/* Default styles (for larger screens) */
.add2_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    position: relative;
    background-color: #4B0082;
    height: 400px;
}

.add2_left-section {
    flex-basis: 60%;
    padding: 0 100px;
}

.add2_left-section h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    color: white;
    width: 60%;
}

.add2_left-section h1 span {
    color: #FFD700;
    background: linear-gradient(to right, #FFD700, #8A2BE2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.add2_left-section p {
    font-size: 18px;
    margin-top: 20px;
    max-width: 450px;
    color: #E0E0E0;
}

.add2_explore-link {
    display: inline-block;
    color: white;
    font-size: 18px;
    margin-top: 30px;
    text-decoration: none;
}

.add2_explore-link:hover {
    color: #FFD700;
    /* Gold hover effect */
}

.add2_right-section {
    flex-basis: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.add2_logo-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

.add2_logo-box {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
}

.add2_logo-box img {
    width: 200px;
    height: auto;
}

/* Responsive styles */

/* For devices with a max width of 768px */
@media (max-width: 768px) {
    .add2_container {
        flex-direction: column;
        height: auto;
        padding: 30px;
        text-align: center;
    }

    .add2_left-section {
        flex-basis: 100%;
        padding: 0 20px;
    }

    .add2_left-section h1 {
        font-size: 36px;
        width: 100%;
    }

    .add2_left-section p {
        font-size: 16px;
        max-width: 100%;
    }

    .add2_right-section {
        flex-basis: 100%;
        margin-top: 20px;
    }

    .add2_logo-container {
        grid-template-columns: 1fr;
    }

    .add2_logo-box img {
        width: 120px;
    }
}

/* For devices with a max width of 480px */
@media (max-width: 480px) {
    .add2_container {
        padding: 20px;
    }

    .add2_left-section h1 {
        font-size: 28px;
    }

    .add2_left-section p {
        font-size: 14px;
    }

    .add2_explore-link {
        font-size: 16px;
    }

    .add2_logo-box img {
        width: 100px;
    }
}

/* For very small devices with a max width of 360px */
@media (max-width: 360px) {
    .add2_container {
        padding: 15px;
    }

    .add2_left-section h1 {
        font-size: 24px;
    }

    .add2_left-section p {
        font-size: 12px;
    }

    .add2_logo-box img {
        width: 80px;
    }
}

/*--Property Section in index --*/

.prop_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 20px;
    opacity: 0;
    transform: translateY(100px);
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    position: relative;
}

.prop_container.visible {
    opacity: 1;
    transform: translateY(0);
}

.prop_container h2 {
    color: #333;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight {
    color: #114b54;
}

.scroll-buttons {
    display: flex;
    gap: 10px;
}

.scroll-button {
    width: 40px;
    height: 40px;
    background-color: #f1f3f6;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.scroll-button:hover {
    background-color: #e1e5ea;
}

.scroll-button img {
    width: 20px;
    height: 20px;
}

.residences-wrapper {
    overflow: hidden;
    position: relative;
}

.residences {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.prop {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    text-align: left;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.prop img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.prop .details {
    padding: 20px;
}

.prop .price {
    color: #114b54;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.prop .name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.prop .address {
    color: #777;
    font-size: 16px;
    margin-bottom: 15px;
}

.prop .details-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #114b54;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prop .details-button:hover {
    background-color: #0e3b42;
}

.residences::-webkit-scrollbar {
    display: none;
}

.residences {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (max-width: 768px) {
    .prop_container {
        padding: 30px 10px;
    }

    h2 {
        font-size: 28px;
    }

    .scroll-button {
        width: 35px;
        height: 35px;
    }

    .scroll-button img {
        width: 16px;
        height: 16px;
    }

    .prop {
        width: 260px;
    }

    .prop .price {
        font-size: 20px;
    }

    .prop .name {
        font-size: 18px;
    }

    .prop .address {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .prop_container {
        padding: 20px 5px;
    }

    h2 {
        font-size: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .scroll-buttons {
        margin-top: 10px;
    }

    .scroll-button {
        width: 30px;
        height: 30px;
    }

    .scroll-button img {
        width: 14px;
        height: 14px;
    }

    .prop {
        width: 100%;
    }

    .prop .price {
        font-size: 18px;
    }

    .prop .name {
        font-size: 16px;
    }

    .prop .address {
        font-size: 12px;
    }
}

/*--End Property Section in index --*/

/*  Main Last section */
.lastsec_container {
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.lastsec_content {
    display: flex;
    background-color: #fff;
    border: 0.2px solid #ede9e9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.lastsec_left-section {
    position: relative;
    flex: 1;
    padding: 20px;
}

.lastsec_meditation-image {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    display: block;
}

.lastsec_buttons {
    position: absolute;
    bottom: 30px;
    left: 28px;
    display: flex;
    gap: 5px;
    z-index: 1;
}

.lastsec_start-btn,
.lastsec_contact-btn {
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.lastsec_start-btn:hover,
.lastsec_contact-btn:hover {
    background-color: #000;
    color: #fff;
}

.lastsec_right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 20px;
}

.lastsec_text-content {
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 15px;
}

.lastsec_text-content h1 {
    font-size: 45px;
    margin-bottom: 10px;
}

.lastsec_text-content p {
    font-size: 14px;
    color: #666;
}

.lastsec_cards {
    display: flex;
    gap: 20px;
}

.lastsec_card {
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    text-align: center;
}

.lastsec_yellow-card {
    background-color: #fcefb4;
}
.lastsec_yellow-card h3 {
    font-size: 17px;
}
.lastsec_yellow-card p {
    font-size: 13px;
}

.lastsec_green-card {
    background-color: #e1f5e3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* For tablets and larger devices (768px and up) */
@media (max-width: 1024px) {
    .lastsec_container {
        flex-direction: column;
        padding: 0 20px;
    }

    .lastsec_content {
        flex-direction: column;
    }

    .lastsec_left-section,
    .lastsec_right-section {
        flex: 1;
        padding: 20px 0;
    }

    .lastsec_meditation-image {
        height: 350px;
        border-radius: 15px;
    }

    .lastsec_text-content h1 {
        font-size: 48px;
    }

    .lastsec_cards {
        flex-direction: column;
    }

    .lastsec_card {
        padding: 15px;
    }

    .lastsec_start-btn,
    .lastsec_contact-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .lastsec_text-content p {
        font-size: 14px;
    }
}

/* For mobile devices (480px and up) */
@media (max-width: 768px) {
    .lastsec_container {
        padding: 0 10px;
    }

    .lastsec_meditation-image {
        height: 250px;
        border-radius: 10px;
    }

    .lastsec_buttons {
        bottom: 20px;
        left: 20px;
        gap: 3px;
    }

    .lastsec_start-btn,
    .lastsec_contact-btn {
        font-size: 10px;
        padding: 6px 12px;
    }

    .lastsec_text-content h1 {
        font-size: 36px;
    }

    .lastsec_text-content p {
        font-size: 12px;
    }

    .lastsec_cards {
        flex-direction: column;
        gap: 10px;
    }

    .lastsec_card {
        padding: 10px;
        font-size: 14px;
    }

    .lastsec_green-card h2 {
        font-size: 24px;
    }
}

/* For very small devices (up to 480px) */
@media (max-width: 480px) {
    .lastsec_container {
        padding: 0 5px;
    }

    .lastsec_meditation-image {
        height: 200px;
        border-radius: 10px;
    }

    .lastsec_buttons {
        bottom: 15px;
        left: 15px;
        gap: 2px;
    }

    .lastsec_start-btn,
    .lastsec_contact-btn {
        font-size: 9px;
        padding: 5px 10px;
    }

    .lastsec_text-content h1 {
        font-size: 28px;
    }

    .lastsec_text-content p {
        font-size: 10px;
    }

    .lastsec_cards {
        gap: 8px;
    }

    .lastsec_card {
        padding: 8px;
        font-size: 12px;
    }

    .lastsec_green-card h2 {
        font-size: 20px;
    }
}

/*   End Main Last Section  */


/*   Footer Section   */
footer {
    background-color: #e9e7e7;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;

}

footer * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.foot_container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 0px;
}

.foot_cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #b8b6b6;
    padding-bottom: 20px;
}

.foot_cta-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.foot_cta-content p {
    font-size: 16px;
    color: #666;
}

.foot_cta-buttons .foot_learn-more-btn,
.foot_cta-buttons .foot_get-started-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 2em 20px 2.5em 0.2in;

}

.foot_learn-more-btn {
    background-color: #fff;
    border: 1px solid #ccc;
}

.foot_get-started-btn {
    background-color: #0070f3;
    color: #fff;
    margin-left: 10px;
}

.foot_footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 60px;
}

.foot_footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}
.foot_footer-logo p {
    width: 80%;
}

.foot_footer-links {
    display: flex;
    gap: 80px;
}

.foot_footer-column h4 {
    margin-bottom: 15px;
    font-size: 19px;
}

.foot_footer-column ul {
    list-style: none;
}

.foot_footer-column ul li {
    margin-bottom: 10px;
}

.foot_footer-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.foot_footer-column ul li a:hover {
    color: #000;
}

.foot_footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #b8b6b6;
    padding-top: 20px;
    font-size: 14px;
    color: #999;
}
.foot_footer-bottom p a {
    text-decoration: none;
    color: #2d8991;
}
.foot_footer-bottom p a:hover {
    color: #6495ED;

}

.foot_social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #6c63ff;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-left: 15px;
    position: relative;
}

.foot_social-icons i {
    line-height: normal;
    vertical-align: middle;
}


.foot_social-icons a:hover {
    color: #000;
}

.foot_social-icons i {
    font-size: 20px;
}

@media (max-width: 1200px) {
    .foot_footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot_footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .foot_cta-section {
        flex-direction: column;
        text-align: left;
    }

    .foot_cta-buttons {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
    }

    .foot_footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot_social-icons {
        display: flex;
        flex-direction: row;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .foot_footer-links {
        gap: 20px;
        align-items: flex-start;
    }

    .foot_cta-section {
        padding: 0 10px;
    }

    .foot_cta-content h2 {
        font-size: 20px;
    }

    .foot_cta-content p {
        font-size: 14px;
    }

    .foot_footer-column h4 {
        font-size: 18px;
    }

    .foot_footer-column ul li a {
        font-size: 13px;
    }

    .foot_footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot_social-icons {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .foot_footer-content {
        margin-bottom: 30px;
        align-items: flex-start;
    }

    .foot_footer-links {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .foot_footer-column ul li {
        margin-bottom: 5px;
    }

    .foot_cta-content h2 {
        font-size: 18px;
    }

    .foot_cta-content p {
        font-size: 12px;
    }

    .foot_cta-buttons .foot_learn-more-btn,
    .foot_cta-buttons .foot_get-started-btn {
        padding: 8px 15px;
        font-size: 14px;
        width: 100%;
    }

    .foot_footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .foot_social-icons {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 10px;
    }
}

/*  End Of Footer Section   */

/*   About Section */
.about_container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1300px;
    padding: 40px;
    border-radius: 25px;
    overflow: hidden;
}

.about_text-content {
    flex: 1;
    padding-right: 30px;
}

.about_text-content h1 {
    font-size: 3.5em;
    color: #333;
    line-height: 1.2;
}

.about_text-content .about_highlight {
    color: #00a9e0;
}

.about_text-content .about_description {
    font-size: 1em;
    color: #555;
    margin-top: 15px;
    line-height: 1.6;
}

.about_buttons {
    margin-top: 25px;
}

.about_btn {
    padding: 12px 25px;
    border-radius: 2em 20px 2.5em 0.2in;
    border: none;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
}

.about_btn.active {
    background-color: #00a9e0;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 169, 224, 0.3);
}

.about_btn:not(.active) {
    background-color: transparent;
    color: #00a9e0;
    border: 2px solid #00a9e0;
    margin-left: 15px;
}

.about_btn:not(.active):hover {
    background-color: #e6f7ff;
}

.about_stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.about_stat-item {
    text-align: center;
}

.about_stat-number {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
}

.about_stat-label {
    font-size: 0.9em;
    color: #777;
    margin-top: 5px;
}

.about_image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_image-content img {
    width: 100%;
    height: 480px;
    max-width: 420px;
    border-bottom-left-radius: 150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Default styles for larger screens */

/* Tablet View (up to 768px) */
@media (max-width: 768px) {
    .about_container {
        flex-direction: column;
        padding: 20px;
    }

    .about_text-content {
        padding-right: 0;
        text-align: center;
    }

    .about_text-content h1 {
        font-size: 2.5em;
    }

    .about_text-content .about_description {
        font-size: 0.9em;
        margin-top: 10px;
    }

    .about_buttons {
        display: flex;
        justify-content: center;
    }

    .about_stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .about_stat-item {
        text-align: center;
    }

    .about_image-content img {
        height: 400px;
        max-width: 100%;
        border-bottom-left-radius: 100px;
    }
}

/* Small Tablet and Large Phone View (up to 600px) */
@media (max-width: 600px) {
    .about_text-content h1 {
        font-size: 2em;
    }

    .about_text-content .about_description {
        font-size: 0.85em;
    }

    .about_btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .about_image-content img {
        height: 300px;
        border-bottom-left-radius: 80px;
    }
}

/* Mobile View (up to 480px) */
@media (max-width: 480px) {
    .about_text-content h1 {
        font-size: 1.8em;
    }

    .about_text-content .about_description {
        font-size: 0.8em;
    }

    .about_btn {
        padding: 8px 18px;
        font-size: 0.85em;
    }

    .about_stat-number {
        font-size: 1.5em;
    }

    .about_stat-label {
        font-size: 0.8em;
    }

    .about_image-content img {
        height: 250px;
        border-bottom-left-radius: 70px;
    }
}

/* Small Mobile View (up to 375px) */
@media (max-width: 375px) {
    .about_text-content h1 {
        font-size: 1.5em;
    }

    .about_text-content .about_description {
        font-size: 0.75em;
    }

    .about_btn {
        padding: 7px 15px;
        font-size: 0.8em;
    }

    .about_stat-number {
        font-size: 1.3em;
    }

    .about_stat-label {
        font-size: 0.75em;
    }

    .about_image-content img {
        height: 220px;
        border-bottom-left-radius: 60px;
    }
}

/* Extra Small Mobile View (up to 320px) */
@media (max-width: 320px) {
    .about_text-content h1 {
        font-size: 1.2em;
    }

    .about_text-content .about_description {
        font-size: 0.7em;
    }

    .about_btn {
        padding: 5px 10px;
        font-size: 0.75em;
    }

    .about_stat-number {
        font-size: 1.1em;
    }

    .about_stat-label {
        font-size: 0.7em;
    }

    .about_image-content img {
        height: 180px;
        border-bottom-left-radius: 50px;
    }
}

/*   End About Section  */

/* Brand Section  */

.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
}

.logo-item {
    margin-top: 50px;
    min-width: 150px;
    max-width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #d9d9d9;
    border-radius: 15px;
    background-color: #ffffff;
    padding: 15px;
}

.logo-item img {
    max-width: 100px;
    max-height: 50px;
}

/* Smooth scrolling effect */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* End Brand Section  */


/*   ABout 3 Section */
.trd_container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    flex-direction: row;
}

.trd_left-section {
    flex: 1;
    padding-right: 20px;
}

.trd_left-section img {
    width: 80%;
    height: 500px;
    border-radius: 20px 20px 0 0;
}

.trd_button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #00A8CC;
    color: #fff;
    text-decoration: none;
    border-radius: 2em 20px 2.5em 0.2in;
    margin-top: 10px;
}

.trd_right-section {
    flex: 1;
}

.trd_right-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.trd_right-section p {
    color: #666;
    margin-bottom: 15px;
}

.trd_features {
    margin-top: 20px;
}

.trd_feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.trd_feature-icon {
    font-size: 24px;
    font-weight: bold;
    color: white;
    background-color: #00A8CC;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 20px;
    margin-right: 15px;
}

.trd_feature-text h3 {
    font-size: 18px;
    color: #333;
}

.trd_feature-text p {
    color: #666;
    margin-top: 5px;
}

/* Media Queries for Responsiveness */
@media (max-width: 991px) {
    .trd_container {
        flex-direction: column;
        padding: 0px;
        align-items: center;
    }

    .trd_left-section {
        padding-right: 0;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Align items to the left */
    }

    .trd_left-section img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .trd_right-section h2 {
        font-size: 22px;
        text-align: center;
    }

    .trd_feature-text h3 {
        font-size: 16px;
    }

    .trd_button {
        padding: 8px 20px;
        font-size: 14px;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .trd_right-section h2 {
        font-size: 20px;
    }

    .trd_feature-text h3 {
        font-size: 15px;
    }

    .trd_feature-icon {
        font-size: 20px;
        width: 35px;
        height: 35px;
        line-height: 15px;
    }

    .trd_button {
        padding: 6px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .trd_right-section h2 {
        font-size: 18px;
    }

    .trd_right-section p,
    .trd_feature-text p {
        font-size: 14px;
    }

    .trd_feature-icon {
        font-size: 18px;
        width: 30px;
        height: 30px;
        line-height: 12px;
    }

    .trd_feature-text h3 {
        font-size: 14px;
    }

    .trd_button {
        padding: 5px 12px;
        font-size: 12px;
    }
}

/*   ENd ABout 3 Section */




/*   ABout 2 Section */
.secc_section-container {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    background-color: #f0f8ff;
}

.secc_card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.secc_opening-hours {
    background-color: #58b4d8;
    color: #ffffff;
}

.secc_card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.secc_card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.secc_opening-hours p {
    color: #ffffff;
}

.secc_card button {
    background-color: #58b4d8;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.secc_card button:hover {
    background-color: #4a9cb3;
}

.secc_icon-clock,
.secc_icon-appointment,
.secc_icon-doctor,
.secc_icon-location {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #ffffff;
}

/* Custom styles for icons (Add icons from Font Awesome or similar) */
.secc_icon-clock::before {
    content: "\f017";
    /* Replace with clock icon */
}

.secc_icon-appointment::before {
    content: "\f274";
    /* Replace with calendar-check icon */
}

.secc_icon-doctor::before {
    content: "\f0f0";
    /* Replace with stethoscope icon */
}

.secc_icon-location::before {
    content: "\f3c5";
    /* Replace with map-marker-alt icon */
}

/* Small phones (portrait) */
@media (max-width: 576px) {
    .secc_section-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }

    .secc_card {
        width: 100%;
    }

    .secc_card h3 {
        font-size: 16px;
    }

    .secc_card p {
        font-size: 12px;
    }

    button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .secc_icon-clock,
    .secc_icon-appointment,
    .secc_icon-doctor,
    .secc_icon-location {
        font-size: 20px;
    }
}

/* Medium phones (landscape) */
@media (min-width: 577px) and (max-width: 768px) {
    .secc_section-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .secc_card {
        width: 100%;
    }

    .secc_card h3 {
        font-size: 17px;
    }

    .secc_card p {
        font-size: 13px;
    }

    button {
        padding: 9px 18px;
        font-size: 15px;
    }

    .secc_icon-clock,
    .secc_icon-appointment,
    .secc_icon-doctor,
    .secc_icon-location {
        font-size: 22px;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 991px) {
    .secc_section-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
    }

    .secc_card {
        width: 45%;
    }

    .secc_card h3 {
        font-size: 18px;
    }

    .secc_card p {
        font-size: 14px;
    }

    button {
        padding: 10px 20px;
        font-size: 15px;
    }

    .secc_icon-clock,
    .secc_icon-appointment,
    .secc_icon-doctor,
    .secc_icon-location {
        font-size: 24px;
    }
}

/* Large Tablets and Small Laptops */
@media (min-width: 992px) and (max-width: 1200px) {
    .secc_section-container {
        flex-direction: row;
        gap: 20px;
        padding: 25px;
    }

    .secc_card {
        width: 200px;
    }

    .secc_card h3 {
        font-size: 18px;
    }

    .secc_card p {
        font-size: 14px;
    }

    button {
        padding: 10px 20px;
        font-size: 16px;
    }

    .secc_icon-clock,
    .secc_icon-appointment,
    .secc_icon-doctor,
    .secc_icon-location {
        font-size: 24px;
    }
}

/*   ABout 2 Section */



/*   Product Section   */
/* Secondary Navbar styling */
.secondary_navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9fa;
    padding: 10px 105px;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 65px;
    z-index: 10; 
}

/* Navigation links */
.secondary_navbar ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.secondary_navbar ul li {
    margin: 0 10px;
}

.secondary_navbar ul li a {
    text-decoration: none;
    color: #5d5b5b;
    font-weight: 200;
    font-size: 14px;
}

/* Search container with icon */
.secondary_search_container {
    position: relative;
    flex-grow: 1;
    max-width: 200px;
    margin: 0 20px;
}

.secondary_search_input {
    width: 100%;
    padding: 12px 150px 10px 30px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.secondary_search_icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #333;
    font-size: 16px;
}

/* Icon links (Wishlist and Cart) */
.secondary_icon_links {
    display: flex;
    align-items: center;
}

.secondary_icon_link {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    margin-left: 10px;
}

.secondary_icon_link i {
    color: #333;
    font-size: 16px;
}

/* Dropdown container styling */
.secondary_navbar ul li {
    position: relative;
}

.secondary_navbar ul li .secondary_dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -5px;
    background-color: #fff;
    padding: 10px;
    width: 150px;
    margin-top: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.secondary_navbar ul li:hover .secondary_dropdown,
.secondary_navbar ul li .secondary_dropdown:hover {
    display: block;
    opacity: 1;
}

.secondary_dropdown a {
    display: block;
    padding: 5px 10px;
    color: #5c5a5a;
    text-decoration: none;
}

.secondary_dropdown a:hover {
    background-color: #f0f0f0;
}

.secondary_arrow_icon {
    color: #b4b1b1;
    margin-left: 5px;
    transition: transform 0.3s;
}

.secondary_navbar ul li:hover .secondary_arrow_icon {
    transform: rotate(180deg);
}

/* Media Query for Phone View */
@media (max-width: 767px) {
    .secondary_navbar ul {
        display: none;
    }

    .secondary_navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .secondary_search_container {
        flex-grow: 0;
        flex-basis: 150px;
        margin-right: auto;
        margin-left: -5px;
    }

    .secondary_search_input {
        font-size: 14px;
        padding: 8px 1px 8px 35px;
    }

    .secondary_icon_links {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .secondary_icon_link {
        width: 20px;
        height: 20px;
        padding: 6px;
    }
}


/*   SLiding Product */
/* Carousel Container with Full Width */
.carousel-container {
    position: relative;
    width: 100%;
    /* width: 100vw; */
    height: 400px;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100vw;
    height: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .carousel-container {
        height: 300px;
    }

    .carousel-prev,
    .carousel-next {
        padding: 10px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 250px;
    }

    .carousel-prev,
    .carousel-next {
        padding: 8px;
        font-size: 16px;
    }
}

/*   End SLiding Product */

/*   Product Second section  */
.p-sec-services {
    padding: 50px 0;
    text-align: center;
}

.p-sec-container {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
}

.p-sec-header {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1290px;
    margin: 0 auto 0px;
    flex-direction: row;
}

.p-sec-header h2 {
    font-size: 3.2em;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    text-align: left;
}

.p-sec-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 400px;
}

.p-sec-header-content p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.p-sec-view-all-btn {
    padding: 8px 24px;
    background-color: #bd6060;
    color: #fff;
    border: none;
    border-radius: 2em 20px 2.5em 0.2in;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.p-sec-view-all-btn:hover {
    background-color: #444;
}

.p-sec-service-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.p-sec-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    flex: 1 1 22%;
    /* Allows four cards to fit in one row */
    max-width: 300px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.p-sec-card:hover {
    transform: translateY(-10px);
}

.p-sec-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.p-sec-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-sec-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: left;
}

.p-sec-overlay h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
}

.p-sec-card-content {
    padding: 20px;
    flex-grow: 1;
}

.p-sec-card-content p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.p-sec-learn-more {
    display: inline-block;
    font-size: 0.9em;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.p-sec-learn-more:hover {
    color: #444;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .p-sec-header {
        flex-direction: column;
    }

    .p-sec-service-cards {
        justify-content: center;
    }

    .p-sec-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .p-sec-header h2 {
        font-size: 2.1em;
        margin-bottom: -20px;
        margin-top: -20px;
    }

    .p-sec-header-content p {
        font-size: 0.7em;
    }
}

/*   End Second section  */
/*  Add2 List Section  */
.add2_class-container {
    display: flex;
    flex-direction: row;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f0f3f4;
    border-radius: 20px;
    /* margin-left: 40px;
    margin-right: 40px; */
    width: 100%;
    margin: 0 auto;
    max-width: 1260px;

}

.add2_class-main-card {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-right: 20px;
    background-color: #f9f9f9;
    flex: 0 0 auto;
    width: 35%;
    height: auto;
    overflow: hidden;
}

.add2_class-main-card img {
    width: 100%;
    height: 440px;
    border-radius: 8px;
    display: block;
}

.add2_class-main-card h2,
.add2_class-main-card p,
.add2_class-main-card button {
    margin-top: 80px;
    position: absolute;
    left: 20%;
    transform: translateX(-50%);
    width: calc(40% - 10px);
    color: #36454F;
    z-index: 1;
}

.add2_class-main-card h2 {
    top: 20px;
    font-size: 24px;
}

.add2_class-main-card p {
    top: 100px;
    font-size: 20px;
}

.add2_class-main-card button {
    bottom: 110px;
    padding: 10px 20px;
    background-color: #7A9D96;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 2;
    width: 30%;
}

.add2_class-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
    flex: 1;
}

.add2_class-card {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #e8e8e8;
    height: 210px;
    overflow: hidden;
}

.add2_class-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add2_class-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff; /* Ensure text is readable on the image */
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.add2_class-card h3 {
    font-size: 18px;
    text-align: left;
    width: 35%;
}

.add2_class-card p {
    font-size: 16px;
    text-align: left;
}

@media (max-width: 1200px) {
    .add2_class-container {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .add2_class-main-card {
        width: 100%;
        margin-bottom: 20px;
        height: 300px;
    }

    .add2_class-main-card img {
        height: 100%;
        object-fit: cover;
    }

    .add2_class-main-card h2,
    .add2_class-main-card p,
    .add2_class-main-card button {
        margin-top: 0;
        position: absolute;
        left: 10%;
        width: 80%;
        color: #36454F;
        z-index: 1;
        text-align: left;
    }

    .add2_class-main-card h2 {
        top: 10px;
        font-size: 18px;
    }

    .add2_class-main-card p {
        top: 40px;
        font-size: 16px;
    }

    .add2_class-main-card button {
        bottom: 20px;
        padding: 8px 16px;
        background-color: #7A9D96;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        width: auto;
        left: 20%; /* Align button to the left */
    }

    .add2_class-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .add2_class-card {
        height: auto;
    }
}

@media (max-width: 768px) {
    .add2_class-container {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .add2_class-main-card {
        width: 100%;
        margin-bottom: 20px;
        height: 250px;
    }

    .add2_class-main-card img {
        height: 100%;
        object-fit: cover;
    }

    .add2_class-main-card h2,
    .add2_class-main-card p,
    .add2_class-main-card button {
        margin-top: 0;
        position: absolute;
        left: 10%;
        width: 80%;
        color: #36454F;
        z-index: 1;
        text-align: left;
    }

    .add2_class-main-card h2 {
        top: 10px;
        font-size: 16px;
    }

    .add2_class-main-card p {
        top: 35px;
        font-size: 14px;
    }

    .add2_class-main-card button {
        bottom: 15px;
        padding: 6px 12px;
        background-color: #7A9D96;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        width: auto;
        left: 20%; /* Align button to the left */
    }

    .add2_class-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .add2_class-card {
        height: auto;
    }
}

@media (max-width: 480px) {
    .add2_class-container {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .add2_class-main-card {
        width: 100%;
        margin-bottom: 20px;
        height: 200px;
    }

    .add2_class-main-card img {
        height: 100%;
        object-fit: cover;
    }

    .add2_class-main-card h2,
    .add2_class-main-card p,
    .add2_class-main-card button {
        margin-top: 0;
        position: absolute;
        left: 45%;
        width: 80%;
        color: #36454F;
        z-index: 1;
        text-align: left;
    }

    .add2_class-main-card h2 {
        top: 10px;
        font-size: 14px;
    }

    .add2_class-main-card p {
        top: 30px;
        font-size: 12px;
    }

    .add2_class-main-card button {
        bottom: 80px;
        padding: 5px 10px;
        background-color: #7A9D96;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        width: auto;
        left: 20%; /* Align button to the left */
    }

    .add2_class-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .add2_class-card {
        height: auto;
    }

    .add2_class-card-content {
        padding: 5px;
    }

    .add2_class-card h3 {
        font-size: 16px;
    }

    .add2_class-card p {
        font-size: 14px;
    }
}


/*Product 2 list end */

/* this is for the Property page  */


.property_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 50px 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.property_header {
    grid-column: 1 / -1;
    margin-bottom: 10px;
    font-size: 2em;
    color: #008080;
    margin-left: 10px;
}

.property_card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.property_image:hover {
    transform: scale(1.1);
}

.property_image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property_details {
    padding: 15px;
}

.property_price {
    font-size: 1.5em;
    font-weight: bold;
    color: #008080;
}

.property_address {
    color: #888;
    margin: 5px 0;
}

.property_location {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}

.property_btn {
    margin-bottom: 15px;
    margin-left: 10px;
    display: block;
    width: 50%;
    text-align: center;
    padding: 10px;
    background-color: #004d4d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.property_btn:hover {
    background-color: #006666;
    color: white;
    text-decoration: none;
}

.property_heart-btn {
    position: absolute;
    right: 10px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.property_heart-btn.liked {
    color: red;
}

@media (max-width: 768px) {
    .property_container {
        grid-template-columns: repeat(2, 1fr);
    }

    .property_header {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .property_container {
        grid-template-columns: 1fr;
    }

    .property_header {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
}

.property_next-btn-container {
    display: flex;
    justify-content: flex-end;
    margin: 20px 50px;
}

.property_next-btn {
    padding: 10px 20px;
    background-color: #004d4d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.property_next-btn:hover {
    background-color: #006666;
}

@media (max-width: 768px) {
    .property_next-btn-container {
        justify-content: flex-end;
    }
}
/* PRoperty Section */

/*  END PRoduct Section  */