:root {
  --oxford-blue: #1A2842;
  --oxford-blue-dark: #10192E;
  --oxford-blue-alt: #182538;
  --anti-flash-white: #EBECF0;
  --platinum: #D7D9DE;
  --french-gray: #B9BDC4;
  --cadet-gray: #8F949B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, 'Inter', sans-serif;
  background: var(--anti-flash-white);
  color: var(--oxford-blue);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/** TYPOGRAPHY ENFORCEMENT **/
body, .brand-card, .timeline-content, .w3s-timeline-content, .footer, .nav-link, .brand-links a, .footer-links a, .section-header p, .brand-card h3, .footer-section h4, .leadership-team-grid, .mvv-card, .mvv-values, .legacy-info, .testimonial-card, .testimonials, .careers-content, .contact-info, .contact-form, .story, .sectors-served, .client-logos {
  font-family: 'Helvetica Neue', Arial, 'Inter', sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.section-header h2,
h1, h2.major-header, .major-header, .w3s-timeline-content h4, .timeline-year, .brand-card h3 {
  font-family: 'Helvetica Neue', Arial, 'Inter', sans-serif !important;
  font-weight: 800;
  /* text-transform: uppercase; */
  letter-spacing: 0.04em;
  color: var(--oxford-blue);
}

.nav-link, .footer-links a, .brand-links a {
  font-family: 'Helvetica Neue', Arial, 'Inter', sans-serif !important;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
}

.section-header p, .brand-card p, .w3s-timeline-content p, .timeline-content, .footer-section p, .testimonial-text, .careers-content ul, .contact-info, .contact-form, .story, .sectors-served li {
  font-family: 'Helvetica Neue', Arial, 'Inter', sans-serif !important;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* For high contrast on dark backgrounds */
.hero-title, .hero-btn, .navbar, .footer, .footer-section h4 {
  color: var(--anti-flash-white) !important;
}

/* NAVIGATION */
.navbar {
  background: var(--anti-flash-white);
  color: var(--oxford-blue);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(26,40,66,0.07);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 2rem;
  padding-right: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-text {
  font-weight: 700;
  font-size: 1.0rem;
  color: var(--oxford-blue);
  letter-spacing: 0.05em;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  color: var(--oxford-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-link.active, .nav-link:hover {
  color: var(--cadet-gray);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--oxford-blue);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px; 
    flex-direction: column;
    background-color: var(--anti-flash-white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 99; 
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 25px;
  /* color: var(--anti-flash-white); */
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-header p {
  color: var(--cadet-gray);
  font-size: 1.1rem;
}

/* LEADERSHIP SECTION */
.leader-profile {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  background: var(--platinum);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(26,40,66,0.07);
}
.leader-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--oxford-blue);
}
.leader-bio h3 {
  font-size: 1.4rem;
  color: var(--oxford-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}
.leader-bio p {
  color: var(--oxford-blue-dark);
  font-size: 1.08rem;
  line-height: 1.7;
}
@media (max-width: 700px) {
  .leader-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0.5rem;
  }
  .leader-img {
    margin-bottom: 1rem;
  }
}

/* INDUSTRIAL IMPACT */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.client-logos img {
  width: 100px;
  height: 60px;
  object-fit: contain;
  background: var(--platinum);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 8px rgba(26,40,66,0.07);
}
.testimonials {
  margin-bottom: 2rem;
}
.testimonials h3 {
  color: var(--oxford-blue);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.testimonials blockquote {
  background: var(--french-gray);
  color: var(--oxford-blue-dark);
  border-left: 4px solid var(--oxford-blue);
  margin: 0 0 1rem 0;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-style: italic;
}
.success-stories {
  margin-bottom: 2rem;
}
.success-stories h3 {
  color: var(--oxford-blue);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.story {
  background: var(--anti-flash-white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(26,40,66,0.07);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
}
.story h4 {
  color: var(--oxford-blue-alt);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.sectors-served h3 {
  color: var(--oxford-blue);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
.sectors-served ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sectors-served li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--oxford-blue-dark);
}
.sectors-served li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--oxford-blue-alt);
  font-weight: bold;
}

/* CAREERS SECTION */
.careers-section {
    background: var(--oxford-blue);
    padding: 4rem 0;
}

.careers-content {
    margin-top: 2rem;
    color: var(--anti-flash-white);
    font-size: 1.08rem;
    line-height: 1.7;
    text-align: justify;
}

.careers-content h3 {
    color: var(--anti-flash-white);
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
}

.careers-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}
.careers-content a {
 color: #8F949B;
}

.careers-content ul li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--anti-flash-white);
}

.careers-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--platinum);
    font-weight: bold;
}

.careers-content blockquote {
    background: var(--oxford-blue-alt);
    color: var(--anti-flash-white);
    border-left: 4px solid var(--platinum);
    margin: 0 0 1rem 0;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-style: italic;
}

@media (max-width: 700px) {
    .careers-content ul {
        grid-template-columns: 1fr;
    }
}


/* GET IN TOUCH SECTION */
.get-in-touch-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 2rem;
}
.get-in-touch-content .contact-info {
  flex: 1 1 320px;
  max-width: 340px;
}
.get-in-touch-content .contact-form {
  flex: 2 1 400px;
  max-width: 600px;
}
@media (max-width: 900px) {
  .get-in-touch-content {
    flex-direction: column;
    gap: 2rem;
  }
  .get-in-touch-content .contact-info,
  .get-in-touch-content .contact-form {
    max-width: 100%;
  }
}

/* FOOTER */
.footer {
  background: var(--oxford-blue);
  color: var(--anti-flash-white);
  padding: 2.5rem 0 0.5rem 0;
  margin-top: 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  flex-wrap: wrap;
}
.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 1.5rem;
}
.footer-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.7rem;
  background: var(--anti-flash-white);
  box-shadow: 0 2px 8px rgba(26,40,66,0.07);
}
.footer-section h4 {
  color: var(--anti-flash-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.7rem;
}
.footer-links a {
  color: var(--anti-flash-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--platinum);
}
.footer-section p, .footer-section a {
  color: var(--anti-flash-white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.footer-section i {
  margin-right: 0.5rem;
  color: var(--platinum);
}
.footer-bottom {
  text-align: center;
  color: var(--french-gray);
  font-size: 0.98rem;
  padding: 1.2rem 0 0.2rem 0;
  border-top: 1px solid var(--french-gray);
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .footer-section {
    min-width: 0;
    width: 100%;
  }
}

/* HERO SECTION */
.hero-section {
  background: 
    linear-gradient(120deg, rgba(26,40,66,0.82) 60%, rgba(215,217,222,0.3) 100%),
    url('images/banner.jpg') center center/cover no-repeat;
  color: var(--anti-flash-white);
  padding: 4.5rem 0 3.5rem 0;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 60vh;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-content {
  flex: 1 1 60%;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--anti-flash-white);
  text-shadow: 0 2px 8px rgba(26,40,66,0.08);
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--platinum);
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero-btn {
  display: inline-block;
  background: var(--platinum);
  color: var(--oxford-blue);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26,40,66,0.07);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.hero-btn:hover {
  background: var(--oxford-blue-alt);
  color: var(--anti-flash-white);
  transform: translateY(-2px) scale(1.04);
}
.hero-image {
  display: none;
}
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column-reverse;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-content, .hero-image {
    flex: 1 1 100%;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-image img {
    width: 220px;
  }
}

/* OUR JOURNEY TIMELINE SECTION */
.journey-section {
  background: var(--anti-flash-white);
  padding: 4rem 0 3rem 0;
}
.journey-subtitle {
  color: var(--oxford-blue-alt);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.timeline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  padding: 2rem 0 1rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--oxford-blue) 0%, var(--platinum) 100%);
  z-index: 0;
  transform: translateY(-50%);
}
.timeline-item {
  position: relative;
  background: var(--platinum);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(26,40,66,0.07);
  padding: 1.2rem 1.1rem 1.1rem 1.1rem;
  min-width: 170px;
  max-width: 200px;
  text-align: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-year {
  background: var(--oxford-blue);
  color: var(--anti-flash-white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px rgba(26,40,66,0.10);
  letter-spacing: 0.04em;
}
.timeline-content {
  color: var(--oxford-blue-dark);
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    padding: 1.5rem 0;
  }
  .timeline::before {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--oxford-blue) 0%, var(--platinum) 100%);
    transform: translateX(-50%);
  }
  .timeline-item {
    min-width: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(26,40,66,0.07);
  }
  .timeline-year {
    margin-bottom: 0.5rem;
  }
}

