/* ============================================================
   QAS INTERNATIONAL — ULTRA MODERN DESIGN SYSTEM v3.0
   Primary: #1f428a | Accent: #dc171f
   Fonts: Syne (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   ROOT VARIABLES
   =========================== */
:root {
  --navy:         #1f428a;
  --navy-dark:    #152d61;
  --navy-deeper:  #0d1e42;
  --navy-light:   #2a56b5;
  --navy-pale:    #e8edf8;
  --navy-glass:   rgba(31,66,138,0.08);
  --red:          #dc171f;
  --red-dark:     #a51117;
  --red-light:    #ff2f37;
  --red-glow:     rgba(220,23,31,0.25);
  --white:        #ffffff;
  --off-white:    #f5f7fc;
  --light-gray:   #eef0f6;
  --mid-gray:     #8892a4;
  --text:         #1a2035;
  --text-light:   #000;

  /* Aliases used by header/footer block */
  --qas-navy:        #1f428a;
  --qas-navy-dark:   #152d61;
  --qas-navy-deeper: #0d1e42;
  --qas-navy-light:  #2a56b5;
  --qas-red:         #dc171f;
  --qas-red-dark:    #a51117;
  --qas-white:       #ffffff;
  --qas-cream:       #f5f7fc;
  --qas-dark:        #1a2035;
  --qas-font: 'Inter', sans-serif;
  --qas-transition:  0.28s ease;
  --qas-shadow-logo: 0 8px 24px rgba(0,0,0,0.10);
  --qas-shadow-logo-compact: 0 4px 16px rgba(0,0,0,0.13);

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:    0 2px 16px rgba(31,66,138,0.07);
  --shadow-md:    0 8px 40px rgba(31,66,138,0.13);
  --shadow-lg:    0 24px 64px rgba(31,66,138,0.18);
  --shadow-xl:    0 40px 100px rgba(31,66,138,0.24);
  --shadow-red:   0 12px 40px rgba(220,23,31,0.3);

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --radius-pill:  999px;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;

  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===========================
   SECTION UTILITY
   =========================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.section-tag.tag-left::before { display: none; }
.section-tag.tag-white { color: rgba(255,255,255,0.55); }
.section-tag.tag-white::before,
.section-tag.tag-white::after { background: var(--red); }

.section-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
}
.section-headline .accent { color: var(--navy); }
.section-headline .accent-red { color: var(--red); }
.section-headline.white { color: white; }

/* ===========================
   CURSOR
   =========================== */
@media (min-width: 992px) {
  * { cursor: none !important; }
}

.mouse-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  top: 0;
  left: 0;
  will-change: transform;
}
.cursor-outer {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(31,66,138,0.35);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
.cursor-inner {
  width: 8px;
  height: 8px;
  background: var(--navy);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

/* ===========================
   LOADER
   =========================== */
.loader-wrap {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
  flex-direction: column;
  gap: 0;
}
.loader-wrap.hide-loader { opacity: 0; visibility: hidden; }

.loader-geo {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 32px;
}

.loader-geo .geo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}
.loader-geo .geo-ring:nth-child(1) {
  border-top-color: var(--red);
  border-right-color: rgba(220,23,31,0.3);
  animation: spinCW 1.6s linear infinite;
}
.loader-geo .geo-ring:nth-child(2) {
  inset: 14px;
  border-bottom-color: var(--navy);
  border-left-color: rgba(31,66,138,0.25);
  animation: spinCCW 2.2s linear infinite;
}
.loader-geo .geo-ring:nth-child(3) {
  inset: 28px;
  border-top-color: rgba(31,66,138,0.2);
  animation: spinCW 3s linear infinite;
}

.loader-geo .geo-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-geo .geo-center img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: none;
  animation: logoPulse 2s ease-in-out infinite;
}

.loader-text { text-align: center; }
.loader-text .brand {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  background: linear-gradient(135deg, var(--navy) 0%, var(--red) 60%, var(--navy-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.loader-text .sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-progress {
  width: 160px;
  height: 2px;
  background: rgba(31,66,138,0.1);
  border-radius: 2px;
  margin-top: 24px;
  overflow: hidden;
}
.loader-progress::after {
  content: '';
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--navy-light), var(--red));
  border-radius: 2px;
  animation: loadBar 1.4s var(--ease-out) forwards;
}

@keyframes loadBar    { from{width:0} to{width:100%} }
@keyframes spinCW     { to{transform:rotate(360deg)} }
@keyframes spinCCW    { to{transform:rotate(-360deg)} }
@keyframes logoPulse  { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.1);opacity:.8} }

/* ===========================
   TOP NAVBAR
   =========================== */
