/* -------------------------------------------------------------
   SPIZER GROUP INTERNATIONAL (OPC) PRIVATE LIMITED - STYLING
   Default Colors: Luxury Gold, Deep Navy Blue, Premium Silver, White
------------------------------------------------------------- */

/* GOOGLE FONTS IMPORT IN INDEX.HTML */

:root {
  /* Fortune 500 Corporate Color System - Default Light Theme */
  --primary-h: 220; /* Luxury Navy Blue #081F4D */
  --primary-s: 81%;
  --primary-l: 17%;
  
  --primary-color: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --primary-glow: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.1);
  --primary-dark: hsl(var(--primary-h), var(--primary-s), calc(var(--primary-l) - 5%));
  --primary-light: hsl(var(--primary-h), var(--primary-s), calc(var(--primary-l) + 12%));

  --secondary-h: 217; /* Royal Blue #0A3D91 */
  --secondary-s: 87%;
  --secondary-l: 30%;
  
  --secondary-color: hsl(var(--secondary-h), var(--secondary-s), var(--secondary-l));
  --secondary-dark: hsl(var(--secondary-h), var(--secondary-s), calc(var(--secondary-l) - 8%));
  
  --accent-h: 45; /* Premium Gold #D4AF37 */
  --accent-s: 62%;
  --accent-l: 53%;
  
  --accent-color: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
  --accent-light: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) + 12%));
  --accent-dark: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) - 10%));
  --accent-glow: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.25);
  
  --bg-color: #ffffff;
  --bg-light: #f8fafc;
  --text-color: #1e293b;
  --text-muted: #64748b;
  
  --card-bg: rgba(255, 255, 255, 0.75);
  --card-border: rgba(8, 31, 77, 0.06);
  --card-hover-border: rgba(212, 175, 55, 0.4);
  --glass-shadow: 0 20px 40px rgba(8, 31, 77, 0.18), 0 10px 20px rgba(8, 31, 77, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --bg-gradient: linear-gradient(135deg, 
    var(--bg-color) 0%, 
    hsla(var(--primary-h), var(--primary-s), 50%, 0.12) 25%, 
    hsla(var(--secondary-h), var(--secondary-s), 50%, 0.10) 50%, 
    var(--bg-light) 75%, 
    var(--bg-color) 100%
  );
}

