  
    :root {
      --primary: #c62828;
      --primary-dark: #8e0000;
      --primary-light: #ff5f52;
      --secondary: #1565c0;
      --muted: #f1f4f6;
      --card-bg: #eef0f3;
      --dark-text: #333;
      --light-text: #666;
      --white: #fff;
      --shadow: 0 4px 12px rgba(0,0,0,0.08);
      --transition: all 0.3s ease;
    }
    
    body {
      font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; 
      background:#fff;
      color: var(--dark-text);
      padding-bottom: 30px;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
      position: relative;
      min-height: 100vh;
    }
    
    a{
        all: unset;
        cursor: pointer;
    }
    
    /* Header Styles */
    .site-header {
      background: var(--white);
      border-bottom: 1px solid #eee;
      padding: 12px 20px;
      position: sticky;
      top: 0;
      z-index: 1001;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .brand {
      font-family: 'Montserrat';
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 1px;
      font-size: 1.4rem;
    }
    
    .nav-icon {
      font-size: 1.2rem;
      color: #444;
      position: relative;
    }
    
    /* Post Property Button */
    .btn-post-property {
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 30px;
      padding: 8px 16px;
      font-weight: 700;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
      border: none;
    }
    
    .btn-post-property:hover {
      background: var(--primary-dark);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(198, 40, 40, 0.3);
    }
    
    /* Image Carousel */
    .project-carousel {
      position: relative;
      height: 350px;
      overflow: hidden;
    }
    
    .carousel-inner {
      height: 100%;
    }
    
    .carousel-item {
      height: 100%;
    }
    
    .carousel-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .carousel-control-prev, .carousel-control-next {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(0,0,0,0.3);
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.8;
    }
    
    .carousel-control-prev {
      left: 15px;
    }
    
    .carousel-control-next {
      right: 15px;
    }
    
    .carousel-control-prev:hover, .carousel-control-next:hover {
      opacity: 1;
      background: rgba(0,0,0,0.5);
    }
    
    .carousel-indicators {
      bottom: 15px;
    }
    
    /* Project Overview */
    .project-overview {
      padding: 20px;
    }
    
    .project-title {
      font-weight: 800;
      color: var(--dark-text);
      margin-bottom: 10px;
    }
    
    .project-location {
      color: var(--light-text);
      font-size: 1rem;
      margin-bottom: 15px;
    }
    
    .project-price {
      font-weight: 800;
      color: var(--primary);
      font-size: 1.6rem;
      margin-bottom: 15px;
    }
    
    .project-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .highlight-item {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--muted);
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
    }
    
    .highlight-item i {
      
    }
    
    /* Punch Lines Section */
    .punch-lines-section {
      padding: 0 20px;
      margin-bottom: 30px;
    }
    
    .punch-lines-container {
      border-radius: 12px;
    }
    
    .punch-line-item {
      display: flex;
      align-items: flex-start;
      gap: 5px;
      font-weight: 500;
    }
    
    .punch-line-content p {
      font-size: 1rem;
      margin: 0;
      font-weight: 700;
    }
    
    /* Section Headers */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 25px 15px 15px;
    }
    
    .section-title {
      font-weight: 800;
      color: var(--dark-text);
      margin: 0;
    }
    
    .section-title {
      font-weight: 800;
      color: var(--dark-text);
      margin-bottom: 15px;
      font-size: 1.2rem;
      position: relative;
      padding-bottom: 8px;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--primary);
    }
    
    /* Compact Unit Types Grid */
    .unit-grid-container {
      padding: 0 20px;
      margin-bottom: 30px;
    }
    
    .unit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 20px;
    }
    
    .unit-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      padding: 15px;
    }
    
    .unit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    
    .unit-type {
      font-weight: 700;
      padding: 8px;
      background: var(--muted);
      border-radius: 8px;
      font-size: 1rem;
      margin-bottom: 10px;
      text-align: center;
    }
    
    .unit-specs {
      margin-bottom: 12px;
    }
    
    .spec-row {
      display: flex;
      gap: 5px;
      margin-bottom: 8px;
    }
    
    .spec-label {
      color: var(--light-text);
      font-size: 0.85rem;
    }
    
    .spec-value {
      font-weight: 600;
      font-size: 0.85rem;
    }
    
    .unit-price {
      font-weight: 600;
      color: var(--primary);
      font-size: 0.85rem;
      margin-bottom: 12px;
      border-radius: 8px;
    }
    
    .unit-key-features {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 15px;
      justify-content: center;
    }
    
    .feature-tag {
      background: var(--muted);
      padding: 4px 8px;
      border-radius: 12px;
      font-size: 0.75rem;
      color: var(--light-text);
    }
    
    .btn-download {
      border: none;
      background: var(--muted);
      padding: 8px;
      border-radius: 20px;
      font-weight: 500;
      font-size: 0.9rem;
      width: 100%;
      transition: var(--transition);
    }
    
    /* Amenities Section */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 15px;
      padding: 0 20px;
      margin-bottom: 30px;
    }
    
    .amenity-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 15px 10px;
      background: white;
      border-radius: 12px;
      box-shadow: var(--shadow);
    }
    
    .amenity-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      color: var(--primary);
      font-size: 1.2rem;
    }
    
    .amenity-name {
      font-weight: 600;
      font-size: 0.9rem;
    }
    
    /* Location Section */
    .location-section {
      padding: 0 20px;
      margin-bottom: 30px;
    }
    
    .map-container {
      height: 250px;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 20px;
      padding: 20px;
      box-shadow: var(--shadow);
    }
    
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 12px;
    }
    
    .location-benefits {
      background: white;
      border-radius: 12px;
      padding: 20px;
      box-shadow: var(--shadow);
    }
    
    .benefit-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .benefit-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: var(--primary);
    }
    
    .benefit-text {
      flex: 1;
    }
    
    .benefit-title {
      font-weight: 700;
      margin-bottom: 3px;
    }
    
    .benefit-desc {
      color: var(--light-text);
      font-size: 0.9rem;
    }
    
    /* Video Section */
    .video-section {
      padding: 0 20px;
      margin-bottom: 30px;
    }
    
    .video-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
      height: 0;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: var(--shadow);
    }
    
    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    
    /* Home Loan Banner */
    .home-loan-banner {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: white;
      padding: 25px;
      border-radius: 16px;
      margin: 0 20px 30px;
      text-align: center;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    
    .home-loan-banner h3 {
      font-weight: 800;
      margin-bottom: 15px;
    }
    
    .home-loan-banner p {
      margin-bottom: 20px;
      font-size: 1.1rem;
    }
    
    .banner-banks {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
    }
    
    .bank-logo {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
      text-align: center;
      padding: 5px;
      backdrop-filter: blur(5px);
    }
    
    /* Gallery Section */
    .gallery-section {
      padding: 0 20px;
      margin-bottom: 30px;
    }
    
    .main-gallery-image {
      height: 350px;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 15px;
      box-shadow: var(--shadow);
    }
    
    .main-gallery-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .gallery-thumbnails {
      display: flex;
      overflow-x: auto;
      gap: 10px;
      padding: 10px 5px;
      scrollbar-width: none;
    }
    
    .gallery-thumbnails::-webkit-scrollbar {
      display: none;
    }
    
    .thumbnail {
      min-width: 100px;
      height: 80px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      opacity: 0.7;
      transition: var(--transition);
      box-shadow: var(--shadow);
    }
    
    .thumbnail:hover, .thumbnail.active {
      opacity: 1;
      transform: scale(1.05);
    }
    
    .thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Similar Projects Section */
    .similar-projects-scroll {
      overflow-x: auto;
      white-space: nowrap;
      padding: 10px 5px;
      scrollbar-width: none;
      margin: 0 15px 30px;
    }
    
    .similar-projects-scroll::-webkit-scrollbar {
      display: none;
    }
    
    .similar-project-card {
      display: inline-block;
      width: 280px;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      margin-right: 15px;
      white-space: normal;
      vertical-align: top;
    }
    
    .similar-project-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    
    .similar-project-image {
      height: 180px;
      overflow: hidden;
    }
    
    .similar-project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .similar-project-content {
      padding: 15px;
    }
    
    .similar-project-title {
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 1.1rem;
    }
    
    .similar-project-location {
      color: var(--light-text);
      font-size: 0.9rem;
      margin-bottom: 10px;
    }
    
    .similar-project-price {
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 10px;
    }
    
    .btn-view {
      background: var(--secondary);
      color: white;
      border: none;
      border-radius: 30px;
      padding: 5px 15px;
      font-size: 0.9rem;
      font-weight: 500;
      align-items: center;
    }
    
    .btn-contact {
      background: var(--secondary);
      color: white;
      border: none;
      border-radius: 30px;
      padding: 12px 20px;
      font-weight: 500;
      align-items: center;
    }
    
    /* Developer Info */
    .developer-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      padding: 20px;
      margin: 0 20px 20px;
    }
    
    .developer-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
    }
    
    .developer-logo {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      background: #e6e6e6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--primary);
    }
    
    .developer-name {
      font-weight: 800;
      margin-bottom: 5px;
    }
    
    .developer-experience {
      color: var(--light-text);
      font-size: 0.9rem;
    }
    
    /* Contact Form */
    .contact-form {
      background: var(--muted);
      padding: 25px;
      border-radius: 12px;
      margin: 0 20px;
    }
    
    .form-title {
      font-weight: 800;
      margin-bottom: 20px;
      color: var(--dark-text);
    }
    
    .form-label {
      font-weight: 600;
      margin-bottom: 5px;
    }
    
    .form-control, .form-select {
      border-radius: 8px;
      padding: 10px 15px;
      border: 1px solid #ddd;
      transition: var(--transition);
      margin-bottom: 15px;
    }
    
    .form-control:focus, .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(198, 40, 40, 0.25);
    }
    
    .btn-submit {
      background: var(--primary);
      color: white;
      border: none;
      padding: 12px;
      border-radius: 30px;
      font-weight: 700;
      width: 100%;
      transition: var(--transition);
    }
    
    .btn-submit:hover {
      background: var(--primary-dark);
    }
    
    /* Fixed Inquiry Buttons */
    .fixed-inquiry-btn, .fixed-visit-btn {
      position: fixed;
      bottom: 20px;
      z-index: 1000;
    }
    
    .fixed-inquiry-btn {
      right: 20px;
      bottom: 80px;
    }
    
    .fixed-visit-btn {
      right: 20px;
    }
    
    .btn-share-enquiry, .btn-share-visit {
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 30px;
      padding: 12px 20px;
      font-weight: 500;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }
    
    .btn-share-visit {
      background: var(--secondary);
    }
    
    .btn-share-enquiry:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
    }
    
    .btn-share-visit:hover {
      background: #388e3c;
      transform: translateY(-3px);
    }
    
    .btn-close {
        float: right;
    }
    
    /* Footer */
    .site-footer {
      background: #2c3e50;
      color: white;
      padding: 40px 20px 20px;
      margin-top: 40px;
    }
    
    .footer-title {
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 1.2rem;
      color: #ecf0f1;
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: #bdc3c7;
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
    }
    
    .footer-links a:hover {
      color: var(--white);
      padding-left: 5px;
    }
    
    .footer-contact {
      color: #bdc3c7;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .footer-social a {
      color: white;
      background: rgba(255,255,255,0.1);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      cursor: pointer;
    }
    
    .footer-social a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      margin-top: 30px;
      text-align: center;
      color: #95a5a6;
      font-size: 0.9rem;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .project-carousel {
        height: 250px;
      }
      
      .project-overview {
        padding: 15px;
      }
      
      .unit-grid-container,
      .gallery-section,
      .amenities-grid,
      .location-section,
      .video-section {
        padding: 0 15px;
      }
      
      .unit-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
      }
      
      .unit-card {
        padding: 12px;
      }
      
      .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
      }
      
      .unit-price {
        font-size: 1rem;
      }
      
      .home-loan-banner {
        margin: 0 15px 20px;
        padding: 20px;
      }
      
      .main-gallery-image {
        height: 250px;
      }
      
      .thumbnail {
        min-width: 80px;
        height: 60px;
      }
      
      .similar-project-card {
        width: 250px;
      }
      
      .contact-form {
        margin: 0 15px;
      }
      
      .developer-card {
        margin: 0 15px 15px;
      }
    }

    @media (max-width: 576px) {
      .unit-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
 