  body, html {
      overflow-x: hidden;
      width: 100%;
    }

    #navbar, .max-w-7xl, .swiper, .fade-up, section {
      width: 100%;
    }

    * {
      box-sizing: border-box;
    }

    img, iframe {
      max-width: 100%;
      height: auto;
    }
    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      transition: all .8s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fade-in {
      animation: fadeIn 0.4s ease-out;
    }


    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }

    .logo-shimmer {
      filter: brightness(2) drop-shadow(0 0 2px white);
      animation: shine 2s infinite alternate;
    }

    @keyframes shine {
      0% {
        filter: brightness(1.5) drop-shadow(0 0 1px white);
      }

      50% {
        filter: brightness(2.5) drop-shadow(0 0 1px white);
      }

      100% {
        filter: brightness(1.5) drop-shadow(0 0 3px white);
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .animate-float {
      animation: float 6s ease-in-out infinite;
    }

    .animate-float-delayed {
      animation: float 7s ease-in-out infinite;
    }

    .animate-float-slow {
      animation: float 9s ease-in-out infinite;
    }

    @keyframes floatSlow {
    0%, 100% {
      transform: translateY(0) translateX(0);
    }
    50% {
      transform: translateY(-40px) translateX(20px);
    }
  }

  .float-slow {
    animation: floatSlow 18s ease-in-out infinite;
  }

  .float-slower {
    animation: floatSlow 26s ease-in-out infinite reverse;
  }


  .grain::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  /* Swiper pagination bullets */
  .swiper-pagination-bullet {
    background-color: #16a34a; /* Tailwind green-600 */
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 4px !important;
    transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
    width: 15px;
    height: 15px;
    border-radius: 9999px; /* make it fully round */
  }

  /* Container for top executives */
 .executives {
      display: flex;
      justify-content: center;
      gap: 4rem; /* space between President, CFO, CLO */
      position: relative;
      margin-bottom: 6rem;
    }

    .executive {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .box {
      background: white;
      border-radius: 0.75rem;
      padding: 1.25rem;
      border: 1px solid #e5e7eb;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      width: 12rem;
      text-align: center;
      z-index: 10;
    }

    /* President connectors */
    .executive.president .connector-vertical {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 1.5rem;
      background: #d1d5db;
    }

    .executive.president .connector-horizontal {
      position: absolute;
      top: calc(100% + 1.5rem);
      left: 50%;
      transform: translateX(-50%);
      width: 14rem;
      height: 2px;
      background: #d1d5db;
    }

    /* CFO & CLO vertical lines down to shared horizontal */
    .executive.cfo .connector-vertical-cfo {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 1.5rem;
      background: #d1d5db;
    }

    .executive.clo .connector-vertical-clo {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 1.5rem;
      background: #d1d5db;
    }

    /* Second row boxes */
    .boxes-row {
      display: flex;
      justify-content: space-between;
      max-width: 40rem;
      margin: 0 auto;
      position: relative;
    }

    .child-box {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .child-box .box {
      width: 9rem;
      padding: 1rem;
    }

    .connector-vertical-up {
      position: absolute;
      top: -1.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 1.5rem;
      background: #d1d5db;
    }
     .box {
      background:white;
      border-radius:0.75rem;
      padding:1rem;
      border:1px solid #e5e7eb;
      box-shadow:0 2px 6px rgba(0,0,0,0.1);
      width:12rem;
      text-align:center;
      z-index:10;
    }
    .connector-vertical {
      width:2px;
      background:#d1d5db;
    }
    .connector-vertical-up {
      width:2px;
      background:#d1d5db;
    }
    /* Horizontal connector between CFO & CLO to Boxes 3 & 4 */
    .horizontal-branch {
      position: absolute;
      top:0;
      width:12rem; /* adjust span as needed */
      height:2px;
      background:#d1d5db;
    }

  .rule {
    display: block;
    width: 56px;
    height: 3px;
    background: #3d6b4f;
    margin: 0 auto 50px;
    border-radius: 2px;
  }

  .scroll-wrap {
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .chart-canvas {
    position: relative;
    margin: 0 auto;
  }

  .chart-canvas svg {
    position: absolute;
    top: 0; left: 0;
    overflow: visible;
    pointer-events: none;
  }

  .node {
    position: absolute;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(61,107,79,0.20), 0 1px 3px rgba(0,0,0,0.07);
    transition: transform .18s, box-shadow .18s;
    cursor: default;
    border: 1.5px solid rgba(61,107,79,0.25);
  }
  .node:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(61,107,79,0.28), 0 2px 6px rgba(0,0,0,0.09);
  }
  .nt {
    background: linear-gradient(135deg, #3d6b4f 0%, #528c67 100%);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-align: center;
    padding: 5px 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
  }
  .nn {
    background: #fff;
    color: #1c2e23;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    padding: 7px 8px;
    line-height: 1.35;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }