/* 
  Rudracore Technologies - Main Style System 
  Design System Palette: Minimalist White, Blue, Orange, & Black
*/

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

:root {
  /* Core Color System (Minimal White, Blue, Orange, Black) */
  --brand-blue: #2563eb;
  --brand-blue-hover: #1d4ed8;
  --brand-blue-dark: #1e3a8a;
  --brand-blue-glow: rgba(37, 99, 235, 0.25);
  --brand-blue-subtle: #eff6ff;

  --brand-orange: #ff6b00;
  --brand-orange-hover: #e05d00;
  --brand-orange-glow: rgba(255, 107, 0, 0.25);
  --brand-orange-subtle: #fff7ed;

  --brand-black: #090d16;
  --brand-navy: #0f172a;
  --brand-white: #ffffff;

  /* Light Theme Variables */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-nav: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.95);
  --bg-accent-blue: #eff6ff;
  --bg-accent-orange: #fff7ed;

  --text-primary: #090d16;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  --border-color: #e2e8f0;
  --border-color-hover: #cbd5e1;
  --border-focus: #2563eb;

  --shadow-sm: 0 2px 4px rgba(9, 13, 22, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(9, 13, 22, 0.08), 0 8px 10px -6px rgba(9, 13, 22, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(9, 13, 22, 0.12), 0 10px 15px -5px rgba(9, 13, 22, 0.06);
  --shadow-orange: 0 10px 25px -5px rgba(255, 107, 0, 0.3);
  --shadow-blue: 0 10px 25px -5px rgba(37, 99, 235, 0.3);

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg-primary: #090d16;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  --bg-card: #111827;
  --bg-nav: #090d16;
  --bg-glass: rgba(9, 13, 22, 0.95);
  --bg-accent-blue: rgba(37, 99, 235, 0.12);
  --bg-accent-orange: rgba(255, 107, 0, 0.12);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #090d16;

  --border-color: #1e293b;
  --border-color-hover: #334155;
  --border-focus: #3b82f6;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.6);
}

/* CSS Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Hero Quick Enquiry Form Card */
.hero-enquiry-card {
  background-color: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: all var(--transition-normal);
}

[data-theme="dark"] .hero-enquiry-card {
  background-color: var(--bg-card);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.hero-enquiry-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
}

.hero-form-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.hero-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.hero-form-header p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.hero-enquiry-card .form-group {
  margin-bottom: 1.1rem;
}

.hero-enquiry-card label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.hero-enquiry-card .form-control {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
}

.hero-budget-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.hero-budget-pill {
  padding: 0.5rem 0.25rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.hero-budget-pill:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.hero-budget-pill.selected {
  background-color: var(--brand-orange);
  color: #ffffff;
  border-color: var(--brand-orange);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.hero-trust-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography & Layout Helpers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
  background-color: var(--bg-primary);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tag-blue {
  background-color: var(--bg-accent-blue);
  color: var(--brand-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.tag-orange {
  background-color: var(--bg-accent-orange);
  color: var(--brand-orange);
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.text-center {
  text-align: center;
}

.highlight-blue {
  color: var(--brand-blue);
}

.highlight-orange {
  color: var(--brand-orange);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.btn-primary-blue {
  background-color: var(--brand-blue);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.btn-primary-blue:hover {
  background-color: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(37, 99, 235, 0.4);
}

.btn-primary-orange {
  background-color: var(--brand-orange);
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

.btn-primary-orange:hover {
  background-color: var(--brand-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background-color: var(--bg-accent-blue);
  transform: translateY(-2px);
}

.btn-black {
  background-color: var(--brand-black);
  color: #ffffff;
}

.btn-black:hover {
  background-color: var(--brand-navy);
  transform: translateY(-2px);
}

/* Fixed Header Wrapper with Top Bar */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-nav);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

body {
  padding-top: 115px; /* Offset for fixed top-bar + header */
}

@media (max-width: 992px) {
  body {
    padding-top: 105px;
  }
}

/* Blue Top Announcement Bar Above Header */
.top-bar {
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 50%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: opacity var(--transition-fast);
}

.top-bar-item:hover {
  color: #ffffff;
  opacity: 0.95;
}

.top-bar-center {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.topbar-badge {
  background-color: var(--brand-orange);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
}

@media (max-width: 992px) {
  .top-bar-left,
  .top-bar-right {
    display: none;
  }
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
}

/* Header & Navigation */
.header {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  background-color: var(--bg-nav);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 0.85rem 0;
  background-color: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.logo-text span {
  color: var(--brand-orange);
}

.logo-img {
  height: 42px;
  max-height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-blue);
}

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

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

/* Header Mega Dropdown System */
.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-arrow {
  font-size: 0.72rem;
  transition: transform var(--transition-fast);
}

.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: max-content;
  min-width: 580px;
  max-width: 620px;
  background-color: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 1200;
}

.mega-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: var(--bg-card);
  border-left: 1.5px solid var(--border-color);
  border-top: 1.5px solid var(--border-color);
}

.has-dropdown:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mega-item:hover {
  background-color: var(--bg-secondary);
  transform: translateX(3px);
}

.mega-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mega-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.mega-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--bg-secondary);
  transform: translateX(4px);
}

.dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.dropdown-info h6 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Hero Image Wrapper */
.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-card);
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.hero-img-wrapper:hover img {
  transform: scale(1.03);
}

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

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background-color: var(--bg-secondary);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  padding-top: 2rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
}

/* Background Image Slider Banner */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-bg-slide.active {
  opacity: 0.18;
  transform: scale(1);
}

[data-theme="dark"] .hero-bg-slide.active {
  opacity: 0.35;
}

/* Backdrop Overlay for Text Readability */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(circle at 10% 20%, var(--bg-accent-blue) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, var(--bg-accent-orange) 0%, transparent 50%),
              linear-gradient(to bottom, var(--bg-primary) 0%, transparent 20%, transparent 80%, var(--bg-primary) 100%);
}

[data-theme="dark"] .hero-bg-overlay {
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.18) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(255, 107, 0, 0.18) 0%, transparent 50%),
              linear-gradient(to bottom, rgba(9, 13, 22, 0.8) 0%, rgba(9, 13, 22, 0.55) 50%, rgba(9, 13, 22, 0.85) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

/* Background Slider Indicator Dots */
.hero-bg-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-bg-dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--border-color-hover);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
}

.hero-bg-dot:hover {
  opacity: 0.9;
  background-color: var(--brand-blue);
}

.hero-bg-dot.active {
  width: 44px;
  background-color: var(--brand-orange);
  opacity: 1;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.rotator-text {
  color: var(--brand-blue);
  border-bottom: 3px solid var(--brand-orange);
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.metric-item h4 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
}

.metric-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-card-main {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.tech-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-accent-blue);
  color: var(--brand-blue);
}

.interactive-preview {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.preview-bar {
  height: 12px;
  border-radius: 6px;
  background-color: var(--border-color);
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}

.preview-bar-fill {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
  border-radius: 6px;
}

.floating-badge {
  position: absolute;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.badge-1 {
  top: -20px;
  right: -20px;
}

.badge-2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.icon-blue {
  background-color: var(--bg-accent-blue);
  color: var(--brand-blue);
}

.icon-orange {
  background-color: var(--bg-accent-orange);
  color: var(--brand-orange);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Services Section Grid (4 Columns Layout) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background var(--transition-normal);
}

.service-card.card-blue:hover::before {
  background: var(--brand-blue);
}

.service-card.card-orange:hover::before {
  background: var(--brand-orange);
}

.service-card.card-black:hover::before {
  background: var(--brand-navy);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-color-hover);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.5;
}

.service-features {
  margin-bottom: 1.25rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.service-features i {
  font-size: 0.75rem;
}

.service-features .i-blue { color: var(--brand-blue); }
.service-features .i-orange { color: var(--brand-orange); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: gap var(--transition-fast);
}

.service-card.card-blue .service-link { color: var(--brand-blue); }
.service-card.card-orange .service-link { color: var(--brand-orange); }
.service-card.card-black .service-link { color: var(--text-primary); }

.service-card:hover .service-link {
  gap: 0.65rem;
}

/* /* Improvised About Us Section */
.about-section {
  background-color: var(--bg-secondary);
  padding: 6rem 0;
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-lead {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

@media (max-width: 576px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.about-pillar-card {
  background-color: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.about-pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

.pillar-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.pillar-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

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

/* High-Tech Visual Showcase Card */
.about-showcase-wrapper {
  position: relative;
}

.about-tech-card {
  background-color: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.about-tech-card:hover {
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.about-mockup-header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.mockup-status {
  font-size: 0.78rem;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.about-mockup-body {
  padding: 1.75rem;
}

.mockup-brand-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.mockup-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-orange));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: var(--shadow-blue);
}

.mockup-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.mockup-metric-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
}

.mockup-metric-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.mockup-metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.mockup-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.mockup-tech-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-accent-blue);
  color: var(--brand-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.floating-about-badge {
  position: absolute;
  background-color: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.badge-top-right {
  top: -16px;
  right: -16px;
}

.badge-bottom-left {
  bottom: -16px;
  left: -16px;
}

@media (max-width: 576px) {
  .floating-about-badge {
    display: none;
  }
}

.industry-tab:hover {
  border-color: var(--brand-blue);
  color: #ffffff;
  background-color: rgba(37, 99, 235, 0.2);
}

.industry-tab.active {
  background-color: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.4);
}

.industry-content-container {
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.industry-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.industry-panel.active {
  display: grid;
  animation: fadeIn 0.4s ease-in-out;
}

.industry-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.industry-info p {
  color: #94a3b8;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.industry-solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.solution-item {
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--brand-orange);
}

.solution-item h5 {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.solution-item p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
}

.industry-visual-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.industry-icon-huge {
  font-size: 4rem;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

/* Why Choose Us Section */
.why-us-section {
  background: radial-gradient(circle at 50% 50%, var(--bg-accent-blue) 0%, transparent 70%);
  padding: 6rem 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.why-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background var(--transition-normal);
}

.why-card.card-blue:hover::before { background: var(--brand-blue); }
.why-card.card-orange:hover::before { background: var(--brand-orange); }
.why-card.card-black:hover::before { background: var(--brand-navy); }

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-color-hover);
}

.why-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.why-stats-bar {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .why-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
}

.why-stat-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-orange);
  margin-bottom: 0.25rem;
}

/* Improvised Dual-Row Clients Logo Marquee Section */
.clients-section {
  padding: 5.5rem 0 4rem 0;
  background-color: var(--bg-primary);
  overflow: hidden;
  position: relative;
}

.clients-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.marquee-wrapper-dual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0;
}

/* Gradient Fade Masks on Edges */
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-primary) 0%, transparent 100%);
}

