:root {
            --primary-dark: #088482;
            --primary-light: #056c7a;
            --accent: #cb1c52;
            --accent-gradient: #088482;
            --gold: #f8f9fa;
            --light-bg: #f8f9fa;
            --dark-text: #2d3436;
            --light-text: #ecf0f1;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-text);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }

        /* Premium Double Navbar */
        .top-navbar {
            background: var(--primary-dark);
            padding: 8px 0;
            font-size: 14px;
        }

        .main-navbar {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 5px 0;
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 28px;
            background: linear-gradient(135deg, var(--primary-dark), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            margin-right: 8px;
            color: var(--gold);
        }

        .nav-link {
            font-weight: 600;
            margin: 0 8px;
            transition: all 0.3s;
            position: relative;
            color: var(--primary-dark) !important;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: all 0.3s;
        }

        .nav-link:hover:after {
            width: 100%;
        }

        .btn-premium {
            background: var(--accent-gradient);
            color: white;
            border: none;
            border-radius: 3px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(107, 255, 176, 0.1);
        }

        .btn-premium:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(0, 99, 61, 0.15);
            background: var(--accent-gradient);
            color: white;
        }

        /* Premium Carousel */
        .hero-carousel {
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        }
        .hero-carousel .carousel-item {
            height: 450px;
        }
    

        /* Responsive Adjustments */
        @media (max-width: 992px) {
           .hero-carousel .carousel-item {
                height: 350px !important;
                width: 100% !important;
                object-fit: contain;
            }
        }

        @media (max-width: 768px) {
           .hero-carousel .carousel-item {
                height: 250px !important;
                width: 100% !important;
                object-fit: contain;

            }

            .navbar-brand {
                font-size: 24px;
            }
        }
       .carousel-item {
  transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out;
}

        /*end nav section */

/* start property cards section */
.re-card {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-radius: 3px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
            border: 1px solid rgba(13, 110, 253, .08);
            border-color: rgba(13, 110, 253, .18);
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
            isolation: isolate;
        }

        .re-card:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
            border-color: rgba(13, 110, 253, .18);
        }

        .re-left {
            position: relative;
            padding: 10px 20px;
            background: linear-gradient(180deg, rgba(13, 110, 253, .06) 0%, rgba(13, 110, 253, 0) 60%);
        }

        .re-left:before {
            content: "";
            position: absolute;
            top: 14px;
            right: 14px;
            width: 140px;
            height: 140px;
            background-image: radial-gradient(rgba(13, 110, 253, .25) 2px, transparent 2px);
            background-size: 18px 18px;
            opacity: .5;
            border-radius: 16px;
            z-index: -1;
        }

        .re-title {
            margin: 10px 0 6px;
            font-weight: 700;
            font-size: 1.2rem;
            color: #0a8383;
            text-decoration: none;
            display: inline-block;
            transition: color .3s ease;
            cursor: pointer;
        }

        .re-location {
            color: #4b5563;
            font-size: .92rem;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .re-specs {
            /* display: grid; */
            grid-template-columns: 1fr 1fr;
            gap: 10px 16px;
            margin: 0 0 14px 0;
            padding: 0;
            list-style: none;
        }

        .re-specs li {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #ffffff;
            border: 1px solid #e8efff;
            padding: 7px 10px;
            border-radius: 6px;
            font-size: .92rem;
            margin: 1px;
        }

        .re-specs i {
            color: #088482;
        }

        .re-price {
            margin-top: 6px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .re-actions {
            display: flex;
            gap: 10px;
            margin-top: 12px;
            flex-wrap: wrap;
        }

        .re-actions .btn {
            border-radius: 5px;
            padding: 8px 10px;
            font-weight: 600;
        }

        .re-right {
            position: relative;
            min-height: 240px;
            background: linear-gradient(180deg, rgba(13, 110, 253, .06) 0%, rgba(13, 110, 253, 0) 60%);
        }

        .re-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            padding: 10px;
        }

        .re-ribbon {
            position: absolute;
            top: 14px;
            right: 14px;
            background: #111827;
            color: #fff;
            font-weight: 700;
            font-size: .85rem;
            padding: 8px 12px;
            border-radius: 999px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
        }

        @media (max-width: 991.98px) {
            .re-card {
                grid-template-columns: 1fr;
            }

            .re-right {
                order: -1;
                min-height: 220px;
            }
        }
   .read-more-btn {
                border: 1px solid #088482;
                color: #088482;
                border-radius: 30px;
                font-weight: 500;
                transition: all 0.3s ease;
                font-size: 1rem;
                box-shadow: 0 4px 15px rgba(35, 131, 185, 0.1);
            }

            .read-more-btn:hover {
                background: #088482;
                border-color: #088482;
                transform: translateX(1px);
            }
/* end property cards section */


        /* start Process section */
        .process-section {
            padding: 60px 0;
            background: #f9fbff;
        }

        .process-step {
            border-top: 2px solid #088482;
            border-bottom: 2px dashed #088482;
            border-left: 2px solid #088482;
            border-right: 2px dashed #088482;
            border-radius: 12px;
            padding: 25px 18px;
            background: #fff;
            text-align: center;
            position: relative;
            height: 100%;
            transition: 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }

        .process-steps {
            border-top: 2px dashed #088482;
            border-bottom: 2px solid #088482;
            border-left: 2px solid #088482;
            border-right: 2px dashed #088482;
            border-radius: 12px;
            padding: 25px 18px;
            background: #fff;
            text-align: center;
            position: relative;
            height: 100%;
            transition: 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }

        .process-step:hover {
            background: #f0f8ff;
            box-shadow: 0 10px 25px rgba(35, 131, 185, 0.1);
        }

        .process-step i {
            font-size: 2rem;
            color: #088482;
        }

        .process-step h5 {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .process-step p {
            font-size: 0.92rem;
            color: #555;
            margin-bottom: 0;
        }

        .custom-row {
            --bs-gutter-x: 40px;
            --bs-gutter-y: 30px;
        }

        .process-arrow {
            position: absolute;
            right: -35px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: #2383b9;
        }

        @media(max-width: 991px) {
            .process-arrow {
                display: none;
            }
        }
/* end Process section */

/* start who section */
        .who-section {
            padding: 100px 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232c76e4" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,186.7C960,213,1056,235,1152,229.3C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: contain;
        }

        .who-inner {
            position: relative;
            z-index: 2;
        }

        .who-content h2 {
            font-size: 2.05rem;
            font-weight: 700;
            color: #0f2540;
            margin-bottom: 10px;
        }

        .who-content .lead {
            font-size: 1rem;
            color: #2f3a49;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .who-cta .btn {
            border-radius: 10px;
            padding: 10px 18px;
            font-weight: 600;
        }

        .btn-primary.custom {
            background: #088482;
            border: none;
        }

        .btn-outline.custom {
            border-radius: 10px;
            color: #088482;
            border: 1.5px solid rgba(35, 131, 185, 0.25);
            background: transparent;
        }

        .who-features .feat {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            padding: 12px 0;
        }

        .who-features .feat i {
            font-size: 1.35rem;
            color: #088482;
            min-width: 36px;
            text-align: center;
        }

        /* responsive */
        @media (max-width: 991.98px) {
            .who-section {
                padding: 40px 0;
            }

            .who-content h2 {
                font-size: 1.6rem;
            }

            .who-img img {
                min-height: 220px;
            }
        }
        /* end who section */

/* Start Services Section */
        .services-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
            position: relative;
        }

        .services-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('assets/sainath/noice.jpg') center / cover;
            opacity: 0.4;
        }

        .services-section h3 {
            font-size: 22px;
            font-weight: 600;
        }
        .section-title {
            position: relative;
            margin-bottom: 60px;
            font-weight: 700;
            text-align: center;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-gradient);
            border-radius: 2px;
        }

        .service-card {
            background: white;
            border-radius: 6px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            height: 100%;
            position: relative;
            z-index: 1;
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: 2;
        }

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

        .service-card:hover:before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 40px;
            margin-bottom: 10px;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }
        /* end Services Section  */

        /* start swiper Property Card */
         .property-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            margin-bottom: 25px;
        }

        .property-section .section-titles {
            font-size: 24px;
            font-weight: 700;
            color: #222;
            margin: 0;
        }

   .header-actions {
    display: flex;
    align-items: center; /* ✅ sab vertical center */
    gap: 15px;
    background: #e7ebf0;
    padding: 10px;
    border-radius: 10px;
}



        /* 🔹 Swiper Nav */
        .swiper-nav {
            gap: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: static;
        }

        .custom-nav {
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
            display: flex;
            justify-content: center;
            align-items: center;
            position: static;
            margin: 0;
            /* arrows ek line me rahe */
        }

        .custom-nav::after {
            font-size: 16px;
            color: #333;
        }

