
    :root {
      --primary: #2ae012;
      --primary-dark: #2d48e0;
      --primary-light: #2d48e0;
      --primary-bg: #FFF4F0;
      --primary-border: #FFD6C7;
      --primary-soft: #FFF8F5;
      --dark: #1E1E1E;
      --dark-soft: #333333;
      --text: #2D2D2D;
      --text-secondary: #5F6368;
      --text-muted: #9AA0A6;
      --border: #E5E7EB;
      --border-light: #F0F0F0;
      --bg-white: #FFFFFF;
      --bg-light: #F8F9FA;
      --bg-section: #FAFBFC;
      --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
      --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
      --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
      --radius-sm: 6px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
      --transition: all 0.25s ease;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--text);
      background: var(--bg-section);
      min-height: 100vh;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    button { border: none; background: none; cursor: pointer; font-family: inherit; }
    img { display: block; max-width: 100%; }

    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(16px) saturate(1.4);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-xs);
    }
    .nav-row {
      max-width: 1320px; margin: 0 auto; padding: 0 20px;
      display: flex; align-items: center; justify-content: space-between;
      height: 60px;
    }
    .nav-left { display: flex; align-items: center; gap: 20px; }
    .logo {
      display: flex; align-items: center; gap: 10px;
      font-weight: 800; font-size: 17px; color: var(--dark); letter-spacing: -0.02em;
    }
    .logo-icon {
      width: 34px; height: 34px; border-radius: var(--radius-md);
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      display: grid; place-items: center;
      box-shadow: 0 0 14px rgba(42,224,18,0.25);
    }
    .logo-icon svg { width: 18px; height: 18px; }
    .phone-btn {
      display: flex; align-items: center; gap: 6px;
      padding: 6px 14px; border-radius: 999px;
      background: rgba(42,224,18,0.08);
      border: 1px solid rgba(42,224,18,0.2);
      color: #1a9c0d; font-size: 12.5px; font-weight: 600;
      transition: var(--transition);
    }
    .phone-btn:hover { background: rgba(42,224,18,0.15); }
    .phone-btn svg { width: 14px; height: 14px; }
    .nav-center { display: flex; gap: 2px; }
    .nav-center a {
      font-size: 13px; font-weight: 500;
      color: var(--text-secondary);
      padding: 6px 14px; border-radius: 999px;
      transition: var(--transition);
    }
    .nav-center a:hover { color: var(--text); background: var(--bg-light); }
    .nav-center a.active { color: var(--primary-dark); background: rgba(45,72,224,0.07); font-weight: 600; }
    .nav-right { display: flex; align-items: center; gap: 10px; }
    .nav-cta {
      padding: 8px 20px; border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff; font-size: 13px; font-weight: 700;
      box-shadow: 0 2px 10px rgba(45,72,224,0.25);
      transition: var(--transition);
    }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,72,224,0.35); }
    .mobile-menu-btn {
      display: none; color: var(--text); padding: 6px;
      border-radius: var(--radius-sm); transition: var(--transition);
    }
    .mobile-menu-btn:hover { background: var(--bg-light); }
    .mobile-menu-btn svg { display: block; width: 22px; height: 22px; }
    .mobile-nav {
      display: none; padding: 8px 20px 16px;
      border-bottom: 1px solid var(--border); background: var(--bg-white);
    }
    .mobile-nav.open { display: block; }
    .mobile-nav a {
      display: block; padding: 10px 0; font-size: 14px; color: var(--text-secondary);
      border-bottom: 1px solid var(--border-light); transition: var(--transition);
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: var(--text); }

    .breadcrumb { max-width: 1320px; margin: 0 auto; padding: 16px 20px 0; }
    .breadcrumb ol {
      display: flex; align-items: center; gap: 6px;
      list-style: none; font-size: 12px; color: var(--text-muted);
    }
    .breadcrumb a { color: var(--text-secondary); transition: var(--transition); }
    .breadcrumb a:hover { color: var(--primary-dark); }
    .breadcrumb li + li::before {
      content: ''; display: inline-block; width: 14px; height: 14px; flex-shrink: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239AA0A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") no-repeat center;
    }

    .hero { max-width: 1320px; margin: 0 auto; padding: 28px 20px 32px; }
    .hero-flex { display: flex; gap: 32px; align-items: flex-start; }
    .hero-main { flex: 1; min-width: 0; }
    .hero-side { width: 320px; flex-shrink: 0; }
    .hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
    .hbadge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 5px 12px; border-radius: 999px;
      font-size: 11.5px; font-weight: 600;
      border: 1px solid var(--border); background: var(--bg-white); color: var(--text-secondary);
    }
    .hbadge svg { width: 13px; height: 13px; }
    .hbadge-green { background: rgba(42,224,18,0.08); border-color: rgba(42,224,18,0.25); color: #1a9c0d; }
    .hbadge-blue { background: rgba(45,72,224,0.06); border-color: rgba(45,72,224,0.15); color: var(--primary-dark); }
    .hero-title {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--dark);
      letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
    }
    .hero-title span {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-desc { font-size: 14.5px; line-height: 1.75; color: var(--text-secondary); max-width: 740px; }
    .stats-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
    .stat-pill {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 18px; border-radius: var(--radius-lg);
      background: var(--bg-white); border: 1px solid var(--border);
      box-shadow: var(--shadow-xs); transition: var(--transition);
    }
    .stat-pill:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
    .stat-icon { width: 38px; height: 38px; border-radius: var(--radius-md); display: grid; place-items: center; }
    .stat-icon svg { width: 18px; height: 18px; }
    .stat-icon-blue { background: rgba(45,72,224,0.08); color: var(--primary-dark); }
    .stat-icon-green { background: rgba(42,224,18,0.08); color: #1a9c0d; }
    .stat-icon-amber { background: rgba(245,158,11,0.08); color: #d97706; }
    .stat-icon-purple { background: rgba(139,92,246,0.08); color: #7c3aed; }
    .stat-info { display: flex; flex-direction: column; }
    .stat-val { font-size: 1.15rem; font-weight: 800; color: var(--dark); }
    .stat-lbl { font-size: 10.5px; color: var(--text-muted); margin-top: 1px; }

    .hero-card {
      background: var(--bg-white); border-radius: var(--radius-xl);
      padding: 24px; border: 1px solid var(--border);
      box-shadow: var(--shadow-lg); position: sticky; top: 78px;
    }
    .hero-card-logo {
      width: 56px; height: 56px; border-radius: var(--radius-lg);
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      display: grid; place-items: center; margin-bottom: 16px;
      box-shadow: 0 4px 14px rgba(45,72,224,0.2);
    }
    .hero-card-logo span { font-weight: 900; font-size: 14px; color: #fff; }
    .hero-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .hero-card p { font-size: 12px; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
    .hero-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
    .hcs-item { padding: 10px; border-radius: var(--radius-md); background: var(--bg-light); text-align: center; }
    .hcs-item .val { font-size: 1rem; font-weight: 800; color: var(--dark); }
    .hcs-item .lbl { font-size: 9.5px; color: var(--text-muted); margin-top: 2px; }
    .hero-card-btns { display: flex; flex-direction: column; gap: 8px; }
    .hcb {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 11px 16px; border-radius: var(--radius-md);
      font-size: 13px; font-weight: 600; transition: var(--transition);
    }
    .hcb svg { width: 16px; height: 16px; }
    .hcb-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff; box-shadow: 0 2px 10px rgba(45,72,224,0.2);
    }
    .hcb-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,72,224,0.3); }
    .hcb-whatsapp { background: rgba(37,211,102,0.08); color: #0d8c42; border: 1px solid rgba(37,211,102,0.2); }
    .hcb-whatsapp:hover { background: rgba(37,211,102,0.14); }
    .hcb-call { background: rgba(45,72,224,0.06); color: var(--primary-dark); border: 1px solid rgba(45,72,224,0.15); }
    .hcb-call:hover { background: rgba(45,72,224,0.1); }

    #projects { position: relative; }
    .projects-progress-track {
      position: fixed; top: 60px; left: 0; width: 100%; height: 3px;
      background: var(--border-light); z-index: 99;
      opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .projects-progress-track.visible { opacity: 1; visibility: visible; }
    .projects-progress-fill {
      height: 100%; width: 0%;
      background: linear-gradient(90deg, var(--primary), var(--primary-dark));
      border-radius: 0 2px 2px 0; transition: width 0.06s linear;
      box-shadow: 0 0 10px rgba(42,224,18,0.4), 0 0 20px rgba(45,72,224,0.2);
      position: relative;
    }
    .projects-progress-fill::after {
      content: ''; position: absolute; right: -1px; top: -2px;
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 8px rgba(42,224,18,0.7), 0 0 3px rgba(45,72,224,0.4);
    }

    .full-section { max-width: 1320px; margin: 0 auto; padding: 0 20px 32px; }
    .sec-head {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
    }
    .sec-chip {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 7px 18px; border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff; font-size: 13px; font-weight: 700;
      box-shadow: 0 2px 10px rgba(45,72,224,0.2);
    }
    .sec-chip svg { width: 14px; height: 14px; }
    .sec-count { font-size: 12px; color: var(--text-muted); font-weight: 500; }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px; margin-bottom: 8px;
    }
    .card {
      background: var(--bg-white); border-radius: var(--radius-lg);
      overflow: hidden; border: 1px solid var(--border);
      box-shadow: var(--shadow-xs); transition: var(--transition); cursor: pointer;
    }
    .card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .card-img { position: relative; height: 165px; overflow: hidden; background: var(--bg-light); }
    .card-img img {
      width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;
    }
    .card:hover .card-img img { transform: scale(1.06); }
    .card-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 55%);
    }
    .card-badges { position: absolute; top: 8px; left: 8px; display: flex; gap: 4px; flex-wrap: wrap; }
    .cb {
      font-size: 9px; font-weight: 700; padding: 3px 8px;
      border-radius: var(--radius-sm); text-transform: uppercase; letter-spacing: 0.04em;
    }
    .cb-certified { background: rgba(42,224,18,0.9); color: #fff; }
    .cb-hira { background: rgba(45,72,224,0.9); color: #fff; }
    .cb-rera { background: rgba(139,92,246,0.9); color: #fff; }
    .cb-signature { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; }
    .card-status {
      position: absolute; bottom: 8px; right: 8px;
      font-size: 10px; font-weight: 600; padding: 3px 10px;
      border-radius: 999px; backdrop-filter: blur(6px);
    }
    .cs-ready { background: rgba(42,224,18,0.88); color: #fff; }
    .cs-under { background: rgba(245,158,11,0.88); color: #fff; }
    .cs-near { background: rgba(45,72,224,0.88); color: #fff; }
    .cs-new { background: rgba(139,92,246,0.88); color: #fff; }

    .card-body { padding: 14px 16px 16px; }
    .card-name { font-size: 14.5px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
    .card-by { font-size: 11px; color: var(--text-muted); margin-bottom: 5px; }
    .card-loc {
      display: flex; align-items: center; gap: 4px;
      font-size: 12px; color: var(--text-secondary); margin-bottom: 10px;
    }
    .card-loc svg { width: 13px; height: 13px; color: var(--text-muted); flex-shrink: 0; }
    .card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
    .ct { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: var(--radius-sm); }
    .ct-bhk { background: rgba(45,72,224,0.06); color: var(--primary-dark); border: 1px solid rgba(45,72,224,0.12); }
    .ct-type { background: var(--bg-light); color: var(--text-secondary); border: 1px solid var(--border); }

    .card-progress { margin-bottom: 12px; }
    .card-progress-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 5px;
    }
    .card-progress-label {
      font-size: 10.5px; font-weight: 600; color: var(--text-secondary);
      display: flex; align-items: center; gap: 5px;
    }
    .card-progress-label svg { width: 11px; height: 11px; }
    .card-progress-pct {
      font-size: 11px; font-weight: 700;
      padding: 1px 7px; border-radius: 999px;
    }
    .card-progress-track {
      width: 100%; height: 6px; border-radius: 999px;
      background: var(--bg-light);
      overflow: hidden; position: relative;
    }
    .card-progress-track::before {
      content: '';
      position: absolute; inset: 0;
      border-radius: 999px;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.03) 3px,
        rgba(0,0,0,0.03) 6px
      );
    }
    .card-progress-fill {
      height: 100%; border-radius: 999px;
      position: relative;
      transition: width 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
      width: 0;
    }
    .card-progress-fill.animated::after {
      content: '';
      position: absolute; inset: 0;
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0) 100%
      );
      animation: shimmer 2s infinite;
    }
    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(200%); }
    }

    .prog-ready .card-progress-fill { background: linear-gradient(90deg, #16a34a, var(--primary)); }
    .prog-ready .card-progress-pct { background: rgba(42,224,18,0.1); color: #16a34a; }
    .prog-ready .card-progress-label svg { color: #16a34a; }

    .prog-near .card-progress-fill { background: linear-gradient(90deg, #2563eb, #60a5fa); }
    .prog-near .card-progress-pct { background: rgba(37,99,235,0.08); color: #2563eb; }
    .prog-near .card-progress-label svg { color: #2563eb; }

    .prog-under .card-progress-fill { background: linear-gradient(90deg, #d97706, #fbbf24); }
    .prog-under .card-progress-pct { background: rgba(217,119,6,0.08); color: #d97706; }
    .prog-under .card-progress-label svg { color: #d97706; }

    .prog-new .card-progress-fill { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
    .prog-new .card-progress-pct { background: rgba(124,58,237,0.08); color: #7c3aed; }
    .prog-new .card-progress-label svg { color: #7c3aed; }

    .card-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 10px; border-top: 1px solid var(--border-light);
    }
    .card-price { font-size: 14px; font-weight: 700; color: var(--dark); }
    .card-arrow {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--bg-light); display: grid; place-items: center;
      color: var(--text-muted); transition: var(--transition);
    }
    .card:hover .card-arrow { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; }
    .card-arrow svg { width: 14px; height: 14px; }

    .floating-cta {
      position: fixed; bottom: 20px; right: 20px; z-index: 90;
      display: flex; flex-direction: column; gap: 10px;
    }
    .float-btn {
      width: 52px; height: 52px; border-radius: 50%;
      display: grid; place-items: center;
      box-shadow: var(--shadow-lg); transition: var(--transition);
    }
    .float-btn:hover { transform: scale(1.08); }
    .float-btn svg { width: 24px; height: 24px; }
    .float-whatsapp { background: #25d366; color: #fff; }
    .float-phone { background: var(--primary-dark); color: #fff; }

    .site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); }
    .footer-inner { max-width: 1320px; margin: 0 auto; padding: 28px 20px 22px; }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px;
      padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand p { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-top: 10px; }
    .footer-col h4 {
      font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35);
      text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 6px; }
    .footer-col a { font-size: 12.5px; color: rgba(255,255,255,0.55); transition: var(--transition); }
    .footer-col a:hover { color: var(--primary); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 18px; gap: 16px; flex-wrap: wrap;
    }
    .footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); }
    .footer-rera { font-size: 10.5px; color: rgba(255,255,255,0.25); text-align: right; max-width: 400px; }
    .footer-disclaimer {
      font-size: 10px; color: rgba(255,255,255,0.2);
      line-height: 1.65; margin-top: 14px; padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .back-to-top {
      position: fixed; bottom: 20px; left: 20px; z-index: 90;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--bg-white); border: 1px solid var(--border);
      display: grid; place-items: center; color: var(--text-muted);
      box-shadow: var(--shadow-md);
      opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition);
    }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff; border-color: transparent;
      box-shadow: 0 4px 16px rgba(45,72,224,0.25); transform: translateY(-2px);
    }
    .back-to-top svg { width: 18px; height: 18px; }

    @media (max-width: 1100px) { .hero-side { display: none; } .hero-flex { gap: 0; } }
    @media (max-width: 960px) {
      .nav-center { display: none; } .mobile-menu-btn { display: block; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .cards-grid { grid-template-columns: 1fr; }
      .stats-row { gap: 6px; }
      .stat-pill { padding: 8px 12px; }
      .stat-icon { width: 30px; height: 30px; border-radius: var(--radius-sm); }
      .stat-icon svg { width: 14px; height: 14px; }
      .stat-val { font-size: 0.95rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 20px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .footer-rera { text-align: left; }
      .phone-btn span { display: none; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(14px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-in { animation: fadeInUp 0.45s ease both; }
    .delay-1 { animation-delay: 0.06s; }
    .delay-2 { animation-delay: 0.12s; }
    .delay-3 { animation-delay: 0.18s; }
    .delay-4 { animation-delay: 0.24s; }
    .delay-5 { animation-delay: 0.3s; }
    .delay-6 { animation-delay: 0.36s; }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-light); }
    ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
  