  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    color: #222;
    overflow-x: hidden;
  }

  /* ───── NAVBAR ───── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 180px;
  }

  .logo img {
    width: 247px;
    height: 102px;
    object-fit: contain;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 56px;
    list-style: none;
  }

  .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 300;
  }

  .nav-menu .dropdown a::after {
    font-size: 14px;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    width: 72px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-btn svg {
    width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round;
  }

  .menu-btn {
    width: 88px;
    height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-btn span {
    width: 40px;
    height: 4px;
    background: #fff;
    border-radius: 0;
    display: block;
    transition: all 0.3s;
  }

  /* ───── MOBILE MENU ───── */
  .mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.4s;
    overflow-y: auto;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
  }

  .mobile-logo {
    width: 150px;
  }

  .mobile-menu .close-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0;
    position: static;
    top: auto;
    right: auto;
    color: #000;
    font-size: inherit;
  }

  .mobile-menu .close-btn svg {
    width: 24px;
    height: 24px;
    stroke: #000;
  }

  .mobile-nav {
    padding: 24px;
    list-style: none;
  }

  .mobile-nav > li {
    border-bottom: 1px solid #eee;
  }

  .mobile-nav > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: 25px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
  }

  .mobile-nav svg {
    width: 28px;
    height: 28px;
    stroke: #000;
    transition: transform 0.3s;
  }

  .mobile-nav .has-submenu.active svg {
    transform: rotate(180deg);
  }

  /* ───── HERO ───── */
  .hero {
    position: relative;
    width: 100%;
    height: 1080px;
    overflow: hidden;
  }

  .hero-banner-image {
    position: absolute;
    inset: 0;
  }

  .hero-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-banner-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 25%);
    pointer-events: none;
  }

  /* City lights */
  .hero-city-left, .hero-city-right {
    position: absolute;
    bottom: 0;
    width: 340px;
    height: 60%;
    z-index: 1;
    background: linear-gradient(to top, rgba(8,16,40,0.9), transparent);
  }

  .hero-city-left { left: 0; }
  .hero-city-right { right: 0; }

  /* City buildings left */
  .city-left-buildings {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 340px;
    height: 380px;
    z-index: 1;
    overflow: hidden;
  }

  .city-left-buildings::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
      /* buildings silhouette */
      linear-gradient(to top, #0c1e3e 0%, #0c1e3e 40%, transparent 40%);
    clip-path: polygon(
      0% 100%, 0% 55%, 4% 55%, 4% 40%, 8% 40%, 8% 30%, 12% 30%, 12% 45%, 16% 45%, 16% 25%, 20% 25%, 20% 35%, 24% 35%, 24% 20%, 28% 20%, 28% 38%, 32% 38%, 32% 28%, 36% 28%, 36% 42%, 40% 42%, 40% 35%, 44% 35%, 44% 50%, 50% 50%, 50% 60%, 60% 60%, 60% 70%, 70% 70%, 70% 80%, 80% 80%, 80% 90%, 100% 90%, 100% 100%
    );
  }

  /* Ground rock on left */
  .hero-ground-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 180px;
    z-index: 3;
    background: linear-gradient(135deg, #1a2840 0%, #0e1c30 60%, #0a1520 100%);
    clip-path: polygon(0% 100%, 0% 60%, 15% 40%, 30% 50%, 50% 30%, 70% 45%, 100% 20%, 100% 100%);
  }

  .hero-ground-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 160px;
    z-index: 3;
    background: linear-gradient(225deg, #1a2840 0%, #0e1c30 60%, #0a1520 100%);
    clip-path: polygon(0% 20%, 30% 45%, 50% 30%, 70% 50%, 85% 40%, 100% 60%, 100% 100%, 0% 100%);
  }

  /* Truck container */
  .hero-truck {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 580px;
    height: 95%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  /* Truck body */
  .truck-body {
    position: relative;
    width: 560px;
    height: 88%;
    display: flex;
    flex-direction: column;
  }

  /* Truck top bar */
  .truck-top {
    height: 22px;
    background: linear-gradient(180deg, #c8cdd6 0%, #a8adb8 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
  }

  .truck-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 10px;
    background: #9aa0ae;
    border-radius: 4px;
  }

  /* Door frame */
  .truck-doors {
    flex: 1;
    display: flex;
    position: relative;
    background: #b0b5c0;
  }

  .door-left, .door-right {
    flex: 1;
    background: linear-gradient(180deg, #c5c9d3 0%, #adb2be 100%);
    position: relative;
    transition: none;
  }

  .door-left {
    transform-origin: left center;
    transform: perspective(800px) rotateY(-55deg);
    border-right: 2px solid #8a8e99;
    background: linear-gradient(180deg, #d8dce6 0%, #c0c5cf 100%);
  }

  .door-right {
    transform-origin: right center;
    transform: perspective(800px) rotateY(55deg);
    border-left: 2px solid #8a8e99;
    background: linear-gradient(180deg, #d8dce6 0%, #c0c5cf 100%);
  }

  /* Door hinges */
  .door-left::before, .door-right::before {
    content: '';
    position: absolute;
    top: 20%;
    width: 12px;
    height: 24px;
    background: #888;
    border-radius: 3px;
  }

  .door-left::before { right: 6px; }
  .door-right::before { left: 6px; }

  /* Interior */
  .truck-interior {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, #e8eef8 0%, #f0f4fc 50%, #e4eaf4 100%);
    display: flex;
    align-items: stretch;
    overflow: hidden;
  }

  /* Ceiling lights */
  .interior-ceiling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg, #b8c4d8 0%, #d0daea 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 30px;
  }

  .ceiling-light {
    width: 50px;
    height: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #e8f0ff 100%);
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(200,220,255,0.8), 0 0 40px rgba(180,210,255,0.4);
  }

  /* Shelves */
  .shelf-left, .shelf-right {
    position: absolute;
    top: 30px;
    bottom: 0;
    width: 130px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .shelf-left { left: 0; }
  .shelf-right { right: 0; }

  .shelf-row {
    flex: 1;
    border-bottom: 3px solid #c0c8d8;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #e0e8f4 0%, #eef4fc 100%);
  }

  /* Product colors on shelves */
  .shelf-left .shelf-row:nth-child(1) { background: linear-gradient(90deg, #c8e0a0 0%, #d4ec88 30%, #e8c060 50%, #f0a840 70%, #e87050 90%); }
  .shelf-left .shelf-row:nth-child(2) { background: linear-gradient(90deg, #88c840 0%, #a0d850 20%, #c8d840 40%, #e8c850 60%, #f0a030 80%); }
  .shelf-left .shelf-row:nth-child(3) { background: linear-gradient(90deg, #e05030 0%, #f06040 20%, #f08060 40%, #e0a060 60%, #d09050 80%); }
  .shelf-left .shelf-row:nth-child(4) { background: linear-gradient(90deg, #40a840 0%, #60c050 20%, #80c840 40%, #c8d840 60%); }
  .shelf-left .shelf-row:nth-child(5) { background: linear-gradient(90deg, #d04030 0%, #e05040 20%, #c83020 40%, #d04830 60%); }

  .shelf-right .shelf-row:nth-child(1) { background: linear-gradient(270deg, #e8f0a0 0%, #d0e890 30%, #b8d8e0 50%, #a8c8d8 70%); }
  .shelf-right .shelf-row:nth-child(2) { background: linear-gradient(270deg, #f0f0e8 0%, #e8e0d0 30%, #d0c8b0 50%, #c0b898 70%); }
  .shelf-right .shelf-row:nth-child(3) { background: linear-gradient(270deg, #e0e8f8 0%, #c8d8f0 30%, #b0c8e8 50%, #a0b8d8 70%); }
  .shelf-right .shelf-row:nth-child(4) { background: linear-gradient(270deg, #f8e8d0 0%, #f0d8b8 30%, #e8c8a0 50%, #e0b888 70%); }
  .shelf-right .shelf-row:nth-child(5) { background: linear-gradient(270deg, #d8e8d0 0%, #c0d8c0 30%, #a8c8b0 50%, #90b898 70%); }

  /* Interior floor */
  .interior-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, #c8d0dc 0%, #b8c0cc 100%);
  }

  /* Person silhouette */
  .person {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90px;
    height: 200px;
  }

  .person-svg {
    width: 100%;
    height: 100%;
  }

  /* Truck bottom bar */
  .truck-bottom-bar {
    height: 18px;
    background: linear-gradient(180deg, #888e9a 0%, #6e7480 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
  }

  .truck-light {
    width: 20px;
    height: 10px;
    background: #ff6020;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255,100,30,0.8);
  }

  /* Blue tint overlay on whole image */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 55, 0.45);
    z-index: 2;
  }

  .hero-content {
    position: absolute;
    bottom: 130px;
    left: 180px;
    z-index: 10;
  }

  .hero-content h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    white-space: nowrap;
  }

  .hero-content p {
    font-size: 24px;
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
    font-weight: 400;
    white-space: nowrap;
  }

  /* ───── SIDE BUTTONS ───── */
  .side-buttons-wrap {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .side-btn {
    background: #1a3d7c;
    color: #fff;
    border: none;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 22px 11px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #fff;
    white-space: nowrap;
  }

  .side-enquire {
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .side-chat {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .side-chat svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linejoin: round;
  }

  /* ───── JOB LISTINGS ───── */
  .jobs-section {
    background: #ffffff;
    padding: 60px 180px 0;
  }

  .jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: calc(100% - 180px);
    margin: 0;
  }

  .job-card {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 38px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }

  .job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .job-title {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
  }

  .job-tag {
    background: #eef2f8;
    color: #4a6080;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .job-exp {
    font-size: 18px;
    color: #666;
    margin-bottom: 28px;
    margin-top: 4px;
  }

  .btn-apply {
    background: #1a4a8a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    letter-spacing: 0.3px;
  }

  /* ───── CTA SECTION ───── */
  .cta-section {
    background: #fff;
    padding: 72px 0 0;
  }

  .cta-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #0d1b2a;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 48px;
    text-align: left;
  }

  /* ───── APPLICATION FORM ───── */
  .form-wrapper {
    background: #fff;
    border: 1.5px solid #dde4ef;
    border-radius: 10px;
    padding: 40px 48px 48px;
    max-width: calc(100% - 360px);
    margin: 0 180px 80px;
    position: relative;
  }

  .form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a50a0;
    margin-bottom: 36px;
  }

  .form-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1a50a0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
  }

  .form-field {
    margin-bottom: 28px;
    position: relative;
  }

  .form-field input,
  .form-field select {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #b0b8c8;
    padding: 10px 0 10px;
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    color: #333;
    background: transparent;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
  }

  .form-field input::placeholder,
  .form-field select option[value=""] {
    color: #888;
  }

  .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
    cursor: pointer;
  }

  .form-field select option {
    color: #333;
  }

  .form-field-upload {
    position: relative;
  }

  .form-field-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
  }

  .upload-placeholder {
    border-bottom: 1.5px solid #b0b8c8;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #888;
    font-size: 18px;
  }

  .upload-placeholder svg {
    width: 20px;
    height: 20px;
    stroke: #888;
    fill: none;
    stroke-width: 1.5;
  }

  .field-error {
    display: none;
    color: #d32f2f;
    font-size: 12px;
    margin-top: 4px;
    font-family: 'Outfit', sans-serif;
  }

  .upload-hint {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
  }

  .btn-submit {
    display: block;
    background: #1a3d7c;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 0;
    width: 380px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    letter-spacing: 0.3px;
    margin-top: 12px;
  }
  .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

  /* ───── FOOTER ───── */
  .footer {
    background: #005292;
    padding: 72px 0;
  }

  .footer .container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 180px;
  }

  .footer .footer-top {
    display: flex;
    gap: 24px;
  }

  .footer-brand {
    width: 768px;
    flex-shrink: 0;
  }

  .footer-desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .footer-local {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 116px;
  }

  .career-btn {
    display: inline-flex;
    align-items: center;
    gap: 43px;
    background: #fff;
    padding: 12px 12px 12px 24px;
    border-radius: 110px;
  }

  .career-btn span {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #005292;
  }

  .btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #005292;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 24px;
    border-radius: 36px;
    transition: background 0.3s;
    text-decoration: none;
    cursor: pointer;
  }

  .btn-enquire:hover {
    background: #003d6d;
  }

  .footer-links {
    display: flex;
    gap: 82px;
    flex: 1;
  }

  .footer .footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 24px;
  }

  .footer .footer-col ul {
    list-style-type: disc;
    padding-left: 20px;
  }

  .footer .footer-col ul li {
    margin-bottom: 8px;
    color: #fff;
    display: list-item;
  }

  .footer .footer-col ul li::before {
    display: none;
  }

  .footer .footer-col ul li a {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    line-height: 38px;
    transition: opacity 0.3s;
  }

  .footer .footer-col ul li a:hover {
    opacity: 0.8;
  }

  .footer .footer-divider {
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 56px 0;
    border: none;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 60px;
  }

  .footer-bottom-left {
    flex: 1;
  }

  .footer-bottom-left h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 24px;
  }

  .footer .footer-addresses {
    display: flex;
    gap: 0;
  }

  .footer-address-col {
    flex: 1;
    padding-left: 24px;
    border-left: 2px solid #fff;
  }

  .footer-address-col:first-child {
    padding-left: 0;
    border-left: none;
    padding-right: 40px;
  }

  .address-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
  }

  .footer-address-col p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.6;
  }

  .footer-address-col a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
  }

  .footer-address-col a:hover {
    opacity: 0.8;
  }

  .footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
  }

  .social-icons {
    display: flex;
    gap: 60px;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
    color: #fff;
    transition: opacity 0.3s;
  }

  .social-icons a:hover {
    opacity: 0.8;
  }

  .social-icons img {
    width: 42px;
    height: 42px;
  }

  .copyright {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
  }

  .copyright a {
    color: #fff;
  }

  /* ── OVERLAY ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 50, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .modal-overlay.active {
    display: flex;
  }

  /* ── MODAL BOX ── */
  .modal-box {
    background: #f0f2f5;
    border-radius: 18px;
    width: 100%;
    max-width: 1000px;
    padding: 48px 56px 52px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
    animation: modalIn 0.25s ease;
  }

  @keyframes modalIn {
    from { opacity: 0; transform: translateY(-18px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* ── CLOSE BUTTON ── */
  .modal-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.8px solid #b0b8cc;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    transition: border-color 0.2s, color 0.2s;
  }

  .modal-close:hover {
    border-color: #1a4a8a;
    color: #1a4a8a;
  }

  /* ── TITLE ── */
  .modal-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    color: #1a4090;
    margin-bottom: 40px;
  }

  /* ── FORM GRID ── */
  .modal-box .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 0;
  }

  .modal-box .form-field {
    margin-bottom: 36px;
    position: relative;
  }

  .modal-box .form-field label {
    display: block;
    font-size: 14px;
    color: #999;
    font-weight: 400;
    margin-bottom: 8px;
  }

  .modal-box .form-field input,
  .modal-box .form-field select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #c0c8d8;
    padding: 6px 0 10px;
    font-size: 14.5px;
    font-family: 'Outfit', sans-serif;
    color: #333;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s;
  }

  .modal-box .form-field input:focus,
  .modal-box .form-field select:focus {
    border-bottom-color: #1a4a8a;
  }

  .modal-box .form-field.has-arrow select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 22px;
    cursor: pointer;
    color: #999;
  }

  .upload-wrapper {
    position: relative;
    border-bottom: 1.5px solid #c0c8d8;
    padding: 6px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    border: none;
    padding: 0;
  }

  .upload-label-text {
    font-size: 14.5px;
    color: #999;
  }

  .upload-icon svg {
    width: 20px;
    height: 20px;
    stroke: #aaa;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .upload-hint {
    font-size: 11.5px;
    color: #aaa;
    margin-top: 6px;
  }

  /* ── SUBMIT ── */
  .modal-box .btn-submit {
    display: block;
    background: #1a3d7c;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 17px 0;
    width: 420px;
    max-width: 100%;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    letter-spacing: 0.4px;
    margin-top: 4px;
    transition: background 0.2s;
  }

  .modal-box .btn-submit:hover {
    background: #12306a;
  }



  /* ───── HERO BG MOCK SCENE ───── */
  .hero-bg-scene {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
  }

  /* Sky */
  .sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      #0c1828 0%,
      #10243e 25%,
      #163660 50%,
      #1e4878 70%,
      #2a5a8e 85%,
      #1a3a6a 100%
    );
  }

  /* City skyline left */
  .skyline-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38%;
    height: 70%;
    z-index: 2;
  }

  .skyline-left svg {
    width: 100%;
    height: 100%;
  }

  /* City skyline right */
  .skyline-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    height: 60%;
    z-index: 2;
  }

  .skyline-right svg {
    width: 100%;
    height: 100%;
  }

  /* Rocky ground */
  .rocky-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 3;
    background: linear-gradient(180deg, transparent 0%, #0a1624 60%);
  }

  .rocky-ground svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* Truck container scene */
  .truck-scene {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 52%;
    height: 100%;
    z-index: 4;
  }

  /* Outer truck frame */
  .outer-frame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    height: 96%;
    background: linear-gradient(180deg, #a8adb8 0%, #90959f 100%);
  }

  /* Door panels open to sides */
  .door-panel-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 28%;
    height: 100%;
    background: linear-gradient(270deg, #d0d5de 0%, #b8bdc8 40%, #c8cdd6 100%);
    transform-origin: left center;
    transform: perspective(1200px) rotateY(-62deg);
    box-shadow: 8px 0 20px rgba(0,0,0,0.4);
  }

  .door-panel-left::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 15%;
    width: 8px;
    height: 18px;
    background: #999;
    border-radius: 2px;
  }

  .door-panel-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 28%;
    height: 100%;
    background: linear-gradient(90deg, #d0d5de 0%, #b8bdc8 40%, #c8cdd6 100%);
    transform-origin: right center;
    transform: perspective(1200px) rotateY(62deg);
    box-shadow: -8px 0 20px rgba(0,0,0,0.4);
  }

  .door-panel-right::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 15%;
    width: 8px;
    height: 18px;
    background: #999;
    border-radius: 2px;
  }

  /* Interior of truck */
  .truck-int {
    position: absolute;
    left: 28%;
    right: 28%;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, #c8d4e8 0%, #dce8f8 15%, #eef4fc 80%, #d0d8e8 100%);
    overflow: hidden;
  }

  /* Ceiling strip lights */
  .int-ceiling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: #b0bcd0;
    display: flex;
    gap: 8px;
    padding: 7px 20px;
    align-items: center;
    justify-content: space-around;
  }

  .int-light {
    flex: 1;
    height: 10px;
    background: linear-gradient(180deg, #fff 0%, #e8f0ff 100%);
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(200,220,255,0.9), 0 0 30px rgba(180,210,255,0.6);
  }

  /* Left shelving */
  .int-shelf-l {
    position: absolute;
    left: 0;
    top: 28px;
    bottom: 30px;
    width: 36%;
    display: flex;
    flex-direction: column;
    border-right: 3px solid #b0bac8;
  }

  /* Right shelving */
  .int-shelf-r {
    position: absolute;
    right: 0;
    top: 28px;
    bottom: 30px;
    width: 36%;
    display: flex;
    flex-direction: column;
    border-left: 3px solid #b0bac8;
  }

  .shelf-seg {
    flex: 1;
    border-bottom: 3px solid #c0c8d8;
    overflow: hidden;
  }

  /* Colorful products on shelves */
  .int-shelf-l .shelf-seg:nth-child(1) {
    background: linear-gradient(90deg, #98d060 0%, #c8e050 25%, #f0b838 50%, #f08828 75%, #e86040 95%);
  }
  .int-shelf-l .shelf-seg:nth-child(2) {
    background: linear-gradient(90deg, #68b828 0%, #90c830 20%, #b8d030 45%, #d8c040 65%, #e89820 85%);
  }
  .int-shelf-l .shelf-seg:nth-child(3) {
    background: linear-gradient(90deg, #d83828 0%, #e84838 20%, #f07050 40%, #d89050 60%);
  }
  .int-shelf-l .shelf-seg:nth-child(4) {
    background: linear-gradient(90deg, #289028 0%, #40a830 20%, #78b828 45%, #b0c830 65%);
  }
  .int-shelf-l .shelf-seg:nth-child(5) {
    background: linear-gradient(90deg, #b83020 0%, #c83828 20%, #a82818 45%);
  }

  .int-shelf-r .shelf-seg:nth-child(1) {
    background: linear-gradient(270deg, #d8e888 0%, #c0d878 30%, #a8c8c0 55%, #88b0c8 80%);
  }
  .int-shelf-r .shelf-seg:nth-child(2) {
    background: linear-gradient(270deg, #f0ead8 0%, #e0d8c0 30%, #c8c0a8 55%, #b0a888 80%);
  }
  .int-shelf-r .shelf-seg:nth-child(3) {
    background: linear-gradient(270deg, #d8e0f0 0%, #c0d0e8 30%, #a8c0d8 55%, #90a8c8 80%);
  }
  .int-shelf-r .shelf-seg:nth-child(4) {
    background: linear-gradient(270deg, #f0d8c0 0%, #e8c8a8 30%, #d8b890 55%, #c8a878 80%);
  }
  .int-shelf-r .shelf-seg:nth-child(5) {
    background: linear-gradient(270deg, #c8d8c0 0%, #b0c8b0 30%, #98b8a0 55%, #80a888 80%);
  }

  /* Depth glow in center */
  .int-depth {
    position: absolute;
    top: 28px;
    left: 36%;
    right: 36%;
    bottom: 30px;
    background: linear-gradient(180deg, #e0ecfc 0%, #f0f6ff 40%, #e8f0fc 100%);
    box-shadow: inset 0 0 60px rgba(180,210,255,0.5);
  }

  /* Floor */
  .int-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg, #c0c8d4 0%, #a8b0bc 100%);
  }

  /* Person figure */
  .person-fig {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 14%;
  }

  .person-fig svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  }

  /* Truck bottom / red light */
  .truck-bottom-strip {
    position: absolute;
    bottom: 0;
    left: 28%;
    right: 28%;
    height: 12px;
    background: #606670;
  }

  .truck-tail-light {
    position: absolute;
    bottom: 2px;
    right: 35%;
    width: 18px;
    height: 8px;
    background: #ff5010;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255,80,16,0.9);
  }

  /* Ground path leading to truck */
  .ground-path {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 5;
    background: transparent;
  }

  /* Ice/frost on ground */
  .ice-left {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 22%;
    height: 80px;
    z-index: 5;
    background: linear-gradient(135deg, #c8d8f0 0%, #a0b8e0 30%, #d0dff5 60%, transparent 100%);
    clip-path: polygon(0% 100%, 5% 70%, 15% 80%, 25% 50%, 40% 65%, 55% 40%, 70% 55%, 85% 30%, 100% 50%, 100% 100%);
    opacity: 0.5;
  }

  .ice-right {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 20%;
    height: 70px;
    z-index: 5;
    background: linear-gradient(225deg, #c8d8f0 0%, #a0b8e0 30%, #d0dff5 60%, transparent 100%);
    clip-path: polygon(0% 50%, 15% 30%, 30% 55%, 45% 40%, 60% 65%, 75% 50%, 90% 70%, 100% 100%, 0% 100%);
    opacity: 0.4;
  }

  /* Ambient glow from inside truck */
  .truck-glow {
    position: absolute;
    left: 28%;
    right: 28%;
    bottom: 0;
    height: 300px;
    background: radial-gradient(ellipse at 50% 100%, rgba(160,200,255,0.3) 0%, transparent 70%);
    z-index: 3;
    pointer-events: none;
  }
  /* ───── JD MODAL ───── */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.55);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 150px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    overflow: hidden;
  }
  .overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .overlay .modal {
    background: #fff;
    border-radius: 0;
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 44px 72px 48px;
    position: relative;
    margin: 0 auto;
    font-family: 'DM Sans', 'Open Sans', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #c5d5e8 transparent;
  }
  }
  .overlay.active .modal { transform: translateY(0) scale(1); }
  .overlay .modal::-webkit-scrollbar { width: 6px; }
  .overlay .modal::-webkit-scrollbar-thumb { background: #c5d5e8; border-radius: 99px; }
  .close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0d4f8c;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .close-btn:hover { background: #0a3d6e; }
  .jd-title { font-size: 28px; font-weight: 700; color: #0d4f8c; margin-bottom: 10px; }
  .jd-location { font-size: 16px; color: #222; margin-bottom: 24px; }
  .jd-section-label { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 8px; }
  .jd-desc { font-size: 15px; color: #333; line-height: 1.7; margin-bottom: 12px; }
  .jd-list { list-style: none; margin-bottom: 24px; }
  .jd-list li { font-size: 15px; color: #333; line-height: 1.7; padding-left: 18px; position: relative; margin-bottom: 4px; }
  .jd-list li::before { content: "·"; position: absolute; left: 4px; color: #555; font-size: 20px; line-height: 1.4; }
  .jd-divider { border: none; border-top: 1px solid #e4eaf2; margin: 20px 0 28px; }
  .careers-title { font-size: 22px; font-weight: 700; color: #0d4f8c; margin-bottom: 24px; }
  .jd-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 36px; }
  .jd-form-field { border-bottom: 1.5px solid #b0bec5; padding-bottom: 10px; position: relative; }
  .jd-form-field input, .jd-form-field select { border: none; outline: none; font-family: inherit; font-size: 18px; color: #111; background: transparent; width: 100%; padding: 12px 0 8px; appearance: none; -webkit-appearance: none; }
  .jd-form-field input::placeholder { color: #888; }
  .jd-form-field select { color: #888; cursor: pointer; }
  .jd-form-field select.filled { color: #111; }
  .jd-select-wrap { position: relative; }
  .jd-select-wrap::after { content: "▾"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); color: #555; font-size: 13px; pointer-events: none; }
  .jd-upload-field { border-bottom: 1.5px solid #b0bec5; padding-bottom: 4px; }
  .jd-upload-inner { display: flex; align-items: center; justify-content: space-between; padding: 6px 0 4px; }
  .jd-upload-label { font-size: 15px; color: #888; cursor: pointer; }
  .jd-upload-icon { font-size: 19px; color: #555; cursor: pointer; }
  .jd-upload-hint { font-size: 12px; color: #888; margin-top: 5px; }
  #jdResumeInput { display: none; }
  .jd-submit-row { margin-top: 28px; }
  .jd-submit-btn { background: #0d4f8c; color: #fff; border: none; padding: 14px 0; width: 48%; border-radius: 50px; font-family: inherit; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
  .jd-submit-btn:hover { background: #0a3d6e; }

  .cta-outer { background: #fff; padding: 0 180px; }

  @media (max-width: 768px) {
    nav { padding: 32px 16px; }
    .nav-menu { display: none; }
    .logo img { width: 139px; height: 57px; }

    .side-buttons-wrap { display: none; }

    .hero { height: 545px; }
    .hero-content { bottom: 40px; left: 20px; right: 20px; max-width: calc(100% - 40px); }
    .hero-content h1 { font-size: 28px; white-space: normal; }
    .hero-content p { font-size: 14px; white-space: normal; }

    .jobs-section { padding: 40px 20px 0; }
    .jobs-grid { grid-template-columns: 1fr; max-width: 100%; }

    .job-card { padding: 24px 20px; }
    .job-title { font-size: 22px; }
    .job-exp { font-size: 15px; }
    .btn-apply { font-size: 16px; padding: 10px 22px; }

    .cta-outer { padding: 0 20px; }
    .cta-section { padding: 40px 0 0; }
    .cta-heading { font-size: 22px; margin-bottom: 28px; }

    .form-wrapper { padding: 28px 20px 36px; margin: 0 16px 48px; max-width: calc(100% - 32px); }
    .form-grid { grid-template-columns: 1fr; gap: 0; }
    .btn-submit { width: 100%; }

    .footer .container { padding: 0 20px; }
    .footer .footer-top { flex-direction: column; gap: 24px; }
    .footer-brand { width: 100%; }
    .footer-desc { font-size: 16px; margin-bottom: 16px; }
    .footer-local { font-size: 16px; margin-bottom: 24px; }
    .career-btn { gap: 43px; padding: 12px 12px 12px 24px; }
    .career-btn span { font-size: 16px; }
    .btn-enquire { padding: 12px 24px; font-size: 16px; }
    .footer-links { flex-direction: column; gap: 56px; }
    .footer .footer-col h4 { font-size: 16px; margin-bottom: 16px; }
    .footer .footer-col ul li a { font-size: 16px; line-height: 24px; }
    .footer .footer-divider { margin: 53px 0 32px; }
    .footer-bottom { flex-direction: column; gap: 32px; align-items: flex-start; }
    .footer .footer-addresses { flex-direction: column; gap: 24px; }
    .footer-address-col { padding-left: 16px !important; border-left: 2px solid #fff !important; padding-right: 0 !important; }
    .footer-bottom-right { align-items: flex-start; }
    .footer-bottom-left h4 { font-size: 16px; margin-bottom: 16px; }
    .address-heading { font-size: 16px; }
    .footer-address-col p { font-size: 16px; }
    .social-icons { gap: 24px; }
    .social-icons a { width: 32px; height: 32px; }
    .social-icons img { width: 32px; height: 32px; }
    .copyright { font-size: 14px; }

    .overlay { padding: 0; }
    .overlay .modal { padding: 24px 20px 36px; }
    .jd-form-grid { grid-template-columns: 1fr; gap: 0; }
    .jd-submit-btn { width: 100%; }
    .jd-title { font-size: 22px; }