body.light-theme {
  --bg-color: #ffffff;
  --bg-light: #f8fafc;
  --text-color: #1e293b;
  --text-muted: #64748b;
  
  --card-bg: rgba(255, 255, 255, 0.75);
  --card-border: rgba(8, 31, 77, 0.06);
  --card-hover-border: rgba(212, 175, 55, 0.4);
  --glass-shadow: 0 20px 40px rgba(8, 31, 77, 0.18), 0 10px 20px rgba(8, 31, 77, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  
  --secondary-color: #e2e9f3;
  --secondary-dark: #c4d1e2;
}

body.dark-theme {
  --bg-color: #040d21; /* Corporate Dark Midnight Navy */
  --bg-light: #081630; /* Lighter Midnight Navy */
  --text-color: #f1f5f9;
  --text-muted: #94a3b8;
  
  --card-bg: rgba(8, 22, 48, 0.7);
  --card-border: rgba(255, 255, 255, 0.05);
  --card-hover-border: rgba(212, 175, 55, 0.55);
  --glass-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 10px 20px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(255, 255, 255, 0.02);
  
  --secondary-color: #081630;
  --secondary-dark: #0f2752;

  --bg-gradient: linear-gradient(135deg, 
    var(--bg-color) 0%, 
    hsla(var(--primary-h), var(--primary-s), 30%, 0.25) 25%, 
    hsla(var(--secondary-h), var(--secondary-s), 30%, 0.20) 50%, 
    var(--bg-light) 75%, 
    var(--bg-color) 100%
  );
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  background-size: 400% 400%;
  animation: subtleBgShift 15s ease infinite;
  color: var(--text-color);
  line-height: 1.7; /* Premium spacious readability */
  letter-spacing: 0.015em;
  overflow-x: hidden;
  transition: color 0.5s ease;
}

@keyframes subtleBgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1, h2 {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 800; /* Gilroy ExtraBold */
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h3, h4 {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 800; /* Gilroy ExtraBold */
  letter-spacing: -0.01em;
  line-height: 1.25;
}

h5, h6 {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 700; /* Gilroy Bold */
  line-height: 1.3;
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-dark);
  border-radius: 5px;
  border: 2px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Utility Layouts */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

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

.accent-text {
  color: var(--accent-color);
}

.text-glow {
  text-shadow: 0 0 20px var(--accent-glow);
}

.section-tag {
  display: inline-block;
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800; /* Gilroy ExtraBold */
  letter-spacing: 0.25em; /* Elegant wide spacing */
  color: var(--accent-color);
  margin-bottom: 16px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 4px;
}

.section-title {
  font-size: 3rem; /* Larger and bolder */
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

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

.glass {
  background: var(--card-bg);
  backdrop-filter: blur(25px); /* Enhanced premium blur */
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.glass:hover {
  transform: translateY(-8px) scale(1.015); /* Premium 3D float lift */
  border-color: var(--card-hover-border);
  box-shadow: 0 35px 70px rgba(8, 31, 77, 0.22), 0 15px 30px rgba(212, 175, 55, 0.15);
}

body.dark-theme .glass:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.65), 0 15px 30px rgba(212, 175, 55, 0.2);
}

/* Button Classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700; /* Gilroy Bold */
  border-radius: var(--radius-md);
  cursor: pointer;
  gap: 8px;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: #ffffff;
  border: 1.5px solid var(--accent-color);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.btn-primary:hover {
  background: var(--accent-color); /* Gold hover effect */
  color: var(--primary-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

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

body.dark-theme .btn-outline {
  color: var(--text-color);
  border-color: var(--text-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-text {
  background-color: transparent;
  color: var(--text-muted);
  padding: 10px 15px;
}

.btn-text:hover {
  color: var(--primary-color);
}

.w-full {
  width: 100%;
}

/* -------------------------------------------------------------
   PRELOADER
------------------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  max-width: 300px;
}

.spizer-loader-logo {
  width: 90px;
  height: 90px;
  animation: logoPulse 2s infinite ease-in-out;
}

.loader-track {
  width: 180px;
  height: 3.5px;
  background-color: rgba(8, 31, 77, 0.05);
  margin: 25px auto 15px;
  border-radius: 10px;
  overflow: hidden;
}

body.dark-theme .loader-track {
  background-color: rgba(255, 255, 255, 0.05);
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  animation: loaderProgress 1.8s forwards cubic-bezier(0.1, 0.8, 0.3, 1);
}

.loader-text {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 800; /* Gilroy ExtraBold */
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--text-color);
}

.loader-sub {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 600; /* Gilroy SemiBold */
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 5px;
}

@keyframes logoPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 15px var(--accent-glow)); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes loaderProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* -------------------------------------------------------------
   NAVIGATION HEADER
------------------------------------------------------------- */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(8, 31, 77, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

body.dark-theme .navbar-header {
  background: rgba(4, 13, 33, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.dark-theme .navbar-header.scrolled {
  background: rgba(4, 13, 33, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
}

/* Logo Theme Toggles */
.logo-img-light {
  display: none !important;
}
.logo-img-dark {
  display: block !important;
}
body.light-theme .logo-img-light {
  display: block !important;
}
body.light-theme .logo-img-dark {
  display: none !important;
}

.logo-text {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 800; /* Gilroy ExtraBold */
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text-color);
  white-space: nowrap;
}

.logo-sub {
  font-weight: 300;
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 700; /* Gilroy Bold */
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding: 5px 0;
}

.nav-item:hover, .nav-item.active {
  color: var(--primary-color);
}

body.dark-theme .nav-item:hover, body.dark-theme .nav-item.active {
  color: var(--accent-color);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

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

.nav-action-btn {
  background: var(--primary-color);
  color: #ffffff;
  border: 1.5px solid var(--accent-color);
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 700; /* Gilroy Bold */
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-action-btn:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-color);
}

body.light-theme .icon-btn:hover {
  background: rgba(15, 23, 42, 0.05);
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger-menu span {
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition-fast);
}

/* Mobile responsive menu */
@media (max-width: 767px) {
  .hamburger-menu {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: var(--secondary-color);
    flex-direction: column;
    padding: 40px 24px;
    align-items: flex-start;
    gap: 25px;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
  }
  
  .nav-links.open {
    right: 0;
  }
}

/* -------------------------------------------------------------
   THEME CUSTOMIZER DRAWER
------------------------------------------------------------- */
.theme-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: 350px;
  height: 100vh;
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
}

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

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.theme-drawer.open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.drawer-content {
  width: 100%;
  background: var(--bg-light);
  border-left: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: -10px 0 30px var(--glass-shadow);
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header h3 {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.close-btn {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.close-btn:hover {
  color: var(--primary-color);
}

.drawer-body {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}

.config-group {
  margin-bottom: 30px;
}

.config-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.mode-toggle-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mode-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-color);
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

body.light-theme .mode-btn {
  background: rgba(15,23,42,0.02);
  border: 1px solid rgba(15,23,42,0.05);
}

.mode-btn.active {
  background: var(--primary-glow);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.color-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none;
}

.color-dot:hover {
  transform: scale(1.1);
}

.color-dot.active {
  border-color: var(--text-color);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* Admin Control Panel */
.admin-panel {
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

body.light-theme .admin-panel {
  background: rgba(15, 23, 42, 0.02);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.admin-header h4 {
  font-size: 0.9rem;
}

.badge {
  font-size: 0.65rem;
  font-weight: 800;
  background: var(--primary-color);
  color: #030f21;
  padding: 2px 6px;
  border-radius: 4px;
}

.admin-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.control-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
}

.control-row input[type="range"] {
  width: 140px;
  accent-color: var(--primary-color);
}

.reset-theme-btn {
  width: 100%;
  background: transparent;
  border: 1px dashed var(--text-muted);
  color: var(--text-muted);
  padding: 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
  margin-top: 10px;
  transition: var(--transition-fast);
}

.reset-theme-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--card-border);
}

.save-settings-btn {
  width: 100%;
  background: var(--primary-color);
  color: #ffffff;
  border: 1.5px solid var(--accent-color);
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 800; /* Gilroy ExtraBold */
  padding: 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
  transition: var(--transition-fast);
}

.save-settings-btn:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------- */
.hero-section {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 50px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(8, 31, 77, 0.04) 0%, rgba(10, 61, 145, 0.02) 90%), var(--bg-color);
}

body.dark-theme .hero-section {
  background: radial-gradient(circle at 10% 20%, rgba(8, 31, 77, 0.8) 0%, rgba(4, 13, 33, 1) 90%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  padding: 40px 24px;
  z-index: 2;
  position: relative;
}

/* Tablet & Desktop Site Viewports (>= 768px and <= 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 100px 0 40px;
  }
  .hero-container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
    padding: 20px 16px;
  }
  .hero-headline {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-subheadline {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .hero-cta-group {
    gap: 10px;
  }
  .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  .founder-hero-card {
    width: 100%;
    max-width: 250px;
    padding: 12px;
    border-radius: 12px;
  }
  .founder-avatar-img {
    height: 220px;
    border-radius: 8px;
  }
  .founder-avatar-info {
    padding: 10px;
  }
  .founder-avatar-info h4 {
    font-size: 0.9rem;
  }
  .founder-avatar-info p {
    font-size: 0.65rem;
  }
  .founder-quote-banner p {
    font-size: 0.75rem;
  }
  .nav-container {
    padding: 16px 20px;
  }
  .nav-links {
    gap: 15px;
  }
  .nav-item {
    font-size: 0.8rem;
  }
  .nav-action-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

/* Mobile-Friendly Stacking Viewports (< 768px) */
@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 125px 0 30px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 10px 16px;
  }
  .nav-container {
    padding: 16px 20px;
  }
  .nav-logo {
    width: 38px;
    height: 38px;
  }
  .logo-text {
    font-size: 1.15rem;
  }
  .logo-link {
    gap: 8px;
  }
  .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
  }
  .hero-badge-wrapper {
    display: flex;
    justify-content: center;
  }
  .hero-headline {
    font-size: 1.8rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .hero-subheadline {
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
    gap: 12px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  .hero-visual {
    margin-top: 10px;
  }
  .founder-hero-card {
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
    padding: 16px;
    border-radius: 16px;
  }
  .founder-avatar-img {
    height: 280px;
    border-radius: 10px;
  }
  .founder-avatar-info {
    padding: 12px;
  }
  .founder-avatar-info h4 {
    font-size: 1rem;
  }
  .founder-avatar-info p {
    font-size: 0.7rem;
  }
  .founder-quote-banner p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 14px 16px;
  }
  .nav-logo {
    width: 34px;
    height: 34px;
  }
  .logo-text {
    font-size: 1.05rem;
  }
  .logo-link {
    gap: 6px;
  }
  .nav-links {
    top: 63px;
    height: calc(100vh - 63px);
  }
}

.hero-text-content {
  display: flex;
  flex-direction: column;
}

.hero-badge-wrapper {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .hero-badge-wrapper {
    display: flex;
    justify-content: center;
  }
}

.hero-mini-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800; /* Gilroy ExtraBold */
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.light-theme .hero-mini-badge {
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

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

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px var(--primary-color); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-headline {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.5rem;
  }
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 767px) {
  .hero-cta-group {
    justify-content: center;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-hero-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 320px;
  box-shadow: var(--glass-shadow);
  animation: floatCard 6s infinite ease-in-out;
  transition: var(--transition-smooth);
}

.founder-hero-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--card-hover-border);
  box-shadow: 0 35px 70px rgba(8, 31, 77, 0.22), 0 15px 30px rgba(212, 175, 55, 0.15);
}

body.dark-theme .founder-hero-card:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.65), 0 15px 30px rgba(212, 175, 55, 0.2);
}

.founder-card-glow {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  filter: blur(25px);
  opacity: 0.3;
}

.founder-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.founder-avatar-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.founder-avatar-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(3,15,33,0.9), transparent);
  padding: 16px;
  color: #fff;
}

