
        :root {
            --narvik: #EAE7DD;
            --sorrell-brown: #F07E01;
            --dark-accent: #434a54;
            --transition: all 0.3s ease;
        }

        .swiper-slide {
            height: 100% !important;
        }

        .swiper-wrapper {

            height: 100% !important;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            background-color: var(--narvik);
            overflow-x: hidden;
        }

        /* Header & Navigation */
        .navbar {
            background-color: var(--narvik);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: var(--transition);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--sorrell-brown);
        }

        .nav-link {
            color: var(--dark-accent);
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: var(--transition);
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--sorrell-brown);
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--sorrell-brown);
        }

        .nav-link:hover:after {
            width: 100%;
        }

        /* Hero Slider */
        .hero-slider {
            height: 90vh;
            position: relative;
            overflow: hidden;
        }



        .carousel-item {
            height: 90vh;
            background-position: center;
            background-size: cover;
            position: relative;
        }

        #testimonialCarousel .carousel-item{
            height:fit-content !important;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
        }

        .hero-content {
            color: white;
            max-width: 650px;
            margin-left: 10%;
            animation: fadeInUp 1s ease;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn-primary {
            background-color: var(--sorrell-brown);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-primary:hover {
            background-color: #FBB017;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: white;
        }

        .about-icon {
            font-size: 3rem;
            color: var(--sorrell-brown);
            margin-bottom: 20px;
        }

        /* Property Sections */
        .property-section {
            padding: 80px 0;
        }

        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            color: var(--dark-accent);
        }

        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 70px;
            height: 3px;
            background-color: var(--sorrell-brown);
        }

        .property-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .property-img {
            height: 220px;
            background-size: cover;
            background-position: center;
        }

        .property-content {
            padding: 20px;
        }

        .property-price {
            color: var(--sorrell-brown);
            font-weight: 700;
            font-size: 1.4rem;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: var(--sorrell-brown);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }

        .carousel-control-prev {
            left: 15px;
        }

        .carousel-control-next {
            right: 15px;
        }

        /* Map & Form Section */
        .map-form-section {
            padding: 80px 0;
            background-color: white;
        }

        #map {
            height: 450px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .lead-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .form-control {
            padding: 12px 15px;
            height: auto;
            border: 1px solid #eae7dd;
            margin-bottom: 20px;
            border-radius: 5px;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--sorrell-brown);
            box-shadow: 0 0 0 0.25rem rgba(153, 119, 92, 0.25);
        }

        /* Testimonial Section */
        .testimonial-section {
            padding: 80px 0;
            background-color: var(--narvik);
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 20px;
            position: relative;
        }

        .testimonial-card:after {
            content: '\201D';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 4rem;
            color: var(--sorrell-brown);
            opacity: 0.2;
        }

        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        /* Footer */
        footer {
            background-color: var(--sorrell-brown);
            color: white;
            padding: 70px 0 0;
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-icons {
            margin-top: 20px;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            margin-right: 10px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: white;
            color: var(--sorrell-brown);
            transform: translateY(-5px);
        }

        .copyright {
            background: rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            margin-top: 50px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mega Menu */
        .mega-menu {
            position: static;
        }

        .mega-menu-content {
            display: none;
            position: absolute;
            left: 0;
            width: 100%;
            background: white;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border-top: 1px solid #eee;
        }

        .mega-menu:hover .mega-menu-content {
            display: block;
            animation: fadeInUp 0.5s ease;
        }

        .mega-menu-column {
            flex: 1;
            min-width: 200px;
        }

        .mega-menu-column h5 {
            color: var(--sorrell-brown);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .mega-menu-links {
            list-style: none;
            padding: 0;
        }

        .mega-menu-links li {
            margin-bottom: 10px;
        }

        .mega-menu-links a {
            color: var(--dark-accent);
            text-decoration: none;
            transition: var(--transition);
        }

        .mega-menu-links a:hover {
            color: var(--sorrell-brown);
            padding-left: 5px;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .mega-menu-content {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                text-align: center;
                margin: 0 auto;
                padding: 0 20px;
                margin-top: -67px;
            }


            .hero-content h1 {
                font-size: 2rem;
            }

            .property-card {
                margin-bottom: 20px;
            }
        }

        .main-circle {
            position: relative;
            z-index: 1;
        }

        .main-circle img {
            position: relative;
            z-index: 2;
        }

        .main-circle::after {
            position: absolute;
            content: '';
            width: 150px;
            height: 150px;
            /* border: 5px solid var(--sorrell-brown);  */
            background-color: #EAE7DD;
            border-radius: 50%;
            top: 30px;
            left: 30px;
            transform: translate(-50%, -50%);
            /* z-index: -1;                 */
        }

        .under-txt {
            position: relative;


        }

        .lead {
            padding-top: 20px;
        }

        .under-txt:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 70px;
            height: 3px;
            background-color: var(--sorrell-brown);
        }

        /* Morphing Card Effect */
        .morph-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            margin-bottom: 30px;
            height: 420px;
        }

        .morph-card:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.2);
            border-radius: 30px;
        }


        .morph-img {
            height: 60%;
            background-size: cover;
            background-position: center;
            transition: all 0.5s ease;
            position: relative;
        }

        .morph-card:hover .morph-img {
            height: 40%;
            filter: brightness(1.2) saturate(1.3);
        }

        .morph-content {
            padding: 20px;
            height: 40%;
            transition: all 0.5s ease;
        }

        .morph-card:hover .morph-content {
            height: 60%;
            background: #99775c3e;
        }

        .morph-img::after {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: #EAE7DD;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
        }

        .price {
            color: var(--sorrell-brown, #8B4513);
            font-weight: 700;
            font-size: 1.4rem;
        }

        .description {
            font-size: 0.9rem;
            color: #666;
            margin: 10px 0;
        }

        h4 {
            color: var(--dark-accent, #2c3e50);
            margin-bottom: 10px;
        }

        .text-muted {
            color: #999 !important;
        }

        .morph-content .enquire-btn {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
        }

        .morph-card:hover .morph-content .enquire-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .swiper-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            position: static !important;
            width: 50px;
            height: 50px;
            background-color: var(--sorrell-brown);
            border-radius: 50%;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            border: none;
            transition: background 0.2s;
        }

        .swiper-button-next {
            right: 0px !important;
            position: absolute !important;

        }

        .swiper-button-prev {
            right: 0px !important;
            position: absolute !important;

        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 1.5rem;
        }

        .swiper-button-next:after {
            content: "\f105";
            /* FontAwesome chevron-right */
        }

        .swiper-button-prev:after {
            content: "\f104";
            /* FontAwesome chevron-left */
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: #FBB017;
        }

        footer .btn {
            height: 49px !important;

        }

        /* Enquiry Button Styles */
        .enquire-btn {
            background-color: var(--sorrell-brown);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
            margin-top: 15px;
        }

        .enquire-btn:hover {
            background-color: #FBB017;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Modal Styles */
        .modal-content {
            border-radius: 15px;
            border: none;
        }

        .modal-header {
            background-color: var(--sorrell-brown);
            color: white;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

        .modal-title {
            font-weight: 600;
        }

        .btn-close {
            filter: invert(1);
        }

        .modal-footer .btn {
            padding: 10px 25px;
        }

        .modal-footer{
            justify-content: left;
        }

        .custom-h{
            height: fit-content;
            width: fit-content;
        }

        .no-desing{
            text-decoration: none !important;
            color: inherit !important;
        }

        @media (max-width: 576px) {
            /* .morph-card {
                height: auto;
            } */

            .d-flex{
                flex-wrap: wrap;
            }
            #enquiryForm .mb-3{
                width: 100% !important;
            }

            .morph-img {
                height: 200px;
            }

            .morph-content {
                height: auto;
            }

            .carousel-control-next{
                display: none;
            }
.carousel-control-prev{
                display: none;
            }
                .navbar-brand{
                    font-size: 1.2rem;
                }
                .section-title {
                    font-size: 1.2rem;
                }
               .property-section .section-title{
                    width: 20%;
                    margin-bottom: 20px;
                }

                .swiper-button-next, .swiper-button-prev {
                    width: 40px;
                    height: 40px;
                    font-size: 1.2rem;
                    top: 95% !important;
                }
                .morph-card{
                    margin-bottom: 67px;
                }

                .navbar-toggler{
                    border: none;
                    outline: none;
                }
            .property-section {
                padding: 40px 0;
            }
            .morph-card:hover {
                transform: none !important;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                border-radius: 20px;
            }
        }