        @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

        :root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --accent-color: #ff6b6b;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }

        html, body {
            font-family: Montserrat, sans-serif;
            color: #000;
            background: #fff;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }

        .hero-section {
            padding: 150px 80px;
            text-align: left;
        }

        .section-title {
            position: relative;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            font-size: 20px;
            text-transform: uppercase;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            /*transform: translateX(-50%);*/
            width: 80px;
            height: 1px;
            background-color: #bba99d;
        }

        .feature-box {
            text-align: center;
            padding: 2rem 1rem;
            transition: transform 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        /*Product card start*/
        .product-card {
            border: 1px solid #eee;
            overflow: hidden;
            margin-bottom: 2rem;
            cursor: pointer;
            position: relative;
        }

        .product-img-wrapper {
            position: relative;
            overflow: hidden;
        }

        .product-img-wrapper img {
            width: 100%;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img-wrapper img {
            transform: scale(1.1);
        }

        .product-img-wrapper::after {
            content: "";
            position: absolute;
            z-index: 5;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .product-card:hover .product-img-wrapper::after {
            opacity: 1;
        }

        .product-overlay {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 0;
            transform: translateY();
            /* initially hidden */
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
            z-index: 10;
        }

        .product-overlay .caption-text {
            pointer-events: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .product-card:hover .product-overlay {
            transform: translateY(-75%);
            /* slide up */
            opacity: 1;
        }

        /*Product card end*/

        /*faucet card start*/
        .faucet-card {
            border: 1px solid #eee;
            overflow: hidden;
            margin-bottom: 2rem;
            cursor: pointer;
            position: relative;
        }

        .faucet-img-wrapper {
            position: relative;
            overflow: hidden;
        }

        .faucet-img-wrapper img {
            width: 100%;
            transition: transform 0.5s ease;
        }

        .faucet-card:hover .faucet-img-wrapper img {
            transform: scale(1.1);
        }

        .faucet-img-wrapper::after {
            content: "";
            position: absolute;
            z-index: 5;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgb(255 255 255 / 21%), rgb(255 255 255 / 54%));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .faucet-card:hover .faucet-img-wrapper::after {
            opacity: 1;
        }

        .faucet-overlay {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 0;
            transform: translateY();
            /* initially hidden */
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
            z-index: 10;
        }

        .faucet-overlay .caption-text {
            pointer-events: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .faucet-card:hover .faucet-overlay {
            transform: translateY(-75%);
            /* slide up */
            opacity: 1;
        }

        /*faucet card end*/

        .wa-products-icon {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 10px;
        }

        .wa-products-icon li a {
            color: #fff;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .wa-products-icon li a:hover {
            color: #ffcc00;
            /* optional hover color */
        }

        .color-variant {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .color-variant.active {
            border-color: var(--dark-text);
        }

        .testimonial-card {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        footer {
            background-color: var(--dark-text);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #bba99d;
        }

        .card-title {
            text-align: center;
        }

        .ratings {
            display: flex;
            width: 100%;
            justify-content: center;
            padding: 0;
        }

        .ratings li {
            list-style: none;
        }

        .ratings li a {
            color: #bba99d;
        }

        /* Style slick arrows */
        .slick-next,
        .slick-prev {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(0, 0, 0, .2);
            color: #fff;
            border: none;
            /* round shape */
            width: 45px;
            /* button size */
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            /* icon size */
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .slick-prev:hover,
        .slick-next:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        /* Positioning */
        .slick-prev {
            left: 0;
            /* distance from left edge */
        }

        .slick-next {
            right: 0;
            /* distance from right edge */
        }

        .slick-prev:hover {
            background-color: #bba99d;
            border-color: #bba99d;
        }

        .slick-next:hover {
            background-color: #bba99d;
            border-color: #bba99d;
        }

        .sldbtn {
            background: black;
            color: white;
            border-radius: 0;
            padding: 10px 28px;
        }

        .sldbtn a {
            font-size: 16px;
        }

        .sldbtn:hover {
            background-color: #bba99d;
            border-color: #bba99d;
            color: white;
        }

        .hero-section .title {
            font-size: 36px;
            color: #171616;
            font-weight: 700;
            letter-spacing: 4px;
            line-height: 1.2em;
            text-transform: uppercase;
        }

        .hero-section .subtitle {
            font-size: 24px;
            font-weight: 400;
            position: relative;
            text-transform: uppercase;
            padding-bottom: 10px;
            display: inline-block;
            margin-bottom: 0;
        }

        .hero-section .desc {
            font-size: 16px;
            margin-bottom: 30px;
        }

        .btn,
        .card,
        .modal-content {
            border-radius: 0px;
        }

        .custombtn {
            color: white;
            background: black;
            border-color: black;
            font-size: 15px;
        }

        .custombtn:hover {
            background: #bba99d;
            color: white;
        }

        .slick-dots {
            position: absolute;
            bottom: 20px;
            /* adjust distance from bottom */
            width: 100%;
            text-align: center;
            display: flex !important;
            justify-content: center;
            gap: 10px;
            /* space between dots */
            list-style: none;
        }

        /* Dots as flat bars */
        .slick-dots li {
            margin: 0;
        }

        .slick-dots li button {
            width: 30px;
            /* dot width */
            height: 2px;
            /* slightly rounded rectangle */
            background: #ddd;
            /* default color */
            border: none;
            padding: 0;
            transition: background 0.3s, width 0.3s;
            font-size: 0;
            /* hides the number */
        }

        /* Active dot */
        .slick-dots li.slick-active button {
            background: #333;
            /* active color */
            width: 40px;
            /* active dot a bit longer */
        }

        .modal-content {
            box-shadow: 0 0 46px -14px #000;
        }

        .modal-backdrop {
            background: white;
            opacity: 0.7;
            transition: all 0.3s ease-in-out;
        }

        .modalclose {
            background: black;
            color: white;
            border: 0px;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modalclose:hover {
            background: #bba99d;
            color: white;
            border: 0;
        }

        .form-control {
            border: 1px solid #0000005e;
        }

        .form-control:focus {
            border-color: black;
            box-shadow: none;
        }

        .tabimg {
            width: 100px;
            height: 100px;
            object-fit: contain;
        }

        .thcolor {
            background: #eee;
        }

        table {
            border: 1px solid black;
        }

        th,
        td {
            text-align: center;
            font-size: 13px;
            align-content: center !important;
            border-bottom: 1px solid black;
            border-top: 1px solid black;
            border-left: none;
            border-right: none;
        }

        .mheading {
            padding: 15px 0px !important
        }

        .tdfonts {
            text-transform: uppercase;
            font-weight: 600;
            justify-items: center;
        }

        .tdfonts2 {
            text-transform: uppercase;
            padding: 15px 0px;
            font-size: 14px;
        }

        .fa-trash {
            color: black;
        }

        .information-card {
            padding: 40px;
            border: 1px solid #eee;
            position: relative;
            display: inline-block;
            width: 100%;
            margin-top: 15px;
            background-color: #eee !important;
        }

        .pdc {
            height: 300px;
            object-fit: contain;
        }

        .mimg {
            height: 300px;
        }

        #cartCount {
            background: #97813d;
            width: 20px;
            position: absolute;
            top: 0;
            color: white;
            right: -12px;
            font-size: 12px;
            border-radius: 50px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 600;
        }

        .cd2 {
            background: #97813d;
            width: 20px;
            position: absolute;
            top: -10px;
            color: white;
            right: -14px;
            font-size: 12px;
            border-radius: 50px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 600;
        }

        @media(max-width:767px) {
            .contact-section {
                position: relative;
                width: 100%;
                height: 50vh !important;
                background-image: url(../images/contact.jpg);
                background-size: contain;
                background-position: 50% 0 !important;
                overflow: hidden;
                background-repeat: no-repeat !important;
            }
            .mrw{
                gap:1.5rem !important;
            }
            .numbers-description{
                text-align: center!important;
            }
            .fs, .fws{
                font-size: 40px !important;
            }
            .lists{
                font-size:40px !important;
            }
            .lists .prj{
                font-size:60px !important;
            }
            #circle {
                position: absolute;
                overflow: hidden;
                right: 66px !important;
                bottom: -38px;
            }
            .hero-section {
                padding: 55px 30px !important;
            }

            .pdc {
                height: 200px;
                object-fit: contain;
            }

            .information-card {
                padding: 8px;
            }
        }

        .msec {
            position: relative;
        }

        .mtext {
            position: absolute;
            left: 0px;
            top: 0;
            padding: 20px 0px;
            z-index: 10;
        }

        .fws {
            font-weight: 100;
            color: #d7eb6e;
            font-style: italic;
            font-size: 90px;
        }

        .fs {
            font-size: 90px;
            font-weight: 500;
        }

        .right-img {
            float: right;
        }

        .para {
            max-width: 420px;
            font-weight: 500;
        }

        #circle {
            position: absolute;
            overflow: hidden;
            right: 0;
        }

        #circle text {
            font-family: "Helvetica Neue", Arial;
            font-size: 13px;
            fill: #fff;
            font-weight: bold;
        }

        /* Rotate only the text */
        .rotating-text {
            transform-origin: 50% 50%;
            animation: rotate 15s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .fa-house,
        .fa-building,
        .fa-user,
        .fa-thumbs-up {
            color: #d7eb6e;
            font-size: 30px;
        }

        .numbers-description {
            letter-spacing: 5px;
            text-align: left;
            text-transform: uppercase;
            font-size: 15px;
            margin: 0;
            color: #d7d7d8 !important;
        }

        .list {
            font-size: 60px;
            text-transform: uppercase;
        }

        .list span {
            color: #d7eb6e;
            font-size: 60px;
            text-transform: uppercase;
        }

        .btn-primary {
            background-color: #000;
            border-radius: 20px;
            border-color: #000;
        }

        .btn-white {
            background-color: #ffffff;
            border-radius: 20px;
            border-color: #ffffff;
            margin: 23px auto;
            font-weight: 500 !important;
        }

        .btn-white:hover {
            color: white;
        }

        /* Card css */
        .property-card {
            background: #fff;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .image-box {
            height: 210px;
            overflow: hidden;
        }

        .image-box.curved {
            border-radius: 0 0 0 70px;
        }

        .image-box::before {
            background-color: grey;
            width: 400px;
            height: 400px;

        }

        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .card-content {
            padding: 18px;
        }

        .card-content h5 {
            font-weight: 600;
            margin-bottom: 6px;
        }

        .rating {
            color: #f6b01e;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .rating span {
            color: #777;
            font-size: 13px;
        }

        .price {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .center-btn {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .btn:hover {
            background-color: #283952;
            border-color: #283952;
        }

        .lists {
            margin: 80px auto;
        }

        .carousel-caption {
            background-color: #292d32 !important;
            width: 270px;
            height: 135px;
            padding: 20px;
            font-size: 13px;
            margin: -20px auto;
            position: absolute;
            z-index: 20;
            border-bottom: 1px solid yellow;
        }

        .carousel-indicators {
            display: none !important;
        }

        .touch {
            font-size: 50px;
            text-transform: capitalize;
        }

        .contact-section {
            position: relative;
            width: 100%;
            height: 100vh;
            background-image: url("../images/contact.jpg");
            background-size: cover;
            background-position: center left;
            overflow: hidden;
        }

        /* Gradient Overlay */
        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 45%, rgb(33 37 41) 70%, rgb(33 37 41) 100%);
        }
        .lists .prj{
            font-size:80px;
        }
        
        .bimg{
            height: 200px;
        }
        