 
        :root {
            --primary-color: #343a41;
            --secondary-color: #97bc62;
            --accent-color: #f8f9fa;
            --text-dark: #2d3748;
            --text-light: #718096;
            --gradient-bg: linear-gradient(135deg, #2c445f 0%, #6b62bc 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
         
        }
        
        .hero-section {
            background: var(--gradient-bg);
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 40px;
        }

        .plan-card{ 
background: var(--gradient-bg);
 
        }

        .btn-outline-primary{
color: white !important;
        }


       #overview,#plans,#gallery,#about{
        background-image: url(image/t4.jpg) ;
        background-size: cover;
       }

        .plan-price{
           color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .btn-outline-primary:hover{
            color: black !important;
            background-color: #ffd700 !important;
        }
       

        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            color: black;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url("image/Urbanrise-Cloud-33-Main-elevation.webp");           z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .feature-card {
            background:var(--gradient-bg);
            color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 1px solid #e2e8f0;
             
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .highlight-box {
            background: var(--gradient-bg);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            margin: 2rem 0;
        }
        
        .stats-section {
            background: #f8f9fa;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-primary {
            background: var(--gradient-bg);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(44, 95, 45, 0.3);
        }
        
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .advantage-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: var(--gradient-bg);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            color: white;
            transition: transform 0.3s ease;
        }
        
        .advantage-item:hover {
            transform: translateX(10px);
        }
        
        .advantage-icon {
            font-size: 2rem;
            margin-right: 1rem;
            margin-top: 0.5rem;
        }
        
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .contact-info {
            background: var(--accent-color);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        .location-badge {
            background: rgba(255,255,255,0.2);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .price-highlight {
            background: #ffd700;
            color: #2d3748;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin: 2rem 0;
        }
        
        .possession-badge {
            background: #28a745;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 600;
        }
   


  .gallery-wrapper {
      display: flex;
      flex-direction: row;
      gap: 1rem;
    }

    .thumbnail-panel {
      display: flex;
      flex-direction: column;
      gap: 10px;
      overflow-y: auto;
      max-height: 400px;
    }

    .thumb-img {
      cursor: pointer;
      border: 2px solid transparent;
      transition: border 0.3s ease;
    }

    .thumb-img.active {
      border-color: #0d6efd;
    }

    .main-img {
      max-height: 900px;
      object-fit: contain;
      width: 100%;
    }

    /* Responsive: On small screens, switch to horizontal layout */
    @media (max-width: 768px) {
      .gallery-wrapper {
        flex-direction: column;
      }

      .thumbnail-panel {
        flex-direction: row;
        max-height: unset;
        overflow-x: auto;
        overflow-y: hidden;
      }

      .thumb-img {
        width: 100px;
        height: auto;
      }

      .main-img {
        max-height: 250px;
      }
    }




   
            .contact-section {
                 color: #fff;
                 background: linear-gradient(120deg, #767783 0%, #1bffff 100%);
                 position: relative;
                 overflow: hidden;
            }
            .contact-section .section-title {
                 color: #fff;
                 font-weight: 700;
                 letter-spacing: 1px;
            }
            .contact-section .lead {
                 color: #e0e0e0;
            }
            .contact-card {
                 background: rgba(255,255,255,0.08);
                 border-radius: 1rem;
                 box-shadow: 0 4px 24px 0 rgba(44,62,80,0.08);
                 padding: 2rem 1.5rem;
                 margin-bottom: 1.5rem;
                 transition: box-shadow 0.3s;
            }
            .contact-card:hover {
                 box-shadow: 0 8px 32px 0 rgba(44,62,80,0.18);
            }
            .contact-icon {
                 font-size: 2rem;
                 color: #1bffff;
                 margin-bottom: 0.5rem;
            }
            .contact-section input.form-control,
            .contact-section input.form-control:focus,
            .contact-section textarea.form-control,
            .contact-section textarea.form-control:focus {
                 background: rgba(255,255,255,0.15);
                 border: none;
                 color: #fff;
                 box-shadow: none;
            }
            .contact-section input.form-control::placeholder,
            .contact-section textarea.form-control::placeholder {
                 color: #e0e0e0;
                 opacity: 1;
            }
            .btn-custom {
                 background: #2e3192;
                 color: #ffffff !important;
                 border: none;
                 transition: background 0.2s;
            }
            .btn-custom:hover, .btn-custom:focus {
                 background: #1bffff;
                 color: #2e3192;
            }
            .btn-outline-light {
                 border-color: #fff;
                 color: #fff;
            }
            .btn-outline-light:hover {
                 background: #fff;
                 color: #2e3192;
            }
            .ratio iframe {
                 border-radius: 0.75rem;
                 border: none;
            }
            @media (max-width: 991.98px) {
                 .contact-section .contact-card {
                      margin-bottom: 1.5rem;
                 }
            }




      
        /* Enquiry Modal Custom Styles */
        #enquiryModal .modal-content {
            border-radius: 1.2rem;
            box-shadow: 0 8px 32px rgba(72, 75, 173, 0.15);
            border: none;
            background: linear-gradient(120deg, #f8fafc 80%, #e9eafc 100%);
        }
        #enquiryModal .modal-header {
            border-bottom: none;
            background: linear-gradient(90deg, #484bad 0%, #606e6e 100%);
            color: #fff;
            border-top-left-radius: 1.2rem;
            border-top-right-radius: 1.2rem;
            padding-top: 1.2rem;
            padding-bottom: 1.2rem;
        }
        #enquiryModal .modal-title {
            font-weight: 600;
            font-size: 1.4rem;
            letter-spacing: 0.5px;
            width: 100%;
        }
        #enquiryModal .btn-close {
            filter: invert(1);
        }
        #enquiryModal .modal-body {
            padding: 2rem 2rem 1rem 2rem;
        }
        #enquiryModal .form-control {
            border-radius: 0.7rem;
            border: 1.5px solid #d1d5db;
            font-size: 1.08rem;
            background: #f6f8fc;
            transition: border-color 0.2s;
        }
        #enquiryModal .form-control:focus {
            border-color: #484bad;
            box-shadow: 0 0 0 0.15rem rgba(72, 75, 173, 0.08);
            background: #fff;
        }
        #enquiryModal .invalid-feedback {
            font-size: 0.97rem;
            color: #d32f2f;
        }
        #enquiryModal .modal-footer {
            border-top: none;
            padding: 1.2rem 2rem 2rem 2rem;
        }
        #enquiryModal .btn-custom {
            background: linear-gradient(90deg, #484bad 0%, #606e6e 100%);
            color: #fff;
            border-radius: 0.7rem;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 2px 12px rgba(72, 75, 173, 0.08);
            border: none;
            transition: background 0.2s, box-shadow 0.2s;
        }
        #enquiryModal .btn-custom:hover, #enquiryModal .btn-custom:focus {
            background: linear-gradient(90deg, #606e6e 0%, #484bad 100%);
            color: #fff;
            box-shadow: 0 4px 18px rgba(72, 75, 173, 0.13);
        }
        @media (max-width: 575.98px) {
            #enquiryModal .modal-body, #enquiryModal .modal-footer {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }
   