  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #111;
  }



  /* HERO */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 60px;
    position: relative;
    background-image: url('../image/mainbg2.webp');
    background-size: 100% 100%;
  }

  .hero-text {
    max-width: 600px;
    z-index: 1;
  }

  .hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
  }

  .hero-text a {
    background: #e60000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .hero-text a:hover {
    background: #b80000;
    transform: translateY(-2px);
  }


  .products-panel {
    position: absolute;
    right: 60px;
    top: 10px;
    width: 390px;
    background: #f6f8ff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 25px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(50px);
    transition: all 0.4s ease;
    z-index: 2;
  }

  .products-panel.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .panel-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #555;
  }

  .products-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .product-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .product-card img {
    width: 26px;
    height: 26px;
    margin-top: 2px;
  }

  .product-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
  }

  .product-info p {
    margin: 3px 0 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
  }

  .product-card:hover {
    background: #f5c5b6;
  }

  .export-btn {
    margin-top: 25px;
    display: block;
    background: none;
    color: #e60000;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    text-decoration: none;
    transition: color 0.3s;
  }

  .export-btn:hover {
    color: #f57f7f;
  }


  /* VALUE SECTION */
  .value {
    background: #fff;
    text-align: center;
    padding: 80px 60px;
  }

  .value h2 {
    font-size: 2.2rem;
    color: #b42104;
    margin-bottom: 40px;
  }

  .value h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: normal;
  }

  .value h4 {
    color: #203e4d;
  }

  .value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
  }

  .value-card {
    background: #f8faff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
  }

  .value-card:hover {
    border-color: #e60000;
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(237, 182, 182, 0.1);
  }

  .value-card img {
    width: 40px;
    margin-bottom: 15px;
  }

  .value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .value-card p {
    font-size: 0.95rem;
    color: #444;
  }

  /* SLIDESHOW */
  .slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }

  .mySlides {
    display: none;
  }

  .mySlides img {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }

  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-size: 20px;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
  }

  .next {
    right: 0;
  }

  .prev:hover,
  .next:hover {
    background: rgba(0, 0, 0, 0.8);
  }

  .dots {
    text-align: center;
    margin-top: 15px;
  }

  .dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: background 0.3s;
  }

  .active,
  .dot:hover {
    background: #dde3ee;
  }


  /* Footer */
  /* footer {
      background-color: #121111;
      color: #cbd5e1;
      padding: 36px 24px
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 18px;
      max-width: var(--container-max);
      margin: 0 auto
    }

    footer a {
      color: #cbd5e1;
      display: block;
      margin: 6px 0
    } */



  /* NAVBAR */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  nav .logo img {
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  nav .logo img:hover {
    transform: scale(1.1);
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: auto;
  }

  nav ul li {
    cursor: pointer;
    position: relative;
  }

  nav ul li:hover {
    color: #e60000;
  }

  /* new one css nav bar animation */
  nav ul li {
    cursor: pointer;
    position: relative;
    padding: 5px 0;
  }

  nav ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #e60000;
    transition: width 0.3s ease;
  }

  nav ul li:hover::after {
    width: 100%;
  }

  nav ul li ul {
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    padding: 10px 0;
    list-style: none;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  nav ul li:hover ul {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  nav ul li ul li {
    padding: 10px 20px;
    white-space: nowrap;
  }

  nav ul li ul li:hover {
    background: #f6f6f6;
    color: #e60000;
  }

  nav {
    animation: slideDown 0.6s ease;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-80px);
      opacity: 0;
    }

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

  /* nav.sticky {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: 0.3s ease;
    } */

  ul li a {
    text-decoration: none;
    /* removes underline */
    color: inherit;
    /* keeps the text color same as the parent */
  }
      /* --- BUTTON --- */
    .nav-btn {
      background: #e60000;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .nav-btn:hover {
      background: #0f4c91;
      transform: scale(1.05);
    }

  #About a {
    text-decoration: none;
  }

  html {
    scroll-behavior: smooth;
  }


  /* Footer */
  /* footer {
    background-color: #121111;
    color: #cbd5e1;
    padding: 36px 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    max-width: var(--container-max);
    margin: 0 auto
}

footer a,
h4,
p {
    text-align: left;
    color: #cbd5e1;
    display: block;
    margin: 6px 0
} */

  /* ==============================
       FOOTER
    ============================== */
  footer {
    background-color: #121111;
    color: #cbd5e1;
    padding: 36px 24px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
  }

  footer a,
  footer h4,
  footer p {
    text-align: left;
    color: #cbd5e1;
    display: block;
    margin: 6px 0;
  }

  footer a {
    text-decoration: none;
  }

  footer h4 {
    margin-bottom: 18px;
    /* creates space below the heading */
  }

  footer a:hover {
    color: #f04b4b;
  }

  hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 20px;
  }

  @media (max-width: 600px) {
    footer {
      text-align: center;
    }

    footer a,
    footer h4,
    footer p {
      text-align: center;
    }
  }

  hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 20px;
    /* space above the line */

    /* translucent white */
  }

  /* mobile */
  /* === MOBILE & TABLET RESPONSIVE === */

  /* Tablet (<=1024px) */
  @media (max-width: 1024px) {
    nav {
      padding: 15px 30px;
    }

    .hero {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 60px 30px;
    }

    .hero-text h1 {
      font-size: 2.4rem;
    }

    .hero-text p {
      font-size: 1rem;
    }

    .products-panel {
      position: static;
      width: 100%;
      margin-top: 30px;
      transform: none;
      opacity: 1;
      pointer-events: auto;
    }

    .value {
      padding: 60px 30px;
    }

    .value h2 {
      font-size: 2rem;
    }

    .value-grid {
      gap: 25px;
    }
  }

  /* Mobile (<=768px) */
  @media screen and (min-width: 320px) and (max-width: 900px) {

    nav ul {
      display: none;
      flex-direction: column;
      align-items: center;
      /* ✅ centers the items horizontally */
      justify-content: center;
      /* ✅ optional – centers vertically if needed */
      background: #fff;
      position: absolute;
      top: 60px;
      left: 50%;
      gap: 15px;
      /* ✅ move to center */
      transform: translateX(-50%);
      /* ✅ truly center the dropdown */
      width: 100%;
      /* ✅ full width (optional, can use 220px if preferred) */
      border-radius: 0 0 8px 8px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
      text-align: center;
      /* ✅ centers text inside <a> links */
    }
        .nav-btn {
        width: 90%;
        margin: 10px auto;
        display: block;
    }


    nav ul.show {
      display: flex;
      /* show when toggled */
    }


    .hamburger {
      display: block;
      cursor: pointer;
      width: 28px;
      height: 20px;
      position: relative;
    }

    .hamburger span {
      position: absolute;
      height: 3px;
      width: 100%;
      background: #111;
      left: 0;
      transition: all 0.3s ease;
    }

    .hamburger span:nth-child(1) {
      top: 0;
    }

    .hamburger span:nth-child(2) {
      top: 8px;
    }

    .hamburger span:nth-child(3) {
      top: 16px;
    }

    /* Animate toggle */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 8px;
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg);
      top: 8px;
    }

    .hero {
      padding: 50px 20px;
    }

    .hero-text h1 {
      font-size: 1.9rem;
    }

    .hero-text p {
      font-size: 0.95rem;
    }

    .value-card {
      padding: 20px;
    }

    footer {
      text-align: center;
    }

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