  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #111;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1rem 3rem;
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
    background: transparent;
  }
.product-category-link {
    cursor: pointer;
}

.product-category-link:hover {
    cursor: pointer;
}
  header nav a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
  }

  /* SCROLLED STATE */
  header.scrolled {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  header.scrolled nav a {
    color: #111;
  }

  /* optional hover polish */
  header nav a:hover {
    color: #ff7a00;
  }

  /* ================= MOBILE HEADER ONLY ================= */

  @media (max-width: 768px) {

    .menu-toggle {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 2000;
    }

    .menu-toggle span {
      display: block;
      width: 26px;
      height: 3px;
      background: #fff;
      margin: 5px 0;
      transition: all 0.3s ease;
    }

    header.scrolled .menu-toggle span {
      background: #111;
    }

    /* SLIDE-IN MENU */
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;

      background: linear-gradient(180deg,
          #ffffff 0%,
          #f7f7f7 100%);

      display: flex;
      flex-direction: column;
      padding: 6rem 2rem 2rem;
      gap: 1.6rem;

      transition: right 0.35s ease;
      box-shadow: -25px 0 60px rgba(0, 0, 0, 0.18);
      z-index: 1500;
    }

    .nav-menu::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
      background: linear-gradient(180deg,
          #ff7a00,
          #ff9b3c);
    }

    .nav-menu a {
      color: #111;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      padding: 0.6rem 0;
      position: relative;
      transition: all 0.25s ease;
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background: #ff7a00;
      transition: width 0.3s ease;
    }

    .nav-menu a:hover {
      color: #ff7a00;
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    /* Highlight Contact */
    .nav-menu a:last-child {
      margin-top: 1.5rem;
      padding: 0.8rem 1.2rem;
      background: #ff7a00;
      color: #fff;
      border-radius: 30px;
      text-align: center;
      font-weight: 700;
    }

    .nav-menu a:last-child:hover {
      background: #e86e00;
    }

    .nav-menu.active {
      right: 0;
    }

    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
  }

  /* Desktop safety */
  @media (min-width: 769px) {
    .menu-toggle {
      display: none;
    }
  }




/* ===============================
   BASE
================================ */

.nav-item {
  position: relative;
}

/* ===============================
   FORCE PREMIUM DROPDOWN
================================ */

header .has-dropdown {
  position: relative;
}


/* MAIN PANEL */

header .dropdown-menu {
  position: absolute;
  top: 115%;
  left: -60px;

  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(8px);

  min-width: 330px;

  padding: 16px 0 !important;

  border-radius: 16px !important;

  box-shadow: 0 30px 70px rgba(0,0,0,0.2) !important;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease !important;

  z-index: 99999;
}


/* SHOW */

header .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* LEFT LIST */

header .dropdown-menu a,
header .dropdown-item span {

  display: flex !important;
  align-items: center;

  padding: 14px 26px !important;

  font-size: 15px !important;
  font-weight: 500;

  color: #222 !important;

  border-radius: 10px;

  margin: 4px 12px;

  transition: all 0.25s ease !important;
}


/* HOVER */

header .dropdown-menu a:hover,
header .dropdown-item span:hover {

  background: linear-gradient(90deg,#fff1dd,#ffffff) !important;

  color: #ff7a00 !important;

  padding-left: 34px !important;
}


/* ACTIVE CATEGORY */

header .has-submenu:hover > span {

  background: linear-gradient(90deg,#ffe7cc,#ffffff) !important;

  color: #ff7a00 !important;

  font-weight: 600;
}


/* ARROW */

header .dropdown-item span::before {

  content: "◀" !important;

  font-size: 11px;

  color: #ff7a00;

  margin-right: 12px;

  opacity: 0.9;

  transition: all 0.2s ease;
}

header .dropdown-item:hover span::before {
  transform: translateX(-4px);
}


/* SUBMENU */

header .has-submenu .submenu {

  position: absolute;

  top: 0;

  right: 100% !important;
  left: auto !important;

  margin-right: 16px;

  background: rgba(255,255,255,0.98) !important;

  backdrop-filter: blur(8px);

  min-width: 360px;

  padding: 16px 0 !important;

  border-radius: 16px !important;

  box-shadow: 0 30px 70px rgba(0,0,0,0.2) !important;

  display: none;

  max-height: 430px;

  overflow-y: auto;

  z-index: 99999;

  animation: submenuFade 0.3s ease;
}


/* SHOW SUB */

header .has-submenu:hover .submenu {
  display: block;
}


/* SUB LINKS */

header .submenu a {

  padding: 13px 28px !important;

  font-size: 14px;

  font-weight: 500;

  color: #333 !important;

  border-radius: 9px;

  margin: 3px 12px;

  transition: all 0.25s ease;
}


/* SUB HOVER */

header .submenu a:hover {

  background: linear-gradient(90deg,#fff1dd,#ffffff) !important;

  color: #ff7a00 !important;

  padding-left: 36px !important;
}


/* SCROLLBAR */

header .submenu::-webkit-scrollbar {
  width: 6px;
}

header .submenu::-webkit-scrollbar-thumb {
  background: linear-gradient(#ff9f45,#ff7a00);
  border-radius: 10px;
}


/* ANIMATION */

@keyframes submenuFade {

  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


  
  /* === FIX NAV LAYOUT BREAK === */
  header nav {
    display: flex;
    align-items: center;
  }

  header nav>a,
  header nav>.nav-item {
    margin-left: 1.5rem;
    display: inline-flex;
    align-items: center;
  }
  .nav-item>a {
    margin-left: 0;
  }



/*SECTION CLASS CSS*/
 /* =========================================================
   HERO SECTION
   ========================================================= */

section {
  padding: 100px 3rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url("../images/homepage/about (6).png") center/cover no-repeat;
  overflow: hidden;
}

/* Darker, top-weighted gradient so the headline always has enough
   contrast, while the carousel images lower down stay bright */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.72) 0%,
    rgba(15, 15, 15, 0.55) 32%,
    rgba(15, 15, 15, 0.28) 58%,
    rgba(15, 15, 15, 0.15) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}


/* ---------------------------------------------------------
   LEFT CONTENT
   --------------------------------------------------------- */

.hero-left {
  max-width: 800px;
  color: #ffffff;
}

.hero-left h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-left h1 .accent {
  color: #ff9a3d;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-left p {
  margin: 1rem auto 0;
  font-size: 1.15rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}


/* ---------------------------------------------------------
   BUTTONS (now <a> tags, not <button><a></button>)
   --------------------------------------------------------- */

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-primary,
.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn-primary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow {
  transform: translateX(4px);
}

/* subtle shine sweep on hover */
.btn-primary::after,
.btn-ghost::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-primary:hover::after,
.btn-ghost:hover::after {
  left: 130%;
}

.btn-primary {
  background: #ff7a00;
  border: none;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(255, 122, 0, 0.35);
}

.btn-primary:hover {
  background: #ff8f26;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-ghost:hover {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}


/* ---------------------------------------------------------
   RIGHT SIDE — CAROUSEL
   One clean definition. This replaces BOTH versions you had
   before (the flex-carousel set and the leftover single-card
   set) — merged into one, keeping the nice touches (filter,
   subtle border) from the old set without the stray padding
   bug it was causing.
   --------------------------------------------------------- */

.hero-right {
  width: 100%;
  max-width: 1200px;
}

.hero-carousel {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  transition: transform 0.3s ease;
  will-change: transform;
}

.metal-card {
  flex: 0 0 320px;
  height: 460px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: scale(0.7);
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.6s ease;
}

.metal-card.active {
  transform: scale(1);
  opacity: 1;
}

.image-mask {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) brightness(0.95);
  transition: transform 0.5s ease;
}

.metal-card.active .image-mask img {
  transform: scale(1.04);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-container {
    gap: 2rem;
    padding: 0 1rem;
  }

  .hero-left h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .hero-left p {
    font-size: 1rem;
    max-width: 100%;
  }

  .cta-row {
    flex-direction: column;
    gap: 1rem;
  }

  /* was ".cta-row button" — dead selector now that buttons are <a> tags */
  .cta-row .btn-primary,
  .cta-row .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-right {
    width: 100%;
    height: auto;
  }

  .hero-carousel {
    width: 100%;
    overflow: hidden;
  }

  .carousel-track {
    gap: 0;
    justify-content: flex-start;
  }

  .metal-card {
    flex: 0 0 100%;
    height: 360px;
    transform: scale(1);
    opacity: 1;
  }

  .metal-card:not(.active) {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/*Search bar*/
.search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
  padding: 0.55rem 1.1rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.search-trigger svg {
  flex-shrink: 0;
}

.search-trigger:hover {
  background: #ff7a00;
  border-color: #ff7a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 122, 0, 0.4);
}

/* soft pulsing ring so first-time visitors notice this is a real,
   clickable feature — not just decoration */
.search-trigger::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 34px;
  border: 2px solid rgba(255, 122, 0, 0.65);
  opacity: 0;
  animation: searchPulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes searchPulse {
  0%   { opacity: 0.9; transform: scale(0.94); }
  70%  { opacity: 0;   transform: scale(1.18); }
  100% { opacity: 0;   transform: scale(1.18); }
}

/* on the scrolled white header, flip colors to stay readable */
header.scrolled .search-trigger {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15);
  color: #222;
}

header.scrolled .search-trigger:hover {
  background: #ff7a00;
  color: #fff;
  border-color: #ff7a00;
}

@media (max-width: 900px) {
  .search-label { display: none; }
  .search-trigger { padding: 0.55rem 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  .search-trigger::before { animation: none; }
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.search-panel {
  width: 92%;
  max-width: 640px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(-16px);
  transition: transform 0.25s ease;
}

.search-overlay.open .search-panel {
  transform: translateY(0);
}

.search-input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid #eee;
  color: #888;
}

.search-input-row input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.05rem;
  color: #222;
}

.search-close {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 1.1rem;
}

.search-results {
  max-height: 60vh;
  overflow-y: auto;
  padding: 0.5rem;
}

.search-hint {
  padding: 1.5rem;
  color: #999;
  text-align: center;
  font-size: 0.9rem;
}

.search-result-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}

.search-result-item:hover,
.search-result-item.active-result {
  background: #fff4ea;
}

.search-result-title {
  font-weight: 700;
  color: #222;
  font-size: 0.98rem;
}

.search-result-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #ff7a00;
}

.search-result-snippet {
  font-size: 0.85rem;
  color: #777;
}

/* =========================================================
   DESKTOP HEADER SEARCH POSITION
   Search moves into the navigation before Home
   Mobile layout remains unchanged
   ========================================================= */

@media (min-width: 901px) {

  .desktop-search-item {
    display: flex;
    align-items: center;
    margin-right: 0.8rem;
  }

  .desktop-search-item .search-trigger {
    margin-left: 0;
    margin-right: 0;
  }

  .desktop-search-item .search-trigger::before {
    inset: -4px;
  }

}


/* =========================================================
   MOBILE
   Keep original search position/layout untouched
   ========================================================= */

@media (max-width: 900px) {

  .desktop-search-item {
    display: contents;
  }

}
.cta-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-banner-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
  /* About section*/

  .about {
    background: #ececec;
    color: #1f1f1f;
    padding: 120px 3rem;
    overflow: hidden;
  }

  .about-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
  }

  .about-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    background: rgba(255, 122, 0, 0.15);
    color: #ff9b3d;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .about-text h2 {
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .about-text .accent {
    color: #ff7a00;
  }

  .about-text p {
    color: #5e5e5e;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .about-stats {
    display: flex;
    gap: 1.8rem;
    margin-top: 1.6rem;
    flex-wrap: wrap;
  }

  .stat {
    background: linear-gradient(145deg, #969696, #5a5a5a);
    padding: 1.3rem 1.6rem;
    border-radius: 18px;
    min-width: 160px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  }

  .stat h3 {
    font-size: 1.9rem;
    color: #ff8513;
  }

  .stat span {
    font-size: 0.9rem;
    color: #cfcfcf;
  }

  /* IMAGE SIDE */
  .about-visual {
    position: relative;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-card {
    width: 92%;
    height: 92%;
    border-radius: 30px;
    background: linear-gradient(145deg, #ffffff, #0a0a0a);
    padding: 5px;
    position: relative;
    box-shadow: 0 0 70px rgba(255, 255, 255, 0.75);
  }

  .about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: url("https://images.pexels.com/photos/373543/steel-factory-metal-industry-373543.jpeg") center/cover;
    opacity: 0.25;
    mix-blend-mode: overlay;
  }

  .about-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    position: relative;
    z-index: 1;
    filter: contrast(1.1) brightness(0.9);
  }

  /* ABOUT PAGE HEADER FIX */
  body.about-page header nav a {
    color: #ff7a00;
    /* Orange */
  }

  body.about-page header nav a:hover {
    color: #4e4e4e;
    /* Lighter orange on hover */
  }

  /* FLOATING SHAPES */
  .about-shape {
    position: absolute;
    border-radius: 50%;
    background: #ff7a00;
    opacity: 0.15;
    animation: floatY 7s ease-in-out infinite;
  }

  .about-shape.one {
    width: 120px;
    height: 120px;
    top: -40px;
    left: -40px;
  }

  .about-shape.two {
    width: 180px;
    height: 180px;
    bottom: -60px;
    right: -60px;
    animation-duration: 9s;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .about-wrapper {
      grid-template-columns: 1fr;
    }

    .about-text h2 {
      text-align: center;
    }

    .about-text,
    .about-stats {
      justify-content: center;
      text-align: center;
    }
  }

  .aboutt-cta {
    background: #ececec;
    text-align: center;
    padding: 10px 1rem 40px;
    margin-top: -50px;
  }

  .aboutt-cta .know-more-btn {
    display: inline-block;
    background: #ff7a00;
    color: #ffffff;
    padding: 1rem 2.4rem;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(255, 122, 0, 0.35);
    transition: all 0.3s ease;
  }

  .aboutt-cta .know-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px rgba(255, 122, 0, 0.5);
    background: #ff8f26;
  }

  /* ABOUT IMAGE SLIDER */
  .about-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
  }

  .about-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease, transform 1s ease;
    transform: scale(1.05);
  }

  .about-slider .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }

  .about-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    filter: contrast(1.1) brightness(0.9);
  }


  /*Products*/
  .products {
    background: #f7f7f7;
    padding: 40px 3rem 100px;
    margin-top: -20px;
  }

  .products-carousel {
    overflow: hidden;
    position: relative;
  }

  .products-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.7s ease;
  }

  .product-card {
    min-width: 320px;
    flex-shrink: 0;
  }


  .products-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
  }

  .section-tag {
    display: inline-block;
    background: rgba(255, 122, 0, 0.1);
    color: #ff7a00;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
  }

  .products-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: #4b4747;
  }

  .products-header p {
    color: #555;
    font-size: 1.05rem;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
  }

  .product-card {
    background: linear-gradient(145deg, #ffffff, #ffffff);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
  }

  .product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.0),
        rgba(0, 0, 0, 0.25));
    opacity: 0;
    transition: 0.4s ease;
  }

  .product-card:hover::before {
    opacity: 1;
  }

  .product-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  }

  .product-image {
    height: 260px;
    overflow: hidden;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .product-card:hover img {
    transform: scale(1.12);
  }



  .product-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #555353;
    margin-bottom: 0.2rem;
  }

  .product-content {
    padding: 1.6rem;
    text-align: center;
    /* FIX */
  }

  .product-content span {
    display: block;
    margin-top: 0.4rem;
    color: #ff9100;
  }


  /* BLOGS SECTION*/

  /* BLOGS SECTION */
  .blogs {
    background: #ffffff;
    padding: 90px 3rem 110px;
  }

  .blogs-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.8rem;
  }

  .blogs-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4b4747;
    margin: 0.6rem 0;
  }

  .blogs-header p {
    color: #666;
    font-size: 1.05rem;
  }

  .blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  /* BLOG CARD */
  .blog-card {
    background: #fafafa;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.45s ease;
  }

  .blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  }

  /* IMAGE */
  .blog-image {
    position: relative;
    height: 230px;
    overflow: hidden;
  }

  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

  .blog-card:hover img {
    transform: scale(1.08);
  }

  /* BADGE */
  .blog-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 122, 0, 0.95);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.4px;
  }

  /* CONTENT */
  .blog-content {
    padding: 1.8rem 1.6rem 2rem;
  }

  .blog-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.4rem;
  }

  .blog-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.2rem;
  }

  .read-more {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ff7a00;
    text-decoration: none;
  }

  .read-more:hover {
    text-decoration: underline;
  }

  /* PARTNERS SECTION*/
  /* UNIQUE PARTNERS SECTION */
  .partners-unique {
    background: linear-gradient(180deg, #f1f1f1 0%, #ffffff 100%);
    padding: 100px 0 110px;
    overflow: hidden;
    position: relative;
    margin-top: -20px;
  }

  .partners-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 3rem;
  }

  .partners-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.8rem;
  }

  .partners-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin: 0.6rem 0;
  }

  .partners-heading p {
    font-size: 1.05rem;
    color: #666;
  }

  /* STEEL TRACK */
  .steel-track {
    position: relative;
    padding: 3.2rem 0;
  }

  .steel-line {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        #d9d9d9,
        #ff7a00,
        #d9d9d9,
        transparent);
    transform: translateY(-50%);
    opacity: 0.65;
  }

  /* LOGO MARQUEE */
  /* LOGO MARQUEE */
  .logo-marquee {
    display: flex;
    width: max-content;
    animation: moveLogos 32s linear infinite;
  }

  .logo-set {
    display: flex;
    gap: 5.2rem;
    /* increased spacing */
    align-items: center;
    padding-right: 5.2rem;
  }

  /* UPDATED LOGO STYLE */
  .logo-set img {
    height: 64px;
    /* increased size */
    object-fit: contain;
    opacity: 0.95;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  /* HOVER EFFECT — CLEAN & PREMIUM */
  .logo-set img:hover {
    transform: translateY(-6px) scale(1.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .logo-set {
      gap: 3.4rem;
    }

    .logo-set img {
      height: 52px;
    }
  }

  /* ANIMATION */
  @keyframes moveLogos {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .logo-set {
      gap: 2.8rem;
    }

    .logo-set img {
      height: 42px;
    }
  }

  /*footer section*/

  :root {
    --orange: #ff7b00;
    --orange-light: #ff9a3d;
    --light-grey: #f7f7f7;
    --mid-grey: #e2e2e2;
    --dark-grey: #5f5f5f;
    --text-grey: #6b6b6b;
    --white: #ffffff;
  }


  .site-footer {
    position: relative;
    background: var(--light-grey);
    overflow: hidden;
    padding-top: 6rem;
  }


  /* ORANGE DIAGONAL SHAPE */
  .footer-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
  }


  .footer-inner {
    position: relative;
    z-index: 2;
    padding: 4rem 6% 2rem;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }


  /* BRAND PANEL */
  .footer-brand {
    background: var(--white);
    border-radius: 22px;
    padding: 2rem 2.2rem;
    box-shadow: 0 20px 40px rgba(120, 120, 120, 0.15);
    border-top: 6px solid var(--orange);
  }


  .footer-brand img {
    width: 170px;
    margin-bottom: 1.2rem;
  }


  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-grey);
  }


  /* COLUMN STYLE */
  .footer-column h4 {
    font-size: 1.75rem;
    margin-bottom: 1.2rem;
    color: var(--dark-grey);
    letter-spacing: 0.5px;
    margin-left: 4.5rem;
  }


  .footer-column ul {
    list-style: circle
  }

  .footer-column li {
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-left: 4.5rem;
  }


  .footer-column a {
    color: var(--text-grey);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: 0.3s ease;
    font-weight: 600;

  }


  .footer-column a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: 0.3s ease;
  }


  .footer-column a:hover::after {
    width: 100%;
  }


  .footer-column a:hover {
    color: var(--orange);
  }


  /* CONTACT STACK */
  .contact-stack {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    padding: 2rem 2rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 25px 50px rgba(120, 120, 120, 0.18);
  }


  .contact-item {
    margin-bottom: 1.4rem;
    padding-left: 14px;
    border-left: 4px solid var(--orange);
  }


  .contact-item strong {
    display: block;
    color: var(--dark-grey);
    margin-bottom: 4px;
  }


  .contact-item span {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
  }


  /* SOCIAL STRIP */
  .social-strip {
    display: flex;
    gap: 14px;
    margin-top: 1.2rem;
  }


  .social-strip a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(120, 120, 120, 0.18);
    transition: 0.35s ease;
  }


  .social-strip a:hover {
    transform: translateY(-6px);
    background: var(--orange);
    color: var(--white);
  }


  /* BOTTOM BAR */
  .footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    padding: 1.5rem 6% 2rem;
    border-top: 1px solid #080808;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--white);
    background: #585858;
  }

  .footer-bottom span:last-child {
    color: var(--orange);
    font-weight: 600;
  }


/* =========================================================
   RESPONSIVE FOOTER
   Desktop design remains completely unchanged
   ========================================================= */


/* TABLET */
@media (max-width: 1000px) {

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 5% 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column h4,
  .footer-column li {
    margin-left: 0;
  }

  .footer-column h4 {
    font-size: 1.4rem;
  }

  .footer-shape {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 60%);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .site-footer {
    padding-top: 3.5rem;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 7% 2rem;
  }


  /* BRAND */

  .footer-brand {
    grid-column: auto;
    text-align: center;
    padding: 1.8rem 1.5rem;
    border-radius: 18px;
  }

  .footer-brand img {
    width: 160px;
    max-width: 80%;
    height: auto;
    margin-bottom: 1rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
  }


  /* COMPANY + SUPPORT */

  .footer-column {
    text-align: center;
    width: 100%;
  }

  .footer-column h4 {
    font-size: 1.35rem;
    margin: 0 0 1rem 0;
  }

  .footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footer-column li {
    margin: 0 0 0.7rem 0;
    font-size: 0.9rem;
  }

  .footer-column a {
    display: inline-block;
  }


  /* CONTACT */

  .contact-stack {
    width: 100%;
    box-sizing: border-box;
    padding: 1.8rem 1.5rem;
    border-radius: 18px;
    text-align: left;
  }

  .contact-item {
    margin-bottom: 1.3rem;
    padding-left: 12px;
  }

  .contact-item strong {
    font-size: 0.95rem;
  }

  .contact-item span {
    font-size: 0.88rem;
    line-height: 1.6;
    word-break: break-word;
  }


  /* SOCIAL */

  .social-strip {
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
  }

  .social-strip a {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }


  /* BOTTOM BAR */

  .footer-bottom {
    margin-top: 1.5rem;
    padding: 1.2rem 5% 1.5rem;
    gap: 0.6rem;
    text-align: center;
    line-height: 1.5;
    font-size: 0.78rem;
  }

}