.tc-topNavbar-st1 {
  background: var(--navy-deeper) !important;
  padding: 9px 0 !important;
  position: relative;
  z-index: 1041;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media(max-width:991px){ .tc-topNavbar-st1 { display:none !important; } }

.tc-topNavbar-st1 .info-links a {
  color: rgba(255,255,255,0.5);
  font-size: 12.5px;
  pointer-events: none;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.tc-topNavbar-st1 .info-links a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--red-glow);
}
.tc-topNavbar-st1 .links a {
  color: rgba(255,255,255,0.7);
  font-size: 12.5px;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.3px;
}
.tc-topNavbar-st1 .links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

/* ===========================
   MAIN NAVBAR — ULTRA MODERN
   =========================== */
.tc-navbar-st1 {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 !important;
  border-bottom: 1px solid rgba(31,66,138,0.07);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow 0.4s ease, background 0.4s ease;
}
.tc-navbar-st1.scrolled {
  background: rgba(255,255,255,0.99) !important;
  box-shadow: 0 4px 30px rgba(31,66,138,0.1);
}

.tc-navbar-st1 .navbar-brand { padding: 12px 0; }
.tc-navbar-st1 .navbar-brand img {
  height: 50px;
  width: auto;
  transition: transform 0.4s var(--ease-spring);
}
.tc-navbar-st1 .navbar-brand:hover img { transform: scale(1.05); }

/* Nav links */
.tc-navbar-st1 .navbar-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text) !important;
  padding: 26px 20px !important;
  position: relative;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.tc-navbar-st1 .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 20px; right: 20px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.tc-navbar-st1 .navbar-nav .nav-link:hover,
.tc-navbar-st1 .navbar-nav .nav-link.active { color: var(--navy) !important; }
.tc-navbar-st1 .navbar-nav .nav-link:hover::after,
.tc-navbar-st1 .navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* CTA button */
.tc-navbar-st1 .nav-side .butn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 26px !important;
  border-radius: var(--radius-sm) !important;
  background: var(--navy) !important;
  color: white !important;
  border: 2px solid var(--navy);
  transition: all 0.35s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.tc-navbar-st1 .nav-side .butn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease-out);
  z-index: 0;
}
.tc-navbar-st1 .nav-side .butn span { position: relative; z-index: 1; }
.tc-navbar-st1 .nav-side .butn:hover {
  border-color: var(--red) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.tc-navbar-st1 .nav-side .butn:hover::before { transform: translateX(0); }

/* Toggler */
.navbar-toggler {
  border: 1.5px solid rgba(31,66,138,0.2);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: transparent;
  transition: all 0.3s ease;
}
.navbar-toggler:hover { background: var(--navy-pale); border-color: var(--navy); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2831%2c66%2c138%2c1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile */
@media(max-width:991px){
  .tc-navbar-st1 .navbar-collapse {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 16px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-top: 1px solid var(--light-gray);
  }
  .tc-navbar-st1 .navbar-nav .nav-link { padding: 14px 16px !important; }
  .tc-navbar-st1 .navbar-nav .nav-link::after { display: none; }
  .tc-navbar-st1 .nav-side { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--light-gray); }
  .tc-navbar-st1 .nav-side .butn { width: 100%; justify-content: center; }
}

/* ===========================
   DROPDOWNS
   =========================== */
.dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  padding: 10px;
  min-width: 230px;
  background: white;
  box-shadow: 0 24px 64px rgba(31,66,138,0.15), 0 4px 16px rgba(0,0,0,0.07);
  border-top: 3px solid var(--navy);
  margin-top: 0 !important;
  animation: menuSlideIn 0.22s var(--ease-out);
}
@keyframes menuSlideIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

.dropdown-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown-item:hover { background: var(--navy-pale); color: var(--navy); padding-left: 18px; }

.dropdown-submenu { position: relative; }
.dropdown-submenu .dropdown-menu {
  top: -10px;
  left: calc(100% + 6px);
  margin: 0 !important;
  display: none;
  position: absolute;
  border-top: 3px solid var(--red);
}
.dropdown-submenu:hover > .dropdown-menu { display: block; }

@media(max-width:991px){
  .dropdown-submenu .dropdown-menu {
    position: static;
    left: 0; top: 0;
    box-shadow: none;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    border-top: none;
    padding-left: 12px;
    margin-top: 4px !important;
    display: none;
  }
  .dropdown-submenu.open > .dropdown-menu { display: block; }
}

/* ===========================
   HERO SLIDER — ULTRA MODERN
   =========================== */
.tc-header-st1 {
  position: relative;
  overflow: hidden;
}

.header-slider {
  position: relative;
  height: 680px;
}
.header-slider .item {
  height: 680px;
  position: relative;
  overflow: hidden;
}
.header-slider .item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s ease-out;
}
.owl-item.active .header-slider .item img,
.header-slider .owl-item.active .item img {
  transform: scale(1);
}

.header-slider .item::before {
  content: '';
  position: absolute;
  inset: 0;
  
  z-index: 1;
}
.header-slider .item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy-light), var(--red));
  z-index: 5;
  opacity: 0.7;
}