/* PRODUCTS SECTION */
.products-section {
  background: var(--anti-flash-white);
  padding: 4rem 0 3rem 0;
}
.products-section .section-header h2 {
  color: var(--oxford-blue);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.brand-card {
  background: var(--platinum);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(26,40,66,0.07);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.brand-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(26,40,66,0.13);
}
.brand-logo {
  width: 230px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  background: var(--anti-flash-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(26,40,66,0.07);
  max-width: 100%;
}
.brand-card h3 {
  font-size: 1.08rem;
  color: var(--oxford-blue);
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.brand-links {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.brand-links a {
  color: var(--oxford-blue-alt);
  font-size: 1.25rem;
  background: var(--anti-flash-white);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(26,40,66,0.07);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.brand-links a:hover {
  background: var(--oxford-blue);
  color: var(--anti-flash-white);
  transform: scale(1.12);
}
@media (max-width: 700px) {
  .brands-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .brand-card {
    padding: 1.2rem 0.7rem 1.1rem 0.7rem;
  }
  .brand-logo {
    width: 100%;
    height: 80px;
  }
}

/* LEGACY SECTION */
.legacy-section {
  background: #D7D9DE;
  padding: 4rem 0 3rem 0;
}
.legacy-subtitle {
  color: var(--oxford-blue-alt);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.legacy-profile {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--platinum);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(26,40,66,0.07);
  padding: 2.5rem 2rem;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  gap: 2.5rem;
}
.legacy-info {
  flex: 1 1 55%;
}
.legacy-journey {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.legacy-journey .journey-header {
  margin-bottom: 1.2rem;
}
.legacy-journey .timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem 0;
  min-height: 100px;
}
.legacy-journey .timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--oxford-blue) 0%, var(--platinum) 100%);
  z-index: 0;
  border-radius: 2px;
  transform: translateX(-50%);
}
.legacy-journey .timeline-item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 90px;
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  z-index: 1;
}
.legacy-journey .timeline-year {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  background: var(--oxford-blue);
  color: var(--anti-flash-white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  padding: 0.7rem 1.3rem;
  box-shadow: 0 2px 8px rgba(26,40,66,0.10);
  letter-spacing: 0.04em;
  z-index: 2;
  min-width: 70px;
  text-align: center;
  border: 4px solid var(--platinum);
}
.legacy-journey .timeline-content {
  background: var(--platinum);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(26,40,66,0.10);
  padding: 1.2rem 1.5rem 1.1rem 1.5rem;
  color: var(--oxford-blue-dark);
  font-size: 1rem;
  line-height: 1.5;
  min-width: 0;
  max-width: none;
  width: calc(50% - 2.5rem);
  position: relative;
  margin: 0 0 0 2.5rem;
  text-align: left;
}
.legacy-journey .timeline-item::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 50%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 14px solid var(--platinum);
  z-index: 2;
  transform: translateX(-50%);
}
@media (max-width: 900px) {
  .legacy-journey .timeline-content {
    width: calc(90vw - 2.5rem);
    max-width: 100%;
    margin: 0 0 0 2rem;
    padding: 1rem 1rem 1rem 1rem;
  }
  .legacy-journey .timeline-item::after {
    top: 1.1rem;
    border-width: 7px;
    border-left-width: 10px;
  }
}
@media (max-width: 700px) {
  .legacy-journey .timeline-content {
    width: 100%;
    margin: 0;
    padding: 0.9rem 0.7rem;
  }
  .legacy-journey .timeline-item::after {
    content: none;
  }
}

@media (max-width: 900px) {
  .legacy-journey .timeline {
    flex-direction: column;
    align-items: center;
  }

  .legacy-journey .timeline-item {
    width: 100%;
    justify-content: center;
  }

  .legacy-journey .timeline-year {
    left: 50%;
    transform: translateX(-50%);
  }

  .legacy-journey .timeline-content {
    width: calc(100% - 2.5rem); /* Adjust width to fit */
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .legacy-journey .timeline-content {
    width: 100%;
    padding: 0.9rem 0.7rem;
  }
}

.legacy-info h3 {
  color: var(--oxford-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.legacy-info p {
  color: var(--oxford-blue-dark);
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: justify;
}
.legacy-quote {
  display: block;
  color: var(--oxford-blue);
  background: var(--french-gray);
  border-left: 4px solid var(--oxford-blue);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-style: italic;
  font-size: 1.08rem;
  margin: 1.2rem 0;
}
@media (max-width: 900px) {
  .legacy-profile {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 2rem;
    padding: 1.5rem 0.5rem;
  }
  .legacy-journey {
    align-items: stretch;
    margin-top: 2rem;
  }
}

/* MISSION, VISION & VALUES SECTION */
.mvv-section {
  background: #10192E;
  padding: 4rem 0 3rem 0;
}
.mvv-section .section-header h2 {
  color: var(--anti-flash-white);
}
.mvv-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.mvv-card {
  background: var(--platinum);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(26,40,66,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mvv-card h3 {
  color: var(--oxford-blue);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.mvv-card p {
  color: var(--oxford-blue-dark);
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: justify;
}
.mvv-vision {
  border-left: 6px solid var(--oxford-blue);
}
.mvv-mission {
  border-left: 6px solid var(--oxford-blue-alt);
}
.mvv-values {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  background: var(--platinum);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(26,40,66,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.mvv-values h3 {
  color: var(--oxford-blue);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.mvv-values ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mvv-values li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--oxford-blue-dark);
  font-size: 1.08rem;
  line-height: 1.6;
}
.mvv-values li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--oxford-blue-alt);
  font-size: 1rem;
  font-weight: bold;
}
.mvv-values strong {
  color: var(--oxford-blue);
}
@media (max-width: 900px) {
  .mvv-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .mvv-card {
    max-width: 100%;
  }
}

/* LEADERSHIP TEAM SECTION */
.leadership-team-section {
  background: var(--anti-flash-white);
  padding: 4rem 0 3rem 0;
}
.leadership-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.leader-card {
  background: var(--platinum);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(26,40,66,0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.18s, box-shadow 0.18s;
}
.leader-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(26,40,66,0.13);
}
.leader-card h3 {
  color: var(--oxford-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.leader-title {
  color: var(--oxford-blue-alt);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.leader-tags {
  color: var(--cadet-gray);
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
}
.leader-card p {
  color: var(--oxford-blue-dark);
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: justify;
}
@media (max-width: 900px) {
  .leadership-team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .leader-card {
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}

/* CUSTOMER TESTIMONIALS MARQUEE SECTION */
.testimonials-section {
  background: var(--anti-flash-white);
  padding: 4rem 0;
}
.testimonials-marquee {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0 auto;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: 2rem;
  animation: marquee 28s linear infinite;
  min-width: 100%;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-card {
  background: var(--platinum);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(26,40,66,0.07);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  min-width: 320px;
  max-width: 340px;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  flex-shrink: 0;
}
.testimonial-img {
 
  height: 60px;
  border-radius: 20px;
  object-fit: cover;
  background: var(--anti-flash-white);
  box-shadow: 0 2px 8px rgba(26,40,66,0.07);
  flex-shrink: 0;
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-name {
  color: var(--oxford-blue);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}
.testimonial-text {
  color: var(--oxford-blue-dark);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .testimonial-card {
    min-width: 240px;
    max-width: 260px;
    padding: 1rem 0.7rem 1rem 0.7rem;
    gap: 0.7rem;
  }
  .testimonial-img {
    width: 44px;
    height: 44px;
  }
}

.w3s-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.w3s-timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #003366;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}
.w3s-timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
.w3s-timeline-container.left {
  left: 0;
}
.w3s-timeline-container.right {
  left: 50%;
}
.w3s-timeline-content {
  padding: 20px 15px;
  background-color: #f1f1f1;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(26,40,66,0.10);
}
.w3s-timeline-container.left .w3s-timeline-content {
  margin-left: 0;
}
.w3s-timeline-container.right .w3s-timeline-content {
  margin-left: 0;
}
.w3s-timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: #fff;
  border: 4px solid #003366;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.w3s-timeline-container.right::after {
  left: -16px;
}
@media screen and (max-width: 600px) {
  .w3s-timeline::after {
    left: 31px;
  }
  .w3s-timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .w3s-timeline-container.right {
    left: 0%;
  }
  .w3s-timeline-container.left::after, .w3s-timeline-container.right::after {
    left: 15px;
  }
  .w3s-timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    right: auto;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f1f1f1 transparent transparent;
    margin-left: 0;
  }
  .w3s-timeline-container.left .w3s-timeline-content::before,
  .w3s-timeline-container.right .w3s-timeline-content::before {
    border-color: transparent transparent transparent #f1f1f1;
    left: 55px; /* Adjust as needed */
  }
}

.view-more-btn {
  background: none;
  border: none;
  color: var(--oxford-blue);
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.2s;
  float: right;
  display: block;
  width: auto;
  text-align: right;
  align-self: flex-end;
}
.view-more-btn:hover {
  color: var(--oxford-blue-alt, #1a3359);
}

.view-more-legecy {
  display: none; /* Hidden by default */
}

.view-more-vandana {
  display: none; /* Hidden by default */
}

.view-more-dinakar {
  display: none; /* Hidden by default */
}

.who-we-are-section {
  background: var(--anti-flash-white);
  padding: 4rem 0 3rem 0;
}

button,
input[type="submit"],
.hero-btn,
.contact-form button {
  background: var(--cadet-gray);
  color: var(--anti-flash-white);
  border: none;
  border-radius: 8px;
  /* padding: 0.9rem 2.5rem; */
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}

button:hover,
input[type="submit"]:hover,
.hero-btn:hover,
.contact-form button:hover {
  background: #6c6f77;
  color: var(--anti-flash-white);
}

@media (max-width: 700px) {
  .nav-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* CUSTOMER FOOTPRINT SECTION */
.customer-footprint-section {
  background: #10192E;
  padding: 4rem 0;
}
.customer-footprint-section .section-header h2,
.customer-footprint-section .section-header h3,
.customer-footprint-section .section-header p {
  color: var(--anti-flash-white);
}
.customer-logos-marquee {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0 auto;
  position: relative;
}

.customer-logos-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;

  /* 👆 alternate makes it reverse direction */
}

@keyframes customer-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); } /* shift fully left */
}


.customer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 180px;
  flex-shrink: 0;
}
.customer-logo {

  height: 120px;
  object-fit: cover;
  background: var(--platinum);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(26,40,66,0.07);
  padding: 0.5rem;
  max-width: 100%;
  border: 3px solid var(--anti-flash-white);
  transition: transform 0.18s;
  margin-bottom: 0.8rem;
}
.customer-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(26,40,66,0.13);
}
.customer-description {
  color: var(--anti-flash-white);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  max-width: 160px;
  word-wrap: break-word;
  text-align: center;
}
@media (max-width: 900px) {
  .customer-logos-track {
    gap: 1.2rem;
  }
  .customer-item {
    min-width: 140px;
  }
  .customer-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 0.6rem;
  }
  .customer-description {
    font-size: 0.8rem;
    max-width: 130px;
  }
}
@media (max-width: 600px) {
  .customer-item {
    min-width: 100px;
  }
  .customer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
  }
  .customer-description {
    font-size: 0.7rem;
    max-width: 90px;
    line-height: 1.2;
  }
}

.about-us-content {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap; 
  align-items: center; /* Changed to center for vertical alignment */
  gap: 3rem;
  justify-content: center; 
}
.about-us-content-text {
  flex: 1 1 60%; 
}

.about-us-image {
  flex: 1 1 35%; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us-image img {
  width: 100%;
  height: 500px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(26,40,66,0.13);
  background: var(--anti-flash-white);
}
@media (max-width: 900px) {
  .about-us-content {
    flex-direction: column; 
    align-items: center;
    gap: 2rem;
  }
  .about-us-content-text, .about-us-image {
    flex: 1 1 100%; 
    max-width: 100%;
  }
  .about-us-image img {
    width: 280px;
  }
}

.founder-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(26,40,66,0.18), 0 0 0 6px var(--anti-flash-white);
  border: 5px solid var(--oxford-blue);
  background: var(--anti-flash-white);
  display: block;
  transition: transform 0.18s, box-shadow 0.18s;
}
.founder-img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 36px rgba(26,40,66,0.22), 0 0 0 8px var(--platinum);
}
@media (max-width: 700px) {
  .founder-img {
    width: 110px;
    height: 110px;
    margin-bottom: 1rem;
  }
}

.founder-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.2rem;
}
.founder-details h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: var(--oxford-blue);
  font-weight: 700;
}
.founder-details h4 {
  font-size: 1.05rem;
  color: var(--oxford-blue-alt);
  font-weight: 600;
}
@media (max-width: 700px) {
  .founder-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
} 

.contact-section {
    padding: 30px 0;
    background-color: #B9BDC4;
    text-align: center;
}

.contact-section .section-header h2 {
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.contact-info, .contact-form {
    background-color: var(--anti-flash-white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(26, 40, 66, 0.08);
    flex: 1 1 45%; /* Adjust width for responsiveness */
    max-width: 500px;
    min-width: 300px;
}

.contact-info h3, .contact-form h3 {
    color: var(--oxford-blue-dark);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--charcoal);
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
    color: var(--oxford-blue);
    font-size: 1.3em;
}

.contact-info p a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info p a:hover {
    color: var(--oxford-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--oxford-blue-alt);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: calc(100% - 20px); /* Account for padding */
    padding: 12px 10px;
    border: 1px solid var(--light-gray-border);
    border-radius: 6px;
    font-size: 1em;
    color: var(--charcoal);
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--oxford-blue);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--oxford-blue);
    color: var(--anti-flash-white);
    padding: 14px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--oxford-blue-dark);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .contact-form {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 20px;
    }
} 

/* Image Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 60px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    position: relative;
}

#modalImage {
    width: 100%;
    height: auto;
    display: block;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev-button, .next-button {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next-button {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-button:hover, .next-button:hover {
    background-color: rgba(0,0,0,0.8);
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* PDF Modal Styles */
.pdf-modal {
    z-index: 1001; /* Higher than image modal */
}

.pdf-modal-content {
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    background: var(--anti-flash-white);
    border-radius: 12px;
    overflow: hidden;
}

.pdf-viewer {
    flex: 1;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pdf-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--oxford-blue);
    color: var(--anti-flash-white);
    min-height: 60px;
}

.pdf-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

#pdfTitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--anti-flash-white);
}

#pdfCounter {
    font-size: 0.9rem;
    color: var(--platinum);
}

.pdf-prev, .pdf-next {
    background: var(--oxford-blue-alt);
    color: var(--anti-flash-white);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.pdf-prev:hover, .pdf-next:hover {
    background: var(--cadet-gray);
    transform: scale(1.1);
    color: var(--anti-flash-white);
}

@media only screen and (max-width: 700px) {
    .pdf-modal-content {
        width: 95%;
        height: 85vh;
    }
    
    .pdf-navigation {
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
    }
    
    .pdf-info {
        order: -1;
    }
    
    .pdf-prev, .pdf-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .pdf-navigation {
        flex-direction: row;
    }
    
    .pdf-info {
        order: 0;
    }
}

/* Product List Page Specific Styles */
.product-list-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  /* object-fit: contain; */
  margin-bottom: 0.5rem;
  background: #f4f6fa;
  border-radius: 8px;
  aspect-ratio: 1 / 1; /* Enforce 1:1 aspect ratio */
  transition: transform 0.3s ease;
}

.product-list-item:hover .product-list-img {
  transform: scale(1.05);
}

/* Filter Sidebar Styles */
.product-list-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.filter-sidebar {
    width: 280px;
    background: var(--anti-flash-white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(26,40,66,0.07);
    padding: .7rem;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    flex-shrink: 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--platinum);
    display: none!important;
}

.filter-header h3 {
    color: var(--oxford-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.clear-filters-btn {
    background: var(--cadet-gray);
    color: var(--anti-flash-white);
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
}

.clear-filters-btn:hover {
    background: var(--oxford-blue-alt);
}



.filter-group h4 {
    color: var(--oxford-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--platinum);
}

.search-input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--platinum);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--oxford-blue);
    background: var(--anti-flash-white);
    transition: border-color 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--oxford-blue);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    position: relative;
}

.filter-option.sub {
    margin-left: 1.5rem;
    border-left: 2px solid var(--platinum);
    padding-left: 1rem;
}

.filter-option.sub-sub {
    margin-left: 3rem;
    border-left: 2px solid var(--french-gray);
    padding-left: 1rem;
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--oxford-blue);
    cursor: pointer;
}

.filter-option label {
    color: var(--oxford-blue-dark);
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s;
    flex: 1;
}

.filter-option label:hover {
    color: var(--oxford-blue);
}