/* SMALL PHONES */

@media (max-width: 480px) {

  .site-footer {
    padding-top: 3rem;
  }

  .footer-inner {
    gap: 2rem;
    padding: 2.5rem 5% 1.5rem;
  }

  .footer-brand {
    padding: 1.5rem 1.2rem;
  }

  .footer-brand img {
    width: 145px;
  }

  .footer-brand p {
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .footer-column h4 {
    font-size: 1.2rem;
  }

  .footer-column li {
    font-size: 0.86rem;
  }

  .contact-stack {
    padding: 1.5rem 1.2rem;
  }

  .contact-item {
    padding-left: 10px;
  }

  .contact-item span {
    font-size: 0.82rem;
  }

  .social-strip a {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    font-size: 0.72rem;
    padding-left: 15px;
    padding-right: 15px;
  }

}

  /*ABOUT-US SECTION*/
  section {
    padding: 90px 3rem
  }

  .digital-hero {
    min-height: 80vh;
    background: radial-gradient(circle at top left, #ffffff, #ff9900 55%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    overflow: hidden;
  }

  .hero-inner {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    position: relative;
  }

  /* GLASS CARD */
  .hero-glass {
    backdrop-filter: blur(22px);
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.04));
    border-radius: 40px;
    padding: 3.5rem;
    color: #3f3f3f;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
  }

  .hero-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.8;
    display: block;
    margin-bottom: 2rem;
  }

  .hero-glass h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.4rem;
  }

  .hero-glass h1 span {
    font-weight: 900;
  }

  .hero-glass p {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-bottom: 2.4rem;
  }

  .hero-btn {
    display: inline-block;
    background: #ff961e;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(71, 71, 71, 0.5);
  }



  /* BLOBS */
  .blob {
    position: absolute;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.9;
    animation: floatBlob 4s infinite ease-in-out;
  }

  .blob-top {
    top: -60px;
    right: -40px;
  }

  .blob-bottom {
    bottom: -80px;
    left: -40px;

  }

  @keyframes floatBlob {
    0% {
      transform: translateY(0) translateX(0);
    }

    50% {
      transform: translateY(-25px) translateX(15px);
    }

    100% {
      transform: translateY(0) translateX(0);
    }
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .hero-glass h1 {
      font-size: 2.8rem;
    }

    .hero-visual {
      height: 320px;
    }
  }


  .about-hero {
    min-height: 100vh;
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    color: #e28203;
  }

  /* LEFT */
  .about-left h1 {
    font-size: 8.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
  }

  .about-tag {
    display: block;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .about-left p {
    font-size: 1.05rem;
    color: #444;
    max-width: 420px;
  }

  /* ABOUT IMAGES - HOVER EFFECT */
  .about-center img,
  .hero-visual img,
  .about-right img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    will-change: transform;
  }

  /* CENTER IMAGE */
  .about-center img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 36px;
  }

  /* RIGHT IMAGES */
  .about-right img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 1.2rem;
  }

  /* HOVER ANIMATION */
  .about-center img:hover,
  .hero-visual img:hover,
  .about-right img:hover {
    transform: scale(1.04);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  }


  /* RIGHT CARD */
  .about-right {
    background: #fff;
    border-radius: 32px;
    padding: 1.6rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  }


  .about-right h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }

  .about-right p {
    font-size: 0.95rem;
    color: #555;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .about-hero {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .about-left h1 {
      font-size: 3.2rem;
    }

    .about-center img {
      height: 380px;
    }
  }


  /* STATS */
  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem
  }

  .stat-card {
    background: #f7f7f7;
    border-radius: 22px;
    padding: 2rem;
    text-align: center;
    transition: .4s
  }

  .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1)
  }

  .stat-card h3 {
    font-size: 2.4rem;
    color: #ff7a00;
    font-weight: 800
  }

  .stat-card span {
    font-weight: 600;
    color: #333
  }

  /* MISSION VISION */
  .mv-section {
    background: #fafafa
  }

  .mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem
  }

  .mv-card {
    background: #fff;
    border-radius: 26px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden
  }

  .mv-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 122, 0, 0.12);
    border-radius: 50%;
    top: -40px;
    right: -40px
  }

  .mv-card h3 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: .6rem
  }

  .mv-card p {
    color: #555;
    line-height: 1.8
  }

  /* VALUES */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem
  }

  .value-card {
    padding: 2.5rem;
    border-radius: 24px;
    background: linear-gradient(145deg, #fff, #f2f2f2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
    border: 1px solid rgba(255, 122, 0, 0.25);
    /* thin orange border */
  }

  .value-card:hover {
    transform: translateY(-12px);
    border-color: #ff7a00;
    /* stronger on hover */
    box-shadow: 0 30px 70px rgba(255, 122, 0, 0.18);
  }

  .value-card h4 {
    color: #ff7a00;
    font-size: 1.3rem;
    margin-bottom: .5rem
  }

  .value-card p {
    color: #555;
    font-size: .95rem
  }

  /* TIMELINE */
  .timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #eee;
    transform: translateX(-50%)
  }

  .timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem
  }

  .timeline-item:nth-child(even) {
    flex-direction: row-reverse
  }

  .timeline-box {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    width: 45%;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 122, 0, 0.25);
    /* subtle orange border */
    transition: all .4s ease;
  }

  /* Hover effect */
  .timeline-box:hover {
    transform: translateY(-10px);
    border-color: #ff7a00;
    box-shadow: 0 30px 70px rgba(255, 122, 0, 0.18);
  }

  .timeline-box h5 {
    font-size: 1.2rem;
    color: #ff7a00;
    margin-bottom: .3rem
  }

  .timeline-box p {
    color: #555;
    font-size: .95rem
  }


  /* CTA */
  .about-cta {
    text-align: center;
    background: linear-gradient(135deg, #636363, #6d6d6d);
    color: #fff
  }

  .about-cta h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: .6rem;
    color: #ffffff
  }

  .about-cta p {
    opacity: .95;
    margin-bottom: 1.5rem
  }

  .about-cta a {
    display: inline-block;
    background: #ff7b00;
    color: #ffffff;
    padding: 1rem 2.2rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s
  }

  .about-cta a:hover {
    transform: translateY(-6px)
  }

  /* RESPONSIVE */
  @media(max-width:900px) {

    .about-intro,
    .mv-grid,
    .values-grid {
      grid-template-columns: 1fr
    }

    .stats {
      grid-template-columns: repeat(2, 1fr)
    }

    .timeline::before {
      left: 20px
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
      flex-direction: column
    }

    .timeline-box {
      width: 100%;
      margin-left: 40px
    }
  }

  @media(max-width:600px) {
    section {
      padding: 70px 1.5rem
    }

    .about-hero h1 {
      font-size: 2.2rem
    }

    .stats {
      grid-template-columns: 1fr
    }
  }
