        .property-card {
            background: #fff;
            border-radius: 8px;
            padding: 14px 8px 16px;
            text-align: center;
            max-width: 442px;
            width: 100%;
            margin: auto;
            overflow: hidden !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .property-card h1 {
            font-size: 27px;
            font-weight: 300;
            color: #000;
            margin-bottom: 4px;
            line-height: 1.1;
        }

        .property-card h3 {
            font-size: 16px;
            font-weight: 600;
            color: #000;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .feature-bar {
            background: linear-gradient(90deg, #f69020, #f06021);
            color: #fff;
            font-size: 12px;
            font-weight: 400;
            padding: 8px 10px;
            margin: 5px 0;

            -webkit-animation: bounceIn 1.2s infinite;
            animation: bounceIn 1.2s infinite;
            transform-origin: center;
        }

        .property-card p {
            font-size: 20px;
            color: #000;
            line-height: 1.15;
            margin: 8px 0 4px;
        }

        .property-card span {
            font-size: 20px;
            color: #000;
            display: block;
        }

        .property-card h2 {
            font-size: 24px;
            font-weight: 700;
            color: #4d3012;
            margin: 8px 0 14px;
        }

        .enquire-btn {
            display: inline-block;
            background: linear-gradient(90deg, #f69020, #f06021);
            color: #fff;
            font-size: 14px;
            padding: 9px 38px;
            border-radius: 5px;
            text-decoration: none;
        }

        .enquire-btn:hover {
            color: #fff;
        }

        .about-five__thumb.one img {
            object-fit: cover;
        }

        .amenities-section {
            background: #41534d;
            padding: 60px 0 70px;
            position: relative;
            overflow: hidden;
        }

        .amenities-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(to right,
                    rgba(255, 255, 255, 0.08) 0px,
                    rgba(255, 255, 255, 0.08) 1px,
                    transparent 1px,
                    transparent 13px);
            opacity: 0.5;
        }

        .amenities-section .container {
            position: relative;
            z-index: 1;
        }

        .amenities-title {
            text-align: center;
            color: #fff;
            font-size: 36px;
            font-family: Georgia, serif;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 70px;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 75px 70px;
        }

        .amenity-box {
            text-align: center;
        }

        .amenity-box img {
            width: 58px;
            height: 58px;
            object-fit: contain;
            margin-bottom: 22px;
            filter: brightness(0) invert(1);
        }

        .amenity-box h6 {
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            margin: 0;
        }

        .floor-plan-section {
            background: #fff;
            padding: 25px 0 40px;
        }

        .floor-plan-title {
            font-size: 30px;
            font-weight: 400;
            color: #000;
            margin-bottom: 28px;
        }

        .floor-plan-card {
            max-width: 655px;
            margin: 0 auto;
            background: #fff;
            border: 1px solid #d9dfe5;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        }

        .floor-plan-img {
            height: 288px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }

        .floor-plan-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .floor-plan-name {
            background: linear-gradient(90deg, #f69020, #f06021);
            color: #fff;
            text-align: center;
            font-size: 26px;
            font-weight: 400;
            padding: 9px 15px;
        }

        /* Tablet */
        @media (max-width: 991px) {
            .floor-plan-title {
                font-size: 28px;
            }

            .floor-plan-card {
                max-width: 600px;
            }

            .floor-plan-img {
                height: 260px;
            }
        }

        /* Mobile */
        @media (max-width: 767px) {
            .floor-plan-section {
                padding: 25px 0 35px;
            }

            .floor-plan-title {
                font-size: 25px;
                margin-bottom: 22px;
            }

            .floor-plan-img {
                height: auto;
                min-height: 220px;
            }

            .floor-plan-name {
                font-size: 23px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .floor-plan-img {
                min-height: 180px;
                padding: 8px;
            }

            .floor-plan-name {
                font-size: 21px;
                padding: 8px 12px;
            }
        }

        /* Tablet */
        @media (max-width: 991px) {
            .amenities-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 55px 40px;
            }

            .amenities-title {
                font-size: 32px;
                margin-bottom: 55px;
            }
        }

        /* Mobile */
        @media (max-width: 767px) {
            .amenities-section {
                padding: 45px 0 50px;
            }

            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 45px 25px;
            }

            .amenity-box img {
                width: 50px;
                height: 50px;
                margin-bottom: 15px;
            }

            .amenity-box h6 {
                font-size: 15px;
            }
        }

        /* Small Mobile */
        @media (max-width: 420px) {
            .amenities-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .amenities-title {
                font-size: 28px;
            }
        }

        /* Webkit Animation */
        @-webkit-keyframes bounceIn {

            from,
            20%,
            40%,
            60%,
            80%,
            to {
                -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            }

            0% {
                opacity: 0;
                -webkit-transform: scale3d(0.3, 0.3, 0.3);
            }

            20% {
                -webkit-transform: scale3d(1.1, 1.1, 1.1);
            }

            40% {
                -webkit-transform: scale3d(0.9, 0.9, 0.9);
            }

            60% {
                opacity: 1;
                -webkit-transform: scale3d(1.03, 1.03, 1.03);
            }

            80% {
                -webkit-transform: scale3d(0.97, 0.97, 0.97);
            }

            100% {
                opacity: 1;
                -webkit-transform: scale3d(1, 1, 1);
            }
        }

        /* Standard Animation */
        @keyframes bounceIn {

            from,
            20%,
            40%,
            60%,
            80%,
            to {
                animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            }

            0% {
                opacity: 0;
                transform: scale3d(0.3, 0.3, 0.3);
            }

            20% {
                transform: scale3d(1.1, 1.1, 1.1);
            }

            40% {
                transform: scale3d(0.9, 0.9, 0.9);
            }

            60% {
                opacity: 1;
                transform: scale3d(1.03, 1.03, 1.03);
            }

            80% {
                transform: scale3d(0.97, 0.97, 0.97);
            }

            100% {
                opacity: 1;
                transform: scale3d(1, 1, 1);
            }
        }

        /* Responsive */
        @media (max-width: 767px) {
            .property-card {
                padding: 14px 8px;
                max-width: 100%;
            }

            .property-card h1 {
                font-size: 30px;
            }

            .property-card h3 {
                font-size: 20px;
            }

            .feature-bar {
                font-size: 15px;
                padding: 7px;
            }

            .property-card p {
                font-size: 21px;
            }

            .property-card span {
                font-size: 19px;
            }

            .property-card h2 {
                font-size: 30px;
            }

            .enquire-btn {
                font-size: 21px;
                padding: 8px 30px;
            }
        }

        @media (max-width: 480px) {
            .property-card h1 {
                font-size: 26px;
            }

            .property-card h3 {
                font-size: 18px;
            }

            .property-card h2 {
                font-size: 26px;
            }
        }