.subcategory-options,
.sub-subcategory-options {
    display: none;
    margin-top: 0.5rem;
}

.subcategory-options.show,
.sub-subcategory-options.show {
    display: block;
}

/* Product Grid Container */
.product-grid-container {
    flex: 1;
    min-width: 0;
}

.product-grid-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--anti-flash-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26,40,66,0.07);
}

.results-info {
    color: var(--oxford-blue-dark);
    font-size: 1rem;
    font-weight: 500;
}

.sort-options select {
    padding: 0.6rem 1rem;
    border: 2px solid var(--platinum);
    border-radius: 8px;
    background: var(--anti-flash-white);
    color: var(--oxford-blue);
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.3s;
}

.sort-options select:focus {
    outline: none;
    border-color: var(--oxford-blue);
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.filter-toggle-btn {
    background: var(--oxford-blue);
    color: var(--anti-flash-white);
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(26,40,66,0.2);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-toggle-btn:hover {
    background: var(--oxford-blue-alt);
    transform: translateY(-2px);
}

/* Brand Tree Hierarchy Styles */
.brand-tree {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-node {
    border: 1px solid var(--platinum);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--platinum);
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
    color: var(--oxford-blue);
}

.brand-header:hover {
    background: var(--french-gray);
}

.brand-toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
    color: var(--oxford-blue);
}

.brand-header.expanded .brand-toggle-icon {
    transform: rotate(90deg);
}

.brand-name {
    flex: 1;
}

.brand-categories {
    display: none;
    background: var(--anti-flash-white);
    border-top: 1px solid var(--platinum);
}

.brand-categories.show {
    display: block;
}

.category-node {
    border-bottom: 1px solid var(--platinum);
    position: relative;
}

.category-node:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1.5rem;
    background: var(--anti-flash-white);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--oxford-blue-dark);
}