.hero-content-box {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,23,31,0.15);
  border: 1px solid rgba(220,23,31,0.35);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulseDot 2s ease-in-out infinite;
  display: block;
}
@keyframes pulseDot {
  0%,100%{ box-shadow: 0 0 0 0 rgba(220,23,31,0.5); }
  50%{ box-shadow: 0 0 0 6px rgba(220,23,31,0); }
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 800;
  line-height: 1.04;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero-title .line-red { color: var(--red); }
.hero-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  transition: all 0.35s var(--ease-out);
  border: 2px solid var(--red);
  position: relative;
  overflow: hidden;
}
.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
  z-index: 0;
}
.hero-btn-primary span, .hero-btn-primary i { position: relative; z-index: 1; }
.hero-btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-red); }
.hero-btn-primary:hover::before { transform: scaleX(1); }

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.35s var(--ease-out);
}
.hero-btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

/* Slider Nav */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 10;
  pointer-events: none;
}
.owl-prev, .owl-next {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.1) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  border-radius: var(--radius-pill) !important;
  color: white !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all 0.3s var(--ease-out) !important;
  font-size: 15px !important;
}
.owl-prev:hover, .owl-next:hover {
  background: var(--red) !important;
  border-color: var(--red) !important;
  transform: scale(1.1);
  box-shadow: var(--shadow-red);
}

/* Dots */
.owl-dots {
  position: absolute;
  bottom: 28px;
  width: 100%;
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.owl-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.3) !important;
  border-radius: 50%;
  transition: all 0.35s ease !important;
}
.owl-dot.active {
  width: 32px;
  border-radius: 4px;
  background: white !important;
}

/* Slide stats strip */
.hero-stats-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  background: rgba(13,30,66,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: white;
  line-height: 1;
  display: block;
}
.stat-item .stat-num span { color: var(--red); }
.stat-item .stat-label {
  font-size: 11px;
  color:white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

@media(max-width:991px){
  .header-slider, .header-slider .item { height: 520px; }
  .hero-content-box { padding: 0 24px; }
  .hero-stats-strip { display: none; }
}
@media(max-width:767px){
  .header-slider, .header-slider .item { height: 400px !important; }
  .hero-content-box { padding: 0 20px; }
  .owl-prev, .owl-next { width: 40px !important; height: 40px !important; font-size: 13px !important; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
@media(max-width:576px){
  .header-slider, .header-slider .item { height: 320px !important; }
}

/* ===========================
   PRODUCTS SECTION — MODERN CARD GRID
   =========================== */
.tc-products-section {
  padding: 110px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.tc-products-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(58% 100% at 50% 0%);
  z-index: 0;
}
.tc-products-section::after {
  content: '';
  position: absolute;
  top: 50%; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,66,138,0.06) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,66,138,0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  height: 380px;
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-14px) scale(1.01);
  box-shadow: var(--shadow-xl);
}

.category-card .img {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}
.category-card:hover .img { outline-color: var(--red-dark); }
.category-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.category-card:hover .img img { transform: scale(1.12); }

.category-card .img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,30,66,0.96) 0%,
    rgba(21,45,97,0.6) 40%,
    rgba(21,45,97,0.1) 70%,
    transparent 100%
  );
  z-index: 1;
  transition: opacity 0.4s ease;
}
.category-card:hover .img::before { opacity: 0.88; }

.category-card .img::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06) 0%, transparent 100%);
  z-index: 2;
  transition: top 0.6s var(--ease-out);
  transform: skewY(-4deg);
}
.category-card:hover .img::after { top: 110%; }

.category-card .info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  color: white;
  z-index: 3;
  transition: transform 0.45s var(--ease-out);
}
.category-card:hover .info { transform: translateY(-8px); }

.category-card .info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
}
.category-card .info .product-count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.18);
}

