* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-x: hidden;
}

/* ================= TOP BAR ================= */

.top-bar {
  background-color: #1e1e20;
  color: #fff;
  padding: 10px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-container img {
  height: 60px;
  width: auto;
  display: block;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info i {
  font-size: 22px;
  color: #fff;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.phone-number {
  font-weight: bold;
  font-size: 20px;
}

.support-text {
  font-size: 13px;
  color: #e0e0e0;
  margin-top: 2px;
}

/* ================= NAVBAR ================= */

.nav-bar {
  background-color: #fcf69c;
  padding: 12px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 35px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  display: block;
  padding: 5px 0;
}

.nav-links a.active {
  border-bottom: 2px solid #000;
}

/* ================= DROPDOWN ================= */

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 8px 0;
  z-index: 1001;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 10px 16px;
  color: #333;
  font-weight: normal;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #f4f4f4;
}

/* Desktop dropdown */
@media (min-width: 769px) {
  .has-dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ================= DOWNLOAD BUTTON ================= */

.download-btn {
  background-color: #f23838;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.download-btn:hover {
  background-color: #d92b2b;
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  padding: 5px;
}

/* ================= CLOSE BUTTON ================= */

.close-btn {
  display: none;
}

/* ================= OVERLAY ================= */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================================================= */
/* ================= TABLET ======================== */
/* ================================================= */

@media (max-width: 1024px) {

  .top-bar,
  .nav-bar {
    padding-left: 5%;
    padding-right: 5%;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 14px;
  }
}

/* ================================================= */
/* ================= MOBILE ======================== */
/* ================================================= */

@media (max-width: 768px) {

  /* ================= TOP BAR ================= */

  .top-bar {
    padding: 8px 15px;
    min-height: 60px;
    gap: 10px;
  }

  .logo-container {
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-container img {
    height: 42px;
    max-width: 150px;
    object-fit: contain;
  }

  .contact-info {
    gap: 7px;
    flex-shrink: 0;
  }

  .contact-info i {
    font-size: 17px;
  }

  .phone-number {
    font-size: 13px;
  }

  .support-text {
    font-size: 9px;
  }

  /* ================= NAVBAR ================= */

  .nav-bar {
    padding: 9px 15px;
    min-height: 55px;
  }

  /* ================= DOWNLOAD BUTTON ================= */

  .download-btn {
    padding: 8px 10px;
    font-size: 10px;
    gap: 5px;
    border-radius: 5px;
  }

  /* ================= HAMBURGER ================= */

  .hamburger {
    display: block;
    position: relative;
    z-index: 1000;
    margin-left: 8px;
  }

  /* ================= MOBILE SIDEBAR ================= */

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;

    width: min(300px, 85vw);
    height: 100dvh;

    background-color: #fcf69c;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 75px 25px 30px;

    gap: 10px;

    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.25);

    transition: right 0.3s ease;

    z-index: 999;

    overflow-y: auto;
  }

  /* OPEN SIDEBAR */

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 17px;
    padding: 10px 0;
  }

  /* ================= CLOSE BUTTON ================= */

  .close-btn {
    display: block;

    position: absolute;
    top: 15px;
    right: 18px;

    background: none;
    border: none;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    color: #000;
  }

  /* ================= MOBILE DROPDOWN ================= */

  .dropdown-menu {
    position: static;

    width: 100%;

    min-width: 0;

    box-shadow: none;

    background: transparent;

    padding: 3px 0 3px 15px;
  }

  /* Disable desktop hover behavior */

  .has-dropdown:hover .dropdown-menu {
    display: none;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    font-size: 15px;
    padding: 8px 0;
  }
}

/* ================================================= */
/* ================= SMALL PHONES ================== */
/* ================================================= */

@media (max-width: 480px) {

  .top-bar {
    padding: 7px 10px;
  }

  .logo-container img {
    height: 36px;
    max-width: 120px;
  }

  .contact-info i {
    font-size: 15px;
  }

  .phone-number {
    font-size: 11px;
  }

  .support-text {
    font-size: 8px;
  }

  .nav-bar {
    padding: 8px 10px;
  }

  .download-btn {
    padding: 7px 8px;
    font-size: 9px;
  }

  .hamburger {
    font-size: 23px;
  }

  .nav-links {
    width: 85vw;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ================================================= */
/* ================ VERY SMALL PHONES ============== */
/* ================================================= */

@media (max-width: 360px) {

  .contact-info .contact-text {
    display: none;
  }

  .logo-container img {
    height: 34px;
  }

  .download-btn {
    font-size: 8px;
    padding: 6px 7px;
  }

  .hamburger {
    font-size: 21px;
  }
}





.container1 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30 24px;
}

/* Main Heading */
.page-title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #111111;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  line-height: 1.2;
}

/* Breadcrumb Container */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Breadcrumb Links */
.breadcrumb a {
  color: #e53935;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Separator */
.breadcrumb .separator {
  color: #888888;
  font-size: 0.75rem;
  user-select: none;
}

/* Active Page */
.breadcrumb .active {
  color: #e53935;
}

/* Tablet */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .page-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .breadcrumb {
    font-size: 0.8rem;
    gap: 7px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .page-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
    line-height: 1.25;
  }

  .breadcrumb {
    font-size: 0.7rem;
    gap: 6px;
    letter-spacing: 0.04em;
  }

  .breadcrumb .separator {
    font-size: 0.65rem;
  }
}

/* Very Small Mobile */
@media (max-width: 360px) {
  .page-title {
    font-size: 1.45rem;
  }

  .breadcrumb {
    font-size: 0.65rem;
  }
}



.container2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.image-container {
  padding: 20px;
  text-align: center;
  background-color: #ffffff;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.card-header {
  background-color: #4a4a4a;
  color: #ffffff;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.specifications-wrapper {
  padding: 15px;
}

/* Interactive Clickable Header */
.spec-toggle {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background-color 0.2s ease;
}

.spec-toggle:hover {
  background-color: #f0f0f0;
}

.spec-toggle .arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Expand / Collapse Animation Handler */
.spec-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.spec-content.open {
  max-height: 500px;
  /* Large enough to hold table */
  margin-top: 10px;
}

.spec-toggle.active .arrow {
  transform: rotate(180deg);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table td {
  border: 1px solid #e0e0e0;
  padding: 10px;
  font-size: 14px;
  color: #444444;
}

.spec-table tr td:first-child {
  width: 50%;
  font-weight: 500;
}

.spec-table tr td:last-child {
  width: 50%;
}

.spec-table tr:nth-child(even) {
  background-color: #fdfdfd;
}
