/* ==========================================================================
   ZonedOut - Main Stylesheet
   Brand: Navy #1E2130 | Gold #F5A623 | Black #0A0A0A
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Light & Dark Mode)
   -------------------------------------------------------------------------- */
:root {
  --brand-yellow: #F5A623;
  --brand-yellow-light: #FFC107;
  --brand-yellow-dark: #D9900A;
  --brand-navy: #1E2130;
  --brand-navy-light: #2C2E43;
  --brand-black: #0A0A0A;
  --brand-gray: #8E8E8E;

  --primary: #1E2130;
  --primary-light: #2C2E43;
  --secondary: #F5A623;
  --secondary-dark: #D9900A;
  --accent: #FFC107;
  --accent-light: #FFD54F;
  --bg-light: #F7F7F8;
  --bg-white: #FFFFFF;
  --text-dark: #1E2130;
  --text-muted: #6B7280;
  --text-light: #8E8E8E;
  --border-color: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(30, 33, 48, 0.08);
  --shadow-md: 0 8px 30px rgba(30, 33, 48, 0.12);
  --shadow-lg: 0 20px 60px rgba(30, 33, 48, 0.18);
  --gradient-primary: linear-gradient(135deg, #0A0A0A 0%, #1E2130 50%, #2C2E43 100%);
  --gradient-accent: linear-gradient(135deg, #F5A623 0%, #FFC107 100%);
  --gradient-cta: linear-gradient(135deg, #0A0A0A 0%, #1E2130 60%, #2C2E43 100%);
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(30, 33, 48, 0.08);
  --navbar-height: 96px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
}

/* Dark mode — matches logo black/navy + gold accents */
[data-theme="dark"] {
  --bg-light: #0A0A0A;
  --bg-white: #1E2130;
  --text-dark: #F5F5F5;
  --text-muted: #8E8E8E;
  --text-light: #6B7280;
  --border-color: #2C2E43;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --glass-bg: rgba(10, 10, 10, 0.92);
  --glass-border: rgba(245, 166, 35, 0.12);
}

/* --------------------------------------------------------------------------
   Base & Typography
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: var(--secondary);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-dark);
}

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

/* --------------------------------------------------------------------------
   Page Loader
   -------------------------------------------------------------------------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-black);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(245, 166, 35, 0.2);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

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

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-zoned {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-zoned-primary {
  background: var(--gradient-accent);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.btn-zoned-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
  color: var(--primary);
}

.btn-zoned-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--secondary);
}

.btn-zoned-outline:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-zoned-white {
  background: var(--gradient-accent);
  color: var(--primary);
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.35);
}

.btn-zoned-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.45);
  color: var(--primary);
}

.btn-zoned-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar-zoned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: var(--navbar-height);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar-zoned.scrolled {
  box-shadow: var(--shadow-sm);
  background: var(--glass-bg);
}

.navbar-zoned .navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  padding: 0;
}

.navbar-zoned .brand-logo {
  height: 72px;
  width: auto;
  display: block;
}

[data-theme="dark"] .navbar-zoned .navbar-brand {
  color: #fff;
}

.navbar-zoned .brand-accent {
  color: var(--secondary);
}

.navbar-zoned .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-dark);
  padding: 8px 16px !important;
  position: relative;
}

.navbar-zoned .nav-link:hover,
.navbar-zoned .nav-link.active {
  color: var(--secondary-dark);
}

[data-theme="dark"] .navbar-zoned .nav-link:hover,
[data-theme="dark"] .navbar-zoned .nav-link.active {
  color: var(--secondary);
}

.navbar-zoned .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 680px;
  padding: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

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

.mega-menu-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  color: var(--text-dark);
}

.mega-menu-item:hover {
  background: var(--bg-light);
  color: var(--secondary);
}

.mega-menu-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.15);
  color: var(--secondary-dark);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  flex-shrink: 0;
}

.mega-menu-item h6 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.mega-menu-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* Navbar actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
}

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

/* Navbar toggler icon color */
.navbar-zoned .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231E2130' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-theme="dark"] .navbar-zoned .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F1F5F9' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 33, 48, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary-dark);
  margin-bottom: 24px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

[data-theme="dark"] .hero-stat h3 {
  color: var(--secondary);
}

.hero-stat p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-xl);
}

/* Floating cards on hero */
.floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 1.125rem;
}

.floating-card h6 {
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.floating-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.floating-card-1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 20%;
  left: -8%;
  animation-delay: 2s;
}

.floating-card-3 {
  top: 50%;
  right: -10%;
  animation-delay: 4s;
}

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

/* --------------------------------------------------------------------------
   Page Hero Banner (Inner Pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 24px;
}

.breadcrumb-zoned {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-zoned li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-zoned li a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-zoned li a:hover {
  color: #fff;
}

.breadcrumb-zoned li.active {
  color: var(--secondary);
}

.breadcrumb-zoned li + li::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   Clients / Logo Slider
   -------------------------------------------------------------------------- */
.clients-section {
  padding: 60px 0 80px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.clients-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Client logos carousel */
.clients-carousel {
  position: relative;
  padding: 0 56px;
}

.clients-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.clients-carousel-track {
  display: flex;
  align-items: center;
  gap: 48px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.clients-logo-item {
  flex: 0 0 var(--client-item-width, 200px);
  width: var(--client-item-width, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

.clients-logo-item img {
  height: 200px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: var(--transition);
}

.clients-logo-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.clients-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-dark);
  z-index: 3;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.clients-nav:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.clients-prev {
  left: 0;
}

.clients-next {
  right: 0;
}

.clients-carousel-viewport {
  min-height: 240px;
  display: flex;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Service Cards
   -------------------------------------------------------------------------- */
.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.12);
  color: var(--secondary-dark);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-accent);
  color: var(--primary);
  transform: scale(1.05);
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary-dark);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   About Preview
   -------------------------------------------------------------------------- */
.about-preview {
  background: var(--bg-white);
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  border-radius: var(--radius-xl);
  width: 100%;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gradient-accent);
  color: #fff;
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge h3 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 4px;
}