.founder-avatar-info h4 {
  font-size: 1.1rem;
}

.founder-avatar-info p {
  font-size: 0.75rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-quote-banner {
  display: flex;
  gap: 10px;
}

.quote-mark {
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-color);
  font-family: serif;
}

.founder-quote-banner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* -------------------------------------------------------------
   ABOUT SECTION
------------------------------------------------------------- */
.about-section {
  background-color: color-mix(in srgb, var(--bg-light) 65%, transparent);
}

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

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

.about-paragraph {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-infographics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  padding: 24px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

body.light-theme .info-card:hover {
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.info-card-icon {
  background: var(--primary-glow);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.info-card:hover .info-card-icon {
  background: var(--primary-color);
  color: #030f21;
}

.info-card:hover .info-card-icon svg {
  stroke: #030f21;
}

.info-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  transition: var(--transition-fast);
}

.info-card:hover h4 {
  color: var(--primary-color);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* -------------------------------------------------------------
   VISION & MISSION SECTION
------------------------------------------------------------- */
.vis-mis-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

@media (max-width: 767px) {
  .vis-mis-grid {
    grid-template-columns: 1fr;
  }
}

.vis-mis-card {
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.vis-mis-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: var(--primary-glow);
  border-radius: 50%;
  filter: blur(50px);
}

.card-icon-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.card-icon-header h3 {
  font-size: 1.8rem;
}

.vis-mis-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.mission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-list li {
  display: flex;
  align-items: start;
  gap: 12px;
}

.bullet-check {
  color: var(--primary-color);
  font-size: 1rem;
  line-height: 1.4;
}

.mission-list li p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
   GOVERNMENT RECOGNITION
------------------------------------------------------------- */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

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

.recog-card {
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  position: relative;
}

.recog-badge-icon {
  background: var(--primary-glow);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.badge-check-mark {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.2rem;
}

.recog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.recog-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.startup-india-badge-container {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}

.badge-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 75%);
  filter: blur(20px);
  z-index: 1;
}

.startup-india-badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--primary-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px var(--primary-glow);
}

body.light-theme .startup-india-badge {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .startup-india-badge {
    flex-direction: column;
    text-align: center;
  }
}

.startup-svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.badge-text-block h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.badge-text-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
   FOUNDER SECTION
------------------------------------------------------------- */
.founder-section {
  background-color: color-mix(in srgb, var(--bg-light) 65%, transparent);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

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

.founder-image-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar-frame {
  position: relative;
  margin-bottom: 20px;
}

.avatar-glow {
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  filter: blur(15px);
}

.founder-large-img {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 330px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.founder-details h3 {
  font-size: 1.6rem;
}

.founder-details .role {
  font-size: 0.85rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.founder-story {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.quote-card {
  border-radius: 16px;
  padding: 30px;
  position: relative;
  margin-top: 30px;
}

.large-quote-mark {
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: serif;
  opacity: 0.3;
}

.founder-blockquote {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* -------------------------------------------------------------
   OUR VENTURES
------------------------------------------------------------- */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.venture-card {
  border-radius: 20px;
  padding: 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 520px;
}

.venture-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  background: var(--primary-glow);
  border-radius: 50%;
  filter: blur(40px);
}

.venture-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.venture-icon {
  background: var(--primary-glow);
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venture-logo-container {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.venture-logo-img {
  height: 100%;
  width: auto;
  max-width: 155px;
  object-fit: contain;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(8, 31, 77, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

body.dark-theme .venture-logo-img {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.venture-card:hover .venture-logo-img {
  transform: scale(1.06) translateY(-2px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body.dark-theme .venture-card:hover .venture-logo-img {
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.venture-badge {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 800; /* Gilroy ExtraBold */
  letter-spacing: 0.05em;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--primary-color);
  padding: 4px 10px;
  border-radius: 20px;
}

body.light-theme .venture-badge {
  background: rgba(15, 23, 42, 0.02);
}

.venture-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 8px;
  margin-bottom: 12px;
}

.venture-sub-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: -10px;
  margin-bottom: 12px;
}

.venture-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.venture-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.venture-highlights {
  margin-top: auto;
  margin-bottom: 25px;
}

.venture-highlights h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.venture-highlights ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.venture-highlights li {
  font-size: 0.9rem;
  position: relative;
  padding-left: 18px;
  color: var(--text-color);
}

.venture-highlights li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 5px;
  top: -2px;
  font-size: 1.1rem;
}

.venture-learn-btn {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 800; /* Gilroy ExtraBold */
  font-size: 0.9rem;
  cursor: pointer;
  align-self: flex-start;
  transition: var(--transition-fast);
}

.venture-learn-btn:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

/* -------------------------------------------------------------
   IMPACT SECTION
------------------------------------------------------------- */
.impact-section {
  background-color: color-mix(in srgb, var(--bg-light) 65%, transparent);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.counter-card {
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
}

.counter-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.counter-number-wrapper {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-num {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 2.6rem;
  font-weight: 800; /* Gilroy ExtraBold */
}

.counter-plus {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-left: 2px;
}

.counter-label-special {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 800; /* Gilroy ExtraBold */
  color: var(--accent-color);
}

.counter-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
   CORE VALUES & WHY SPIZER
------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

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

.value-card {
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

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

.why-spizer-section {
  background-color: color-mix(in srgb, var(--bg-light) 65%, transparent);
}

/* Why Spizer */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.why-item {
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}

.why-item .check {
  color: var(--primary-color);
  font-weight: 800;
}

.why-item p {
  font-size: 0.95rem;
  font-weight: 500;
}

/* -------------------------------------------------------------
   CSR SECTION
------------------------------------------------------------- */
.csr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.csr-card {
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.csr-glow {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: var(--primary-glow);
  filter: blur(25px);
}

.csr-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.csr-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
   MEDIA GALLERY
------------------------------------------------------------- */
.gallery-section {
  background-color: var(--bg-light);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--card-border);
  color: var(--text-color);
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 700; /* Gilroy Bold */
  cursor: pointer;
  transition: var(--transition-fast);
}

body.light-theme .tab-btn {
  background: rgba(15,23,42,0.02);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary-color);
  color: #030f21;
  border-color: var(--primary-color);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-border);
}

.gallery-vector {
  width: 100%;
  height: 100%;
}

.video-item {
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(3,15,33,0.8);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  z-index: 2;
  transition: var(--transition-fast);
}

.gallery-item:hover .play-overlay {
  transform: scale(1.1);
  background: var(--primary-color);
  color: #030f21;
}

.achievement-item, .press-item {
  padding: 30px;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.award-trophy {
  font-size: 3rem;
  margin-bottom: 15px;
}

.achievement-item h4, .press-item h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.achievement-item p, .press-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.press-logo {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 800; /* Gilroy ExtraBold */
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* -------------------------------------------------------------
   OUR COMMITMENT SECTION
------------------------------------------------------------- */
.commitment-section {
  padding: 60px 20px;
}

.commitment-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.commitment-lead {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 800; /* Gilroy ExtraBold */
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 24px;
}

.commitment-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 35px;
}

.commitment-signature {
  border-top: 1px solid var(--card-border);
  padding-top: 30px;
  margin-top: 30px;
}

.company-name {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800; /* Gilroy ExtraBold */
  letter-spacing: 0.05em;
  color: var(--text-color);
  margin-bottom: 8px;
}

.company-slogan {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700; /* Gilroy Bold */
  letter-spacing: 0.02em;
  margin: 0;
}

/* -------------------------------------------------------------
   CONTACT SECTION
------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  padding: 40px;
  border-radius: 20px;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  background: var(--primary-glow);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.info-text a {
  font-weight: 600;
}

.info-text a:hover {
  color: var(--primary-color);
}

.map-container {
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  overflow: hidden;
  height: 260px;
  position: relative;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.map-container:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
}

.google-map-iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.2) contrast(1.05) brightness(0.95);
  transition: var(--transition-smooth);
}

body.dark-theme .google-map-iframe {
  filter: invert(0.9) hue-rotate(180deg) contrast(1.2) brightness(0.9) saturate(0.8);
}

.contact-form-panel {
  padding: 40px;
  border-radius: 20px;
}

.contact-form-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
  color: var(--text-color);
  padding: 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

body.light-theme .form-group input, body.light-theme .form-group select, body.light-theme .form-group textarea {
  background: rgba(15,23,42,0.02);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-glow);
}

.form-feedback-message {
  font-size: 0.85rem;
  margin-top: 10px;
  display: none;
}

.form-feedback-message.success {
  color: #10b981;
  display: block;
}

.form-feedback-message.error {
  color: #f43f5e;
  display: block;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.luxury-footer {
  background-color: #020a17;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: 80px;
}

body.light-theme .luxury-footer {
  background-color: #f1f5f9;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.footer-grid-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

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

.footer-logo {
  width: 36px;
  height: 36px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 15px;
  margin-bottom: 20px;
}

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

.social-icons a {
  background: rgba(255,255,255,0.03);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

body.light-theme .social-icons a {
  background: rgba(15,23,42,0.03);
}

.social-icons a:hover {
  background: var(--primary-color);
  color: #030f21;
}

.footer-links-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links-col a:hover {
  color: var(--primary-color);
  padding-left: 3px;
}

.footer-links-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

body.light-theme .footer-bottom {
  border-top: 1px solid rgba(15,23,42,0.05);
}

.footer-bottom a {
  text-decoration: underline;
}

/* -------------------------------------------------------------
   MODAL DIALOG (CAREERS, INVESTORS, BLOG)
------------------------------------------------------------- */
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-wrapper.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEnter {
  0% { opacity: 0; transform: scale(0.95) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--primary-color);
}

.modal-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 30px;
  padding-bottom: 5px;
}

body.light-theme .modal-tabs {
  border-bottom: 1px solid rgba(15,23,42,0.05);
}

.modal-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-weight: 700; /* Gilroy Bold */
  font-size: 1rem;
  padding: 8px 16px;
  cursor: pointer;
  position: relative;
}

.modal-tab-btn.active {
  color: var(--primary-color);
}

.modal-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.modal-panel {
  display: none;
}

.modal-panel.active {
  display: block;
}

.modal-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.modal-panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.portal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

@media (max-width: 575px) {
  .form-row {
    flex-direction: column;
  }
}

.flex-1 {
  flex: 1;
}

.document-download-card {
  padding: 20px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 575px) {
  .document-download-card {
    flex-direction: column;
    text-align: center;
  }
}

.document-download-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.document-download-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.blog-card {
  padding: 20px;
  border-radius: 12px;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
}

.blog-card h4 {
  font-size: 1.1rem;
  margin: 6px 0 10px;
}

.blog-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* -------------------------------------------------------------
   FLOATING WIDGETS
------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 999;
  transition: var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
}

/* AI Chat Assistant Widget */
.ai-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.chat-toggle-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px var(--primary-glow);
  position: relative;
  transition: var(--transition-fast);
}

.chat-toggle-btn:hover {
  transform: scale(1.05);
}

.chat-notif-pulse {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--bg-color);
  animation: chatNotif 1.5s infinite;
}

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

.chat-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  height: 400px;
  background: var(--secondary-color);
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

body.light-theme .chat-box {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(15,23,42,0.1);
}

.chat-box.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-box-header {
  background: rgba(0,0,0,0.15);
  padding: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.light-theme .chat-box-header {
  border-bottom: 1px solid rgba(15,23,42,0.05);
  background: #f8fafc;
}

.chat-bot-identity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bot-svg {
  width: 30px;
  height: 30px;
}

.chat-bot-identity h4 {
  font-size: 0.9rem;
}

.online-status {
  font-size: 0.7rem;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
}

.online-status::before {
  content: '•';
  font-size: 1.1rem;
}

.chat-close-btn {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}

.chat-box-messages {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.message.bot {
  background: rgba(255, 255, 255, 0.03);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-theme .message.bot {
  background: #f1f5f9;
}

.message.user {
  background: var(--primary-color);
  color: #030f21;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-box-input {
  display: flex;
  padding: 10px;
  background: rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.05);
}

body.light-theme .chat-box-input {
  background: #f8fafc;
  border-top: 1px solid rgba(15,23,42,0.05);
}

.chat-box-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-color);
  outline: none;
  font-size: 0.85rem;
  padding: 6px;
}

.chat-box-input button {
  background: var(--primary-color);
  color: #030f21;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER)
------------------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Custom glows */
.animate-glow {
  position: relative;
}

.animate-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-shadow: 0 0 15px var(--primary-glow);
  opacity: 0;
  transition: var(--transition-smooth);
}

.animate-glow:hover::after {
  opacity: 1;
}

.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* -------------------------------------------------------------
   PRELOADER LOGO IMAGE
------------------------------------------------------------- */
.spizer-loader-img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 16px;
  margin: 0 auto;
  animation: logoPulse 2s infinite ease-in-out;
}

/* -------------------------------------------------------------
   ABOUT SECTION STYLING & ECOSYSTEM SYNERGY MAP
------------------------------------------------------------- */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-section-glow {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.tag-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* About Section New Editorial Styles */
.about-editorial-lead {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.lead-accent-bar {
  width: 4px;
  background: var(--accent-color);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-lead {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700; /* Gilroy Bold */
  line-height: 1.7;
  color: var(--text-color);
  margin: 0;
  opacity: 0.95;
}

.about-narrative {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.about-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.stat-mini-card {
  padding: 20px 15px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  transition: var(--transition-smooth);
}

.stat-mini-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-hover-border);
}

.stat-mini-card .stat-num {
  font-family: 'Gilroy', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 15px var(--accent-glow);
}

.stat-mini-card .stat-lbl {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Orbit Rings for Ecosystem Radial Map */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(8, 31, 77, 0.08);
  pointer-events: none;
  z-index: 1;
  transition: var(--transition-smooth);
}

body.dark-theme .orbit-ring {
  border-color: rgba(255, 255, 255, 0.05);
}

.orbit-outer {
  width: 320px;
  height: 320px;
  animation: rotateOrbit 40s linear infinite;
}

.orbit-inner {
  width: 200px;
  height: 200px;
  animation: rotateOrbitRev 25s linear infinite;
}

@keyframes rotateOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateOrbitRev {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

body.light-theme .about-lead {
  color: var(--text-color);
  opacity: 0.85;
}

.about-ecosystem-block {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}

.ecosystem-map-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

@media (max-width: 480px) {
  .ecosystem-map-wrapper {
    width: 320px;
    height: 320px;
  }
}

.ecosystem-radial-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}

.eco-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 30px var(--primary-glow);
  padding: 10px;
  transition: var(--transition-smooth);
}

.hub-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.hub-text {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-top: 4px;
}

.eco-satellite {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 20px var(--glass-shadow);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.eco-satellite:hover {
  transform: scale(1.12) translateY(-5px) !important;
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px var(--accent-glow);
}

.sat-icon {
  font-size: 1.6rem;
  margin-bottom: 2px;
}

.sat-label {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-color);
  text-align: center;
  line-height: 1;
}

/* Position Satellites */
.sat-education {
  top: 60px;
  left: 200px;
  transform: translate(-50%, -50%);
  animation: floatEcoNode 6s infinite ease-in-out;
}

.sat-healthcare {
  top: 200px;
  left: 340px;
  transform: translate(-50%, -50%);
  animation: floatEcoNode 6s infinite ease-in-out 1.5s;
}

.sat-innovation {
  top: 340px;
  left: 200px;
  transform: translate(-50%, -50%);
  animation: floatEcoNode 6s infinite ease-in-out 3s;
}

.sat-social {
  top: 200px;
  left: 60px;
  transform: translate(-50%, -50%);
  animation: floatEcoNode 6s infinite ease-in-out 4.5s;
}

@media (max-width: 480px) {
  .sat-education {
    top: 50px;
    left: 160px;
  }
  .sat-healthcare {
    top: 160px;
    left: 270px;
  }
  .sat-innovation {
    top: 270px;
    left: 160px;
  }
  .sat-social {
    top: 160px;
    left: 50px;
  }
}

.eco-connectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Adjust connector lines for smaller screens */
@media (max-width: 480px) {
  .eco-connectors {
    transform: scale(0.8);
    transform-origin: center;
  }
}

.pulse-path {
  stroke-dasharray: 6, 6;
  animation: connectorPulse 15s infinite linear;
}

@keyframes floatEcoNode {
  0% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-6px); }
  100% { transform: translate(-50%, -50%) translateY(0); }
}

@keyframes connectorPulse {
  to {
    stroke-dashoffset: -120;
  }
}

/* Theme-Aware Preloader Overrides */
body.light-theme .preloader {
  background-color: #f8fafc;
}
body.light-theme .loader-text {
  color: #0f172a;
}
body.light-theme .loader-sub {
  color: #475569;
}
body.light-theme .loader-track {
  background-color: rgba(15, 23, 42, 0.05);
}

/* Custom Cursor Styles */
.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.15s, height 0.15s;
  animation: cursorColor 8s infinite ease-in-out;
}

.custom-cursor-ring {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s;
  animation: cursorRingColor 8s infinite ease-in-out;
}

.custom-cursor-ring.hover {
  width: 48px;
  height: 48px;
  background-color: var(--primary-glow);
  border-color: transparent !important;
  animation: none;
}

@keyframes cursorColor {
  0% { background-color: var(--primary-color); }
  50% { background-color: var(--accent-color); }
  100% { background-color: var(--primary-color); }
}

@keyframes cursorRingColor {
  0% { border-color: var(--primary-color); }
  50% { border-color: var(--accent-color); }
  100% { border-color: var(--primary-color); }
}

@keyframes cursorColorDark {
  0% { background-color: var(--accent-color); }
  50% { background-color: hsl(var(--primary-h), var(--primary-s), 65%); }
  100% { background-color: var(--accent-color); }
}

@keyframes cursorRingColorDark {
  0% { border-color: var(--accent-color); }
  50% { border-color: hsl(var(--primary-h), var(--primary-s), 65%); }
  100% { border-color: var(--accent-color); }
}

/* Hide custom cursor on touch devices */
@media (max-width: 1024px) {
  .custom-cursor-dot, .custom-cursor-ring {
    display: none !important;
  }
}

/* About Carousel Styles */
.about-carousel-section {
  margin-top: 80px;
  width: 100%;
  z-index: 2;
  position: relative;
}

.about-carousel-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-color);
}

.about-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.about-carousel-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 650px;
  min-height: 200px;
  position: relative;
  justify-content: center;
  align-items: center;
}

