﻿/* ================================================
   SeyHire - Modern Recruitment Agency Styles
   ================================================ */

/* =============== CSS Variables =============== */
:root {
  /* Brand Colors */
  --primary-color: #1a3c8c;
  --accent-color: #ff7a00;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;

  /* Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-accent: #f1f3f7;
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --text-light: #adb5bd;
  --border-color: #e9ecef;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-heavy: rgba(0, 0, 0, 0.25);

  /* Typography */
  --font-primary: "Inter", system-ui, -apple-system, sans-serif;
  --font-secondary: "Poppins", system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --bg-accent: #3a3a3a;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-light: #808080;
  --border-color: #404040;
  --shadow-light: rgba(255, 255, 255, 0.05);
  --shadow-medium: rgba(255, 255, 255, 0.1);
  --shadow-heavy: rgba(255, 255, 255, 0.15);
}

/* =============== Base Styles =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: all var(--transition-normal);
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
  max-width: 100vw; /* Ensure body doesn't exceed viewport width */
}

/* =============== Typography =============== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.highlight {
  color: var(--accent-color);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 2px;
}

/* =============== Buttons =============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #2952a3);
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #153066, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 60, 140, 0.3);
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  background: var(--accent-color);
  color: white;
  border-radius: 50px;
  transition: all var(--transition-normal);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-chip:hover {
  background: #e66b00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile CTA Chip */
.mobile-cta.btn-chip {
  display: block;
  text-align: center;
  margin: 0 16px;
}

a:hover {
  text-decoration: none;
}

/* =============== Header Styles =============== */
#header {
  height: 80px;
  transition: all var(--transition-normal);
  padding: 0;
  z-index: 999;
}

#header.header-scrolled {
  background: rgba(26, 60, 140, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow-medium);
}

[data-theme="light"] #header.header-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] #header.header-scrolled .nav-link:hover,
[data-theme="light"] #header.header-scrolled .nav-menu .active .nav-link {
  color: var(--accent-color);
}

[data-theme="dark"] #header.header-scrolled .nav-link:hover,
[data-theme="dark"] #header.header-scrolled .nav-menu .active .nav-link {
  color: var(--accent-color);
}

[data-theme="light"] #header.header-scrolled .logo-tagline {
  color: rgba(255, 255, 255, 0.8);
}

#header.header-transparent {
  background: transparent;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 40px;
  width: auto;
  background: white;
  padding: 4px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-brand {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-secondary);
  color: var(--accent-color);
}

.logo-tagline {
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

#header.header-transparent .logo-brand,
#header.header-transparent .logo-tagline {
  color: white;
}

/* Ensure logo background remains white in scrolled state */
#header.header-scrolled .logo-img {
  background: white; /* Maintain white background when header is scrolled */
}

/* Theme-specific adjustments */
[data-theme="light"] #header.header-scrolled .logo-brand {
  color: var(--accent-color); /* Ensure logo text color is consistent */
}

[data-theme="light"] #header.header-scrolled .logo-tagline {
  color: rgba(255, 255, 255, 0.8); /* Match existing tagline color */
}

[data-theme="dark"] #header.header-scrolled .logo-brand {
  color: var(--accent-color);
}

[data-theme="dark"] #header.header-scrolled .logo-tagline {
  color: rgba(255, 255, 255, 0.8);
}

body.jobs-page #header {
  background: rgba(26, 60, 140, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow-medium);
}

body.jobs-page #header .nav-menu .active .nav-link::after {
  width: 100%; 
}
/* Navigation Styles */
.navbar {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
  color: white;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: all var(--transition-normal);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  /* background: var(--accent-color); */
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

#header.header-transparent .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

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

.nav-link:hover {
  color: var(--accent-color);
}

#header.header-transparent .nav-link:hover {
  color: var(--accent-color);
}

[data-theme="light"] #header.header-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] #header.header-scrolled .nav-menu .active .nav-link {
  color: var(--accent-color);
}

[data-theme="light"] #header.header-scrolled .nav-menu .active .nav-link::after {
  width: 100%; /* Ensure active bar appears */
}

/* User Dropdown Menu */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between text and icon */
}

.dropdown-toggle::after {
  display: none !important; /* Forcefully disable Bootstrap's default arrow */
}

.dropdown-toggle[aria-expanded="true"]::after {
  display: none !important; /* Ensure it’s disabled when dropdown is open */
}

.dropdown-icon {
  font-size: 16px;
  color: var(--accent-color); /* Use accent color (#ff7a00) */
  transition: transform var(--transition-normal);
}

.dropdown-toggle[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg); /* Rotate arrow when dropdown is open */
}

.user-dropdown {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px var(--shadow-medium);
  padding: 10px 0;
  min-width: 200px;
  z-index: 1000;
}

[data-theme="dark"] .user-dropdown {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-primary);
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.dropdown-item:hover {
  background: var(--bg-accent);
  color: var(--accent-color);
}

.dropdown-divider {
  border-top: 1px solid var(--border-color);
  margin: 5px 0;
}

/* Theme Toggle */
.theme-toggle {
  margin-left: 20px;
}

.theme-toggle-btn {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 12px;
  color: white;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex; /* Ensure visibility in light mode */
  align-items: center;
}

.theme-toggle-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.theme-toggle-btn .dark-icon,
.theme-toggle-btn .light-icon {
  font-size: 18px;
  transition: all var(--transition-normal);
}

[data-theme="dark"] .theme-toggle-btn .dark-icon {
  display: none;
}

[data-theme="light"] .theme-toggle-btn .light-icon {
  display: none;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
  width: 40px;
  margin-right: 10px;
}

.mobile-nav-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-nav-toggle.active {
  display: none; /* Hide toggle when menu is open */
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-primary);
  box-shadow: -5px 0 20px var(--shadow-medium);
  transition: all var(--transition-normal);
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  transition: all var(--transition-normal);
}

.mobile-nav-close:hover {
  color: var(--accent-color);
}

.mobile-nav-menu {
  list-style: none;
  padding: 20px;
}

.mobile-nav-menu li {
  margin-bottom: 16px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.mobile-nav-link:hover {
  background: var(--bg-accent);
  color: var(--primary-color);
}

/* Mobile Theme Toggle */
.mobile-theme-toggle {
  padding: 20px;
  display: flex; /* Ensure visibility in mobile view */
  justify-content: center;
}

#mobile-theme-toggle-btn {
  background: none;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  padding: 8px 16px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-theme="dark"] #mobile-theme-toggle-btn {
  border-color: var(--border-color);
  color: var(--text-primary);
}

#mobile-theme-toggle-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

#mobile-theme-toggle-btn .dark-icon,
#mobile-theme-toggle-btn .light-icon {
  font-size: 18px;
}

[data-theme="dark"] #mobile-theme-toggle-btn .dark-icon {
  display: none;
}

[data-theme="light"] #mobile-theme-toggle-btn .light-icon {
  display: none;
}

/* =============== Mobile Text Container Styles =============== */
.mobile-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.2;
}

.mobile-logo-brand {
  font-family: var(--font-secondary);
  font-size: 1.25rem; /* Matches footer-brand size for consistency */
  font-weight: 700;
  color: var(--accent-color); /* Matches logo-brand color */
  text-decoration: none;
}

[data-theme="dark"] .mobile-logo-brand {
  color: var(--accent-color); /* Ensure consistent accent color in dark mode */
}

