        /* primary:#1c3b7d */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* Navbar */
        .navbar {
            background: white !important;
            padding: 5px 40px !important;
            transition: all 0.4s ease;
        }

        .navbar .nav-item .nav-link {
            color: #1c3b7d !important;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .navbar .nav-link {
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-item .nav-link {
            font-weight: bolder;
        }

        body.modal-open {
            overflow: auto !important;
            padding-right: 0 !important;
            /* Fix shift issue */
        }

        .navbar .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: white;
            transition: width 0.3s ease;
        }

        .navbar .nav-link:hover::after {
            width: 100%;
        }

        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .offcanvas-body .nav-link {
            padding: 12px 20px !important;
            border-bottom: 1px solid #f0f0f0;
        }

        section {
            scroll-margin-top: 100px !important;
            overflow: hidden !important;

        }

        /* side bar and form */
        .sidebar {
            width: 100%;
            position: sticky;
            top: 110px;
        }

        .sidebar-title {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .sidebar-title::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 4px;
            bottom: 0;
            left: 0;
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            border-radius: 2px;
        }

        /* Sidebar Card */
        .sidebar-widget {
            background: #ffffff;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f5f9;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .sidebar-widget:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        /* Form container */
        .sidebar-beautiful-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Input Style */
        .down-form-group {
            position: relative;
        }

        .down-form-control {
            width: 100%;
            padding: 14px 16px;
            border: 1.5px solid #e2e8f0;
            border-radius: 12px;
            font-size: 15px;
            outline: none;
            transition: all 0.3s ease;
            background-color: #f8fafc;
            color: #334155;
        }

        .down-form-control:focus {
            border-color: #1c3b7d;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
            background-color: #ffffff;
        }

        /* Phone group */
        .down-phone-group {
            display: flex;
            gap: 12px;
        }

        .down-country-code {
            width: 35%;
            padding: 14px;
            border-radius: 12px;
            border: 1.5px solid #e2e8f0;
            outline: none;
            background-color: #f8fafc;
            color: #334155;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .down-country-code:focus {
            border-color: #1c3b7d;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
            background-color: #ffffff;
        }

        /* Checkbox styling */
        .agree-text {
            font-size: 14px;
            color: #64748b;
            line-height: 1.5;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
        }

        .agree-text input[type="checkbox"] {
            margin-top: 3px;
            accent-color: #1c3b7d;
            transform: scale(1.2);
        }

        /* Button */
        .submit-btn {
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            color: #fff;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            transform: translateY(-3px);
            box-shadow: 0 7px 20px #1c3b7d;
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Form header */
        .form-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .form-icon {
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        /* Responsive adjustments */
        @media (max-width: 480px) {
            .sidebar-widget {
                padding: 25px 20px;
            }

            .down-phone-group {
                flex-direction: column;
            }

            .down-country-code {
                width: 100%;
            }

            .section-title h2 {
                font-size: 24px !important;
            }
        }

        @media (max-width:992px) {
            .navbar {
                padding: 10px 0px !important;
            }
        }

        /* About Section */
        .intro-section {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .section-title {
            text-align: center;
        }

        .section-title h2 {
            font-size: 34px;
            font-weight: 700;
            color: #111;
            margin-bottom: 45px;
            position: relative;
        }

        .section-title h2:after {
            content: '';
            width: 70px;
            height: 4px;
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            position: absolute;
            left: 45%;
            bottom: -15px;
            border-radius: 2px;
        }

        .about-text {
            color: #555;
            line-height: 1.8;
            text-align: justify;
            font-size: 16px;
        }

        .intro-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .subtitle {
            font-size: 18px;
            color: #1c3b7d;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .details-container {
            padding: 20px;
        }

        .specs-container {
            margin-bottom: 20px;
        }

        .spec-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .spec-item:hover {
            background: #f0f0f0;
            transform: translateX(5px);
        }

        .spec-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            color: white;
        }

        .spec-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
        }

        .spec-details {
            color: #666;
            font-size: 14px;
        }

        .rera-badge {
            display: inline-flex;
            align-items: center;
            background: #e0f1ff;
            color: #c70f0f;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
        }

        .rera-badge i {
            margin-right: 8px;
        }

        .intro-right {
            display: flex;
            align-items: center;
        }

        .intro-right img {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            border-radius: 15px;
        }

        @media(max-width:768px) {
            .intro-section {
                flex-direction: column;
                padding: 25px 20px !important;
            }

        }

        /* Amenities swiper */
        .swiper-slide {
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .amenity-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            max-width: 320px;
            height: 270px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 10px 0px;
            position: relative;
            border: 1px solid #f1f5f9;
            text-align: center;
        }

        .amenity-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .amenity-card:hover .amenity-main-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .amenity-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .amenity-description {
            font-size: 0.85rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .prev-btn,
        .next-btn {
            color: white;
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
            transition: all 0.3s ease;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.9;
        }

        .prev-btn:after,
        .next-btn:after {
            font-size: 1rem;
            font-weight: bold;
        }

        .next-btn:hover,
        .prev-btn:hover {
            background: #1c3b7d;
            transform: translateY(-50%) scale(1.1);
            opacity: 1;
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }


        @media (max-width: 1100px) {
            .amenity-card {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {

            .amenity-card {
                max-width: 350px;
            }

            .prev-btn,
            .next-btn {
                width: 30px;
                height: 30px;
            }

            .prev-btn:after,
            .next-btn:after {
                font-size: .8rem;
            }

            .prev-btn {
                left: 10px;
            }

            .next-btn {
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .amenity-card {
                max-width: 320px;
            }

            .amenity-content {
                padding: 20px 15px;
            }

            .amenity-title {
                font-size: 1.2rem;
            }
        }

        .amenity-content {
            padding: 0px 20px;
            width: 100%;
        }


        /* Footer */
        .footer-section {
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            padding: 60px 0 40px;
            position: relative;
            z-index: 2;
        }

        .footer-widget {
            margin-bottom: 30px;
        }

        .footer-widget h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
            color: #fff;
        }

        .footer-widget p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .footer-widget a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-widget a:hover {
            color: #ff0000;
            transform: translateX(5px);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .contact-icon {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .social-section {
            display: flex;
            flex-direction: column;
        }

        .social-link {
            background-color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: #1c3b7d !important;
        }

        .social-link i {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        .realnest:hover {
            color: blue !important;
        }

        .copyright-section {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            position: relative;
            z-index: 2;
        }

        .copyright-text {
            color: #1c3b7d;
            font-weight: bold;
            text-align: center;
            margin: 0;
            font-size: 15px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-content {
                padding: 50px 0 30px;
            }

            .footer-widget {
                margin-bottom: 40px;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                padding: 40px 0 20px;
            }

            .footer-widget h4 {
                font-size: 18px;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }


        /* Location Advantages */
        .card-content {
            flex: 1;
        }

        .card-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .title-text {
            color: #1e293b;
            font-weight: 700;
        }


        .places-count {
            background: #f1f5f9;
            color: #64748b;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .place-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .place-item {
            padding: 15px;
            background: #f8fafc;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .place-item:hover {
            background: #f1f5f9;
            transform: translateX(5px);
        }

        .place-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .place-name {
            font-size: 1rem;
            color: #334155;
            font-weight: 600;
            margin: 0;
            flex: 1;
        }

        .distance-badge {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .distance-value {
            font-size: 0.9rem;
            color: white;
            font-weight: 600;
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            padding: 3px 12px;
            border-radius: 15px;
            border: 1px solid #e2e8f0;
        }

        .distance-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        @media (max-width: 768px) {

            .place-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        /* video */
        .enhanced-card {
            width: 18rem;
            background: white;
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgb(208, 205, 205);
            position: relative;
        }

        .enhanced-icon {
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            color: white;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }


        .enhanced-content {
            padding: 28px;
        }

        .enhanced-title {
            font-size: 1.9rem;
            margin-bottom: 18px;
            color: #2c3e50;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .enhanced-content p {
            margin-bottom: 16px;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            padding-bottom: 8px;
            border-bottom: 1px solid #f0f0f0;
        }

        .enhanced-content p:last-child {
            border-bottom: none;
        }

        .price-highlight {
            color: #1c3b7d;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .area-highlight {
            color: #1c3b7d;
            font-weight: 600;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 15px;
        }

        .btn-contact {
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            color: white;
        }

        .btn-contact:hover {
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            transform: scale(1.05);
        }

        /* Fab */

        /* fab icons */
        .car-icon-fab {
            position: fixed;
            bottom: 50%;
            right: 5px;
            z-index: 1040;
        }

        .whatsap-icon-fab {
            position: fixed;
            bottom: 40%;
            right: 5px;
            z-index: 1040;

        }

        .call-icon-fab {
            position: fixed;
            bottom: 30%;
            right: 5px;
            z-index: 1040;

        }


        .car-icon-fab i {
            background: linear-gradient(135deg, #4173e0, #1c3b7d);
            width: 50px;
            height: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            border-radius: 50%;
        }

        .whatsap-icon-fab i {
            background: #25D366;
            width: 50px;
            height: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 30px;
            border-radius: 50%;
        }

        .call-icon-fab i {
            background: #ff0000ff;
            width: 50px;
            height: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            border-radius: 50%;
        }

        .btn {
            padding: 10px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
        }

        @media (max-width:768px) {
            .mobile-fab {
                display: flex !important;
                justify-content: space-between;
                gap: 2px;
                position: fixed;
                width: 100%;
                z-index: 999;
                bottom: 0;
            }

            .btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 1200px) {
            .btn {
                font-size: 14px;
                padding: 12px 10px;
            }
        }