.about-carousel-card {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px var(--glass-shadow);
}

.about-carousel-card.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.about-card-icon-wrapper {
  background: var(--primary-glow);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-carousel-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.about-carousel-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-carousel-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  color: var(--text-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10;
}

.about-carousel-btn:hover {
  background: var(--primary-color);
  color: #030f21;
  border-color: var(--primary-color);
}

.about-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.about-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-dark);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.about-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
}

@media (max-width: 575px) {
  .about-carousel-wrapper {
    gap: 10px;
  }
  .about-carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
  .about-carousel-card {
    padding: 20px;
  }
  .about-carousel-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
}

/* FAQ Accordion Styles */
.faq-section {
  background-color: color-mix(in srgb, var(--bg-light) 65%, transparent);
}

.faq-accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  transition: var(--transition-fast);
}

.faq-item:hover .faq-question h4 {
  color: var(--primary-color);
}

.faq-toggle-icon {
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, opacity 0.4s ease;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 24px;
  opacity: 1;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* -------------------------------------------------------------
   DARK THEME CONTRAST & ACCESSIBILITY OVERRIDES
------------------------------------------------------------- */
body.dark-theme .venture-tagline {
  color: var(--accent-color);
}

body.dark-theme .founder-details .role {
  color: var(--accent-color);
}

body.dark-theme .venture-learn-btn {
  color: var(--accent-color);
}

body.dark-theme .testimonial-user p {
  color: var(--accent-color);
}

body.dark-theme .blog-date {
  color: var(--accent-color);
}

body.dark-theme .footer-links-col a:hover {
  color: var(--accent-color);
}

body.dark-theme .btn-text:hover {
  color: var(--accent-color);
}

body.dark-theme a[style*="var(--primary-color)"] {
  color: var(--accent-color) !important;
}

body.dark-theme .eco-hub {
  border-color: var(--accent-color);
  box-shadow: 0 0 30px var(--accent-glow);
}

body.dark-theme .hub-text {
  color: var(--accent-color);
}

body.dark-theme .why-item .check {
  color: var(--accent-color);
}

body.dark-theme .bullet-check {
  color: var(--accent-color);
}

body.dark-theme .dot.active,
body.dark-theme .about-dot.active {
  background-color: var(--accent-color);
}

body.dark-theme .chat-toggle-btn {
  background-color: var(--accent-color);
  color: #030f21;
  box-shadow: 0 5px 20px var(--accent-glow);
}

body.dark-theme .custom-cursor-dot {
  animation: cursorColorDark 8s infinite ease-in-out;
}

body.dark-theme .custom-cursor-ring {
  animation: cursorRingColorDark 8s infinite ease-in-out;
}

body.dark-theme .custom-cursor-ring.hover {
  background-color: var(--accent-glow);
  border-color: transparent !important;
  animation: none;
}

@media (max-width: 767px) {
  .nav-links {
    background: var(--bg-light) !important;
    border-left: 1px solid var(--card-border);
  }
  .nav-item {
    color: var(--text-color) !important;
  }
}

/* -------------------------------------------------------------
   SPIZER GROUP REDESIGN & PREMIUM ANIMATIONS ADDITIONS
------------------------------------------------------------- */

/* 1. Core Scroll Reveal System */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* Reduced Motion Compliance */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal, .reveal, .stagger-word {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* 2. Hero Section Parallax, Staggered Headline, Scroll Indicator */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Hero Parallax Background */
.hero-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* extra height for movement */
  background: radial-gradient(circle at 10% 20%, rgba(var(--primary-h), var(--primary-s), var(--primary-l), 0.04) 0%, rgba(10, 61, 145, 0.02) 90%), var(--bg-color);
  z-index: 0;
  pointer-events: none;
  transform: translateY(0);
  will-change: transform;
}

body.dark-theme .hero-parallax-bg {
  background: radial-gradient(circle at 10% 20%, rgba(var(--primary-h), var(--primary-s), var(--primary-l), 0.8) 0%, rgba(4, 13, 33, 1) 90%);
}

/* Staggered Word Headline */
.stagger-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.stagger-word.active {
  animation: staggerFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--word-index) * 0.08s);
}

