/* 
 * NQ Industries LLC - Main Stylesheet
 * Modern, bold industrial design
 */

/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

/* ===========================
   HEADER STYLES
   =========================== */
.header_section {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(31, 48, 33, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header_top {
  padding: 12px 0;
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header_top .contact_nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 12px;
}

.header_top .contact_nav a {
  color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.header_top .contact_nav a i {
  margin-right: 8px;
  background-color: #D4AF37;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1F3021;
  border-radius: 4px;
  transition: all 0.3s;
}

.header_top .contact_nav a:hover {
  color: #D4AF37;
}

.header_top .contact_nav a:hover i {
  transform: scale(1.1);
}

.header_bottom {
  padding: 15px 12px;
}

.header_bottom .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}

.navbar-brand img {
  max-width: 280px;
  height: auto;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  font-weight: 500;
  padding: 8px 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: all 0.3s;
  position: relative;
}

.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: all 0.3s;
  transform: translateX(-50%);
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover::after,
.custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
  width: 60%;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover {
  color: #D4AF37;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  border: none;
  outline: none;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  border-radius: 5px;
  transition: all 0.3s;
}

/* ===========================
   HERO SECTION - SPLIT DESIGN
   =========================== */
.hero_area {
  margin-top: 110px;
  min-height: calc(100vh - 110px);
}

.split-hero {
  display: flex;
  min-height: calc(100vh - 110px);
  position: relative;
}

.split-section {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  transition: all 0.5s ease;
}

.split-section:hover {
  flex: 1.1;
}

.split-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  transition: all 0.5s;
}

.split-section:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.split-section.manufacturing {
  background: url('https://www.nqindustries.com/images/30Yb.jpg') center/cover no-repeat;
}

.split-section.processing {
  background: url('https://www.nqindustries.com/images/proc-laser.jpg') center/cover no-repeat;
}

.split-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 500px;
}

.split-content .icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.split-section:hover .icon-wrapper {
  transform: scale(1.1);
  background: rgba(212, 175, 55, 0.25);
}

.split-content .icon-wrapper i {
  font-size: 32px;
  color: #D4AF37;
}

.split-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.split-content .tagline {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.95;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.split-content .description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.9;
}

.split-content .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Split divider line */
.split-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #D4AF37, transparent);
  z-index: 3;
  transform: translateX(-50%);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary-custom {
  background: #D4AF37;
  color: #1F3021;
  padding: 14px 35px;
  border: 2px solid #D4AF37;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: transparent;
  color: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary-custom {
  background: transparent;
  color: white;
  padding: 14px 35px;
  border: 2px solid white;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary-custom:hover {
  background: white;
  color: #1F3021;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* ===========================
   EXPERIENCE BANNER
   =========================== */
.experience-banner {
  background: linear-gradient(135deg, #1F3021 0%, #2a4229 100%);
  padding: 50px 0;
  text-align: center;
  color: white;
}

.experience-banner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.experience-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ===========================
   FOOTER
   =========================== */
.info_section {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 60px 0 20px 0;
}

.info_section h4 {
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.info_section .info_col {
  margin-bottom: 30px;
}

.info_section a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
}

.info_section a:hover {
  color: #D4AF37;
}

.info_section .info_links a {
  display: block;
  margin-bottom: 10px;
}

.info_section .contact_link_box a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.info_section .contact_link_box a i {
  margin-right: 8px;
  min-width: 20px;
}

.footer_section {
  background-color: #1a1a1a;
  color: #888;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */
@media (max-width: 992px) {
  .split-hero {
    flex-direction: column;
  }

  .split-section {
    min-height: 60vh;
  }

  .split-content h1 {
    font-size: 2.5rem;
  }

  .experience-stats {
    gap: 40px;
  }

  .navbar-brand img {
    max-width: 220px;
  }

  .custom_nav-container .navbar-nav {
    padding-top: 15px;
    align-items: center;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 5px 25px;
    margin: 5px 0;
  }
}

@media (max-width: 768px) {
  .header_top .contact_nav a span {
    display: none;
  }

  .split-content h1 {
    font-size: 2rem;
  }

  .split-content .tagline {
    font-size: 1rem;
  }

  .experience-banner h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .split-section {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .split-content h1 {
    font-size: 1.75rem;
  }

  .split-content .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .split-content .icon-wrapper i {
    font-size: 24px;
  }

  .experience-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}


/* Custom styles for secondary pages */
.inner_page_wrapper {
  /* Increased top padding to clear the tall double-header */
  padding-top: 240px !important; 
  padding-bottom: 80px;
  min-height: 80vh;
  background-color: #ffffff;
  display: block;
  position: relative;
  /* This ensures it doesn't try to slide under the header */
  clear: both; 
}

.inner_page_wrapper h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
  text-transform: uppercase;
}

.founder-card {
  margin-bottom: 30px;
  text-align: center;
}

.founder-card img {
  width: 100%;
  max-width: 250px;
  border-radius: 5px;
  margin-bottom: 15px;
}