.mobile-logo-tagline {
  font-family: var(--font-primary);
  font-size: 0.75rem; /* Slightly larger than logo-tagline for mobile readability */
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

[data-theme="dark"] .mobile-logo-tagline {
  color: rgba(255, 255, 255, 0.8); /* Matches footer-description in dark mode */
}

/* =============== Hero Section =============== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 60, 140, 0.7),
    rgba(41, 82, 163, 0.5),
    rgba(255, 255, 255, 0.3)
  );
}

[data-theme="dark"] .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8),
    rgba(26, 60, 140, 0.6),
    rgba(0, 0, 0, 0.5)
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.hero-content {
  padding: 40px 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hero-title {
  color: #e6e6e6;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.9;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(5px);
  min-width: 120px;
  transition: all var(--transition-normal);
}

[data-theme="dark"] .stat-item {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .stat-item:hover {
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

[data-theme="dark"] .stat-number {
  color: #ff9a3d;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-img-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hero-img-container {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.floating-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 150px;
}

[data-theme="dark"] .floating-card {
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.floating-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.floating-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

[data-theme="dark"] .floating-card h4 {
  color: var(--accent-color);
}

.floating-card .percentage {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* =============== Section Styles =============== */
.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* =============== Services Section =============== */
.services-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

[data-theme="dark"] .services-section {
  background: var(--bg-primary);
}

.services-grid {
  margin-bottom: 80px;
}

.service-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.feature-tag {
  background: var(--bg-accent);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

[data-theme="dark"] .feature-tag {
  color: var(--accent-color);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--primary-color), transparent);
  padding: 20px 30px;
  transform: translateY(100%);
  transition: all var(--transition-normal);
}

.service-card:hover .service-overlay {
  transform: translateY(0);
}

.service-cta {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-cta::after {
  content: "→";
  transition: transform var(--transition-normal);
}

.service-cta:hover::after {
  transform: translateX(4px);
}

/* Process Section */
.process-section {
  margin-top: 80px;
}

.process-title {
  font-size: 2rem;
  margin-bottom: 60px;
}

.process-step {
  position: relative;
  padding: 30px 20px;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-icon {
  margin: 20px 0;
}

.step-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}

[data-theme="dark"] .step-icon i {
  color: var(--accent-color);
}

.process-step h5 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* =============== Insights & Facts Section =============== */
.insights-facts-section {
  padding: var(--section-padding);
}

[data-theme="dark"] .insights-facts-section {
  background: var(--bg-primary);
}

/* Carousel Styles */
.insights-carousel {
  max-width: 800px;
  margin: 0 auto;
}

.carousel-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.insight-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .insight-card {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

.insight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}

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

.insight-card:hover {
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.insight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--transition-normal);
}

.insight-icon i {
  font-size: 2rem;
  color: white;
}

.insight-card:hover .insight-icon {
  transform: scale(1.1) rotate(5deg);
}

.insight-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

[data-theme="dark"] .insight-title {
  color: var(--text-primary);
}

.insight-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

[data-theme="dark"] .insight-description {
  color: var(--text-light);
}

.insight-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insight-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
}

[data-theme="dark"] .insight-stat .stat-number {
  color: #ff9a3d; /* Lighter accent for dark mode */
}

.insight-stat .stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

[data-theme="dark"] .insight-stat .stat-label {
  color: var(--text-light);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  background: none;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

[data-theme="dark"] .carousel-control-prev-icon,
[data-theme="dark"] .carousel-control-next-icon {
  background: #ff9a3d; /* Lighter accent for dark mode */
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: -50px;
  margin-bottom: 0;
}

.carousel-indicators li {
  background-color: var(--text-light);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  transition: all var(--transition-normal);
}

.carousel-indicators .active {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

[data-theme="dark"] .carousel-indicators li {
  background-color: var(--text-secondary);
}

[data-theme="dark"] .carousel-indicators .active {
  background-color: #ff9a3d; /* Lighter accent for dark mode */
}

/* =============== About Section =============== */
.about-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.about-content {
  padding-right: 40px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.about-features {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-content h5 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  padding-left: 40px;
}

.stat-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

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

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-medium);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition-normal);
}

.stat-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

[data-theme="dark"] .stat-icon i {
  color: var(--accent-color);
}

.stat-card:hover .stat-icon {
  background: var(--primary-color);
}