.category-header:hover {
    background: var(--platinum);
    transform: translateX(2px);
}

.category-name {
    flex: 1;
}

.hover-icon {
    font-size: 0.8rem;
    color: var(--oxford-blue-alt);
    opacity: 0;
    transition: opacity 0.3s;
}

.category-header:hover .hover-icon {
    opacity: 1;
}

/* Subcategory Hover Window */
.subcategory-hover-window {
    position: fixed;
    background: var(--anti-flash-white);
    border: 2px solid var(--oxford-blue);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(26,40,66,0.2);
    z-index: 10000;
    min-width: 250px;
    max-width: 350px;
    display: none;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.subcategory-hover-window.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.subcategory-window-header {
    background: var(--oxford-blue);
    color: var(--anti-flash-white);
    padding: 1rem 1.5rem;
    border-radius: 10px 10px 0 0;
}

.subcategory-window-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.subcategory-window-content {
    padding: 1rem 0;
    max-height: 300px;
    overflow-y: auto;
}

.subcategory-window-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    border-left: 3px solid transparent;
}

.subcategory-window-item:hover {
    background: var(--platinum);
    border-left-color: var(--oxford-blue);
}

.subcategory-window-item:active {
    background: var(--french-gray);
}

.subcategory-window-item .item-name {
    font-size: 0.95rem;
    color: var(--oxford-blue-dark);
    font-weight: 500;
}