.category-card .info .arrow-icon {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 46px; height: 46px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  opacity: 0;
  transform: translateX(-10px) scale(0.8);
  transition: all 0.38s var(--ease-spring);
  box-shadow: 0 8px 24px rgba(220,23,31,0.4);
}
.category-card:hover .info .arrow-icon {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.category-card .cat-label {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 4;
  background: rgba(13,30,66,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.35s var(--ease-out);
}
.category-card:hover .cat-label { opacity: 1; transform: translateY(0); }

.category-card.best-selling-card .img::before {
  background: linear-gradient(to top, rgba(13,30,66,0.97) 0%, rgba(31,66,138,0.55) 50%, transparent 100%);
}
.category-card.best-selling-card .info .badge-featured {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: white;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(220,23,31,0.4);
}
.category-card.best-selling-card .info h3 { font-size: 26px; }
.category-card.best-selling-card .info .arrow-icon {
  background: white;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

@media(max-width:992px){ .category-grid { grid-template-columns: repeat(2,1fr); gap: 18px; } }
@media(max-width:576px){
  .category-grid { grid-template-columns: 1fr; }
  .category-card { height: 320px; }
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border: 2px solid var(--navy);
  border-radius: var(--radius-pill);
  transition: all 0.38s var(--ease-out);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.view-all-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateX(-101%);
  transition: transform 0.38s var(--ease-out);
  z-index: 0;
  border-radius: var(--radius-pill);
}
.view-all-link span, .view-all-link i { position: relative; z-index: 1; transition: color 0.35s ease; }
.view-all-link:hover { color: white; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.view-all-link:hover::before { transform: translateX(0); }
.view-all-link .waving-arrow { animation: waveArrow 1.8s ease-in-out infinite; color: var(--red); }
.view-all-link:hover .waving-arrow { color: white; }
@keyframes waveArrow { 0%,100%{transform:translateX(0)} 40%{transform:translateX(6px)} 70%{transform:translateX(2px)} }

/* ===========================
   TEAM SECTION
   =========================== */
.tc-team-st3 {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.tc-team-st3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,66,138,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,66,138,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.tc-team-st3 .section-head { margin-bottom: 56px; }

.team-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 340px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,66,138,0.06);
  transition: box-shadow 0.4s ease, transform 0.45s var(--ease-out);
}
.team-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg); }

.team-card .img { width: 100%; height: 100%; position: relative; overflow: hidden; }
.team-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease-out);
  filter: grayscale(15%) contrast(1.05);
}
.team-card:hover .img img { transform: scale(1.08); filter: grayscale(0%) contrast(1.08); }

.team-card .img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,30,66,0.88) 0%, rgba(21,45,97,0.2) 50%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.team-card:hover .img::after { opacity: 1; }

.team-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 0;
  background: linear-gradient(to bottom, var(--red), var(--navy));
  z-index: 5;
  transition: height 0.4s var(--ease-out);
  border-radius: 0 0 2px 2px;
}
.team-card:hover::before { height: 100%; }

.team-card .team-info-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.38s var(--ease-out);
}
.team-card:hover .team-info-bar { opacity: 1; transform: translateY(0); }
.team-card .team-info-bar .social-icons {
  display: flex;
  gap: 8px;
}
.team-card .team-info-bar .social-icons a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  transition: all 0.25s ease;
}
.team-card .team-info-bar .social-icons a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

/* ===========================
   VIDEO SECTION — CINEMATIC
   =========================== */
.video-section-wrap {
  padding: 100px 0;
  background: transparent !important;
  position: relative;
  overflow: hidden;
}
.video-section-wrap::before,
.video-section-wrap::after { display: none !important; }

.video-section-wrap .section-head { position: relative; z-index: 1; }

.video-wrapper-outer {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 50px 100px rgba(0,0,0,0.5),
    0 0 60px rgba(31,66,138,0.2);
  margin-top: 50px;
  z-index: 1;
}
.video-wrapper-outer::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(220,23,31,0.4), rgba(31,66,138,0.4), rgba(220,23,31,0.4));
  z-index: -1;
  background-size: 200% 200%;
  animation: borderGlow 4s ease infinite;
}
@keyframes borderGlow {
  0%,100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}

.video-chrome-bar {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.video-chrome-bar .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.video-chrome-bar .dot:nth-child(1) { background: #ff5f57; }
.video-chrome-bar .dot:nth-child(2) { background: #febc2e; }
.video-chrome-bar .dot:nth-child(3) { background: #28c840; }
.video-chrome-bar .url-bar {
  flex: 1;
  max-width: 320px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  font-family: 'DM Sans', monospace;
}

.video-wrapper video {
  width: 100%; height: auto;
  display: block;
}

/* ===========================
   EVENTS SECTION
   =========================== */
.tc-projects-st8 {
  padding: 110px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.tc-projects-st8::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,66,138,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.project-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 22px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,66,138,0.06);
  transition: box-shadow 0.45s ease, transform 0.45s var(--ease-out);
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.project-card .img {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}
.project-card:hover .img { outline-color: var(--red-dark); }
.col-lg-8 .project-card:first-child .img { height: 300px; }
.col-lg-4 .project-card .img { height: 230px; }

.project-card .img img.img-cover {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.project-card:hover .img img.img-cover { transform: scale(1.09); }

.project-card .img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,30,66,0.9) 0%, rgba(13,30,66,0.2) 60%, transparent 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}
.project-card:hover .img::before { opacity: 0.85; }

.project-card .img::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 56px 56px 0;
  border-color: transparent var(--red) transparent transparent;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.project-card:hover .img::after { opacity: 1; }

.project-card .img .icon {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: auto;
  z-index: 3;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}
.project-card:hover .img .icon { opacity: 0; }

.project-card .info-card {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 26px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.project-card .info-card .bg { display: none; }
.project-card .info-card h6 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  text-transform: capitalize;
  line-height: 1.25;
}
.project-card .info-card .event-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.project-card .info-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.project-card .info-card .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: white;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
  width: fit-content;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--ease-out);
}
.project-card:hover .info-card .explore-btn { opacity: 1; transform: translateY(0); }

/* ===========================
   VISION & MISSION SECTION
   =========================== */
.tc-clients-st1 {
  padding: 110px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.tc-clients-st1::before,
.tc-clients-st1::after { display: none; }
.tc-clients-st1 .orb-left { display: none; }

.about-box {
  padding: 50px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.07);
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--navy-deeper);
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}
.about-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  border-radius: 0 2px 2px 0;
}
.about-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.vision-box::before { background: linear-gradient(to bottom, var(--navy-light), transparent); }
.vision-box::after  { background: linear-gradient(90deg, var(--navy-light), transparent); }
.mission-box::before { background: linear-gradient(to bottom, var(--red), transparent); }
.mission-box::after  { background: linear-gradient(90deg, var(--red), transparent); }
.about-box:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.about-box .box-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 28px;
}
.vision-box .box-icon { background: rgba(42,86,181,0.18); color: var(--navy-light); }
.mission-box .box-icon { background: rgba(220,23,31,0.15); color: var(--red-light); }
.about-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
}