.marquee-track-left {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marqueeLeft 34s linear infinite;
}

.marquee-track-right {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marqueeRight 34s linear infinite;
}

.marquee-track-left:hover,
.marquee-track-right:hover {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.client-logo-card {
  background-color: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.9rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.client-logo-card:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
  transform: translateY(-4px);
}

.client-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.client-logo-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.client-logo-name {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

/* Authentic Uploaded Client Image Logo Cards */
.client-logo-img-card {
  background-color: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.65rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  height: 64px;
  min-width: 180px;
}

[data-theme="dark"] .client-logo-img-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.2);
}

.client-logo-img-card:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.18);
  transform: translateY(-4px);
}

.client-logo-img {
  max-height: 42px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* OUR WORK Interactive Slider Showcase */
.our-work-section {
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.our-work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.our-work-header-text {
  max-width: 680px;
}

.our-work-header-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-top: 0.5rem;
  color: var(--text-primary);
}

.our-work-header-text h2 span {
  color: var(--brand-orange);
}

.work-nav-btns {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.work-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.work-arrow-btn:hover {
  background-color: var(--brand-orange);
  color: #ffffff;
  border-color: var(--brand-orange);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.4);
  transform: scale(1.05);
}

.work-carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0 2rem 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.work-carousel-wrapper:active {
  cursor: grabbing;
}

.work-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.work-slide-card {
  width: calc(50% - 0.875rem);
  min-width: calc(50% - 0.875rem);
  max-width: calc(50% - 0.875rem);
  background-color: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .work-slide-card {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

.work-slide-card.active {
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-lg);
}

.work-slide-banner {
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.work-banner-blue {
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.3) 0%, transparent 50%),
              linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.work-banner-orange {
  background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
              linear-gradient(135deg, #ea580c 0%, #ff6b00 100%);
}

.work-banner-black {
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.25) 0%, transparent 60%),
              linear-gradient(135deg, #090d16 0%, #1e293b 100%);
}

.work-banner-purple {
  background: radial-gradient(circle at 90% 10%, rgba(255, 107, 0, 0.25) 0%, transparent 50%),
              linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
}

.work-mockup-frame {
  width: 88%;
  height: 180px;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

[data-theme="dark"] .work-mockup-frame {
  background-color: rgba(15, 23, 42, 0.94);
  border-color: rgba(255, 255, 255, 0.15);
}

.work-badge-impact {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--brand-orange);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
  z-index: 2;
}

.work-badge-domain {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: rgba(9, 13, 22, 0.82);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.work-slide-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.work-slide-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}

.work-slide-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.work-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 1rem;
}

.work-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  background-color: var(--brand-orange);
  color: #ffffff;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.work-cta-btn:hover {
  background-color: var(--brand-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.4);
}

