   /* General Styles */
   body {
       margin: 0;
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

       color: #111;
   }

   body {
       margin: 0;
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       background: url('../image/contact-umainbg.webp') no-repeat center center fixed;
       background-size: cover;
       color: #111;
   }


   h2 {
       margin-bottom: 15px;
       font-size: 28px;
   }

   p {
       font-size: 14px;
       color: #090909;
       line-height: 1.6;
   }

   .section {
       padding: 60px 20px;
       text-align: center;
   }

   /* Contact Options */
   .contact-options {
       display: flex;
       justify-content: center;
       gap: 40px;
       margin-top: 40px;
       flex-wrap: wrap;
   }

   .contact-box {
       background: #fff;
       padding: 30px 20px;
       border-radius: 12px;
       width: 280px;
       text-align: center;
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
       transition: all 0.3s ease;
       position: relative;
       overflow: hidden;
   }

   .contact-box:hover {
       transform: translateY(-8px);
       box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
   }

   .contact-box img {
       width: 50px;
       height: 50px;
       margin-bottom: 15px;
   }

   .contact-box h4 {
       margin: 10px 0;
       font-size: 18px;
       color: #222;
   }

   .contact-box button {
       margin-top: 15px;
       padding: 10px 18px;
       border: none;
       background: #ff6600;
       color: #fff;
       cursor: pointer;
       border-radius: 5px;
       font-size: 14px;
       transition: all 0.3s ease;
   }

   .contact-box button:hover {
       background: #e05500;
       transform: scale(1.05);
   }

   /* Track a Case */
   /* .track-case {
      background: #fdfdfd;
      padding: 70px 20px;
    }

    .track-case h2 {
      margin-bottom: 10px;
    }

    .track-form {
      margin-top: 25px;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }

    .track-form input {
      display: block;
      width: 100%;
      margin: 12px 0;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    .track-form button {
      width: 100%;
      padding: 12px;
      background: #333;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 15px;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .track-form button:hover {
      background: #ff6600;
    } */

   /* Need Instant Help */
   .help-section {
       background: #f0f0f0;
       padding: 60px 20px;
   }

   .help-buttons {
       display: flex;
       justify-content: center;
       gap: 30px;
       margin-top: 25px;
       flex-wrap: wrap;
   }

   .help-buttons button {
       padding: 12px 25px;
       border: 2px solid #ccc;
       background: #fff;
       cursor: pointer;
       border-radius: 6px;
       font-size: 14px;
       transition: all 0.3s ease;
   }

   .help-buttons button:hover {
       background: #ff6600;
       color: #fff;
       border-color: #ff6600;
       transform: scale(1.05);
   }

   /* Footer */
   /* footer {
/* ==============================
       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 */
  }


   .backtop.show {
       opacity: 1;
       transform: translateY(0) scale(1)
   }


   /* Responsive */
   @media (max-width: 768px) {
       .contact-options {
           flex-direction: column;
           align-items: center;
       }

       .help-buttons {
           flex-direction: column;
       }
   }

  /* 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);
    }


   html {
       scroll-behavior: smooth;
   }

   /* Contact Section */
   /* Contact Section */
   .contact-section {
       display: flex;
       justify-content: center;
       align-items: center;
       padding: 60px 20px;
       background: url('images/contact-bg.jpg') no-repeat center/cover;
       /* optional background */
   }

   .contact-form {
       background: rgba(15, 23, 42, 0.95);
       /* dark semi-transparent */
       padding: 30px;
       border-radius: 8px;
       box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
       max-width: 600px;
       width: 100%;
   }

   .contact-form h2 {
       text-align: center;
       color: #f1f5f9;
       margin-bottom: 20px;
       font-weight: 500;
   }

   .contact-form form {
       display: flex;
       flex-direction: column;
       gap: 15px;
   }

   .form-row {
       display: flex;
       gap: 15px;
   }

   .form-row input {
       flex: 1;
       padding: 10px;
       border: none;
       border-bottom: 2px solid #64748b;
       background: transparent;
       color: #e2e8f0;
       font-size: 14px;
       outline: none;
       transition: border-color 0.3s;
   }

   .form-row input::placeholder {
       color: #94a3b8;
   }

   .form-row input:focus {
       border-color: #38bdf8;
   }

   .contact-form button {
       padding: 12px;
       background: #38bdf8;
       border: none;
       border-radius: 6px;
       color: #fff;
       font-size: 15px;
       cursor: pointer;
       transition: background 0.3s, transform 0.2s;
   }

   .contact-form button:hover {
       background: #0284c7;
       transform: scale(1.05);
   }

   /* Responsive */
   @media (max-width: 600px) {
       .form-row {
           flex-direction: column;
       }
   }

   #About a {
       text-decoration: none;
   }

   /* mobile */
   /* ===============================
   RESPONSIVE DESIGN (355px–900px)
================================= */
/* ===============================
   MOBILE & TABLET RESPONSIVE DESIGN
   (For screens below 900px)
=============================== */
@media (max-width: 900px) {

  /* ======== NAVBAR ======== */
  nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 25px;
    position: relative;
  }

  /* Hide the nav links initially */
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    gap: 3px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 999;
  }

  nav ul.show {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  nav ul li {
    text-align: center;
    padding: 12px 0;
    width: 100%;
  }

  .nav-btn {
    width: 90%;
    margin: 10px auto;
    display: block;
  }

  /* Hamburger icon visible on mobile */
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #111;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Hamburger animation when active */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

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

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

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

  /* ======== CONTACT PAGE ======== */
  .contact-options {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .contact-box {
    width: 90%;
  }

  .contact-form {
    width: 95%;
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  /* ======== HELP SECTION ======== */
  .help-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  /* ======== FOOTER ======== */
  footer {
    text-align: center;
    padding: 40px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  /* ======== SECTION PADDING ======== */
  .section {
    padding: 40px 15px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 13px;
    line-height: 1.5;
  }

}
/* --------------------------------------- */


/* Basic nav layout */
nav {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    position: sticky;
}

.logo img {
    height: 40px;
}

/* Nav list */
.nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Container relative for proper dropdown placement */
.dropdown {
  position: relative;
}

/* Button */
.dropbtn {
  padding: 10px 16px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

/* Dropdown content */
.dropdown-content {
  position: absolute; /* critical for accuracy */
  top: 100%;          /* directly under the button */
  left: 0;            /* align to left of parent */
  min-width: 200px;   /* adjust width as needed */
  margin-top: 6px;    /* small gap below button */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  padding: 4px 0;
  display: none;
  z-index: 1000;
}

/* Dropdown links */
.dropdown-content li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #111;
  text-align: left;
  white-space: nowrap; /* prevents text wrap */
}

/* Hover effect */
.dropdown-content li a:hover {
  background: #f2f2f2;
}

/* Show on hover desktop */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .dropdown-content {
    position: static; /* part of flow */
    padding-left: 12px;
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropbtn::after { content: "▾"; float: right; }
}


/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 4px 0;
    background: #000;
    border-radius: 2px;
}

/* Mobile styles */
@media (max-width:768px) {
    .hamburger {
        display: block;
        margin-left: auto;
    }

    .nav-list {
        position: absolute;
        top: 64px;
        /* below nav */
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        padding: 10px 8px;
        display: none;
        z-index: 1500;
        border-top: 1px solid #eaeaea;
    }

    .nav-list.show {
        display: flex;
    }

    /* Make each nav item full-width and tappable */
    .nav-list>li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list>li>a,
    .nav-list>li>button,
    .dropbtn {
        display: block;
        width: 100%;
        padding: 12px 16px;
        box-sizing: border-box;
        text-align: left;
    }

    /* Mobile dropdown content becomes part of flow */
    .dropdown-content {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding-left: 8px;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .nav-cta {
        padding: 12px 16px;
    }
}