/* ===========================
   BACK TO TOP
   =========================== */
.to_top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  z-index: 100;
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.to_top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.to_top:hover {
  background: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

/* ===========================
   WOW / ANIMATION HELPERS
   =========================== */
.wow { visibility: hidden; }

/* ===========================
   FSZ OVERRIDES
   =========================== */
.fsz-50 {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: var(--text) !important;
}
.fsz-18 { font-size: 18px !important; }
.fsz-20 { font-size: 20px !important; }
.fsz-16 { font-size: 16px !important; }

/* ===========================
   MISC / UTILITY
   =========================== */
.mb-20 { margin-bottom: 20px; }
.d-flex { display: flex !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.text-center { text-align: center !important; }
.text-lg-end { text-align: right; }
.me-2 { margin-right: 8px !important; }
.ms-2 { margin-left: 8px !important; }
.ms-3 { margin-left: 16px !important; }
.ms-auto { margin-left: auto !important; }
.mb-4 { margin-bottom: 24px !important; }
.mb-5 { margin-bottom: 48px !important; }
.mt-5 { margin-top: 48px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-2 { margin-top: 10px !important; }
.mt-3 { margin-top: 16px !important; }
.gx-5 { --bs-gutter-x: 3rem; }
.op-6 { opacity: .7; }
.op-7 { opacity: .85; }
.op-10 { opacity: 1; }
#scrollsmoother-container { min-height: 100vh; }


/* ============================================================
   HEADER v4.0 — Utility bar + Clipped navbar + Logo block
   (migrated from template.blade.php inline <style>)
   ============================================================ */

/* ── HEADER WRAPPER ── */
.header-wrapper {
  position: relative;
  z-index: 1040;
  height: 130px;
  transition: height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

/* ── UTILITY BAR ── */
.utility-bar {
  height: 48px;
  background: var(--qas-white);
  border-bottom: 1px solid rgba(31,66,138,0.08);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 360px;
  padding-right: 40px;
  transition: height 0.35s ease, padding 0.35s ease, opacity 0.35s ease, border 0.35s ease;
  overflow: hidden;
}

.utility-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.utility-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: #000000;
  font-family: 'DM Sans', sans-serif;
}

.utility-contact a {
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  transition: var(--qas-transition);
  white-space: nowrap;
}
.utility-contact a:hover { color: red; }

.utility-contact svg {
  width: 16px;
  height: 16px;
  stroke: #000000;
  stroke-width: 2.4;
}

.utility-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.utility-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: var(--qas-transition);
  color: #000000;
  text-decoration: none;
  font-size: 14px;               /* for the icon */
}

.utility-icons a:hover {
  color: #ffffff;
  background: var(--qas-red);
  transform: translateY(-1px);
}

.utility-icons a i {
  color: inherit;                /* icon inherits the anchor's color */
  font-size: 14px;
}
.utility-icons svg {
  width: 17px;
  height: 17px;
  stroke: #000000;
  stroke-width: 2.4;
}
.utility-icons a i {
  color: #000000;
  font-size: 14px;
}
.utility-icons a:hover i { color: var(--qas-navy); }



/* ── NAVBAR WRAPPER ── */
.navbar-wrapper {
  position: relative;
  height: 82px;
}

.main-navbar {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 82px;
  clip-path: polygon(55px 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  z-index: 1;
  background: linear-gradient(135deg, var(--qas-navy-dark) 0%, var(--qas-navy) 60%, var(--qas-navy-light) 100%);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-left: 375px;
  padding-right: 40px;
  list-style: none;
  height: 100%;
  margin: 0;
  width: 100%;
}
.navbar-menu li {
  position: relative;
  white-space: nowrap;
}
.navbar-menu li a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: var(--qas-transition);
  position: relative;
  padding-bottom: 4px;
}
.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0;
  height: 2.5px;
  background: var(--qas-red);
  border-radius: 2px;
  transition: width 0.28s ease;
  box-shadow: 0 0 8px rgba(220,23,31,0.5);
}
.navbar-menu li a:hover { color: #ffffff; }
.navbar-menu li a:hover::after { width: 100%; }

.dropdown-arrow {
  font-size: 11px;
  margin-left: 4px;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.28s ease;
  opacity: 0.7;
}
.navbar-menu li.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Contact CTA pill */
.navbar-menu .contact-cta { margin-left: auto; }
.navbar-menu .contact-cta a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 10px 24px;
  border-radius: 999px;
  transition: all 0.28s ease;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.navbar-menu .contact-cta a:hover {
  background: var(--qas-red);
  border-color: var(--qas-red);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(220,23,31,0.4);
  transform: translateY(-2px);
}
.navbar-menu .contact-cta a::after { display: none; }

/* ── DROPDOWN PANEL ── */
.dropdown-panel {
  display: none;
  position: fixed;
  z-index: 1060;
  background: white;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(13,30,66,0.2), 0 4px 16px rgba(0,0,0,0.08);
  min-width: 210px;
  padding: 10px 0;
  list-style: none;
  border-top: 3px solid var(--qas-red);
}
.dropdown-panel li { display: block; }
.dropdown-panel li a {
  display: flex;
  padding: 10px 22px;
  color: var(--qas-navy) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  align-items: center;
  justify-content: space-between;
}
.dropdown-panel li a::after { display: none !important; }
.dropdown-panel li a:hover {
  background: rgba(31,66,138,0.06);
  color: var(--qas-navy-dark) !important;
  padding-left: 26px;
}

/* Sub-panel for nested dropdowns */
.dropdown-panel .sub-panel {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;           /* sits flush to the right of parent li */
  margin-left: 4px;     /* small gap */
  z-index: 1070;
  background: white;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(13,30,66,0.2), 0 4px 16px rgba(0,0,0,0.08);
  min-width: 200px;
  padding: 10px 0;
  list-style: none;
  border-top: 3px solid var(--qas-navy-light);
}
/* ADD this if not already present */
.dropdown-panel .has-sub {
  position: relative;
}
.dropdown-panel .has-sub:hover > .sub-panel { display: block; }
.dropdown-panel, .sub-panel {
  transition: opacity 0.08s linear;
}
/* ── LOGO BLOCK ── */
.logo-block {
  position: absolute;
  top: -48px; left: 0;
  width: 340px;
  height: 180px;
  background: var(--qas-white);
  border-radius: 0 50px 70px 0;
  box-shadow: var(--qas-shadow-logo);
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 24px 0 0 30px;
  transition: all 0.35s ease;
}

.logo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-main {
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.logo-img-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-img-wrap img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s ease;
}
body.scrolled .logo-img-wrap img {
  height: 56px;
}
.logo-text-fallback { display: none; }
.logo-text-fallback .logo-qas {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--qas-navy);
  letter-spacing: 2px;
  transition: font-size 0.35s ease;
}
.logo-text-fallback .logo-int {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--qas-red);
  letter-spacing: 0.5px;
  margin-left: 2px;
  margin-bottom: 3px;
  align-self: flex-end;
  transition: font-size 0.35s ease;
}

.logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.3;
  max-width: 210px;
  transition: font-size 0.35s ease, opacity 0.35s ease, max-height 0.35s ease;
}

.logo-accent-line {
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--qas-navy), var(--qas-red));
  border-radius: 2px;
  margin-top: 8px;
  transition: width 0.35s ease, height 0.35s ease, margin 0.35s ease;
}

/* ── SCROLLED STATE ── */
body.scrolled .utility-bar {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  opacity: 0;
}

body.scrolled .header-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100px;
  box-shadow: 0 4px 24px rgba(13,30,66,0.12);
  background: transparent;
}

body.scrolled .logo-block {
  top: 10px;
  height: 80px;
  width: 250px;
  padding: 10px 0 0 20px;
  border-radius: 0 30px 50px 0;
  box-shadow: var(--qas-shadow-logo-compact);
}
body.scrolled .logo-tagline {
  font-size: 7px;
  letter-spacing: 1.2px;
  max-width: 150px;
}
body.scrolled .logo-accent-line {
  width: 22px;
  height: 2px;
  margin-top: 3px;
}
body.scrolled .navbar-menu { padding-left: 275px; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 50;
  padding: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -5px); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--qas-navy-deeper) 0%, var(--qas-navy) 100%);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-overlay a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--qas-transition);
}
.mobile-menu-overlay a:hover { color: var(--qas-red); }
.mobile-menu-overlay .contact-cta-mobile a {
  font-weight: 800;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(220,23,31,0.15);
  backdrop-filter: blur(8px);
}
.mobile-menu-overlay .contact-cta-mobile a:hover {
  background: var(--qas-red);
  border-color: var(--qas-red);
  color: white;
  box-shadow: 0 8px 28px rgba(220,23,31,0.4);
}

.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 28px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--qas-transition);
}
.mobile-close:hover {
  color: white;
  background: var(--qas-red);
  border-color: var(--qas-red);
}