.about-experience-badge p {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.9;
}

.about-content .section-label {
  margin-bottom: 8px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9375rem;
}

.about-features li i {
  color: var(--secondary-dark);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Feature Cards (Why Choose Us)
   -------------------------------------------------------------------------- */
.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 166, 35, 0.25);
}

.feature-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--secondary-dark);
  border-radius: 50%;
  font-size: 1.75rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-accent);
  color: var(--primary);
}

.feature-card h5 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Process Timeline
   -------------------------------------------------------------------------- */
.process-section {
  background: var(--bg-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--bg-white);
  border: 3px solid var(--secondary);
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-dark);
  transition: var(--transition);
}

.process-step:hover .process-number {
  background: var(--gradient-accent);
  border-color: transparent;
  color: var(--primary);
  transform: scale(1.1);
}

.process-step h5 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  padding: 0 8px;
}

/* --------------------------------------------------------------------------
   Team Cards
   -------------------------------------------------------------------------- */
.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

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

.team-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}

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

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.92), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  font-size: 0.875rem;
}

.team-social a:hover {
  background: var(--secondary);
  color: var(--primary);
}

.team-card-body {
  padding: 24px;
  text-align: center;
}

.team-card-body h5 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.team-card-body .designation {
  font-size: 0.875rem;
  color: var(--secondary-dark);
  font-weight: 500;
}

.team-card-body .bio {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.team-expertise {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
}

.team-expertise strong {
  color: var(--secondary-dark);
  font-weight: 600;
}

/* Featured founder block (team page) */
.team-founder-section {
  background: var(--bg-white);
}

.team-founder-card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.team-founder-image {
  position: relative;
  min-height: 320px;
  background: var(--gradient-primary);
}

.team-founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  min-height: 320px;
}

.team-founder-body {
  padding: 40px;
}

.team-founder-body .section-label {
  margin-bottom: 8px;
}

.team-founder-body h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 8px;
}

.team-founder-body .designation {
  font-size: 1rem;
  color: var(--secondary-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.team-founder-body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 14px;
}

.team-tagline {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--secondary-dark);
  letter-spacing: 0.5px;
}

.team-dept-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: var(--bg-white);
}

.testimonial-slider-wrapper {
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  width: 100%;
}

@media (min-width: 992px) {
  .testimonial-slide {
    width: calc(50% - 12px);
  }
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.testimonial-rating {
  color: #FBBF24;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.testimonial-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h6 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-author p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-nav button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
}

.testimonial-nav button:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-cta);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(245, 166, 35, 0.08);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--brand-black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-brand .brand-logo-footer {
  height: 88px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand .brand-accent {
  color: var(--secondary);
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary);
}

.footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.footer-contact i {
  color: var(--secondary);
  margin-top: 4px;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 0.875rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  border-color: var(--secondary);
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border: none;
  border-radius: 50%;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.newsletter-form button:hover {
  background: var(--accent);
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-top: 60px;
}

.footer-bottom p {
  font-size: 0.875rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Scroll To Top
   -------------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 1020;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   About Page Specific
   -------------------------------------------------------------------------- */
.mission-vision-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  height: 100%;
  text-align: center;
  transition: var(--transition);
}

.mission-vision-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.mission-vision-card .icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--secondary-dark);
  border-radius: 50%;
  font-size: 2rem;
}

.value-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--secondary);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
}

.value-card h5 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* Statistics Counter */
.stats-section {
  background: var(--gradient-primary);
  padding: 80px 0;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-item h3 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.85;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Services Page Specific
   -------------------------------------------------------------------------- */
.service-detail-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  margin-bottom: 32px;
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
}

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.service-detail-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9375rem;
}

.service-benefits li i {
  color: var(--secondary-dark);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tech-tag {
  padding: 6px 14px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-section {
  background: var(--bg-white);
}

.accordion-zoned .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-light);
}

.accordion-zoned .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-light);
  padding: 20px 24px;
  box-shadow: none !important;
}

.accordion-zoned .accordion-button:not(.collapsed) {
  background: var(--bg-white);
  color: var(--secondary-dark);
}

.accordion-zoned .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F5A623'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-zoned .accordion-body {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   Team Page Specific
   -------------------------------------------------------------------------- */
.culture-section {
  background: var(--bg-white);
}

.culture-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.culture-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.culture-card i {
  font-size: 2.5rem;
  color: var(--secondary-dark);
  margin-bottom: 20px;
}

.culture-card h5 {
  margin-bottom: 12px;
}

.culture-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.join-cta {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  border: 2px dashed var(--border-color);
}

.join-cta h3 {
  margin-bottom: 16px;
}

.join-cta p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 24px;
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */
.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 166, 35, 0.3);
}

.contact-info-card .icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.12);
  color: var(--secondary-dark);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.contact-info-card h5 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.7;
}

.contact-info-card a:hover {
  color: var(--secondary-dark);
}

.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-form-card .form-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  background: var(--bg-light);
  color: var(--text-dark);
  transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
  background: var(--bg-white);
}

.contact-form-card textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--secondary);
}

/* --------------------------------------------------------------------------
   Glassmorphism Cards
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