/* Tech Stack Matrix (Expanded) */
.tech-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.tech-card-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.tech-card-item:hover {
  border-color: var(--brand-blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.tech-card-icon {
  font-size: 2.2rem;
}

.tech-card-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tech-card-cat {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Testimonials Redesign */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial-card-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.testimonial-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-color-hover);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-quote-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-style: normal;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.user-avatar-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.user-details h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.user-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact Section & Enquiry Form Layout */
.contact-section {
  background-color: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--bg-accent-orange);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-details p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.enquiry-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.92rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px var(--brand-blue-glow);
}

select.form-control {
  cursor: pointer;
  appearance: auto;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.budget-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.budget-pill-opt {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.budget-pill-opt:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.budget-pill-opt.selected {
  background-color: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.quick-contact-bar {
  background-color: var(--bg-accent-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.quick-contact-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.quick-contact-info i {
  font-size: 1.35rem;
  color: var(--brand-blue);
}

.quick-contact-info span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Footer Redesign (Ultra-Crisp Light & Dark Mode Proof) */
.footer-redesign {
  background-color: #090d16 !important;
  color: #94a3b8 !important;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid #1e293b;
  position: relative;
  z-index: 10;
}

.footer-redesign .logo-text {
  color: #ffffff !important;
}

.footer-redesign h5,
.footer-redesign h6 {
  color: #ffffff !important;
}

.footer-redesign p {
  color: #94a3b8 !important;
}

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

@media (max-width: 1200px) {
  .footer-top-row {
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 1.75rem;
  }
}

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

@media (max-width: 576px) {
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94a3b8 !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand-orange) !important;
  transform: translateX(3px);
}

.footer-newsletter-box {
  background-color: #0f172a;
  border: 1px solid #1e293b;
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.footer-newsletter-box h6 {
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-newsletter-box p {
  font-size: 0.8rem;
  color: #94a3b8 !important;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.newsletter-form-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  background-color: #090d16;
  border: 1px solid #334155;
  color: #ffffff;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  width: 100%;
}

.newsletter-input:focus {
  border-color: var(--brand-orange);
}

.footer-cert-badges {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.cert-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-bottom {
  padding-top: 2rem;
  padding-bottom: 1rem;
  border-top: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94a3b8 !important;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #94a3b8 !important;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: #ffffff !important;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .contact-grid, .industry-panel, .footer-top-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    transition: left var(--transition-normal);
    gap: 2.5rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   PAGE-SPECIFIC COMPONENT STYLES (Sub-pages: About, Work, Career, Contact)
   ============================================================= */

/* Toast Notification Floating Banner */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--brand-navy);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--brand-orange);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-notification i {
  font-size: 1.25rem;
  color: var(--brand-orange);
}

/* Sub-page Hero Header */
.page-hero {
  padding: 8rem 0 4rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-blue-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--brand-blue);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--brand-orange);
}

.breadcrumb i {
  font-size: 0.75rem;
  opacity: 0.6;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Premium Executive Stats Counter Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

@media (max-width: 576px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-top: 3.5px solid var(--brand-blue);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card.stat-orange {
  border-top-color: var(--brand-orange);
}

.stat-card.stat-green {
  border-top-color: #10b981;
}

.stat-card.stat-indigo {
  border-top-color: #6366f1;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-hover);
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.12);
}

.stat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.stat-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.84rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Grid & Team Card */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}

.team-avatar-box {
  height: 220px;
  background: linear-gradient(135deg, var(--brand-blue-subtle) 0%, var(--brand-orange-subtle) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--brand-blue);
  position: relative;
}

.team-avatar-initials {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--brand-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-info {
  padding: 1.5rem;
}

.team-info h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-orange);
  margin-bottom: 0.85rem;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.team-socials {
  display: flex;
  gap: 0.75rem;
}

.team-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.team-socials a:hover {
  background-color: var(--brand-blue);
  color: #ffffff;
}

/* Timeline Milestones */
.milestone-list {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0 auto;
  padding-left: 2rem;
  border-left: 2px dashed var(--border-color);
}

.milestone-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.milestone-item::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 0.2rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--brand-orange);
  border: 4px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--brand-orange);
}

.milestone-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand-blue);
  background-color: var(--bg-accent-blue);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.milestone-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.milestone-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* Work Filter Bar & Case Study Grid */
.work-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.work-filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.work-filter-btn:hover, .work-filter-btn.active {
  background-color: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-blue);
}

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