/* ============================================================
   NEW FOOTER — NAVY #0d1e42 WITH GRID + BOXED ICONS + HOVER ARROW
   ============================================================ */
.footer-section {
  position: relative;
  width: 100%;
  margin-top: 80px;
}

.site-footer {
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px, 50px 50px;
  background-color: #0d1e42;
  padding: 52px 0 28px;
  position: relative;
  border-radius: 0 36px 0 0;
  overflow: visible;
  font-family: 'Barlow', sans-serif;
}

/* White concave arc */
.footer-curve-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 200px;
  z-index: 6;
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 0%, rgba(255,255,255,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.footer-content-row {
  position: relative;
  z-index: 10;
  padding-left: 60px;
}

/* ── LOGO ── */
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo-wrap .logo-img-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.footer-logo-wrap .logo-img-wrap img {
  margin-top: 50px;
  height: 88px;
  width: auto;
  filter: brightness(0) invert(1);      /* logo always white */
}

.footer-logo-wrap .logo-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.footer-logo-wrap .logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  margin-top: -4px;
}

/* ── SOCIALS (circles, now turning red on hover) ── */
.footer-socials-new {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials-new a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;                   /* circles for socials */
  border: 1.5px solid rgba(255,255,255,0.38);
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-socials-new a:hover {
  background: var(--qas-red);
  border-color: var(--qas-red);
  transform: translateY(-2px);
}

.footer-tagline {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-top: 18px;
}

/* ── COLUMNS ── */
.footer-col-title-new {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 14px;
  font-family: 'Barlow', sans-serif;
}

/* ── Contact list with boxed icons ── */
.footer-address-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-address-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.74);
  font-size: 0.875rem;
  line-height: 1.85;
  margin-bottom: 10px;
}

