/* ==========================================================================
   DELRIQUE CORPORATE DESIGN SYSTEM — MODERN ENTERPRISE STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONT DEFINITION & VARIABLES
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter/Inter.woff2') format('woff2');
}

:root {
  /* Color Palette - Enterprise Dark & Refined Light */
  --dq-bg-dark: #07090e;
  --dq-bg-dark-elevated: #0f1420;
  --dq-bg-dark-card: rgba(15, 20, 32, 0.75);
  
  --dq-bg-light: #f8fafc;
  --dq-bg-light-elevated: #ffffff;
  --dq-bg-light-card: #ffffff;

  /* Brand Accents */
  --dq-gold: #ffc300;
  --dq-gold-hover: #e6b000;
  --dq-gold-glow: rgba(255, 195, 0, 0.22);

  --dq-navy: #1546a0;
  --dq-navy-dark: #0c2b66;
  --dq-navy-light: #2563eb;

  --dq-maroon: #5b1e2d;
  --dq-maroon-dark: #3b121c;
  --dq-maroon-accent: #8c2b44;

  --dq-labs-purple: #8b5cf6;
  --dq-labs-dark: #2a0a16;

  /* Neutral Text Colors */
  --dq-text-heading: #0f172a;
  --dq-text-body: #334155;
  --dq-text-muted: #64748b;
  --dq-border-light: rgba(226, 232, 240, 0.85);

  --dq-text-dark-heading: #f8fafc;
  --dq-text-dark-body: #cbd5e1;
  --dq-text-dark-muted: #94a3b8;
  --dq-border-dark: rgba(255, 255, 255, 0.08);

  /* Shadows & Depth */
  --dq-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --dq-shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  --dq-shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.14);
  --dq-shadow-glow: 0 0 35px rgba(255, 195, 0, 0.18);

  /* Layout & Geometry */
  --dq-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --dq-radius-sm: 8px;
  --dq-radius-md: 14px;
  --dq-radius-lg: 24px;
  --dq-radius-pill: 9999px;
  
  --dq-container-width: 1280px;
  --dq-transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --dq-transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--dq-font-sans);
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: light dark;
}

body {
  background-color: var(--dq-bg-light);
  color: var(--dq-text-body);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--dq-gold);
  color: var(--dq-bg-dark);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border-radius: var(--dq-radius-sm);
  z-index: 10000;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0d14;
}
::-webkit-scrollbar-thumb {
  background: #232c3f;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dq-gold);
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & HEADINGS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--dq-text-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--dq-text-body);
  line-height: 1.65;
  font-weight: 400;
}

.text-muted {
  color: var(--dq-text-muted);
}

.text-gold {
  color: var(--dq-gold) !important;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #ffea9f 0%, var(--dq-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   4. LAYOUT & CONTAINER SYSTEM
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--dq-container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-light {
  background-color: var(--dq-bg-light);
  color: var(--dq-text-body);
}

.section-white {
  background-color: #ffffff;
  color: var(--dq-text-body);
}

.section-dark {
  background-color: var(--dq-bg-dark);
  color: var(--dq-text-dark-body);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--dq-text-dark-heading);
}

.section-dark p {
  color: var(--dq-text-dark-body);
}

/* Section Header */
.section-header {
  margin-bottom: 3.5rem;
  max-width: 760px;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-badge, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 195, 0, 0.12);
  color: #b38600;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--dq-radius-pill);
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 195, 0, 0.25);
}

.section-dark .section-badge,
.section-dark .section-label {
  background: rgba(255, 195, 0, 0.15);
  color: var(--dq-gold);
  border-color: rgba(255, 195, 0, 0.3);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--dq-text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: var(--dq-text-dark-muted);
}

/* Grid helpers */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .grid-4, .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Flex utilities */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   5. NAVIGATION BAR & HEADER
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.scrolled {
  background: rgba(7, 9, 14, 0.92);
  border-bottom-color: rgba(255, 195, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.brand-logo .logo-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dq-gold);
  background: rgba(255, 195, 0, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: var(--dq-radius-pill);
  border: 1px solid rgba(255, 195, 0, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--dq-transition-fast);
  position: relative;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dq-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--dq-gold);
  transition: width var(--dq-transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav Dropdown Menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #0f1420;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--dq-radius-md);
  padding: 0.6rem 0;
  min-width: 220px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 195, 0, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-link:hover {
  background: rgba(255, 195, 0, 0.12);
  color: var(--dq-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Scroll progress bar */
.scroll-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--dq-gold) 0%, #ffffff 100%);
  transition: width 0.1s linear;
}

/* Mobile Menu Toggle Button */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: #090c14;
  z-index: 1001;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--dq-gold);
}