/* =========================================================
   ABOUT PAGE - MOBILE HAMBURGER MENU
   Desktop remains unchanged
   ========================================================= */

@media (max-width: 768px) {

  .about-page header {
    position: relative;
    z-index: 100;
  }

  /* HAMBURGER */
  .about-page .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 42px;
    height: 42px;

    padding: 0;
    margin: 0;

    background: transparent;
    border: none;

    cursor: pointer;

    position: relative;
    z-index: 1001;
  }

  .about-page .menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 3px 0;

    background: #555;
    border-radius: 2px;

    transition: .3s ease;
  }

  /* MOBILE NAV */
  .about-page .nav-menu {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    width: 100%;

    background: #fff;

    padding: 1rem 0;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    z-index: 1000;
  }

  .about-page .nav-menu.active {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* NAV LINKS */
  .about-page .nav-menu a {
    display: block;

    width: 100%;
    box-sizing: border-box;

    padding: .9rem 1.5rem;

    color: #555 !important;

    text-decoration: none;

    font-size: .95rem;
    font-weight: 600;

    text-align: left;
  }

  .about-page .nav-menu a:hover {
    color: #ff7b00 !important;
    background: rgba(255, 123, 0, 0.06);
  }

  /* HAMBURGER → X */
  .about-page .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .about-page .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .about-page .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .about-page .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .about-page .menu-toggle span {
    width: 23px;
  }

  .about-page .nav-menu a {
    padding: .85rem 1.2rem;
    font-size: .9rem;
  }

}

  header,
  .navbar,
  .nav-wrapper {
    overflow: visible !important;
  }

  .dropdown-menu {
    left: auto !important;
    right: 0 !important;
  }

  /* MOBILE LOGO — LEFT CORNER ONLY */
@media (max-width: 768px) {
  #site-header .logo {
    margin-left: 0 !important;
    padding-left: 0 !important;
    position: relative !important;
    left: 0 !important;
    transform: none !important;
  }

  #site-header {
    padding-left: 10px !important;
  }
}