.case-study-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}

.case-study-badge-strip {
  padding: 1.25rem 1.5rem 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ind-pill {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-accent-blue);
  color: var(--brand-blue);
}

.case-study-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.case-study-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.case-study-summary {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  margin-bottom: 1.25rem;
}

.metric-box-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand-orange);
}

.metric-box-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.case-study-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.tech-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.case-study-action {
  margin-top: auto;
}

/* Modal Popup Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

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

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--brand-orange);
  color: #ffffff;
}

/* Careers Job Cards & Perks */
.career-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.perk-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.perk-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-4px);
}

.perk-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-accent-orange);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.perk-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.perk-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.job-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all var(--transition-fast);
}

.job-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

.job-details h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.job-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Contact Cards & Accordion */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.contact-info-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition-fast);
}

.contact-info-box:hover {
  border-color: var(--brand-blue);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-accent-blue);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-info-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header i {
  color: var(--brand-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

/* =============================================================
   Dedicated Internal Service Page Styles
   ============================================================= */
.sp-hero {
  padding: 4rem 0 3.5rem 0;
  background: radial-gradient(circle at 10% 20%, var(--bg-accent-blue) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, var(--bg-accent-orange) 0%, transparent 45%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.sp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.sp-hero-grid.align-stretch {
  align-items: center;
}

/* Dual Image Grid Showcase for About Us Hero */
.about-dual-image-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.about-dual-image-grid .about-premium-img-wrapper {
  height: 250px !important;
  min-height: auto !important;
}

@media (max-width: 992px) {
  .about-dual-image-grid .about-premium-img-wrapper {
    height: 220px !important;
  }
}

.sp-hero-right-full {
  height: auto;
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .sp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.sp-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.sp-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 620px;
}

.sp-pills-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.sp-pill-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.sp-pill-item i {
  color: var(--brand-blue);
}

/* Sub-Services Capabilities Grid (Visual Image Cards) */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

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

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

.capability-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue);
}

.capability-img-wrapper {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

.capability-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-card:hover .capability-img {
  transform: scale(1.08);
}

.capability-img-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.capability-img-tag i {
  color: var(--brand-blue);
  margin-right: 0.3rem;
}

.capability-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.capability-body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.capability-body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Tech Stack Badge Grid */
.tech-matrix-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.tech-badge:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tech-badge i {
  font-size: 1.2rem;
  color: var(--brand-blue);
}

/* 4-Step Process Timeline */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

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

.process-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-blue);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Feature Showcase Split Section */
.sp-showcase-section {
  padding: 4.5rem 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.sp-showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .sp-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.sp-showcase-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.sp-showcase-img-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: var(--brand-blue);
}

.sp-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sp-showcase-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sp-showcase-badge i {
  color: #60a5fa;
}

.sp-showcase-list {
  list-style: none;
  margin-top: 1.5rem;
}

.sp-showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.sp-showcase-list li i {
  font-size: 1.25rem;
  color: var(--brand-blue);
  margin-top: 0.2rem;
}

/* ==========================================================================
   3D ABOUT US SECTION STYLES
   ========================================================================== */
.about-3d-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.about-3d-bg-glow {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(255, 107, 0, 0.08) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .about-3d-bg-glow {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(255, 107, 0, 0.12) 50%, transparent 70%);
}

.about-3d-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .about-3d-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* 3D Feature Grid (Left Column) */
.about-3d-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (max-width: 576px) {
  .about-3d-features {
    grid-template-columns: 1fr;
  }
}

.about-3d-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  position: relative;
}

.about-3d-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 35px rgba(37, 99, 235, 0.12);
  border-color: var(--brand-blue);
}