.stat-card:hover .stat-icon i {
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 8px;
}

[data-theme="dark"] .stat-number {
  color: var(--accent-color);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

[data-theme="dark"] .stat-label {
  color: var(--text-light);
}

.stat-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* =============== Contact Section =============== */
.contact-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.contact-info {
  padding-right: 30px;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-items {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.25rem;
  color: white;
}

.contact-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.social-links h5 {
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.social-link.facebook {
  background: #3b5998;
  color: white;
}

.social-link.twitter {
  background: #1da1f2;
  color: white;
}

.social-link.instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  color: white;
}

.social-link.linkedin {
  background: #0077b5;
  color: white;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
.contact-form-container {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-header p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 16px;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 60, 140, 0.1);
}

.form-control::placeholder {
  color: var(--text-light);
}

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

.form-submit {
  margin-top: 30px;
}

/* =============== Footer Section =============== */
.footer-section {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 60px 0 20px;
  overflow-x: hidden;
}

[data-theme="dark"] .footer-section {
  background: var(--bg-primary);
  color: white;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-widget {
  height: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 35px;
  width: auto;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}

[data-theme="dark"] .footer-description {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-social .social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-accent);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-normal);
}

[data-theme="dark"] .footer-social .social-link {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-social .social-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  position: relative;
}

[data-theme="dark"] .footer-title {
  color: white;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
}

[data-theme="dark"] .footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-contact {
  margin-bottom: 25px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

[data-theme="dark"] .footer-contact .contact-item {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  font-size: 1.1rem;
  color: var(--accent-color);
  width: 20px;
}

.newsletter h6 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

[data-theme="dark"] .newsletter h6 {
  color: white;
}

.newsletter-form .input-group {
  display: flex;
}

.newsletter-form .form-control {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  border-right: none;
}

.newsletter-form .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 20px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 40px;
}

[data-theme="dark"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: var(--text-secondary);
  margin-bottom: 0;
}

[data-theme="dark"] .copyright {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-normal);
}

[data-theme="dark"] .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
  color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(26, 60, 140, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-color);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

/* Modal Enhancements */
.modal-content {
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-medium);
  background: var(--bg-primary);
  transition: transform var(--transition-normal),
    opacity var(--transition-normal);
}

.modal.fade .modal-dialog {
  transform: translateY(50px);
  opacity: 0;
  transition: transform var(--transition-normal),
    opacity var(--transition-normal);
}

.modal.fade.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.modal-header {
  border-bottom: 2px solid var(--border-color);
  padding: 12px 16px; /* Adjusted for tighter spacing */
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0;
}

.modal-body {
  padding: 20px;
  background: var(--bg-primary);
  color: var(--text-primary);
}

[data-theme="dark"] .modal-body {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.modal-footer {
  border-top: 2px solid var(--border-color);
  padding: 12px 20px;
  background: var(--bg-secondary);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Close Button Styling */
.close {
  font-size: 1.5rem; /* Size for Remix Icon */
  line-height: 1;
  color: white; /* Match header text */
  opacity: 0.8;
  padding: 8px;
  margin: -8px -8px -8px auto; /* Align with header */
  border: none;
  background: transparent;
  transition: opacity var(--transition-normal),
    transform var(--transition-normal);
}

.close:hover,
.close:focus {
  opacity: 1;
  transform: scale(1.1); /* Subtle zoom effect */
  outline: none;
}

.close i.ri-close-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; /* Consistent icon size */
  height: 24px;
}

[data-theme="dark"] .close {
  color: var(--text-primary); /* Adapt to dark theme */
}

[data-theme="dark"] .close:hover,
[data-theme="dark"] .close:focus {
  color: var(--text-primary);
}

.btn-close {
  background: none;
  border: none;
  color: white;
  opacity: 0.9;
  font-size: 1rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-normal),
    transform var(--transition-normal);
}

.btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.btn-close:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.nav-login-tabs {
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 20px;
}

