  .page-banner {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 520px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-top: 0;
  }

  .page-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(10, 33, 57, 0.3) 0%, rgba(10, 33, 57, 0.6) 100%);
      z-index: 1;
  }

  .banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 20px;
  }

  .banner-title {
      color: #5ff2c1;
      font-size: 40px;
      font-weight: 650;
      text-transform: uppercase;
      letter-spacing: -2px;
      margin: 0;
      line-height: 1;
      text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: fadeInUp bannerFade 1s ease both;
  }

  @keyframes bannerFade {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* ── INTRO SECTION ── */
  .over-intro {
      padding-top: 50px;
  }

  .over-intro .over-title {
      font-size: 38px;
      font-weight: 650;
      color: #002d5b;
      margin-bottom: 25px;
      line-height: 1.1;
      text-transform: uppercase;
  }

  .over-intro .content-left {
      padding-right: 40px;
  }

  .over-intro .content-left p {
      font-size: 17px;
      font-weight: 400;
      line-height: 1.5;
      color: #080808;
  }

  .over-intro .content-right {
      padding-left: 40px;
  }

  .over-intro p {
      font-size: 16px;
      color: #444;
      line-height: 1.7;
      margin-bottom: 20px;
  }

  .read-more {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #002d5b;
      font-weight: 650;
      text-decoration: none;
      font-size: 18px;
      margin-top: 10px;
      transition: color 0.3s;
  }

  .read-more i:first-child {
      color: #5ff2c1;
      font-size: 20px;
  }

  .read-more:hover {
      color: #5ff2c1;
  }

  /* ── PROJECT RED SECTION ── */
  .project-red {
      padding: 30px 0;
      background-color: #fff;
  }

  .project-red-left h2 {
      font-size: 40px;
      font-weight: 650;
      color: #002d5b;
      margin-bottom: 25px;
      line-height: 1.1;
      text-transform: uppercase;
  }

  .project-red-left p {
      font-size: 18px;
      color: #080707;
      line-height: 1.6;
      margin-bottom: 40px;
      max-width: 500px;
  }

  .explore {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      padding: 18px 36px;
      background-color: #5ff2c1;
      color: #002d5b !important;
      font-weight: 650;
      text-transform: uppercase;
      text-decoration: none;
      font-size: 18px;
      transition: all 0.3s ease;
  }

  .explore:hover {
      background-color: #002d5b;
      color: #fff !important;
      transform: translateX(8px);
  }

  .project-red-image {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
  }

  .project-red-image img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
  }

  .vertical-line {
      position: absolute;
      top: 0;
      width: 20px;
      height: 100%;
      background-color: #fff;
      z-index: 5;
  }

  .vertical-line:nth-of-type(1) {
      left: 33.33%;
  }

  .vertical-line:nth-of-type(2) {
      left: 66.66%;
  }

  /* ── OVER RED TEXT (SECTION) ── */
  .over-red-text {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      padding-top: 15px;
  }

  .over-red-text h1 {
      font-size: 40px;
      font-weight: 650;
      color: #002d5b;
      margin-bottom: 30px;
      line-height: 1.1;
      text-transform: uppercase;
  }

  .over-red-text p {
      font-size: 18px;
      color: #555;
      line-height: 1.6;
      font-weight: 400;
  }

  .over-text {
      padding: 100px 0;
      background-color: #002d5b;
  }

  .over-text .row {
      display: flex;
      align-items: center;
  }

  .over-text h3 {
      font-size: 40px;
      font-weight: 650;
      color: #5ff2c1;
      margin-bottom: 15px;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: -1px;
  }

  .over-text p {
      font-size: 17px;
      color: #ffffff;
      line-height: 1.5;
      margin-bottom: 0;
      font-weight: 400;
      opacity: 0.9;
  }

  .over-text .explore {
      color: #002d5b !important;
      background-color: #5ff2c1;
      font-size: 18px;
      font-weight: 650;
      padding: 18px 30px;
      width: 100%;
      max-width: 340px;
      margin-left: auto;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      transition: all 0.3s ease;
  }

  .over-text .explore:hover {
      background-color: #ffffff;
      transform: translateY(-5px);
  }

  /* ── RESPONSIVE ── */

  @media (max-width: 992px) {
      .banner-title {
          font-size: 42px;
          letter-spacing: -1px;
      }

      /* Intro section */
      .over-intro {
          padding-top: 40px;
          padding-bottom: 20px;
      }

      .over-intro .over-title {
          font-size: 28px;
          margin-bottom: 16px;
      }

      .over-intro .content-left {
          padding-right: 0;
          margin-bottom: 30px;
      }

      .over-intro .content-right {
          padding-left: 0;
      }

      /* Project red section */
      .project-red {
          padding: 40px 0;
      }

      .project-red-left {
          margin-bottom: 30px;
      }

      .project-red-left h2 {
          font-size: 28px;
      }

      .project-red-left p {
          font-size: 16px;
          margin-bottom: 24px;
          max-width: 100%;
      }

      .explore {
          font-size: 16px;
          padding: 14px 28px;
      }

      .project-red-image img {
          height: 300px;
      }

      /* Sector heading */
      .over-red-text h1 {
          font-size: 28px;
      }

      .over-red-text p {
          font-size: 16px;
      }

      /* CTA */
      .over-text {
          padding: 60px 0;
      }

      .over-text h3 {
          font-size: 28px;
          letter-spacing: -0.5px;
      }

      .over-text p {
          font-size: 16px;
      }

      .over-text .explore {
          margin-left: 0;
          margin-top: 30px;
          max-width: 100%;
          width: 100%;
      }
  }

  /* Mobile (≤768px) */
  @media (max-width: 768px) {
      .page-banner {
          height: 38vh;
          min-height: 250px;
      }

      .banner-title {
          font-size: 30px;
          letter-spacing: -0.5px;
      }

      .over-intro {
          padding-top: 30px;
      }

      .over-intro .over-title {
          font-size: 24px;
      }

      .over-intro .content-left p,
      .over-intro p {
          font-size: 15px;
      }

      .read-more {
          font-size: 15px;
      }

      .over-red-text {
          padding-top: 10px;
          padding-bottom: 10px;
          max-width: 100%;
      }

      .over-red-text h1 {
          font-size: 24px;
      }

      .over-red-text p {
          font-size: 15px;
      }

      .over-text {
          padding: 50px 0;
      }

      .over-text h3 {
          font-size: 24px;
          line-height: 1.2;
      }

      .over-text p {
          font-size: 15px;
      }

      .over-text .explore {
          font-size: 16px;
          padding: 16px 24px;
      }

      .project-red-image img {
          height: 240px;
      }
  }

  /* Small mobile (≤480px) */
  @media (max-width: 480px) {
      .banner-title {
          font-size: 24px;
          letter-spacing: 0;
      }

      .page-banner {
          min-height: 200px;
      }

      .over-intro .over-title {
          font-size: 20px;
      }

      .project-red-left h2 {
          font-size: 22px;
      }

      .over-text h3 {
          font-size: 20px;
      }

      .over-red-text h1 {
          font-size: 20px;
      }
  }

  /* ── CONTACT TABS SECTION ── */
  .contact-tabs-section {
      padding: 0 0 10px;
  }

  .contact-tabs-wrapper {
      margin-bottom: 60px;
  }

  .contact-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
  }

  .tab-btn {
      background: none;
      border: none;
      padding: 15px 40px;
      font-size: 15px;
      font-weight: 700;
      color: #0a2139;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      position: relative;
      transition: all 0.3s ease;
  }

  .tab-btn::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 4px;
      background: #5ff2c1;
      transition: width 0.3s ease;
  }

  .tab-btn.active::after {
      width: 100%;
  }

  .tab-panel {
      display: none;
  }

  .tab-panel.active {
      display: block;
      animation: fadeIn 0.5s ease;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* ── ENQUIRY PANEL ── */
  .enquiry-intro h1 {
      font-size: 35px;
      font-weight: 600;
      color: #0c2d48;
      margin-bottom: 25px;
      line-height: 1.1;
  }

  .enquiry-intro p {
      font-size: 17px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 40px;
  }

  .careers-promo-box {
      background: #f1f3f6;
      padding: 10px 30px;
      border-radius: 4px;
  }

  .careers-promo-box h2 {
      font-size: 26px;
      font-weight: 800;
      color: #0c2d48;
      margin-bottom: 15px;
      text-transform: uppercase;
  }

  .careers-promo-box p {
      font-size: 16px;
      color: #666;
      margin-bottom: 25px;
  }

  .promo-link {
      color: #0c2d48;
      text-decoration: none;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      transition: color 0.3s;
  }

  .promo-link:hover {
      color: #5ff2c1;
  }

  .enquiry-form .form-select,
  .enquiry-form .form-control {
      border: 1px solid #c8d1d8;
      border-radius: 2px;
      padding: 12px 15px;
      font-size: 15px;
      color: #333;
  }

  .enquiry-form .form-select:focus,
  .enquiry-form .form-control:focus {
      border-color: #5ff2c1;
      box-shadow: none;
  }

  .file-upload-wrapper {
      position: relative;
  }

  .form-check {
      margin-bottom: 15px;
  }

  .form-check-label {
      font-size: 14px;
      color: #666;
      line-height: 1.4;
      padding-left: 5px;
  }

  .form-check-label a {
      color: #0c2d48;
      font-weight: 600;
      text-decoration: underline;
  }

  .form-submit-btn {
      background: #5ff2c1;
      color: #0c2d48;
      border: none;
      width: 100%;
      max-width: 250px;
      padding: 18px;
      font-weight: 600;
      font-size: 17px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
      margin-top: 20px;
      border-radius: 10px;
  }

  .form-submit-btn:hover {
      background: #0c2d48;
      color: #fff;
  }

  .recaptcha-notice {
      font-size: 12px;
      color: #888;
      text-align: center;
      margin-top: 20px;
  }

  .recaptcha-notice a {
      color: #0c2d48;
      font-weight: 600;
      text-decoration: none;
  }

  /* ── LOCATIONS PANEL ── */
  .locations-title {
      font-size: 35px;
      font-weight: 600;
      color: #0c2d48;
      margin-bottom: 50px;
  }

  .locations-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
  }

  .location-item {
      margin-bottom: 40px;
  }

  .location-item img {
      width: 80%;
      aspect-ratio: 5 / 3;
      object-fit: cover;
      margin-bottom: 20px;
  }

  .location-item h3 {
      font-size: 20px;
      font-weight: 600;
      color: #0c2d48;
      margin-bottom: 5px;
      padding-bottom: 10px;
      position: relative;
  }

  .location-item h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background: #5ff2c1;
  }

  .location-item p {
      font-size: 14px;
      color: #0f0f0f;
      line-height: 1.6;
      margin-bottom: 20px;
  }

  .location-item a {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: #0c2d48;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 12px;
      transition: color 0.3s;
  }

  .location-item a i {
      color: #5ff2c1;
      width: 15px;
  }

  .location-item a i.small-icon {
      font-size: 10px;
      margin-left: -5px;
  }

  .location-item a:hover {
      color: #5ff2c1;
  }

  @media (max-width: 1100px) {
      .locations-grid {
          grid-template-columns: repeat(3, 1fr);
      }
  }

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

  @media (max-width: 600px) {
      .locations-grid {
          grid-template-columns: 1fr;
      }

      .enquiry-intro h1 {
          font-size: 32px;
      }

      .contact-tabs {
          flex-direction: column;
          align-items: center;
      }
  }

  .contact-icons {
      padding: 20px 0;
      margin: 0 auto;
      width: 70%;
  }

  .icon-images {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0 auto;
      width: 90%;
  }

  .contact-icons-title {
      font-size: 35px;
      font-weight: 600;
      color: #0c2d48;
      margin-bottom: 20px;
  }

  .contact-icons-subtitle {
      font-size: 20px;
      color: #0f0f0f;
      line-height: 1.6;
      margin-bottom: 20px;
  }


  .contact-icon-box {
      width: 80%;
      aspect-ratio: 5 / 3;
      object-fit: cover;
      margin-bottom: 20px;
      text-align: center;
  }

  .contact-icon-content {
      margin-bottom: 20px;
  }

  .contact-icon-content h3 {
      font-size: 14px;
      font-weight: 500;
      color: #0c2d48;
      margin-bottom: 5px;
      padding-bottom: 10px;
      position: relative;
  }


  .contact-icon-content p {
      font-size: 14px;
      color: #0f0f0f;
      line-height: 1.6;
      margin-bottom: 20px;
  }

  .contact-icon-content a {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: #0c2d48;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 12px;
      transition: color 0.3s;
  }

  .contact-icon-content a i {
      color: #5ff2c1;
      width: 15px;
  }

  .contact-icon-content a i.small-icon {
      font-size: 10px;
      margin-left: -5px;
  }

  .contact-icon-content a:hover {
      color: #5ff2c1;
  }

  .project-section-images {
      padding: 100px 0;
      background-color: #fcfcfc;
  }

  .project-section-images .project-image {
      width: 100%;
      height: 450px;
      overflow: hidden;
      border-radius: 4px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
  }

  .project-section-images .project-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(10, 33, 57, 0) 0%, rgba(10, 33, 57, 0.2) 100%);
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .project-section-images .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .project-section-images .project-image:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }

  .project-section-images .project-image:hover::after {
      opacity: 1;
  }

  .project-section-images .project-image:hover img {
      transform: scale(1.1);
  }

  .project-image .proj-card-info {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 30px;
      background: #0c2d48;
      z-index: 10;
      transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
      transform: translateY(10px);
      opacity: 0;
  }

  .project-image:hover .proj-card-info {
      transform: translateY(0);
      opacity: 1;
  }

  .project-image .proj-country {
      display: block;
      font-size: 11px;
      font-weight: 700;
      color: #5ff2c1;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
  }

  .project-image .proj-title {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin: 5px 0 10px;
      line-height: 1.2;
      text-transform: uppercase;
  }

  .project-image .proj-service {
      font-size: 12px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
      letter-spacing: 0.5px;
      text-transform: uppercase;
  }

  @media (max-width: 992px) {
      .project-image .proj-card-info {
          opacity: 1;
          transform: translateY(0);
          padding: 20px;
          background: linear-gradient(to top, rgba(30, 58, 88, 0.9) 0%, rgba(10, 33, 57, 0.5) 80%, transparent 100%);
      }

      .project-image .proj-title {
          font-size: 18px;
      }
  }

  .text-center {
      font-size: 35px;
      font-weight: 600;
      color: #0c2d48;
      margin-bottom: 50px;
  }

  @media (max-width: 992px) {
      .project-section-images {
          padding: 60px 0;
      }

      .project-section-images .project-image {
          height: 320px;
      }
  }

  @media (max-width: 768px) {
      .project-section-images {
          padding: 40px 0;
      }

      .project-section-images .project-image {
          height: 450px;
      }
  }

  @media (max-width: 576px) {
      .project-section-images .project-image {
          height: 300px;
      }
  }