/* Animation for window appearance */
@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.subcategory-hover-window.animate-in {
    animation: slideInScale 0.3s ease-out forwards;
}

/* Hidden products animation */
.product-list-item.hidden {
    display: none;
}

.product-list-item.fade-out {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.product-list-item.fade-in {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .product-list-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-sidebar {
        /* display: none; */
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--anti-flash-white);
        /* z-index: 1000; */
        padding: 2rem;
        border-radius: 0;
        max-height: none;
        overflow-y: auto;
    }
    
    .filter-sidebar.show {
        display: block;
    }
    
    .mobile-filter-toggle {
        display: block;
    }
    
    .product-grid-container {
        width: 100%;
    }
    
    .product-grid-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .filter-header {
        position: relative;
    }
    
    .filter-header::after {
        content: '×';
        position: absolute;
        top: 0;
        right: 0;
        font-size: 2rem;
        cursor: pointer;
        color: var(--oxford-blue);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--platinum);
    }
}

@media (max-width: 600px) {
    .filter-sidebar {
        padding: 1rem;
    }
    
    .product-grid-header {
        padding: 1rem;
    }
    
    .filter-option.sub {
        margin-left: 1rem;
    }
    
    .filter-option.sub-sub {
        margin-left: 2rem;
    }
} 

/* SECTION SPACING AND STYLES */
.customer-footprint-section,
.testimonials-section,
.careers-section {
  padding: 4rem 0; /* Add top and bottom padding for separation */
  position: relative;
  z-index: 1; /* Ensure content is above potential overlapping elements */
}

.customer-footprint-section {
  background-color: #10192E; /* Subtle background to distinguish */
}

.careers-section {
  background-color: var(--oxford-blue); /* Subtle background to distinguish */
}

.testimonials-section {
  background-color: var(--platinum); /* Another background color for variation */
}

/* Add some margin to the bottom of sections to prevent them from touching */
.customer-footprint-section,
.testimonials-section {
  margin-bottom: 0; /* Adjust as needed for overall layout */
} 
.careers-section h3{
  color: var(--anti-flash-white)!important;
}
.careers-section h2 {
  color: var(--anti-flash-white)!important;
}
.careers-section p {
  color: var(--anti-flash-white)!important;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.tab-button {
  background: var(--platinum);
  border: none;
  padding: 0.8rem 1.5rem;
  margin: 0 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--oxford-blue);
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}
.tab-button.active {
  background: var(--oxford-blue);
  color: var(--anti-flash-white);
}
.tab-button:hover {
  background: var(--oxford-blue-alt);
  color: var(--anti-flash-white);
}
.tab-content {
  display: none;
  padding: 1.5rem;
  background: var(--platinum);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(26,40,66,0.07);
  color: var(--oxford-blue-dark);
  font-size: 1.08rem;
  line-height: 1.7;
}
.tab-content.active {
  display: block;
}