@keyframes staggerFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Float Animation on CTA Button Hover */
.hero-cta-group .btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.hero-cta-group .btn:hover {
  transform: translateY(-5px);
  animation: floatingCta 2s ease-in-out infinite alternate 0.3s;
}

@keyframes floatingCta {
  0% { transform: translateY(-5px); }
  100% { transform: translateY(-9px); }
}



/* 3. Sticky Header Scroll Animations & Nav Underlines */
.navbar-header {
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(8, 31, 77, 0.08);
}

body.dark-theme .navbar-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Nav Item Underlines */
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-theme .nav-item::after {
  background-color: var(--accent-color);
}

.nav-item:hover::after, .nav-item.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Animated Hamburger Menu */
.hamburger-menu span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 4. About Section Alternating Entrances */
.about-info-block {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.about-ecosystem-block {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.about-section.active .about-info-block,
.about-section.active .about-ecosystem-block {
  opacity: 1;
  transform: translateX(0);
}

/* 5. Recognition Section Hover & Scroll Transitions */
.recognition-grid .recog-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.recognition-section.active .recognition-grid .recog-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.recognition-section.active .recognition-grid .recog-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.recognition-section.active .recognition-grid .recog-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

.recog-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.recog-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--accent-color);
  box-shadow: 0 25px 50px rgba(8, 31, 77, 0.15);
}