.view-all-btn {
    background: #fff;
    color: #000;
    border: none;
    height: 40px;                  /* ✅ nav arrows ke equal */
    padding: 0 18px;               /* ✅ vertical padding hata de */
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;           /* ✅ vertical center */
    justify-content: center;       /* ✅ horizontal center */
    gap: 6px;
    line-height: 1;                /* ✅ text ki height fix */
}




        .view-all-btn:hover {
            background: #fdfdfd;
            border: 1px solid #ccc;
        }

    
        .property-card {
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .property-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .property-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 12px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
            color: #fff;
        }

        .property-info h5 {
            margin: 0;
            font-size: 18px;
        }

        .property-info p {
            margin: 0;
            font-size: 14px;
        }
        /* end swiper Property Card */

        /* start feedback Section  */
         .feedback-section {
            position: relative;
        }

        .feedback-section::before {
            content: "";
            position: absolute;
            top: 12%;
            right: 8%;
            width: 120px;
            height: 120px;
            background-image: radial-gradient(#088482 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.2;
        }

        .review-card {
            background: #fff;
            border-left: 5px solid #088482;
            font-size: 1rem;
            line-height: 1.5;
            min-height: 140px;
            /* 👈 fixed height issue */
            transition: 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
        }

        .review-text {
            font-style: italic;
            color: #444;
        }

        .review-author {
            font-size: 0.9rem;
        }

        .google-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: 0.3s;
        }

        .google-btn:hover {
            background: #088482;
            color: #fff;
            transform: scale(1.05);
        }

        .google-btn i {
            font-size: 15px;
            color: #088482;
        }

        .google-btn:hover i {
            color: #fff;
        }
/* end feedback Section  */
        /*start Footer */
        .footer {
            background: #00245a;
            color: white;
            padding: 60px 0 40px;
            position: relative;
        }

        .footer-title {
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-size: 1.5rem;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
            transition: all 0.3s;
        }

        .footer-links li:hover {
            transform: translateX(5px);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
            display: block;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-links i {
            margin-right: 10px;
            color: var(--gold);
        }

        .social-icons a {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            color: white;
            margin-right: 12px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .social-icons a:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-gradient);
            opacity: 0;
            transition: all 0.3s;
            border-radius: 50%;
        }

        .social-icons a:hover:before {
            opacity: 1;
        }

        .social-icons a i {
            position: relative;
            z-index: 1;
        }

        .social-icons a:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

/* end footer */
       