.about-3d-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.about-3d-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.about-3d-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* 3D Perspective Visual Card Container (Right Column) */
.about-3d-scene {
  perspective: 1200px;
  position: relative;
}

.about-3d-showcase {
  transform-style: preserve-3d;
  transform: rotateY(-10deg) rotateX(6deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.12),
              0 0 40px rgba(37, 99, 235, 0.15);
  position: relative;
}

.about-3d-scene:hover .about-3d-showcase {
  transform: rotateY(-2deg) rotateX(2deg) translateY(-8px);
  box-shadow: -10px 20px 50px rgba(0, 0, 0, 0.15),
              0 0 60px rgba(255, 107, 0, 0.2);
}

@media (max-width: 992px) {
  .about-3d-showcase {
    transform: none !important;
  }
}

/* Floating 3D Z-Depth Badges */
.floating-3d-badge {
  position: absolute;
  background: rgba(9, 13, 22, 0.88);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  transform: translateZ(40px);
  z-index: 10;
  animation: floatOrb 4s ease-in-out infinite alternate;
}

.floating-3d-badge.badge-top-left {
  top: -1.2rem;
  left: -1rem;
}

.floating-3d-badge.badge-bottom-right {
  bottom: -1.2rem;
  right: -1rem;
  animation-delay: 2s;
}