body.dark-theme .recog-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55), 0 15px 30px rgba(212, 175, 55, 0.15);
}

.recog-card:hover .recog-badge-icon {
  animation: pulseCheck 0.6s ease-out;
}

@keyframes pulseCheck {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Animated gradient background shift for recognition */
.recognition-section {
  background: linear-gradient(135deg, transparent, rgba(var(--primary-h), var(--primary-s), var(--primary-l), 0.02) 50%, transparent);
  background-size: 200% 200%;
  transition: background-position 0.1s ease;
}

body.dark-theme .recognition-section {
  background: linear-gradient(135deg, transparent, rgba(var(--primary-h), var(--primary-s), var(--primary-l), 0.15) 50%, transparent);
  background-size: 200% 200%;
}

/* 6. Founder's Message Quote and Border Animation */
.founder-section.active .avatar-frame {
  animation: glowPulseFrame 4s infinite alternate;
}

@keyframes glowPulseFrame {
  0% { filter: drop-shadow(0 0 10px rgba(var(--primary-h), var(--primary-s), var(--primary-l), 0.1)); }
  100% { filter: drop-shadow(0 0 25px rgba(var(--accent-h), var(--accent-s), var(--accent-l), 0.35)); }
}

.founder-large-img {
  will-change: transform;
}

/* Border gradient animation around quote section */
.quote-card.glass {
  position: relative;
}

.quote-card.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2.5px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.quote-card.glass:hover::before {
  opacity: 0.8;
}

/* 7. Ventures Card Lift, Rotation, Glow & Underlines */
.ventures-grid .venture-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.ventures-section.active .ventures-grid .venture-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.ventures-section.active .ventures-grid .venture-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.ventures-section.active .ventures-grid .venture-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.ventures-section.active .ventures-grid .venture-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.ventures-section.active .ventures-grid .venture-card:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

.venture-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
  z-index: 1;
}

