* {
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Navbar CSS */
.navbar {
    transition: background-color 0.3s ease, padding 0.3s ease;
    padding: 5px 30px;
    z-index: 1030;
}

.navbar-dark {
    background-color: rgba(0, 0, 0, 0);
}

.navbar-dark.scrolled {
    background-color: #0E2E50;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    padding: 5px 30px;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-nav .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.navbar-nav .nav-link.active {
    color: #00C194;
    font-weight: 500;
}

/* Dropdown styling */
.dropdown-menu {
    background-color: #0E2E50;
    border: none;
    border-radius: 0.25rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    padding: 0.5rem 0;
    min-width: 220px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover>.dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #00C194;
    background-color: rgba(253, 126, 20, 0.1);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.dropdown-item i {
    float: right;
    color: #00C194;
    width: 20px;
    text-align: center;
    margin-left: 8px;
}

/* Property Button in Navbar */
.btn-property {
    background-color: #00C194;
    color: #fff;
    border-radius: 4px;
    padding: 8px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.btn-property:hover {
    background-color: #00a37b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Banner */
.hero-banner {
    height: 80vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://t3.ftcdn.net/jpg/05/59/09/50/360_F_559095057_YeiS6zTM107wRlnenmZZ8ztDjOmG8858.jpg') center/cover no-repeat;
}

.banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    z-index: 10;
    color: #fff;
    text-align: center;
    animation: fadeIn 1s ease forwards;
}

.banner-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.banner-text {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.btn-orange {
    background-color: #00C194;
    border-color: #00C194;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    font-size: 1.2rem;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #00C194;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom scrollbar */
.custom-scroll {
    max-height: 400px;
    overflow-y: auto;
}

.custom-scroll::-webkit-scrollbar {
    width: 4px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #000000;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: #00C194;
    border-radius: 4px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #00C194;
}

/* Offcanvas styling */
.offcanvas-header .btn-close {
    color: white;
}

.offcanvas-body .nav-link.active {
    color: #00C194;
    font-weight: 500;
}

.accordion-button {
    background-color: transparent;
    color: white;
    box-shadow: none;
    padding: 0.5rem 0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #00C194;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0;
}

.accordion-body .offcanvas-link {
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.accordion-body .offcanvas-link:hover {
    color: #00C194;
    background-color: rgba(255, 255, 255, 0.05);
}

.accordion-body .offcanvas-link i {
    float: right;
    color: #00C194;
    width: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-nav .nav-item {
        margin: 0;
    }

    .dropdown:hover>.dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }

    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 70vh;
        min-height: 400px;
    }

    .banner-content {
        max-width: 90%;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-text {
        font-size: 1.2rem;
    }

    .btn-orange {
        font-size: 1rem;
        padding: 8px 20px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-text {
        font-size: 1rem;
    }
}

/* counter animation css */


/* Base Styles */
.counter-body {
    background-image: url("assets/img/counter-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: white;
    min-height: 80vh;
    overflow-x: hidden;
}

.stats-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}

/* Typography */
.heading-primary {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.heading-secondary {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Counter Elements */
.stat-wrapper {
    position: relative;
    margin-bottom: 2rem;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.stat-bubble {
    width: 80%;
    /* Reduced from 100% */
    padding-bottom: 80%;
    /* Reduced from 100% */
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.stat-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-bubble:before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stat-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10%;
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    /* Reduced font size */
    font-weight: bold;
    position: relative;
    z-index: 5;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    /* Reduced font size */
    position: relative;
    z-index: 5;
    text-align: center;
    line-height: 1.2;
}

.stat-symbol {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    /* Reduced font size */
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stats-section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 2.5rem 0;
    }

    .heading-secondary {
        margin-bottom: 2rem;
    }

    .stat-bubble {
        width: 75%;
        padding-bottom: 75%;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 2rem 0;
    }

    .stat-number {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .stat-text {
        font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    }

    .heading-secondary {
        margin-bottom: 1.5rem;
    }

    .stat-bubble {
        width: 70%;
        padding-bottom: 70%;
    }
}

/* Animation effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Row fixes */
.row {
    justify-content: center;
    /* align-items: center; */
}

/* slider card css start */


        .real-estate-item {
            background-color: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .real-estate-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .listing-image-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .listing-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .real-estate-item:hover .listing-image-container img {
            transform: scale(1.1);
        }

        .listing-info-section {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .listing-price-display {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0d6efd;
            margin-bottom: 10px;
        }

        .listing-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #212529;
        }

        .listing-location {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .listing-location i {
            margin-right: 5px;
            margin-top: 3px;
        }

        .listing-amenities {
            display: flex;
            justify-content: space-between;
            padding-top: 15px;
            border-top: 1px solid #eee;
            margin-top: auto;
        }

        .amenity-item {
            display: flex;
            align-items: center;
            color: #495057;
            font-size: 0.9rem;
        }

        .amenity-item i {
            margin-right: 5px;
            color: #0d6efd;
        }

        .label-premium {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 10;
            padding: 5px 10px;
            background-color: rgba(13, 110, 253, 0.85);
            color: white;
            font-weight: 600;
            border-radius: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.05);
                opacity: 0.9;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .label-availability {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10;
            padding: 5px 10px;
            background-color: rgba(25, 135, 84, 0.85);
            color: white;
            font-weight: 600;
            border-radius: 20px;
        }

        /* Slider specific styles */
        .real-estate-carousel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .real-estate-carousel .slick-track {
            display: flex;
            align-items: stretch;
        }

        .real-estate-carousel .slick-slide {
            height: auto;
        }

        .real-estate-carousel .slick-slide>div {
            height: 100%;
        }

        .real-estate-carousel .slick-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 10;
            transition: all 0.3s ease;
            display: flex !important;
            align-items: center;
            justify-content: center;
        }

        .real-estate-carousel .slick-prev {
            left: -25px;
        }

        .real-estate-carousel .slick-next {
            right: -25px;
        }

        .real-estate-carousel .slick-prev:before,
        .real-estate-carousel .slick-next:before {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #0d6efd;
            opacity: 1;
            font-size: 20px;
        }

        .real-estate-carousel .slick-prev:before {
            content: '\f053';
            /* fa-chevron-left */
        }

        .real-estate-carousel .slick-next:before {
            content: '\f054';
            /* fa-chevron-right */
        }

        .real-estate-carousel .slick-dots {
            bottom: -40px;
        }

        .real-estate-carousel .slick-dots li button:before {
            font-size: 12px;
            color: #0d6efd;
        }

        .carousel-controls {
            text-align: center;
            margin: 20px 0 30px;
            display: flex;
            justify-content: flex-end;
        }

        .carousel-nav-btn {
            background-color: #0d6efd;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 8px 15px;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-nav-btn:hover {
            background-color: #0b5ed7;
            transform: translateY(-2px);
        }

        /* For smaller screens */
        @media (max-width: 768px) {
            .real-estate-carousel .slick-prev {
                left: -15px;
            }

            .real-estate-carousel .slick-next {
                right: -15px;
            }

            .real-estate-carousel .slick-arrow {
                width: 40px;
                height: 40px;
            }

            .listing-amenities {
                flex-wrap: wrap;
            }

            .amenity-item {
                width: 50%;
                margin-bottom: 10px;
            }

            .carousel-controls {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .real-estate-carousel .slick-arrow {
                display: none !important;
            }

            .real-estate-carousel {
                padding: 0;
            }
        }

        /* Section title */
        .main-heading {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            font-weight: 700;
            color: #333;
        }

        .main-heading:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #0d6efd;
            margin: 15px auto 0;
            border-radius: 2px;
        }
  