  :root {
      --primary-red: #931d1d;
      --dark-gray: #616161;
      --text-color: #333333;
      --white: #ffffff;
      --transition: all 0.3s ease-in-out;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Montserrat', sans-serif;
      padding-top: 90px;
      /* Space for sticky header */
  }

  /* --- Header Styles --- */
  .jj-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 90px;
      background: var(--white);
      display: flex;
      align-items: center;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
      z-index: 1000;
      transition: var(--transition);
  }

  .container {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  /* Logo */
  .logo img {
      height: 65px;
      width: auto;
      display: block;
  }

  /* --- Desktop Navigation --- */
  .desktop-nav {
      display: flex;
      align-items: center;
      gap: 30px;
  }

  .nav-menu {
      display: flex;
      list-style: none;
      gap: 25px;
  }

  .nav-item {
      position: relative;
  }

  .nav-link {
      text-decoration: none;
      color: black;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 10px 0;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 5px;
  }

  .nav-link:hover {
      color: var(--primary-red);
  }

  /* Desktop Dropdown */
  .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      min-width: 250px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      list-style: none;
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      border-top: 3px solid var(--primary-red);
  }

  .nav-item:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .dropdown a {
      display: block;
      padding: 12px 20px;
      text-decoration: none;
      color: black;
      font-size: 15px;
      font-weight: 600;
      transition: var(--transition);
  }

  .dropdown a:hover {
      background: #f9f9f9;
      color: var(--primary-red);
  }

  /* --- Button Style --- */
  .enquire-btn {
      background-color: var(--primary-red);
      color: var(--white);
      padding: 12px 24px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: var(--transition);
      border: 2px solid var(--primary-red);
  }

  .enquire-btn:hover {
      background-color: transparent;
      color: var(--primary-red);
  }

  /* --- Mobile Toggle --- */
  .mobile-toggle {
      display: none;
      cursor: pointer;
      font-size: 28px;
      color: var(--dark-gray);
  }

  /* --- Mobile Sidebar --- */
  .mobile-overlay {
      position: fixed;
      top: 0;
      right: -100%;
      width: 320px;
      height: 100vh;
      background: var(--white);
      z-index: 2000;
      transition: 0.4s ease-in-out;
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
      padding: 60px 0 30px 0;
      overflow-y: auto;
  }

  .mobile-overlay.active {
      right: 0;
  }

  .close-btn {
      position: absolute;
      top: 20px;
      right: 25px;
      font-size: 35px;
      color: var(--dark-gray);
      cursor: pointer;
  }

  .mobile-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
  }

  .mobile-menu li {
      border-bottom: 1px solid #eeeeee;
  }

  .mobile-link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 30px;
      text-decoration: none;
      color: var(--text-color);
      font-weight: 700;
      font-size: 16px;
      text-transform: uppercase;
  }

  /* Mobile Dropdown Logic */
  .mobile-submenu {
      background: #fcfcfc;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
  }

  .mobile-submenu.open {
      max-height: 200px;
  }

  .mobile-submenu a {
      display: block;
      padding: 12px 50px;
      text-decoration: none;
      color: black;
      font-size: 15px;
      font-weight: 600;
  }

  .arrow-icon {
      transition: transform 0.3s;
      font-size: 12px;
  }

  .arrow-icon.rotate {

      transform: rotate(180deg);
  }

  .mobile-cta {
      padding: 30px;
      text-align: center;
  }

  /* --- Responsive Viewports --- */
  @media (max-width: 1024px) {

      .desktop-nav,
      .container>.enquire-btn {
          display: none;
      }

      .mobile-toggle {
          display: flex;
          align-items: center;
          gap: 15px;
      }

      .enquire-btn {
          display: none;
      }

      .jj-header {
          height: 80px;
      }
  }


  /* --- Footer Styles --- */
  .jj-footer {
      background-color: black;
      color: white;
      padding: 80px 0 0 0;
      position: relative;
  }

  .footer-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 25px;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
      gap: 40px;
  }

  /* Column 1: Brand Profile */
  .footer-about .footer-logo {
      height: 70px;
      margin-bottom: 20px;
      /* Makes logo white for dark bg */
  }


  @media (max-width: 767px) {
      .footer-about .footer-logo {
          display: block;
          margin-left: auto;
          margin-right: auto;
          text-align: center;
      }
  }

  .footer-about p {
      font-size: 14px;
      line-height: 1.6;
      color: #ffffff;
      margin-bottom: 20px;
  }

  /* Column Headers */
  .footer-column h4 {
      color: var(--white);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 25px;
      position: relative;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .footer-column h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 40px;
      height: 2px;
      background-color: var(--primary-red);
  }

  /* Column 2: Quick Links */
  .footer-links {
      list-style: none;
  }

  .footer-links li {
      margin-bottom: 12px;
  }

  .footer-links a {
      color: #ffffff;
      text-decoration: none;
      font-size: 14px;
      transition: var(--transition);
      display: inline-block;
  }

  .footer-links a:hover {
      color: white;
      transform: translateX(5px);
  }

  /* Column 3: Services List */
  .footer-services {
      list-style: none;
  }

  .footer-services li {
      font-size: 13px;
      color: #ffffff;
      margin-bottom: 10px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
  }

  .footer-services li::before {
      content: '•';
      color: var(--primary-red);
      font-weight: bold;
      margin-right: 10px;
  }

  /* Column 4: Locations */
  .location-item {
      margin-bottom: 20px;
  }

  .location-item strong {
      display: block;
      color: var(--primary-red);
      font-size: 13px;
      margin-bottom: 5px;
      text-transform: uppercase;
  }

  .location-item p {
      font-size: 13px;
      color: #ffffff;
      line-height: 1.4;
  }

  /* --- Bottom Bar --- */
  .footer-bottom {
      margin-top: 60px;
      padding: 25px 0;
      border-top: 1px solid #333;
      background-color: #111;
  }

  .bottom-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
  }

  .bottom-container p {
      font-size: 13px;
      color: #ffffff;
  }

  .social-links {
      display: inline-flex;
      gap: 15px;
  }

  @media (max-width: 768px) {
      .social-links {
        display: flex; 
        justify-content: center; 
        gap: 15px;
    }
  }


  .social-icon {
      width: 35px;
      height: 35px;
      background: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: var(--transition);
      color: white;
      text-decoration: none;
  }

  .social-icon:hover {
      background: var(--primary-red);
  }

  /* --- Responsive Design --- */
  @media (max-width: 1024px) {
      .footer-container {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (max-width: 768px) {
      .jj-footer {
          padding: 60px 0 0 0;
      }

      .footer-container {
          grid-template-columns: 1fr;
          text-align: center;
      }

      .footer-column h4::after {
          left: 50%;
          transform: translateX(-50%);
      }

      .footer-services li {
          justify-content: center;
      }

      .bottom-container {
          justify-content: center;
          text-align: center;
      }
  }


  /* QR Code Styles */
  .footer-qr-wrapper {
      margin-top: 25px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
  }

  .footer-qr-code {
      width: 100px;
      /* Small and unobtrusive */
      height: 100px;
      border-radius: 8px;
      border: 2px solid #333;
      /* Dark border to blend with black bg */
      padding: 5px;
      background: white;
      /* Necessary so the QR is scannable */
      transition: transform 0.3s ease;
  }

  .footer-qr-code:hover {
      transform: scale(1.05);
      border-color: var(--primary-red);
  }

  .footer-qr-wrapper span {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #eee4e4;
  }

  /* Responsive adjustment for QR */
  @media (max-width: 768px) {
      .footer-qr-wrapper {
          align-items: center;
          margin-bottom: 30px;
      }
  }


  .hero-sec {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
  }

  /* SLIDER */
  .hero-sec-slider {
      position: absolute;
      inset: 0;
  }

  .hero-sec-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 1.2s ease, transform 6s ease;
  }

  .hero-sec-slide.active {
      opacity: 1;
      transform: scale(1);
  }

  /* OVERLAY */
  .hero-sec-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.28);
      z-index: 2;
  }

  /* CONTENT */
  .hero-sec-content {
      position: relative;
      z-index: 3;
      height: 100%;
      max-width: 900px;
      margin: auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
  }

  .hero-sec-content h1 {
      font-size: 56px;
      font-weight: 700;
      margin-bottom: 18px;
  }

  .hero-sec-content p {
      font-size: 18px;
      opacity: 0.9;
      margin-bottom: 28px;
  }

  /* BUTTON */
  .hero-sec-btn {
      display: inline-block;
      background: #931d1d;
      color: #fff;
      padding: 14px 34px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease;
  }

  .hero-sec-btn:hover {
      background: #7b1717;
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
      .hero-sec-content h1 {
          font-size: 38px;
      }

      .hero-sec-content p {
          font-size: 16px;
      }
  }

  @media (max-width: 575px) {
      .hero-sec-content h1 {
          font-size: 30px;
      }
  }



  .jj-about {
      padding: 100px 20px;
      background: #f9f9f9;
  }

  .jj-about-container {
      max-width: 1300px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
  }

  /* CONTENT */
  .jj-about-tag {
      display: inline-block;
      margin-bottom: 14px;
      color: #931d1d;
      font-weight: 600;
      letter-spacing: 1px;
      font-size: 13px;
      text-transform: uppercase;
  }

  .jj-about-content h2 {
      font-size: 42px;
      line-height: 1.25;
      margin-bottom: 22px;
      color: #111;
  }

  .jj-about-content p {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 18px;
      max-width: 520px;
  }

  /* STATS */
  .jj-about-stats {
      display: flex;
      gap: 40px;
      margin: 34px 0 40px;
  }

  .jj-stat h3 {
      font-size: 28px;
      color: #931d1d;
      margin-bottom: 6px;
  }

  .jj-stat span {
      font-size: 14px;
      color: #666;
  }

  /* BUTTON */
  .jj-about-btn {
      display: inline-block;
      padding: 14px 34px;
      background: #931d1d;
      color: #fff;
      text-decoration: none;
      border-radius: 40px;
      font-weight: 600;
      transition: background 0.3s ease;
  }

  .jj-about-btn:hover {
      background: #7b1717;
  }

  /* RIGHT IMAGE */
  .jj-about-image {
      width: 100%;
      height: 100%;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  }

  .jj-about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
      .jj-about-container {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .jj-about-content h2 {
          font-size: 34px;
      }

      .jj-about-stats {
          flex-wrap: wrap;
          gap: 24px;
      }

      .jj-about-image {
          height: 360px;
      }
  }

  @media (max-width: 575px) {
      .jj-about {
          padding: 70px 20px;
      }

      .jj-about-content h2 {
          font-size: 28px;
      }

      .jj-about-image {
          height: 260px;
      }
  }





  .services-jj {
      position: relative;
      /* Height controls scroll duration; adjusted to prevent bottom gap */
      height: 400vh;
  }

  .services-jj-bg {
      position: absolute;
      inset: 0;
      background-image: url('banner/banner-service.webp');
      background-size: cover;
      background-position: center;
      z-index: 1;
  }

  .services-jj-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      z-index: 2;
  }

  .services-jj-sticky-box {
      position: sticky;
      top: 10%;
      height: 700px;
      width: 100%;
      overflow: hidden;
      z-index: 3;
      display: flex;
      align-items: center;
  }

  .services-jj-wrapper {
      max-width: 1300px;
      margin: auto;
      width: 100%;
      height: 580px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      padding: 0 20px;
  }

  .services-jj-left {
      height: 100%;
      overflow: hidden;
      border-radius: 24px;
  }

  .services-jj-images-track {
      display: flex;
      flex-direction: column;
      will-change: transform;
  }

  .services-jj-image {
      width: 100%;
      height: 580px;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
      margin-bottom: 20px;
      border-radius: 24px;
  }

  .services-jj-right {
      height: 100%;
      display: flex;
      align-items: center;
  }

  .services-jj-content {
      background: #fff;
      color: #000;
      padding: 50px;
      border-radius: 24px;
      width: 100%;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }

  .services-jj-content h2 {
      font-size: 36px;
      margin-bottom: 25px;
      font-weight: 600;
  }

  .services-jj-content ul {
      list-style: none;
      padding: 0;
  }

  .services-jj-content li {
      font-size: 18px;
      margin-bottom: 12px;
      font-weight: 500;
      padding-left: 25px;
      position: relative;
  }

  .services-jj-content li::before {
      content: "—";
      position: absolute;
      left: 0;
      color: #931d1d;
      font-weight: bold;
  }

  /* MOBILE VIEW - CONTENT FIXED */
  @media (max-width: 991px) {
      .services-jj {
          height: auto;
      }

      .services-jj-sticky-box {
          position: relative;
          height: auto;
          padding: 50px 0;
          overflow: visible;
      }

      .services-jj-wrapper {
          display: flex;
          flex-direction: column;
          height: auto;
          gap: 30px;
      }

      .services-jj-right {
          order: 1;
          display: block;
          height: auto;
      }

      .services-jj-left {
          order: 2;
          height: auto;
          overflow: visible;
      }

      .services-jj-content {
          background: #fff;
          /* Keep the card style for visibility */
          padding: 30px;
          color: #000;
          text-align: left;
          margin-bottom: 0;
      }

      .services-jj-content h2 {
          font-size: 28px;
          text-align: center;
      }

      .services-jj-content ul {
          display: block;
          /* Ensure list is visible on mobile */
      }

      .services-jj-image {
          height: 300px;
          margin-bottom: 20px;
      }
  }



  .clients {
      padding: 90px 20px;
      background: #f3e1c8;
      /* warm premium tone */
  }

  .clients-container {
      max-width: 1300px;
      margin: auto;
      overflow: hidden;
  }

  .clients-title {
      text-align: center;
      font-size: 42px;
      font-weight: 500;
      letter-spacing: 1px;
      margin-bottom: 50px;
      color: #111;
  }

  /* SLIDER */
  .clients-slider {
      position: relative;
      overflow: hidden;
  }

  .clients-track {
      display: flex;
      gap: 30px;
      width: max-content;
      animation: clients-scroll 35s linear infinite;
  }

  .clients-slider:hover .clients-track {
      animation-play-state: paused;
  }

  /* LOGO CARD */
  .client-logo {
      flex: 0 0 auto;
      width: 220px;
      height: 120px;
      background: #fff;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }

  .client-logo img {
      max-width: 75%;
      max-height: 65%;
      object-fit: contain;
      /* filter: grayscale(100%); */
      transition: filter 0.3s ease, transform 0.3s ease;
  }

  .client-logo:hover img {
      filter: grayscale(0%);
      transform: scale(1.05);
  }

  /* ANIMATION */
  @keyframes clients-scroll {
      from {
          transform: translateX(0);
      }

      to {
          transform: translateX(-50%);
      }
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
      .clients-title {
          font-size: 32px;
      }

      .client-logo {
          width: 180px;
          height: 100px;
      }
  }

  @media (max-width: 575px) {
      .clients-title {
          font-size: 26px;
      }

      .client-logo {
          width: 150px;
          height: 90px;
      }
  }



  .cout-num {
      background: #fff;
      padding: 100px 20px;
  }

  .cout-num-container {
      max-width: 1200px;
      margin: auto;
  }

  /* HEADER */
  .cout-num-header {
      text-align: center;
      margin-bottom: 70px;
  }

  .cout-num-header h2 {
      font-size: 42px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #111;
  }

  .cout-num-header p {
      font-size: 16px;
      color: #666;
  }

  /* GRID */
  .cout-num-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
  }

  /* CARD */
  .cout-num-card {
      background: #fafafa;
      border-radius: 20px;
      padding: 50px 30px;
      text-align: center;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
  }

  .cout-num-card:hover {
      transform: translateY(-6px);
  }

  .cout-num-card h3 {
      font-size: 48px;
      font-weight: 700;
      color: #931d1d;
      margin-bottom: 12px;
  }

  .cout-num-card p {
      font-size: 15px;
      color: #444;
      line-height: 1.5;
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
      .cout-num-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
      }

      .cout-num-header h2 {
          font-size: 34px;
      }
  }

  @media (max-width: 575px) {
      .cout-num {
          padding: 70px 18px;
      }

      .cout-num-grid {
          grid-template-columns: 1fr;
          gap: 24px;
      }

      .cout-num-header h2 {
          font-size: 28px;
      }

      .cout-num-card h3 {
          font-size: 40px;
      }
  }




  .jj-location {
      background: #000000;
      /* olive-brown tone */
      padding: 90px 20px;
      color: #fff;
  }

  .jj-location-container {
      max-width: 1300px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 70px;
      align-items: center;
  }

  /* LEFT CONTENT */
  .jj-location-content h2 {
      font-size: 48px;
      letter-spacing: 2px;
      font-weight: 500;
      margin-bottom: 24px;
      text-transform: uppercase;
  }

  .jj-location-content p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 18px;
      color: #f1f1f1;
  }

  .jj-location-content strong {
      color: #ffffff;
      font-weight: 600;
  }

  /* RIGHT IMAGE GRID */
  .jj-location-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 18px;
  }

  .jj-location-image {
      border-radius: 16px;
      overflow: hidden;
  }

  .jj-location-image.large {
      grid-row: span 2;
  }

  .jj-location-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
      .jj-location-container {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .jj-location-content h2 {
          font-size: 36px;
      }

      .jj-location-images {
          grid-template-columns: 1fr 1fr;
      }

      .jj-location-image.large {
          grid-row: auto;
      }
  }

  @media (max-width: 575px) {
      .jj-location {
          padding: 70px 20px;
      }

      .jj-location-content h2 {
          font-size: 28px;
      }

      .jj-location-content p {
          font-size: 15px;
      }

      .jj-location-images {
          grid-template-columns: 1fr;
      }
  }



  .testimonial {
      background: #ffffff;
      padding: 100px 20px;
  }

  .testimonial-container {
      max-width: 1200px;
      margin: auto;
  }

  /* HEADER */
  .testimonial-header {
      text-align: center;
      margin-bottom: 40px;
  }

  .testimonial-header h2 {
      font-size: 42px;
      font-weight: 600;
      color: #111;
      margin-bottom: 10px;
  }

  .testimonial-header p {
      font-size: 16px;
      color: #666;
  }

  /* SLIDER */
  .testimonial-slider {
      overflow: hidden;
  }

  .testimonial-track {
      display: flex;
      transition: transform 0.6s ease;
  }

  /* CARD */
  .testimonial-card {
      min-width: 100%;
      /* padding: 50px 40px; */
      text-align: center;
  }

  .testimonial-card p {
      font-size: 17px;
      line-height: 1.7;
      color: #444;
      max-width: 800px;
      margin: auto;
      margin-bottom: 26px;
  }

  .testimonial-card h4 {
      font-size: 18px;
      font-weight: 600;
      color: #931d1d;
      margin-bottom: 6px;
  }

  .testimonial-card span {
      font-size: 14px;
      color: #777;
  }

  /* DOTS */
  .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
  }

  .testimonial-dots .dot {
      width: 10px;
      height: 10px;
      background: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s ease;
  }

  .testimonial-dots .dot.active {
      background: #931d1d;
  }

  /* RESPONSIVE */
  @media (max-width: 991px) {
      .testimonial-header h2 {
          font-size: 34px;
      }

      .testimonial-card p {
          font-size: 16px;
          padding: 0 10px;
      }
  }

  @media (max-width: 575px) {
      .testimonial {
          padding: 70px 18px;
      }

      .testimonial-header h2 {
          font-size: 28px;
      }

      .testimonial-card {
          padding: 40px 20px;
      }
  }



  /* Smooth fade class */
  .project-hidden {
      opacity: 0;
      transform: scale(0.95);
      pointer-events: none;
      position: absolute;
      /* Keeps grid from jumping weirdly */
      visibility: hidden;
  }