@keyframes floatOrb {
  0% { transform: translateZ(40px) translateY(0px); }
  100% { transform: translateZ(40px) translateY(-10px); }
}

.about-3d-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.about-3d-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-navy) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.about-3d-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-3d-stat-box {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.about-3d-stat-box:hover {
  border-color: var(--brand-orange);
  background-color: var(--bg-accent-orange);
}

.about-3d-stat-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.about-3d-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

.about-3d-tech-stack {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border: 1px solid var(--border-color);
}

.about-3d-tech-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.about-3d-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-3d-tag {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   PREMIUM ABOUT US SECTION STYLES WITH IMAGE SHOWCASE
   ========================================================================== */
.about-premium-section {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
  background-color: var(--bg-primary);
}

.about-premium-glow-1 {
  position: absolute;
  top: -10%;
  right: 0%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16) 0%, rgba(255, 107, 0, 0.08) 50%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.about-premium-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, rgba(37, 99, 235, 0.08) 50%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.about-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .about-premium-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Feature Grid (Left Side) */
.about-premium-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
  margin: 2.25rem 0;
}

@media (max-width: 576px) {
  .about-premium-features {
    grid-template-columns: 1fr;
  }
}

.about-premium-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 3.5px solid var(--brand-blue);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.about-premium-card.card-orange {
  border-left-color: var(--brand-orange);
}

.about-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(37, 99, 235, 0.12);
  border-color: var(--border-color-hover);
  border-left-color: var(--brand-orange);
}