.nav-login-tabs .nav-link {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 20px;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-normal);
}

[data-theme="dark"] .nav-login-tabs .nav-link {
  color: var(--text-light);
}

.nav-login-tabs .nav-link:hover,
.nav-login-tabs .nav-link.active {
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  background: var(--bg-accent);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

[data-theme="dark"] .nav-login-tabs .nav-link:hover,
[data-theme="dark"] .nav-login-tabs .nav-link.active {
  color: var(--accent-color);
  background: var(--bg-secondary);
}

.login-tab-content .form-group {
  margin-bottom: 16px;
}

.login-tab-content .form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.login-tab-content .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
}

.login-tab-content .form-control::placeholder {
  color: var(--text-light);
}

.login-tab-content .text-danger {
  font-size: 0.8rem;
  color: var(--danger-color);
  margin-top: 4px;
  display: block;
}

.custom-file-label {
  display: block;
  width: 100%;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.custom-file-input:focus + .custom-file-label {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
}

.custom-file-label::after {
  content: "Browse";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: var(--accent-color);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.form-text.text-muted {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.login-reset {
  text-align: center;
  font-size: 0.95rem;
}

.modal-body p {
  font-size: 1rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 0;
}

/* =============== Responsive Design =============== */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .hero-title {
    margin-top: 50px;
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .navbar {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .theme-toggle {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-actions {
    display: grid;
    justify-content: center;
  }

  .about-content,
  .stats-section {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact-info {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero-title {
    margin-top: 50px;
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat-item {
    min-width: 120px;
  }

  .services-grid .row {
    --bs-gutter-x: 1rem;
  }

  .service-card {
    margin-bottom: 30px;
  }

  .process-step {
    margin-bottom: 40px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .insights-carousel {
    max-width: 100%;
  }

  .insight-card {
    padding: 30px 20px;
  }

  .insight-title {
    font-size: 1.25rem;
  }

  .insight-description {
    font-size: 0.95rem;
  }

  .insight-stat .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    margin-top: 50px;
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 16px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .floating-card {
    bottom: 10px;
    right: 10px;
    padding: 15px;
    min-width: 120px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .insight-title {
    font-size: 1.1rem;
  }

  .insight-description {
    font-size: 0.9rem;
  }

  .insight-stat .stat-number {
    font-size: 1.75rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 25px;
    height: 25px;
    font-size: 1.2rem;
  }

  .carousel-indicators {
    bottom: -40px;
  }

  .modal-dialog {
    margin: 10px;
  }

  .modal-content {
    border-radius: var(--radius-md);
  }

  .modal-header {
    padding: 16px 20px;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-footer {
    padding: 12px 20px;
  }

  .nav-login-tabs .nav-link {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .login-tab-content .form-control {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .custom-file-label {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .custom-file-label::after {
    padding: 5px 10px;
    font-size: 0.85rem;
  }

  .container,
  .hero-section,
  .services-section,
  .insights-facts-section,
  .about-section,
  .contact-section,
  .footer-section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .mobile-nav-toggle {
    width: 35px;
    margin-right: 5px;
    padding: 5px;
  }

  .back-to-top {
    bottom: 15px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

/* =============== Utility Classes =============== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}

.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}

.align-items-center {
  align-items: center;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-end {
  align-items: flex-end;
}

.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-start {
  justify-content: flex-start;
}
.justify-content-end {
  justify-content: flex-end;
}

.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}

.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.position-fixed {
  position: fixed;
}

/* =============== Animation Classes =============== */
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

.scale-in {
  animation: scaleIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =============== Print Styles =============== */
@media print {
  .header,
  .footer,
  .back-to-top,
  .mobile-nav,
  .theme-toggle,
  .mobile-theme-toggle {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .hero-section {
    background: white !important;
    color: black !important;
    min-height: auto !important;
  }

  .hero-overlay,
  .hero-video {
    display: none !important;
  }
}
