@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
        
        :root {
            --primary: #094378;
            --secondary: #6b8e4e;
            --accent: #d4af37;
            --light: #f8f9fa;
            --dark: #1a1a1a;
            --text: #333333;
        }

        body {
            font-family: "Roboto", sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: "Roboto", sans-serif;
            font-weight: 600;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
            z-index: 1000 !important;
            position: sticky;
            top: 0;
        }

        section {
            scroll-margin-top: 100px;
            /* or whatever your navbar height is */
        }

        .navbar.scrolled {
            background-color: white !important;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-family: "Roboto", sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light) !important;
        }

        .navbar.scrolled .navbar-brand {
            color: var(--primary) !important;
        }

        .navbar-nav .nav-link {
            color: black !important;
            font-weight: bold;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
            font-size: 17px !important;
        }
        

        .navbar.scrolled .navbar-nav .nav-link {
            color: var(--text) !important;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary) !important;
            font-weight: bold;
        }

        .navbar-toggler {
            border: 1px solid black !important;
        }

        .navbar-toggler:focus {
            box-shadow: none !important;
        }

        .book-btn {
            background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }

        .book-btn:hover {
            background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
            transform: translateY(-2px);
        }

        /* Banner Hero Split Layout Styles */
        .hero-split .container-fluid,
        .hero-split .row {
            height: 100%;
        }

        /* Carousel Styles */
        .carousel-image {
            background-size: contain;
            /* background-position: start; */
            background-repeat: no-repeat;
            /* background-color: #094378; */
        }

        .btn {
            padding: 10px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
            color: white;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background-color: white;
            color: #1a1a1a;
            transform: translateY(-3px);
        }

        /* Custom Carousel Controls in Pagination Area */
        .carousel-pagination-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 10;
        }

        .carousel-indicators {
            position: static;
            margin-top: 30px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
            background-color: #094378 !important;
            border: none;
        }

        .carousel-indicators [data-bs-target] {
            width: 15px !important;
            height: 15px !important;
            border: 1px solid #094378;
        }

        .carousel-indicators button.active {
            background-color: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
        }

        /* Project Details Sidebar */
        .project-details-sidebar {
            background: #daebff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .project-details {
            width: 100%;
            max-width: 400px;
        }

        .projectState {
            color: #d4af37;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-details h1 {
            color: #0d4d8c ;
            font-size: 1.8rem;
        }

        .project-details h3 {
            color: #0d4d8c ;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .offerBox {
            background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%) ;
            color: white;
            padding: 12px;
            border-radius: 8px;
            margin: 10px 0;
            text-align: center;
        }

        .offerBox .innerBox p {
            margin: 5px 0;
            font-size: 0.9rem;
        }

        .tableOffers table {
            width: 100%;
            margin: 15px 0;
        }

        .tableOffers td {
            padding: 5px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .tableOffers td:first-child {
            font-weight: 600;
            color: #0d4d8c;
        }

        .tableOffers td:last-child {
            text-align: right;
            color: #0d4d8c;
        }

        .offer-info-text {
            color: #666;
            font-size: 0.9rem;
        }

        .price-text {
            text-align: center;
            /* margin: 15px 0; */
        }

        .color-imp {
            color: #d4af37;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .price-sub-text {
            color: #0d4d8c ;
            font-size: 2rem;
            font-weight: bold;
        }

        .price {
            color: #666;
            font-size: 1rem;
        }

        .enquiryNowBtn {
            background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 6px;
            font-weight: 600;
            width: 100%;
            /* margin-top: 15px; */
            transition: all 0.3s ease;
        }

        .enquiryNowBtn:hover {
            background: #094378;
            color: white;
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .project-details-sidebar {
                order: -1;
                padding: 1.5rem;
                background-color: #daebff !important;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .project-details h1 {
                font-size: 1.5rem;
            }
        }


        /* .section-title {
            text-align: center;
            margin-bottom: 30px;
        } */

        .section-title h2 {
            font-size: 2rem;
            color: black;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }

        /* About Section */

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 20px;
            color: #555;
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }


        .footer-bottom {
            background: #000;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 0.9rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

        }

        /* rigth side form  */

        .compact-registration-container {
            position: sticky !important;
            top: 100px !important;
            z-index: 999 !important;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            font-family: "Roboto", sans-serif;
            font-size: 13px;
            overflow-y: auto;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            padding: 12px;
            gap: 8px;
            background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
        }

        .btn-2 {
            padding: 8px 12px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            font-size: 12px;
            white-space: nowrap;
        }

        .btn-action-1 {
            background: white;
            color: #0d4d8c;
            flex: 1;
            justify-content: center;
        }

        .btn-action-1:hover {
            background: #f0f8ff;
            transform: translateY(-1px);
        }

        .btn-action-2 {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .btn-action-2:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .btn-action-2 a {
            color: white;
            text-decoration: none;
        }

        /* Form Container */
        .form-container {
            padding: 15px;
        }

        .form-header {
            text-align: center;
            margin-bottom: 15px;
        }

        .form-header h3 {
            color: #1a6bb3;
            margin: 0;
            font-size: 16px;
        }

        .form-group {
            margin-bottom: 12px;
        }

        .compact-input,
        .compact-select {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 12px;
            transition: all 0.3s;
            box-sizing: border-box;
        }

        .compact-input:focus,
        .compact-select:focus {
            outline: none;
            border-color: #1a6bb3;
            box-shadow: 0 0 0 2px rgba(26, 107, 179, 0.1);
        }

        .phone-group {
            display: flex;
            gap: 8px;
        }

        .phone-group .compact-select {
            width: 30%;
        }

        .phone-group .compact-input {
            width: 70%;
        }

        .consent-group {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin: 12px 0;
            padding: 10px;
            background: #f9f9f9;
            border-radius: 6px;
        }

        .consent-group input[type="checkbox"] {
            margin-top: 2px;
            flex-shrink: 0;
        }

        .consent-group label {
            font-size: 10px;
            color: #555;
            line-height: 1.3;
        }

        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
            color: white;
            padding: 10px;
            font-size: 13px;
            justify-content: center;
            margin-top: 5px;
        }

        .btn-submit:hover {
            transform: translateY(-1px);
            color: white;
        }

        /* Features Section */
        .features-section {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            gap: 4px;
        }

        .feature i {
            color: #1a6bb3;
            font-size: 14px;
        }

        .feature span {
            font-size: 10px;
            color: #555;
            font-weight: 500;
        }

        /* Callback Section */
        .callback-section {
            /* padding: 12px; */
            background: #f9f9f9;
            text-align: center;
        }

        .btn-callback {
            background: #1a6bb3;
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            margin: 0 auto;
            font-size: 12px;
        }

        .btn-callback:hover {
            background: #0d4d8c;
            color: white;

        }

        /* Sticky positioning */
        .sticky-form {
            position: sticky;
            top: 20px;
            z-index: 100;
        }

        /* Animation for offer boxes */
        .action-buttons {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.02);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .compact-registration-container {
                font-size: 12px;
            }

            .btn {
                font-size: 14px;
                padding: 12px 10px;
            }
        }

        @media (max-width: 576px) {
            .action-buttons {
                flex-direction: column;
            }

            .phone-group {
                flex-direction: column;
            }

            .phone-group .compact-select,
            .phone-group .compact-input {
                width: 100%;
            }

            .feature {
                flex-direction: row;
                justify-content: center;
                gap: 8px;
            }
        }

        /* Highlights */

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .highlight-card {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }


        .highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
            color: #0d4d8c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }

        .highlight-content h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }

            .highlights-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                /* padding: 0 15px; */
            }

            .highlight-card {
                padding: 25px;
            }

            .icon-wrapper {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .highlight-content h3 {
                font-size: 1.2rem;
            }
        }

        /* Project Plan  */

        .floor-plan-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .plan-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .plan-header {
            padding: 30px 30px 20px;
            text-align: center;
            background: white;
        }

        .plan-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .plan-image {
            position: relative;
            overflow: hidden;
            background: #f8f9fa;
        }

        .plan-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .plan-card:hover .plan-image img {
            transform: scale(1.05);
        }

        .plan-card:hover .image-overlay {
            opacity: 1;
        }

        .plan-action {
            padding: 25px 30px;
            background: white;
            text-align: center;
        }

        .plan-btn {
            background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .plan-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .floor-plan-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                /* padding: 0 15px; */
            }

            .plan-header {
                padding: 25px 20px 15px;
            }

            .plan-action {
                padding: 20px 25px;
            }

            .plan-btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {

            .plan-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .plan-header h3 {
                font-size: 1.3rem;
            }
        }

        /* Amenities */

        .amenities-swiper {
            padding: 20px 0 60px;
            width: 100%;
        }

        .swiper-slide {
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .amenity-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin: 10px;
            /* height: 100%; */
            max-width: 350px;
        }

        .amenity-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .amenity-image {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .amenity-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .amenity-card:hover .amenity-img {
            transform: scale(1.1);
        }

        .amenity-overlay {
            position: absolute;
            color: white;
            top: 10;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 107, 179, 0.8), rgba(13, 77, 140, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .amenity-card:hover .amenity-overlay {
            opacity: 1;
        }


        /* Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            color: #1a6bb3;
            background: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: #1a6bb3;
            color: white;
            transform: scale(1.1);
        }

        /* Swiper Pagination */
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #bdc3c7;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            background: #1a6bb3;
            transform: scale(1.2);
        }

        .amenities-cta {
            text-align: center;
            margin-top: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .amenities-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .amenity-card {
                max-width: 300px;
            }

            .amenity-image {
                height: 200px;
            }

            .amenities-btn {
                padding: 14px 30px;
                font-size: 1rem;
            }

            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
            }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .amenity-card {
                max-width: 280px;
            }

            .amenity-image {
                height: 180px;
            }
        }

        /* Galler Popup */
        .gallery-content {
            background-color: transparent !important;
            border: none !important;
        }

        /* location advantage  */

        .connectivity-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .connectivity-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f8f9fa;
        }

        .header-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1a6bb3, #0d4d8c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .card-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
        }

        .connectivity-features {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .feature-category {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li i {
            color: #27ae60;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        .feature-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex: 1;
        }

        .feature-name {
            font-weight: 500;
            color: #2c3e50;
            font-size: 0.95rem;
        }

        .feature-distance {
            background: #1a6bb3;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .connectivity-map {
            display: flex;
            align-items: stretch;
        }

        .map-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        .map-image {
            position: relative;
            overflow: hidden;
            flex: 1;
        }

        .map-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .map-card:hover .map-image img {
            transform: scale(1.05);
        }

        .map-actions {
            padding: 20px 25px;
            background: white;
        }


        /* Responsive Design */
        @media (max-width: 992px) {
            .connectivity-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .connectivity-card {
                padding: 25px;
            }
        }

        @media (max-width: 768px) {
            .connectivity-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .card-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .feature-details {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }

        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .connectivity-card {
                padding: 20px;
            }

            .feature-category {
                padding: 15px;
            }

        }

        /* Schedule Site visit and form  */
        .down-contact-inner {
            margin: 0 auto;
        }

        .down-contact-data {
            padding: 0;
        }

        .down-contact-row {
            align-items: stretch;
            margin: 0;
        }

        .down-image-carousel,
        .down-image-carousel-alt {
            padding: 0;
        }

        .down-ps-0 {
            padding-left: 0 !important;
        }

        .down-pe-0 {
            padding-right: 0 !important;
        }

        .down-m-0 {
            margin: 0 !important;
        }

        .down-contact-visual,
        .down-contact-visual-alt {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .down-visual-img,
        .down-visual-img-alt {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .down-contact-visual:hover .down-visual-img,
        .down-contact-visual-alt:hover .down-visual-img-alt {
            transform: scale(1.05);
        }

        .down-form-data {
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-left: -20px;
            position: relative;
            z-index: 2;
        }

        .down-form-title {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 25px;
            text-align: left;
        }

        .down-form-container {
            width: 100%;
        }

        .down-form-group {
            margin-bottom: 20px;
        }

        .down-form-control {
            width: 100%;
            padding: 9px 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .down-form-control:focus {
            outline: none;
            border-color: #1a6bb3;
            background: white;
            box-shadow: 0 0 0 3px rgba(26, 107, 179, 0.1);
        }

        .down-phone-group {
            display: flex;
            gap: 10px;
        }

        .down-country-code {
            width: 40%;
            padding: 9px 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 14px;
            background: #f8f9fa;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .down-country-code:focus {
            outline: none;
            border-color: #1a6bb3;
            background: white;
        }

        .down-hidden {
            display: none;
        }

        .down-mb-3 {
            margin-bottom: 1rem;
        }

        .down-ipaddress {
            display: none;
        }

        .down-loan-form {
            margin-top: 20px;
        }

        .down-switch {
            display: block;
            font-size: 10px;
            color: #6c757d;
            line-height: 1.4;
            cursor: pointer;
        }

        .down-text {
            color: #6c757d;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .down-form-data {
                margin-left: 0;
                margin-top: -20px;
            }

            .down-contact-row {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .down-form-data {
                padding: 20px;
            }

            .down-form-title {
                font-size: 24px;
                text-align: center;
            }

            .down-phone-group {
                flex-direction: column;
            }

            .down-country-code {
                width: 100%;
            }
        }

        @media (max-width: 576px) {

            .down-contact-visual,
            .down-contact-visual-alt {
                border-radius: 10px;
            }

            .down-visual-img,
            .down-visual-img-alt {
                border-radius: 10px;
            }

            .down-form-data {
                padding: 15px;
            }

            .down-form-title {
                font-size: 20px;
            }

            .down-submit-btn {
                padding: 12px;
                font-size: 14px;
            }
        }

        /* Animation for form elements */
        .down-form-control,
        .down-country-code,
        .down-submit-btn {
            transition: all 0.3s ease;
        }

        /* Focus states */
        .down-form-control:focus,
        .down-country-code:focus {
            transform: translateY(-1px);
        }

        /* Hover effects */
        .down-submit-btn:hover {
            transform: translateY(-2px);
        }

        /* fab icons */
        .car-icon-fab {
            position: fixed;
            bottom: 150px;
            left: 15px;
            z-index: 1040;
        }

        .whatsap-icon-fab {
            position: fixed;
            bottom: 80px;
            left: 15px;
            z-index: 1040;

        }

        .call-icon-fab {
            position: fixed;
            bottom: 10px;
            left: 15px;
            z-index: 1040;

        }


        .car-icon-fab i {
            background: #000;
            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: #007AFF;
            width: 50px;
            height: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            border-radius: 50%;
        }

        @media (max-width:768px) {
            .mobile-fab {
                display: flex !important;
                gap: 2px;
                background: white;
                width: 100%;
                justify-content: space-between;
                position: fixed;
                bottom: 0;
                z-index: 1040;
            }
        }

        /* pricing Table */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 20px;
        }

        .section-subtitle {
            color: #6c757d;
            font-size: 1rem;
        }

        .table-container {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            white-space: nowrap;
        }

        .pricing-table th {
            background: #1a6bb3;
            color: white;
            padding: 15px 20px;
            text-align: left;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-table td {
            padding: 20px;
        }

        .pricing-table tr {
            border-bottom: 1px solid #e9ecef;
        }

        .pricing-table tr:last-child td {
            border-bottom: none;
        }

        .pricing-table tr:hover {
            background: #f8f9fa;
        }

        .config {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .config strong {
            font-size: 1.1rem;
            color: #2c3e50;
        }

        .area {
            color: #6c757d;
            font-weight: 500;
        }

        .price {
            display: flex;
            align-items: baseline;
            gap: 5px;
        }

        .currency {
            color: #e74c3c;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .price strong {
            color: #2c3e50;
            font-size: 1.1rem;
        }

        .price-note {
            color: #6c757d;
            font-size: 0.85rem;
            margin-left: 5px;
        }

        .btn-details {
            background: #1a6bb3;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .btn-details:hover {
            background: #0d4d8c;
        }

        /* Responsive */
        @media (max-width: 768px) {

            .section-title {
                font-size: 1.5rem;
            }

            .pricing-table {
                display: block;
                overflow-x: auto;
            }

            .pricing-table th,
            .pricing-table td {
                padding: 15px 10px;
                font-size: 0.9rem;
            }

            .btn-details {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
        }

        /* Footer Section */

    /* Footer Styles */
    footer {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }

    .hover-gold:hover {
        color: #0d4d8c !important;
        transform: translateX(5px);
        transition: all 0.3s ease;
    }

    .hover-dark:hover {
        color: #000 !important;
        text-decoration: underline !important;
    }

    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        background: #0d4d8c;
        color: #000 !important;
        transform: translateY(-3px);
    }

    .rera-card {
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 193, 7, 0.3);
    }

    .rera-card:hover {
        transform: translateY(-5px);
        border-color: #0d4d8c;
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
    }

    .disclaimer-section {
        border-left: 4px solid #0d4d8c;
    }

    .disclaimer {
        font-size: 15px;
    }

    .disclaimer-text {
        font-size: 12px;
    }

    .media-partner {
        box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
        background: #0d4d8c;
    }

    .partner-badge .badge {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .rera-card {
            margin-bottom: 15px;
        }

        .social-links {
            text-align: center;
        }

        .disclaimer-section {
            font-size: 0.85rem;
        }
    }