.about-premium-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.6rem;
}

.about-premium-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.about-premium-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.about-premium-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Premium Visual Showcase (Right Side) */
.about-premium-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(255, 107, 0, 0.25) 50%, rgba(15, 23, 42, 0.1) 100%);
  box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.14),
              0 0 50px rgba(37, 99, 235, 0.15);
  transition: all 0.5s ease;
}

.about-premium-img-container:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: -15px 25px 60px rgba(0, 0, 0, 0.18),
              0 0 60px rgba(255, 107, 0, 0.25);
}

.about-premium-img-wrapper {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

@media (max-width: 992px) {
  .about-premium-img-wrapper {
    height: 360px;
  }
}

.about-premium-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-premium-img-container:hover .about-premium-img {
  transform: scale(1.06);
}

/* Glassmorphic Floating Badges on Image */
.about-glass-badge {
  position: absolute;
  background: rgba(9, 13, 22, 0.88);
  backdrop-filter: blur(14px);
  color: #ffffff;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: floatOrb 4s ease-in-out infinite alternate;
}

.about-glass-badge.badge-top-left {
  top: -1.2rem;
  left: -1rem;
}

.about-glass-badge.badge-bottom-right {
  bottom: -1.2rem;
  right: -1rem;
  animation-delay: 2s;
}

/* ==========================================================================
   ABOUT US PAGE PILLAR & FEATURE IMAGE CARD STYLES
   ========================================================================== */
.about-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

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

.about-pillar-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.about-pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

.about-pillar-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

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

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

.about-pillar-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.about-pillar-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Proprietary Product Suite Styles */
.product-full-card {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.product-full-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue) !important;
  box-shadow: var(--shadow-lg) !important;
}

[data-theme="dark"] .product-full-card {
  background-color: var(--bg-card) !important;
}

/* -------------------------------------------------------------
 * Product Gallery Slider Component
 * ------------------------------------------------------------- */
.pm-gallery-section {
  padding: 4.5rem 0 5rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pm-gallery-card {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.pm-gallery-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.pm-gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.pm-gallery-slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.pm-gallery-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.pm-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.pm-gallery-caption h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.pm-gallery-caption p {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin: 0;
}

.pm-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.pm-gallery-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
  color: var(--brand-orange);
}

.pm-gallery-arrow.prev {
  left: 1.25rem;
}

.pm-gallery-arrow.next {
  right: 1.25rem;
}

.pm-gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.pm-gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pm-gallery-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--brand-orange);
}

@media (max-width: 992px) {
  .product-full-card > div {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