/* The box icon wrapper – same size as social circles but square/rounded */
/* Contact icon containers – now white circles (same size as socials) */
.icon-box {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;                    /* ← circle */
  border: 1.5px solid rgba(255,255,255,0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

/* Icon inside – always pure white */
.icon-box i {
  color: #fff !important;
  opacity: 1;
}

/* Make the icon inside perfectly white */
.icon-box i {
  color: #fff;
  opacity: 1;
}

/* Optional hover effect for box icons */
.footer-address-list li a:hover .icon-box,
.footer-address-list li:has(.icon-box):hover .icon-box {
  background: var(--qas-red);
  border-color: var(--qas-red);
  transform: translateY(-2px);
}

/* ── Navigation & Information links with hover arrow ── */
.footer-links-new {

  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-new li {
  margin-bottom: 6px;
}

.footer-links-new a {
  color: rgba(255,255,255,0.74);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.18s, padding-left 0.18s;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

/* Red arrow that appears on hover */
.footer-links-new a::before {
  content: '→';                        /* red arrow */
  position: absolute;
  left: -18px;
  color: var(--qas-red);
  opacity: 0;
  transition: opacity 0.2s, left 0.2s;
  font-weight: 700;
}

.footer-links-new a:hover {
  color: #fff;                          /* text turns white */
  padding-left: 10px;
}

.footer-links-new a:hover::before {
  opacity: 1;
  left: -12px;
}

.footer-group-note {
  margin-top: 20px;
  font-weight: 800;
  font-size: 0.875rem;
  color: #fff;
}

/* ── BOTTOM BAR ── */
.footer-bottom-new {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 10;
}

.footer-bottom-new a {
  color: var(--qas-red);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-bottom-new a:hover {
  color: #ff2f37;
}

@media (max-width: 768px) {
  .footer-curve-svg {
    display: none;
  }
  .footer-content-row {
    padding-left: 0;
  }
  .site-footer {
    border-radius: 20px 20px 0 0;
  }
}

/* ── FLOATING CONTACT BUTTON ── */
.floating-corner-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--qas-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(13,30,66,0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-size: 18px;
}
.floating-corner-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(220,23,31,0.35);
  background: var(--qas-red);
}
.floating-corner-btn svg {
  width: 20px; height: 20px;
  stroke-width: 2;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS — Header & Footer v4.0
   ============================================================ */
@media (max-width: 1200px) {
  .logo-block { width: 300px; height: 145px; padding: 20px 0 0 24px; }
  .logo-img-wrap img { height: 48px; }
  .logo-tagline { font-size: 9px; }
  .navbar-menu { padding-left: 320px; gap: 22px; }
  .navbar-menu li a { font-size: 14px; }
  .navbar-menu .contact-cta a { font-size: 12px; padding: 9px 20px; }
  .main-navbar { clip-path: polygon(48px 0, 100% 0, 100% 100%, 0 100%); }
  body.scrolled .logo-block { width: 220px; height: 68px; padding: 8px 0 0 16px; }
  body.scrolled .logo-img-wrap img { height: 32px; }
  body.scrolled .navbar-menu { padding-left: 240px; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .logo-block { width: 265px; height: 130px; padding: 18px 0 0 20px; top: -42px; border-radius: 0 40px 55px 0; }
  .logo-img-wrap img { height: 42px; }
  .logo-tagline { font-size: 8.5px; max-width: 175px; }
  .utility-bar { padding-left: 285px; height: 42px; }
  .utility-contact { font-size: 12.5px; gap: 14px; }
  .navbar-wrapper { height: 72px; }
  .main-navbar { height: 72px; clip-path: polygon(42px 0, 100% 0, 100% 100%, 0 100%); }
  .navbar-menu { padding-left: 285px; gap: 16px; }
  .navbar-menu li a { font-size: 13px; }
  .header-wrapper { height: 114px; }
  body.scrolled .header-wrapper { height: 85px; }
  body.scrolled .logo-block { width: 200px; height: 62px; top: 5px; padding: 8px 0 0 14px; border-radius: 0 24px 38px 0; }
  body.scrolled .logo-img-wrap img { height: 28px; }
  body.scrolled .navbar-menu { padding-left: 220px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .utility-bar { display: none; }
  .header-wrapper { height: 72px; }
  body.scrolled .header-wrapper { height: 80px; }
  .logo-block { width: 210px; height: 104px; padding: 12px 0 0 16px; top: 0; border-radius: 0 30px 44px 0; z-index: 20; }
  .logo-img-wrap img { height: 36px; }
  .logo-tagline { font-size: 7.5px; max-width: 140px; letter-spacing: 1.2px; }
  .logo-accent-line { width: 22px; height: 2px; margin-top: 4px; }
  .navbar-wrapper { height: 72px; }
  .main-navbar { height: 72px; clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%); }
  .navbar-menu { display: none; }
  .hamburger { display: flex; }
  .mobile-menu-overlay { display: flex; }
  body.scrolled .logo-block { width: 175px; height: 58px; padding: 6px 0 0 12px; top: 6px; border-radius: 0 22px 34px 0; }
  body.scrolled .logo-img-wrap img { height: 26px; }
  .footer-wrapper { padding-top: 60px; }
  .footer-wrapper::before { clip-path: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px 0; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 18px 24px; }
  .footer-bottom-links { justify-content: center; }
  .floating-corner-btn { width: 44px; height: 44px; bottom: 18px; right: 18px; border-radius: 10px; }
}

@media (max-width: 480px) {
  .logo-block { width: 172px; height: 88px; padding: 10px 0 0 12px; border-radius: 0 22px 32px 0; }
  .logo-img-wrap img { height: 30px; }
  .logo-tagline { font-size: 7px; max-width: 115px; letter-spacing: 0.8px; }
  .logo-accent-line { width: 18px; height: 1.5px; margin-top: 3px; }
  .main-navbar { clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%); }
  body.scrolled .logo-block { width: 145px; height: 50px; padding: 5px 0 0 10px; top: 4px; }
  body.scrolled .logo-img-wrap img { height: 22px; }
}

/* Force all footer links to pure white (overrides global footer a inherit) */
.footer-wrapper a {
  color: #ffffff !important;
}

/* Keep bottom‑bar developer link red */
.footer-bottom a {
  color: var(--qas-red) !important;
}
.footer-bottom a:hover {
  color: #ff2f37 !important;
}

.page-breadcrumb-bar {
  width: 100%;
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
  clip-path: polygon(55px 0, 100% 0, 100% 100%, 0 100%);
}

/* Remove the old ::before / ::after — they cause the visible line */
.page-breadcrumb-bar::before,
.page-breadcrumb-bar::after {
  display: none;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 40px 11px 375px; /* matches navbar-menu padding-left */
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
}

.breadcrumb-inner a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.22s ease;
  letter-spacing: 0.3px;
}
.breadcrumb-inner a:hover { color: #ffffff; }

.breadcrumb-sep {
  color: rgba(255,255,255,0.35);
  font-size: 15px;
  font-weight: 300;
}

.breadcrumb-current {
  color: #ff2f37;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* ── Scrolled state ── */
body.scrolled .breadcrumb-inner {
  padding-left: 275px; /* matches body.scrolled .navbar-menu padding */
}

/* ── Responsive — match navbar breakpoints ── */
@media (max-width: 1200px) {
  .page-breadcrumb-bar { clip-path: polygon(48px 0, 100% 0, 100% 100%, 0 100%); }
  .breadcrumb-inner { padding-left: 320px; }
  body.scrolled .breadcrumb-inner { padding-left: 240px; }
}
@media (max-width: 1024px) {
  .page-breadcrumb-bar { clip-path: polygon(42px 0, 100% 0, 100% 100%, 0 100%); }
  .breadcrumb-inner { padding-left: 285px; font-size: 12.5px; }
}
@media (max-width: 768px) {
  .page-breadcrumb-bar {
    display: none;
  }
}
@media (max-width: 480px) {
  .page-breadcrumb-bar {
    display: none;
  }
  
}