.venture-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent-color);
  box-shadow: 0 30px 60px rgba(8, 31, 77, 0.25), 0 0 25px rgba(212, 175, 55, 0.15);
}

body.dark-theme .venture-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), 0 0 25px rgba(212, 175, 55, 0.2);
}

/* Icon Rotation & Glow */
.venture-card .venture-icon {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.venture-card:hover .venture-icon {
  transform: rotate(360deg);
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 15px var(--primary-glow);
}

body.dark-theme .venture-card:hover .venture-icon {
  background-color: var(--accent-color);
  color: #030f21;
  box-shadow: 0 0 15px var(--accent-glow);
}

.venture-card:hover .venture-icon svg {
  stroke: currentColor;
}

/* Card hover background gradient shift overlay */
.venture-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(8, 31, 77, 0.03), rgba(214, 175, 55, 0.03));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.venture-card:hover::after {
  opacity: 1;
}

/* Learn More Arrow Slide Effect */
.venture-learn-btn {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease, transform 0.3s ease;
  will-change: transform;
}

.venture-learn-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-theme .venture-learn-btn::after {
  background-color: var(--accent-color);
}

.venture-card:hover .venture-learn-btn::after {
  transform: scaleX(1);
  transform-origin: left;
}

.venture-card:hover .venture-learn-btn {
  transform: translateX(5px);
}

