  /* =========================================================
       GLOBAL
    ========================================================== */

    :root {
      --blue: #0d3978;
      --blue-dark: #082e65;
      --blue-light: #1357a5;
      --green: #12a45a;
      --green-dark: #078747;
      --text: #173d72;
      --muted: #60789b;
      --light-bg: #f6f9fc;
      --border: #d9e3ef;
      --white: #ffffff;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: #fff;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    /* =========================================================
       COMING SOON OVERLAY
    ========================================================== */
    #coming-soon-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      /* Lowered opacity for even more transparency */
      background: rgba(13, 57, 120, 0.4); 
      backdrop-filter: blur(6px); 
      -webkit-backdrop-filter: blur(6px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-align: center;
      padding: 20px;
    }

    .overlay-content {
      background: rgba(255, 255, 255, 0.1);
      padding: 50px 30px;
      border-radius: 12px;
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      max-width: 600px;
      animation: fadeIn 1s ease-in-out;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .overlay-logo {
      width: 190px;
      object-fit: contain;
      background: rgba(255,255,255,.94);
      padding: 10px 15px;
      border-radius: 4px;
      margin-bottom: 25px;
    }

    .overlay-content h2 {
      font-weight: 900;
      font-size: clamp(24px, 4vw, 36px);
      margin-bottom: 15px;
      color: var(--white);
      letter-spacing: -0.5px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .overlay-content h2 span {
      color: #16b85b;
    }

    .overlay-content p {
      font-size: 16px;
      color: #e2e8ef;
      line-height: 1.6;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(0,0,0,0.2);
      margin-bottom: 0;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* =========================================================
       HEADER
    ========================================================== */

    .site-header {
      z-index: 1000;
      width: 100%;
      color: var(--blue);
    }

    .navbar {
      min-height: 92px;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      z-index: 10;
    }

    .brand-logo {
      width: 190px;
      height: 72px;
      object-fit: contain;
      background: rgba(255,255,255,.94);
      padding: 8px 12px;
      border-radius: 2px;
    }

    .navbar-nav {
      align-items: center;
    }

    .nav-link {
      color: var(--blue) !important;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .1px;
      padding: 10px 0 !important;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--blue-dark) !important;
    }

    .nav-link.active {
      border-bottom: 3px solid var(--blue);
    }

    .dropdown-menu {
      border-radius: 8px;
      min-width: 220px;
    }

    .dropdown-item {
      font-size: 14px;
      font-weight: 600;
      color: var(--blue);
      padding: 10px 16px;
    }

    .dropdown-item:hover {
      background: #eef5fb;
      color: var(--blue);
    }

    .btn-get-touch {
      background: var(--green);
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      padding: 13px 26px;
      border-radius: 5px;
      border: 0;
      white-space: nowrap;
    }

    .btn-get-touch:hover {
      background: var(--green-dark);
      color: #fff;
    }

    .navbar-toggler {
      color: var(--blue);
    }

    /* =========================================================
       HERO
    ========================================================== */

    .hero-section {
      position: relative;
      height: 465px;
      overflow: hidden;
    }

    .hero-image {
      position: absolute;
      inset: 0;
      background-image:
        url("../images/banner/ban1.jpg");
      background-size: cover;
      background-position: center 43%;
      transform: scale(1.01);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          90deg,
          rgba(255,255,255,.98) 0%,
          rgba(255,255,255,.92) 24%,
          rgba(255,255,255,.55) 42%,
          rgba(255,255,255,.08) 72%
        );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .hero-copy {
      max-width: 580px;
      margin-top: 55px;
    }

    .hero-copy h1 {
      margin: 0 0 12px;
      color: var(--blue);
      font-size: clamp(43px, 4vw, 64px);
      line-height: .98;
      font-weight: 900;
      letter-spacing: -2.5px;
    }

    .hero-copy h1 span {
      color: var(--green);
    }

    .hero-copy p {
      color: #294c78;
      font-size: 17px;
      line-height: 1.4;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .btn-primary-custom {
      background: #0764ba;
      border: 2px solid #0764ba;
      color: #fff;
      border-radius: 5px;
      font-weight: 800;
      font-size: 14px;
      padding: 12px 18px;
    }

    .btn-primary-custom:hover {
      background: #04549d;
      border-color: #04549d;
      color: #fff;
    }

    .btn-outline-custom {
      background: rgba(255,255,255,.92);
      border: 2px solid #1262b4;
      color: #0d4d91;
      border-radius: 5px;
      font-weight: 800;
      font-size: 14px;
      padding: 12px 18px;
    }

    .btn-outline-custom:hover {
      background: #fff;
      color: #0d4d91;
    }

    /* =========================================================
       STATS STRIP
    ========================================================== */

    .stats-strip {
      position: relative;
      z-index: 20;
      margin-top: -30px;
    }

    .stats-card {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      background: #fff;
      border: 1px solid #d6e0eb;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(24, 61, 100, .12);
      overflow: hidden;
    }

    .stat-item {
      min-height: 78px;
      padding: 12px 15px;
      display: flex;
      align-items: center;
      gap: 11px;
      border-right: 1px solid #dce4ed;
    }

    .stat-item:last-child {
      border-right: 0;
    }

    .stat-item > i {
      flex: 0 0 auto;
      color: #075db2;
      font-size: 31px;
    }

    .stat-item strong {
      display: block;
      color: var(--blue);
      font-size: 21px;
      line-height: 1;
      font-weight: 900;
    }

    .stat-item small {
      display: block;
      color: #456388;
      font-size: 11px;
      line-height: 1.2;
      font-weight: 700;
      margin-top: 3px;
    }

    /* =========================================================
       GENERAL SECTIONS
    ========================================================== */

    .content-section,
    .news-section {
      padding: 27px 0 20px;
      background: #f7fafd;
    }

    .custom-section {
      background: #fff;
    }

    .section-heading-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 10px;
    }

    .section-heading-row.compact {
      margin-bottom: 20px;
    }

    .heading-with-icon {
      display: flex;
      align-items: center;
      gap: 11px;
    }

    .heading-with-icon > i {
      color: #0d5eb0;
      font-size: 31px;
    }

    .heading-with-icon h2 {
      margin: 0;
      color: var(--blue);
      font-size: 23px;
      line-height: 1.1;
      font-weight: 900;
      letter-spacing: -.3px;
    }

    .section-heading-row p {
      margin: 5px 0 0 42px;
      color: #607b9e;
      font-size: 13px;
      font-weight: 600;
    }

    .view-all-btn {
      flex: 0 0 auto;
      border: 1px solid #80a3cc;
      color: var(--blue);
      background: #fff;
      padding: 8px 15px;
      border-radius: 5px;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .view-all-btn:hover {
      background: var(--blue);
      color: #fff;
    }

    /* =========================================================
       TIMELINE
    ========================================================== */

    .timeline {
      position: relative;
      height: 42px;
      margin: 0 125px 3px;
    }

    .timeline-line {
      position: absolute;
      left: 0;
      right: 0;
      top: 26px;
      height: 2px;
      background: #c4d4e4;
    }

    .timeline-dots {
      position: absolute;
      left: 0;
      right: 0;
      top: 20px;
      display: flex;
      justify-content: space-between;
      z-index: 2;
    }

    .timeline-dots i {
      display: block;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--green);
      border: 2px solid #fff;
      box-shadow: 0 0 0 1px #bdd0df;
    }

    .year {
      position: absolute;
      top: 0;
      transform: translateX(-50%);
      color: #36567d;
      font-size: 10px;
      font-weight: 900;
      z-index: 3;
    }

    .y1 { left: 0; }
    .y2 { left: 16.66%; }
    .y3 { left: 33.33%; }
    .y4 { left: 50%; }
    .y5 { left: 66.66%; }
    .y6 { left: 83.33%; }
    .y7 { left: 100%; }

    /* =========================================================
       HORIZONTAL PROJECT SCROLL
    ========================================================== */

    .horizontal-scroll-wrap {
      position: relative;
      width: 100%;
    }

    .project-track {
      display: flex;
      flex-wrap: nowrap;
      gap: 12px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0 9px 10px;
      scroll-behavior: smooth;
      scrollbar-width: none;
    }

    .project-track::-webkit-scrollbar {
      display: none;
    }

    .project-card {
      flex: 0 0 calc((100% - 72px) / 7);
      min-width: 190px;
      background: #fff;
      border: 1px solid #d5e1ed;
      border-radius: 7px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(35, 70, 105, .07);
      display: flex;
      flex-direction: column;
    }

    .project-card.featured {
      border: 2px solid #7ba9da;
    }

    .project-card > img {
      width: 100%;
      height: 115px;
      object-fit: cover;
      display: block;
    }

    .project-body {
      padding: 9px 10px 8px;
      flex: 1;
    }

    .project-body h3 {
      margin: 0 0 5px;
      color: var(--blue);
      font-size: 15px;
      line-height: 1.08;
      font-weight: 900;
      min-height: 17px;
    }

    .project-body > small {
      display: block;
      color: #8093aa;
      font-size: 10px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .project-body dl {
      display: grid;
      grid-template-columns: 58px 1fr;
      margin: 0;
      font-size: 9px;
      line-height: 1.45;
    }

    .project-body dt {
      color: #4d6c91;
      font-weight: 900;
    }

    .project-body dd {
      margin: 0;
      color: #536e8d;
      font-weight: 600;
    }

    .availability {
      margin-top: 8px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2px 8px;
      font-size: 9px;
      color: #66809e;
      font-weight: 700;
    }

    .availability b {
      color: #0c579e;
      text-align: right;
    }

    .project-footer {
      border-top: 1px solid #e2e9f0;
      min-height: 39px;
      padding: 8px 9px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 5px;
      color: #657c99;
      font-size: 9px;
      font-weight: 700;
    }

    .project-footer b {
      color: var(--blue);
    }

    .status {
      font-weight: 800;
      white-space: nowrap;
    }

    .status.done {
      color: var(--green);
    }

    .status.build {
      color: #1d71bd;
    }

    .status.upcoming {
      color: #8090a4;
    }

    .scroll-btn {
      position: absolute;
      top: 43%;
      transform: translateY(-50%);
      z-index: 10;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid #d3dfeb;
      background: #fff;
      color: #34628f;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0,0,0,.08);
    }

    .scroll-btn:hover {
      background: var(--blue);
      color: #fff;
    }

    .scroll-btn.left {
      left: -8px;
    }

    .scroll-btn.right {
      right: -8px;
    }

    /* =========================================================
       CUSTOM CONSTRUCTION
    ========================================================== */

    .custom-track {
      padding-top: 2px;
    }

    .custom-card {
      flex: 0 0 calc((100% - 60px) / 6);
      min-width: 210px;
      position: relative;
      background: #fff;
      border: 1px solid #d6e1eb;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(30, 64, 100, .07);
    }

    .custom-card img {
      width: 100%;
      height: 165px;
      object-fit: cover;
      display: block;
    }

    .custom-card > div {
      padding: 12px 13px 13px;
    }

    .custom-card h3 {
      color: var(--blue);
      font-size: 16px;
      font-weight: 900;
      margin: 0 0 4px;
    }

    .custom-card small {
      color: #7187a2;
      font-size: 11px;
      font-weight: 700;
    }

    .custom-card p {
      margin: 7px 0 0;
      color: #58718f;
      font-size: 10px;
      line-height: 1.35;
      font-weight: 600;
    }

    .custom-card p b {
      color: var(--blue);
    }

    .badge-type {
      position: absolute;
      top: 10px;
      left: 10px;
      border-radius: 4px;
      padding: 5px 8px;
      color: #fff;
      font-size: 9px;
      font-weight: 900;
    }

    .badge-type.residential {
      background: #0d5eaa;
    }

    .badge-type.commercial {
      background: #117d59;
    }

    .badge-type.industrial {
      background: #745b25;
    }

    /* =========================================================
       NEWS
    ========================================================== */

    .news-section {
      background: #f7fafd;
      padding-bottom: 35px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
    }

    .news-item {
      background: #fff;
      border: 1px solid #dce5ee;
      border-radius: 7px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(30, 64, 100, .05);
    }

    .news-meta {
      min-height: 39px;
      padding: 10px;
      color: #7185a0;
      font-size: 9px;
      font-weight: 800;
      border-bottom: 1px solid #e2e8ef;
    }

    .news-meta i {
      color: #1d66ad;
      margin-right: 3px;
    }

    .news-meta span {
      float: right;
      color: #0b67ae;
      font-size: 8px;
    }

    .news-meta span.green {
      color: var(--green);
    }

    .news-main {
      display: flex;
      min-height: 120px;
    }

    .news-main > div {
      flex: 1;
      padding: 11px;
    }

    .news-main h3 {
      color: var(--blue);
      font-size: 13px;
      line-height: 1.15;
      font-weight: 900;
      margin: 0 0 13px;
    }

    .news-main a {
      color: #1166b2;
      font-size: 10px;
      font-weight: 900;
    }

    .news-main img {
      width: 95px;
      height: 120px;
      object-fit: cover;
    }

    /* =========================================================
       BOTTOM CTA
    ========================================================== */

    .bottom-cta {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1.8fr auto;
      align-items: center;
      gap: 18px;
      padding: 20px 4vw;
      background: var(--blue);
      color: #fff;
    }

    .cta-item {
      display: flex;
      align-items: center;
      gap: 10px;
      border-right: 1px solid rgba(255,255,255,.18);
      padding-right: 18px;
    }

    .cta-item > i {
      font-size: 30px;
      color: #5ed39a;
    }

    .cta-item b {
      display: block;
      font-size: 13px;
      font-weight: 900;
    }

    .cta-item small {
      display: block;
      margin-top: 3px;
      color: #c9d9eb;
      font-size: 9px;
      line-height: 1.35;
      font-weight: 600;
    }

    .cta-copy strong {
      display: block;
      font-size: 19px;
      font-weight: 900;
    }

    .cta-copy small {
      display: block;
      margin-top: 4px;
      color: #cad8e9;
      font-size: 10px;
      font-weight: 600;
    }

    .cta-button {
      background: var(--green);
      color: #fff;
      border: 0;
      border-radius: 5px;
      padding: 12px 18px;
      font-size: 11px;
      font-weight: 900;
      white-space: nowrap;
    }

    .cta-button:hover {
      background: var(--green-dark);
      color: #fff;
    }

    /* =========================================================
       WHATSAPP
    ========================================================== */

    .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #16b85b;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      box-shadow: 0 5px 15px rgba(0,0,0,.18);
      border: 3px solid #fff;
    }

    .whatsapp-float i {
      font-size: 27px;
    }

    .whatsapp-float:hover {
      background: #0e9948;
      color: #fff;
    }

    /* =========================================================
       RESPONSIVE
    ========================================================== */

    @media (max-width: 1400px) {

      .navbar-nav {
        gap: 1.2rem !important;
      }

      .nav-link {
        font-size: 12px;
      }

      .brand-logo {
        width: 170px;
      }

      .project-card {
        flex-basis: 220px;
      }

      .custom-card {
        flex-basis: 245px;
      }

      .news-grid {
        grid-template-columns: repeat(5, minmax(200px, 1fr));
        overflow-x: auto;
      }

      .news-item {
        min-width: 200px;
      }
    }

    @media (max-width: 1199px) {

      .navbar {
        background: rgba(255,255,255,.96);
      }

      .navbar-collapse {
        background: #fff;
        padding: 15px;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
      }

      .nav-link {
        padding: 9px 5px !important;
      }

      .hero-section {
        height: 530px;
      }

      .stats-card {
        grid-template-columns: repeat(4, 1fr);
      }

      .stat-item:nth-child(4) {
        border-right: 0;
      }

      .stat-item:nth-child(n+5) {
        border-top: 1px solid #dce4ed;
      }

      .timeline {
        margin-left: 70px;
        margin-right: 70px;
      }

      .bottom-cta {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-copy {
        grid-column: span 2;
      }
    }

    @media (max-width: 767px) {

      .navbar {
        min-height: 75px;
      }

      .brand-logo {
        width: 145px;
        height: 58px;
      }

      .hero-section {
        height: 610px;
      }

      .hero-image {
        background-position: center;
      }

      .hero-overlay {
        background:
          linear-gradient(
            180deg,
            rgba(255,255,255,.96) 0%,
            rgba(255,255,255,.88) 45%,
            rgba(255,255,255,.25) 100%
          );
      }

      .hero-content {
        align-items: flex-start;
        padding-top: 130px;
      }

      .hero-copy {
        margin-top: 0;
      }

      .hero-copy h1 {
        font-size: 42px;
      }

      .hero-copy p {
        font-size: 15px;
      }

      .stats-strip {
        margin-top: -15px;
      }

      .stats-card {
        grid-template-columns: repeat(2, 1fr);
      }

      .stat-item {
        border-right: 1px solid #dce4ed !important;
        border-bottom: 1px solid #dce4ed;
      }

      .stat-item:nth-child(even) {
        border-right: 0 !important;
      }

      .section-heading-row {
        flex-direction: column;
      }

      .view-all-btn {
        align-self: flex-start;
      }

      .timeline {
        margin-left: 35px;
        margin-right: 35px;
      }

      .bottom-cta {
        grid-template-columns: 1fr;
      }

      .cta-copy {
        grid-column: auto;
      }

      .cta-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
        padding-bottom: 12px;
      }
    }

    @media (max-width: 480px) {

      .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .hero-copy h1 {
        font-size: 36px;
      }

      .hero-copy p {
        font-size: 14px;
      }

      .stats-item {
        padding: 10px;
      }

      .heading-with-icon h2 {
        font-size: 20px;
      }

      .timeline {
        margin-left: 20px;
        margin-right: 20px;
      }
    }