/* --------------------------------------------------------------------------
   6. BUTTONS & INTERACTION ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--dq-radius-md);
  text-decoration: none;
  transition: all var(--dq-transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--dq-gold);
  color: #0b0e14;
  border-color: var(--dq-gold);
  box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
}

.btn-primary:hover {
  background: var(--dq-gold-hover);
  border-color: var(--dq-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 195, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dq-text-heading);
  border-color: var(--dq-text-heading);
}

.btn-outline-dark:hover {
  background: var(--dq-text-heading);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--dq-radius-md);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--dq-radius-sm);
}

.btn-pill {
  border-radius: var(--dq-radius-pill);
}

.btn svg {
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   7. CARDS & ENTERPRISE SURFACES
   -------------------------------------------------------------------------- */
.card-dq {
  background: var(--dq-bg-light-card);
  border: 1px solid var(--dq-border-light);
  border-radius: var(--dq-radius-lg);
  padding: 2.25rem;
  transition: transform var(--dq-transition-smooth), box-shadow var(--dq-transition-smooth), border-color var(--dq-transition-smooth);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-dq:hover {
  transform: translateY(-6px);
  box-shadow: var(--dq-shadow-lg);
  border-color: rgba(255, 195, 0, 0.4);
}

.section-dark .card-dq,
.card-dq-dark {
  background: var(--dq-bg-dark-card);
  border-color: var(--dq-border-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section-dark .card-dq:hover,
.card-dq-dark:hover {
  border-color: rgba(255, 195, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--dq-shadow-glow);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--dq-radius-md);
  background: rgba(255, 195, 0, 0.12);
  color: #b38600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.section-dark .card-icon {
  color: var(--dq-gold);
}

.card-dq:hover .card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.card-desc {
  color: var(--dq-text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
  flex-grow: 1;
}

.section-dark .card-desc {
  color: var(--dq-text-dark-muted);
}

/* Accent Borders */
.card-border-gold {
  border-left: 4px solid var(--dq-gold);
}
.card-border-navy {
  border-left: 4px solid var(--dq-navy-light);
}
.card-border-maroon {
  border-left: 4px solid var(--dq-maroon-accent);
}
.card-border-purple {
  border-left: 4px solid var(--dq-labs-purple);
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  padding-top: 140px;
  padding-bottom: 90px;
  background: var(--dq-bg-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle background glow effect */
.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 195, 0, 0.15) 0%, rgba(7, 9, 14, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.hero-glow-2 {
  position: absolute;
  bottom: -15%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 70, 160, 0.2) 0%, rgba(7, 9, 14, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

/* Hero Grid Overlay */
.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: rgba(255, 195, 0, 0.1);
  border: 1px solid rgba(255, 195, 0, 0.25);
  border-radius: var(--dq-radius-pill);
  color: var(--dq-gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--dq-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--dq-gold);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.hero-title {
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: max(1.15rem, 1.35vw);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.5rem;
  max-width: 680px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   9. DOMAINS & DIVISION SHOWCASES
   -------------------------------------------------------------------------- */
/* Domain Cards Grid on Home */
.domain-card {
  position: relative;
  border-radius: var(--dq-radius-lg);
  overflow: hidden;
  background: var(--dq-bg-dark-card);
  border: 1px solid var(--dq-border-dark);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: #ffffff;
}

.domain-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.domain-card:hover .domain-card-bg {
  transform: scale(1.08);
  opacity: 0.55;
}

.domain-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.2) 0%, rgba(7, 9, 14, 0.95) 85%);
}

.domain-card-content {
  position: relative;
  z-index: 2;
}

.domain-card:hover {
  transform: translateY(-8px);
  border-color: var(--dq-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 195, 0, 0.2);
}

.domain-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--dq-radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}

/* Apparel Interactive Scroll Carousel */
.apparel-showcase-section {
  background: linear-gradient(135deg, #4a1321 0%, #290a12 100%);
  color: #ffffff;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.apparel-carousel-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1.5rem 0.5rem 3rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.apparel-carousel-container::-webkit-scrollbar {
  height: 6px;
}
.apparel-carousel-container::-webkit-scrollbar-thumb {
  background: var(--dq-gold);
  border-radius: 3px;
}

.apparel-item-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--dq-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.apparel-item-card:hover {
  transform: translateY(-6px);
  border-color: var(--dq-gold);
}

.apparel-item-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.2);
}

.apparel-item-body {
  padding: 1.5rem;
}

.apparel-item-title {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.apparel-item-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Infotech Interactive Service Showcase */
.infotech-showcase-section {
  background: linear-gradient(135deg, #091736 0%, #060e24 100%);
  color: #ffffff;
  padding: 7rem 0;
}

.infotech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.infotech-card {
  background: rgba(15, 25, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--dq-radius-lg);
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.infotech-card:hover {
  background: rgba(20, 35, 66, 0.85);
  border-color: var(--dq-navy-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.infotech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--dq-navy-light), var(--dq-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.infotech-card:hover::before {
  opacity: 1;
}

.infotech-card-img-wrapper {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: var(--dq-radius-md);
  margin-bottom: 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.infotech-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.infotech-card:hover .infotech-card-img {
  transform: scale(1.06);
}

/* Labs Showcase Section */
.labs-showcase-section {
  background: linear-gradient(135deg, #1d0712 0%, #0d0308 100%);
  color: #ffffff;
  padding: 7rem 0;
  position: relative;
}

.labs-card {
  background: rgba(42, 10, 22, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--dq-radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.labs-card:hover {
  border-color: var(--dq-labs-purple);
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.25);
  transform: translateY(-5px);
}

/* --------------------------------------------------------------------------
   10. STATS & COUNTERS
   -------------------------------------------------------------------------- */
.stats-banner {
  background: #0b0e17;
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  color: var(--dq-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-feature-settings: "tnum";
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dq-text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   11. FEATURE GRID & PHILOSOPHY CARDS
   -------------------------------------------------------------------------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

.philosophy-card {
  padding: 3rem;
  border-radius: var(--dq-radius-lg);
  position: relative;
  overflow: hidden;
}

.philosophy-deliver {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid var(--dq-border-light);
  border-left: 6px solid var(--dq-gold);
}

.philosophy-unique {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid var(--dq-border-light);
  border-left: 6px solid var(--dq-navy);
}

/* --------------------------------------------------------------------------
   12. NEWS & BLOG CARDS
   -------------------------------------------------------------------------- */
.card-blog {
  background: var(--dq-bg-light-card);
  border: 1px solid var(--dq-border-light);
  border-radius: var(--dq-radius-lg);
  overflow: hidden;
  transition: transform var(--dq-transition-smooth), box-shadow var(--dq-transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-blog:hover {
  transform: translateY(-6px);
  box-shadow: var(--dq-shadow-lg);
}

.card-blog-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--dq-bg-dark);
}

.card-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-blog:hover .card-blog-img {
  transform: scale(1.06);
}

.card-blog-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--dq-text-muted);
  margin-bottom: 0.75rem;
}

.card-blog-tag {
  color: var(--dq-navy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-blog-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.card-blog-title a {
  color: var(--dq-text-heading);
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-blog-title a:hover {
  color: var(--dq-navy-light);
}

.card-blog-excerpt {
  color: var(--dq-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   13. CONTACT MODAL & FORM CONTROLS
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 12, 0.82);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #0f1420;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--dq-radius-lg);
  max-width: 640px;
  width: 100%;
  padding: 2.5rem;
  color: #ffffff;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 195, 0, 0.15);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 195, 0, 0.25);
  color: var(--dq-gold);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dq-text-dark-body);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--dq-radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--dq-gold);
  box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffc300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select.form-control option {
  background: #0f1420;
  color: #ffffff;
}

/* Light Form Control for Contact Page */
.section-light .form-control {
  background: #ffffff;
  border-color: var(--dq-border-light);
  color: var(--dq-text-heading);
}
.section-light .form-control:focus {
  border-color: var(--dq-navy-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.section-light .form-label {
  color: var(--dq-text-heading);
}

/* Alert Box */
.alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  padding: 1rem;
  border-radius: var(--dq-radius-sm);
  margin-top: 1rem;
  font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: #05070c;
  color: var(--dq-text-dark-body);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9375rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  color: var(--dq-text-dark-muted);
  margin-top: 1.25rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  color: var(--dq-text-dark-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--dq-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--dq-text-dark-muted);
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
  background: var(--dq-gold);
  color: #0b0e14;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   15. ANIMATIONS & SCROLL REVEAL (IntersectionObserver based)
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* --------------------------------------------------------------------------
   16. BREADCRUMBS & INNER PAGE HEADERS
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: 140px;
  padding-bottom: 70px;
  background: var(--dq-bg-dark);
  color: #ffffff;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.875rem;
  color: var(--dq-text-dark-muted);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: var(--dq-text-dark-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--dq-gold);
}

.breadcrumbs .separator {
  opacity: 0.5;
}

/* Accordion Component */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid var(--dq-border-light);
  border-radius: var(--dq-radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.section-dark .accordion-item {
  background: var(--dq-bg-dark-card);
  border-color: var(--dq-border-dark);
}

.accordion-header {
  padding: 1.35rem 1.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  color: var(--dq-text-heading);
}

.section-dark .accordion-header {
  color: #ffffff;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--dq-text-muted);
  line-height: 1.65;
}

.section-dark .accordion-content {
  color: var(--dq-text-dark-muted);
}

.accordion-item.active .accordion-content {
  padding-bottom: 1.5rem;
}