/* 8. Impact Section Counter & Bounce Icons */
.counters-grid .counter-card {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-section.active .counters-grid .counter-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.impact-section.active .counters-grid .counter-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.impact-section.active .counters-grid .counter-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.impact-section.active .counters-grid .counter-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.impact-section.active .counters-grid .counter-card:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

.counter-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 31, 77, 0.12);
}

.counter-card:hover .counter-icon {
  animation: bounceCounterIcon 0.6s ease-out;
}

@keyframes bounceCounterIcon {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.1); }
}

/* 9. Core Values Section hover effect */
.values-grid .value-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-section.active .values-grid .value-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.values-section.active .values-grid .value-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.values-section.active .values-grid .value-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.values-section.active .values-grid .value-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.values-section.active .values-grid .value-card:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.values-section.active .values-grid .value-card:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

.value-card {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-8px);
  background-color: var(--primary-glow);
  box-shadow: 0 20px 40px rgba(8, 31, 77, 0.12);
}

body.dark-theme .value-card:hover {
  background-color: var(--accent-glow);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 0 0 4px 4px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.value-card:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.value-card:hover .value-icon {
  transform: rotate(15deg) scale(1.15);
}

.value-icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 10. FAQ Accordion Enhancements */
.faq-item {
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.faq-item.active {
  background-color: var(--primary-glow) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 15px 30px rgba(8, 31, 77, 0.1);
}

body.dark-theme .faq-item.active {
  background-color: var(--accent-glow) !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.faq-answer p {
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.faq-item.active .faq-answer p {
  transform: translateY(0);
  opacity: 1;
}

/* 11. Dribbble-Style Floating Form Labels */
.floating-group {
  position: relative;
  margin-bottom: 24px;
}

.floating-group input,
.floating-group select,
.floating-group textarea {
  width: 100%;
  padding: 20px 14px 8px; /* space at top for floats */
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--card-border);
  color: var(--text-color);
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

body.light-theme .floating-group input,
body.light-theme .floating-group select,
body.light-theme .floating-group textarea {
  background: rgba(15, 23, 42, 0.015);
}

.floating-group label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), font-size 0.25s ease, color 0.25s ease;
  transform-origin: left top;
  margin-bottom: 0;
}

/* Active Floating Label Logic */
.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label,
.floating-group textarea:focus ~ label,
.floating-group textarea:not(:placeholder-shown) ~ label,
.floating-group select:focus ~ label,
.floating-group select:valid ~ label {
  transform: translateY(-10px) scale(0.72);
  color: var(--primary-color);
}

body.dark-theme .floating-group input:focus ~ label,
body.dark-theme .floating-group input:not(:placeholder-shown) ~ label,
body.dark-theme .floating-group textarea:focus ~ label,
body.dark-theme .floating-group textarea:not(:placeholder-shown) ~ label,
body.dark-theme .floating-group select:focus ~ label,
body.dark-theme .floating-group select:valid ~ label {
  color: var(--accent-color);
}

.floating-group input:focus,
.floating-group select:focus,
.floating-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3.5px var(--primary-glow);
}

body.dark-theme .floating-group input:focus,
body.dark-theme .floating-group select:focus,
body.dark-theme .floating-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3.5px var(--accent-glow);
}

/* Success Validation Feedback */
.form-feedback-message {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, transform 0.4s ease;
}

.form-feedback-message.success {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
}

.form-feedback-message.error {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
  color: #f43f5e;
}

/* 12. Footer Upgrades */
.footer-links-col a {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.footer-links-col a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-theme .footer-links-col a::after {
  background-color: var(--accent-color);
}

.footer-links-col a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-links-col a:hover {
  color: var(--primary-color) !important;
  transform: translateX(4px);
}

body.dark-theme .footer-links-col a:hover {
  color: var(--accent-color) !important;
}

.social-icons a {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
  will-change: transform;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.15);
  background-color: var(--primary-color);
  color: #fff;
}

body.dark-theme .social-icons a:hover {
  background-color: var(--accent-color);
  color: #030f21;
}
