/* Professional Color Scheme CSS Variables */
:root {
  /* Professional Color Palette */
  --primary-color: #1e3a8a; /* Deep Navy Blue */
  --primary-dark: #1e40af; /* Darker Navy */
  --primary-light: #3b82f6; /* Lighter Blue */
  --danger-color: #dc2626;
  --warning-color: #d97706;

  /* Light Theme Variables */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #1e293b; /* Dark Slate */
  --text-secondary: #475569; /* Medium Slate */
  --text-tertiary: #64748b; /* Light Slate */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-color: rgba(30, 41, 59, 0.1);

  /* Card backgrounds */
  --card-bg: rgba(255, 255, 255, 0.95);
  --card-border: rgba(30, 58, 138, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.95);

  /* Header */
  --header-bg: rgba(255, 255, 255, 0.98);
  --header-border: rgba(30, 58, 138, 0.1);

  /* Professional Gradients */
  --primary-gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --secondary-gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --accent-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);

  /* Professional Typography */
  --font-primary: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-secondary: "Merriweather", Georgia, serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(30, 41, 59, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -1px rgba(30, 41, 59, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(30, 41, 59, 0.1), 0 4px 6px -2px rgba(30, 41, 59, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(30, 41, 59, 0.1), 0 10px 10px -5px rgba(30, 41, 59, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(30, 41, 59, 0.25);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #e2e8f0;
  --text-tertiary: #94a3b8;
  --border-color: #334155;
  --border-light: #475569;
  --shadow-color: rgba(0, 0, 0, 0.3);

  --card-bg: rgba(30, 41, 59, 0.95);
  --card-border: rgba(59, 130, 246, 0.2);
  --glass-bg: rgba(30, 41, 59, 0.95);

  --header-bg: rgba(15, 23, 42, 0.98);
  --header-border: rgba(59, 130, 246, 0.2);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  transition: all var(--transition-normal);
  font-weight: 400;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

/* Selection */
::selection {
  background: var(--primary-color);
  color: white;
}

/* Animated Background */
.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(30, 58, 138, 0.08), rgba(59, 130, 246, 0.08));
  animation: float 20s infinite linear;
}

[data-theme="dark"] .shape {
  background: linear-gradient(45deg, rgba(30, 58, 138, 0.15), rgba(59, 130, 246, 0.15));
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 30%;
  animation-delay: -15s;
}

.shape-5 {
  width: 140px;
  height: 140px;
  top: 40%;
  left: 50%;
  animation-delay: -7s;
}

.gradient-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  animation: orbFloat 25s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #d97706, #f59e0b);
  bottom: -150px;
  left: -150px;
  animation-delay: -12s;
}

/* Enhanced Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  color: white;
}

.logo-animation {
  margin-bottom: 2rem;
}

.logo-circle {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: logoSpin 2s linear infinite;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.logo-circle i {
  font-size: 2rem;
  animation: logoFloat 3s ease-in-out infinite;
}

.loading-text {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.2em;
  font-family: var(--font-secondary);
}

.loading-text span {
  display: inline-block;
  animation: letterBounce 1.4s ease-in-out infinite both;
}

.loading-text span:nth-child(1) {
  animation-delay: -0.32s;
}
.loading-text span:nth-child(2) {
  animation-delay: -0.16s;
}
.loading-text span:nth-child(3) {
  animation-delay: 0s;
}
.loading-text span:nth-child(4) {
  animation-delay: 0.16s;
}
.loading-text span:nth-child(5) {
  animation-delay: 0.32s;
}
.loading-text span:nth-child(6) {
  animation-delay: 0.48s;
}

.progress-container {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: white;
  border-radius: 2px;
  transition: width 0.1s ease;
}

.loading-percentage {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  opacity: 0.9;
}
.preloader .logo-img {
  width: 160px; /* Adjust as needed */
  height: 160px;
  object-fit: contain;
}

/* Enhanced Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--header-border);
  z-index: var(--z-fixed);
  transition: all var(--transition-normal);
  transform: translateY(0);
}

.header.scrolled {
  background: var(--header-bg);
  box-shadow: var(--shadow-lg);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all var(--transition-normal);
}

.logo-icon:hover {
  transform: rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.logo-text {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-main {
  color: var(--text-primary);
}

.logo-accent {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-normal);
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
  width: 100%;
}

.dropdown-icon {
  font-size: 0.75rem;
  transition: transform var(--transition-normal);
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  list-style: none;
  border: 1px solid var(--card-border);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: rgba(30, 58, 138, 0.1);
  color: var(--primary-color);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: var(--border-color);
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.theme-toggle:hover {
  background: var(--border-light);
  transform: scale(1.05);
}

.toggle-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  background: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.toggle-thumb i {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  transition: all var(--transition-normal);
  position: absolute;
}

.moon-icon {
  opacity: 1;
}

.sun-icon {
  opacity: 0;
}

[data-theme="dark"] .theme-toggle {
  background: var(--primary-color);
}

[data-theme="dark"] .toggle-thumb {
  transform: translateX(30px);
}

[data-theme="dark"] .moon-icon {
  opacity: 0;
}

[data-theme="dark"] .sun-icon {
  opacity: 1;
  color: #fbbf24;
}

/* Search */
.search-container {
  position: relative;
}

.search-box {
  display: flex;
  align-items: center;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 0.5rem 1rem;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  width: 200px;
}

.search-box:focus-within {
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
  border-color: var(--primary-color);
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  padding: 0.25rem;
  color: var(--text-primary);
  flex: 1;
  font-size: 0.875rem;
}

.search-box input::placeholder {
  color: var(--text-tertiary);
}

.search-btn {
  border: none;
  background: transparent;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--transition-fast);
}

.search-btn:hover {
  color: var(--primary-color);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform var(--transition-normal);
}

.mobile-toggle:hover {
  transform: scale(1.1);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
  overflow: hidden;
  padding-top: 80px;
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 58, 138, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-2xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(30, 58, 138, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--font-secondary);
  color: var(--text-primary);
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.1s;
}
.title-line:nth-child(2) {
  animation-delay: 0.2s;
}
.title-line:nth-child(3) {
  animation-delay: 0.3s;
}
.title-line:nth-child(4) {
  animation-delay: 0.4s;
}

.highlight-text {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-tertiary);
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  line-height: 1;
  font-family: var(--font-secondary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease-out 0.3s forwards;
}

.visual-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--card-border);
  animation: floatCard 6s ease-in-out infinite;
  transition: all var(--transition-normal);
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-2xl);
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.card-text {
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  font-size: 0.9rem;
}

.card-1 {
  top: 20%;
  left: -5%;
  animation-delay: 0s;
}

.card-2 {
  top: 45%;
  right: -25%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  left: 10%;
  animation-delay: 4s;
}

.central-visual {
  width: 300px;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: ringRotate 20s linear infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(30, 58, 138, 0.3);
  animation-delay: 0s;
}

.ring-2 {
  width: 80%;
  height: 80%;
  border-color: rgba(59, 130, 246, 0.3);
  animation-delay: -7s;
  animation-direction: reverse;
}

.ring-3 {
  width: 60%;
  height: 60%;
  border-color: rgba(30, 58, 138, 0.3);
  animation-delay: -14s;
}

.visual-core {
  width: 120px;
  height: 120px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: coreFloat 4s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(30, 58, 138, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-tertiary);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 2px;
  height: 8px;
  background: var(--text-tertiary);
  border-radius: 1px;
  margin-top: 6px;
  animation: scrollWheel 2s ease-in-out infinite;
}

/* Enhanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  background: none;
  font-family: var(--font-primary);
}

.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 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-light {
  background: var(--glass-bg);
  color: var(--text-secondary);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
}

.btn-light:hover {
  background: var(--bg-primary);
  box-shadow: var(--shadow-lg);
}

.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;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: rgba(30, 58, 138, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-2xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(30, 58, 138, 0.2);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
  line-height: 1.2;
  color: var(--text-primary);
}

.section-title span {
  display: block;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-tertiary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--card-border);
  transition: all var(--transition-normal);
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
  border-radius: var(--radius-xl);
}

.service-card:hover .card-glow {
  opacity: 0.05;
}

.service-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.service-icon i {
  font-size: 2rem;
  color: white;
  z-index: 2;
  position: relative;
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: iconPulse 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
  font-family: var(--font-secondary);
}

.service-description {
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-normal);
  font-size: 0.95rem;
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--primary-dark);
}

.service-link i {
  transition: transform var(--transition-normal);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* About Section */
.about {
  padding: 1rem 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
}

[data-theme="dark"] .about {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transition: all var(--transition-slow);
}

.image-container:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.3));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.experience-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
  animation: badgeFloat 4s ease-in-out infinite;
}

.badge-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  display: block;
  font-family: var(--font-secondary);
}

.badge-text {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-top: 0.25rem;
}

.badge-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.1;
  border-radius: var(--radius-xl);
  animation: glowPulse 3s ease-in-out infinite;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.element {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.6;
  animation: elementFloat 8s ease-in-out infinite;
}

.element-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.element-3 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.about-text {
  padding-left: 2rem;
}

.about-description {
  margin-bottom: 2rem;
}

.about-description p {
  color: var(--text-tertiary);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--card-border);
  transition: all var(--transition-normal);
  opacity: 0;
  transform: translateY(30px);
}

.stat-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.stat-icon i {
  color: white;
  font-size: 1.25rem;
}

.stat-card .stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-secondary);
}

.stat-text {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* Vision Mission */
.vision-mission {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.vision-mission.expanded {
  max-height: 1000px;
}

.vm-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--card-border);
  transition: all var(--transition-normal);
}

.vm-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.vm-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vm-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.vm-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-secondary);
}

.vm-text {
  color: var(--text-tertiary);
  line-height: 1.6;
  font-style: italic;
}

.expand-btn {
  margin-top: 1rem;
}

.expand-btn i {
  transition: transform var(--transition-normal);
}

.expand-btn.expanded i {
  transform: rotate(180deg);
}

/* Blog Section */
.blog {
  padding: 3rem 0;
  background: var(--bg-secondary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--card-border);
  transition: all var(--transition-normal);
  cursor: pointer;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.blog-card:hover .card-glow {
  opacity: 0.05;
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.blog-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.blog-category {
  background: rgba(30, 58, 138, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(30, 58, 138, 0.2);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
  font-family: var(--font-secondary);
}

.blog-title-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-excerpt {
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.blog-link-icon {
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: transform var(--transition-normal);
}

.blog-card:hover .blog-link-icon {
  transform: translateX(5px);
}

/* CTA Section */
.cta {
  position: relative;
  padding: 6rem 0;
  background: var(--primary-gradient);
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: orbFloat 20s infinite ease-in-out;
}

.cta-orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.2);
  top: -150px;
  right: -150px;
}

.cta-orb-2 {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  bottom: -100px;
  left: -100px;
  animation-delay: -10s;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  animation: iconFloat 3s ease-in-out infinite;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

.footer-content {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-section h3 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-secondary);
}

.footer .logo-img {
    width: 70px;  /* Adjust as needed */
    height: 70px;
    object-fit: contain;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-description {
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  position: relative;
  width: 45px;
  height: 45px;
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.social-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  margin-bottom: 0.5rem;
}

.social-link:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
}

.footer-title {
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-tertiary);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-details a {
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1.5;
}

.contact-details a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-container {
  position: relative;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--card-border);
  transform: scale(0.9) translateY(50px);
  transition: all var(--transition-normal);
}

.modal.active .modal-container {
  transform: scale(1) translateY(0);
}

.team-modal-container {
  max-width: 1200px;
  width: 95%;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-secondary);
}

.modal-close {
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border: none;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--danger-color);
  color: white;
  transform: scale(1.1);
}

.modal-body {
  padding: 2rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Team Card Styles */
.card {
  width: 100%;
  max-width: 350px;
  height: 400px;
  background: var(--card-bg);
  border-radius: 20px;
  position: relative;
  padding: 1.8rem;
  border: 2px solid var(--card-border);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-color);
}

.card .mail {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-gradient);
  padding: 0.8rem;
  border-radius: 50%;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.card .mail:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.4);
}

.card .profile-pic {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--bg-tertiary);
}

.card .profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .profile-pic img {
  transform: scale(1.1);
}

.card .bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card .content {
  text-align: center;
  flex: 1;
}

.card .name {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: block;
  font-family: var(--font-secondary);
}

.card .about-me {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  line-height: 1.5;
  display: block;
}

.card .bottom-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card .social-links-container {
  display: flex;
  gap: 0.5rem;
}

.card .social-links-container svg {
  width: 20px;
  height: 20px;
  fill: var(--text-tertiary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.card .social-links-container svg:hover {
  fill: var(--primary-color);
  transform: scale(1.2);
}

.card .button {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.card .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.4);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-normal);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.input-focus {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-normal);
}

.form-group input:focus + .input-focus,
.form-group textarea:focus + .input-focus {
  width: 100%;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.scroll-progress {
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 50%;
  background: conic-gradient(var(--accent-color) var(--progress, 0%), transparent 0%);
  transition: --progress var(--transition-fast);
}

/* Notification */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: var(--z-modal);
  transform: translateX(400px);
  transition: transform var(--transition-normal);
  max-width: 350px;
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.notification-icon {
  font-size: 1.25rem;
}

.notification.success .notification-icon {
  color: var(--success-color);
}

.notification.error .notification-icon {
  color: var(--danger-color);
}

.notification.warning .notification-icon {
  color: var(--warning-color);
}

.notification-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--transition-fast);
}

.notification-close:hover {
  color: var(--text-primary);
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes logoSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes letterBounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes coreFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes elementFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(120deg);
  }
  66% {
    transform: translateY(-5px) rotate(240deg);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .visual-container {
    height: 400px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text {
    padding-left: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--header-border);
    padding: 2rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg-tertiary);
    margin-top: 0.5rem;
    border-radius: var(--radius-md);
  }

  .mobile-toggle {
    display: flex;
  }

  .search-container {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .card {
    max-width: 100%;
  }

  .modal-container {
    width: 95%;
    margin: 1rem;
  }

  .modal-header,
  .modal-body {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-content {
    gap: 2rem;
  }

  .floating-card {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .card-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .visual-container {
    height: 300px;
  }

  .central-visual {
    width: 200px;
    height: 200px;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .service-card,
  .blog-card {
    padding: 1.5rem;
  }

  .modal-header,
  .modal-body {
    padding: 1rem;
  }

  .team-modal-container {
    width: 98%;
  }
}

/* Print Styles */
@media print {
  .header,
  .scroll-top,
  .notification,
  .modal,
  .animated-background {
    display: none !important;
  }

  .hero {
    padding-top: 0;
  }

  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-behavior {
    scroll-behavior: auto !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --border-color: #000000;
    --text-tertiary: #000000;
    --card-border: #000000;
  }

  [data-theme="dark"] {
    --border-color: #ffffff;
    --text-tertiary: #ffffff;
    --card-border: #ffffff;
  }
}

/* Focus Styles for Accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Skip Link for Screen Readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* Service Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.service-modal-container {
    position: relative;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-modal.active .service-modal-container {
    transform: scale(1) translateY(0);
}

.service-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    z-index: 10;
}

.service-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    margin: 0;
}

.service-modal-close {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1.25rem;
    color: var(--text-tertiary);
}

.service-modal-close:hover {
    background: var(--border-color);
    color: var(--text-primary);
    transform: scale(1.1);
}

.service-modal-body {
    padding: 2rem;
}

.service-modal-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-modal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-modal-image:hover img {
    transform: scale(1.05);
}

.service-modal-content {
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-modal-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-modal-content h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    font-family: var(--font-secondary);
}

.service-modal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-modal-content li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    position: relative;
}

.service-modal-content li::marker {
    color: var(--primary-color);
}

/* Custom scrollbar for modal */
.service-modal-container::-webkit-scrollbar {
    width: 8px;
}

.service-modal-container::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

.service-modal-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.service-modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* Responsive Design for Modals */
@media (max-width: 768px) {
    .service-modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .service-modal-header,
    .service-modal-body {
        padding: 1.5rem;
    }
    
    .service-modal-title {
        font-size: 1.5rem;
    }
    
    .service-modal-image img {
        height: 200px;
    }
    
    .service-modal-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-modal-container {
        width: 98%;
    }
    
    .service-modal-header,
    .service-modal-body {
        padding: 1rem;
    }
    
    .service-modal-title {
        font-size: 1.25rem;
    }
}


/* Policy Modal Styles */
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.policy-modal.active {
    opacity: 1;
    visibility: visible;
}

.policy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.policy-modal-container {
    position: relative;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.policy-modal.active .policy-modal-container {
    transform: scale(1) translateY(0);
}

.policy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    z-index: 10;
}

.policy-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    margin: 0;
}

.policy-modal-close {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1.25rem;
    color: var(--text-tertiary);
}

.policy-modal-close:hover {
    background: var(--border-color);
    color: var(--text-primary);
    transform: scale(1.1);
}

.policy-modal-body {
    padding: 2rem;
}

.policy-content {
    color: var(--text-secondary);
    line-height: 1.7;
}

.policy-content h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    font-family: var(--font-secondary);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.policy-content h4:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: justify;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    position: relative;
}

.policy-content li::marker {
    color: var(--primary-color);
}

/* Custom scrollbar for policy modals */
.policy-modal-container::-webkit-scrollbar {
    width: 8px;
}

.policy-modal-container::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

.policy-modal-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.policy-modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* Responsive Design for Policy Modals */
@media (max-width: 768px) {
    .policy-modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .policy-modal-header,
    .policy-modal-body {
        padding: 1.5rem;
    }
    
    .policy-modal-title {
        font-size: 1.5rem;
    }
    
    .policy-content h4 {
        font-size: 1.1rem;
    }
    
    .policy-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policy-modal-container {
        width: 98%;
    }
    
    .policy-modal-header,
    .policy-modal-body {
        padding: 1rem;
    }
    
    .policy-modal-title {
        font-size: 1.25rem;
    }
}

/* Team Modal Styles */
.team-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.team-modal.active {
  opacity: 1;
  visibility: visible;
}

.team-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.team-modal-container {
  position: relative;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  max-width: 95vw;
  max-height: 95vh;
  width: 1400px;
  overflow-y: auto;
  transform: scale(0.9) translateY(50px);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.team-modal.active .team-modal-container {
  transform: scale(1) translateY(0);
}

.team-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  background: var(--bg-primary);
  z-index: 10;
}

.team-modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-secondary);
  margin: 0;
}

.team-modal-close {
  width: 45px;
  height: 45px;
  border: none;
  background: var(--bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 1.25rem;
  color: var(--text-tertiary);
}

.team-modal-close:hover {
  background: var(--border-color);
  color: var(--text-primary);
  transform: scale(1.1);
}

.team-modal-body {
  padding: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* Team Card Styles */
.card {
  width: 280px;
  height: 280px;
  background: white;
  border-radius: 32px;
  padding: 3px;
  position: relative;
  box-shadow: #604b4a30 0px 70px 30px -50px;
  transition: all 0.5s ease-in-out;
}

.card .mail {
  position: absolute;
  right: 2rem;
  top: 1.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.card .mail svg {
  stroke: #3b82f6;
  stroke-width: 3px;
  transition: stroke 0.3s ease;
}

.card .mail svg:hover {
  stroke: #1e40af;
}

.card .profile-pic {
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  top: 3px;
  left: 3px;
  border-radius: 29px;
  z-index: 1;
  border: 0px solid #3b82f6;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0.2s, z-index 0.5s ease-in-out 0.2s;
}

.card .profile-pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: 0px 0px;
  transition: all 0.5s ease-in-out 0s;
}

.card .bottom {
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background: #3b82f6;
  top: 80%;
  border-radius: 29px;
  z-index: 2;
  box-shadow: rgba(96, 75, 74, 0.1882352941) 0px 5px 5px 0px inset;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.card .bottom .content {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 160px;
}

.card .bottom .content .name {
  display: block;
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.card .bottom .content .about-me {
  display: block;
  font-size: 0.9rem;
  color: white;
  margin-top: 1rem;
  line-height: 1.4;
}

.card .bottom .bottom-bottom {
  position: absolute;
  bottom: 10px;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card .bottom .bottom-bottom .social-links-container {
  display: flex;
  gap: 1rem;
}

.card .bottom .bottom-bottom .social-links-container svg {
  height: 20px;
  fill: white;
  filter: drop-shadow(0 5px 5px rgba(165, 132, 130, 0.1333333333));
  transition: all 0.3s ease;
  cursor: pointer;
}

.card .bottom .bottom-bottom .social-links-container svg:hover {
  fill: #1e40af;
  transform: scale(1.2);
}

.card .bottom .bottom-bottom .button {
  background: white;
  color: #3b82f6;
  border: none;
  border-radius: 20px;
  font-size: 0.6rem;
  padding: 0.4rem 0.6rem;
  box-shadow: rgba(165, 132, 130, 0.1333333333) 0px 5px 5px 0px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card .bottom .bottom-bottom .button:hover {
  background: #1e40af;
  color: white;
}

/* Card Hover Effects */
.card:hover {
  border-top-left-radius: 55px;
}

.card:hover .bottom {
  top: 20%;
  border-radius: 80px 29px 29px 29px;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s;
}

.card:hover .profile-pic {
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  z-index: 3;
  border: 7px solid #3b82f6;
  box-shadow: rgba(96, 75, 74, 0.1882352941) 0px 5px 5px 0px;
  transition: all 0.5s ease-in-out, z-index 0.5s ease-in-out 0.1s;
}

.card:hover .profile-pic:hover {
  transform: scale(1.3);
  border-radius: 0px;
}

.card:hover .profile-pic img {
  transform: scale(2.5);
  object-position: 0px 25px;
  transition: all 0.5s ease-in-out 0.5s;
}

/* Dark theme adjustments */
[data-theme="dark"] .card {
  background: var(--bg-secondary);
  box-shadow: rgba(96, 75, 74, 0.3) 0px 70px 30px -50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-modal-container {
    width: 95vw;
    max-height: 90vh;
  }

  .team-modal-header,
  .team-modal-body {
    padding: 1.5rem;
  }

  .team-modal-title {
    font-size: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .team-modal-container {
    width: 98vw;
  }

  .team-modal-header,
  .team-modal-body {
    padding: 1rem;
  }

  .team-modal-title {
    font-size: 1.25rem;
  }

  .card {
    width: 260px;
    height: 260px;
  }
}

/* Custom scrollbar for team modal */
.team-modal-container::-webkit-scrollbar {
  width: 8px;
}

.team-modal-container::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

.team-modal-container::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.team-modal-container::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

 /* Social links styling */
    .social-links-container {
        display: flex;
        gap: 12px;
    }
    
    .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: transform 0.2s;
    }
    
    .social-link:hover {
        transform: scale(1.1);
    }
    
    /* Facebook - Blue */
    .social-link.facebook {
        background: #1877F2;
    }
    
    /* Twitter - Light Blue */
    .social-link.twitter {
        background: #1DA1F2;
    }
    
    /* Instagram - Gradient */
    .social-link.instagram {
        background: radial-gradient(circle at 30% 107%, 
                      #fdf497 0%, 
                      #fdf497 5%, 
                      #fd5949 45%, 
                      #d6249f 60%, 
                      #285AEB 90%);
    }




 /* Add this CSS to fix the footer social links colors */

/* Footer Social Links - Enhanced Styling */
.footer .social-links {
  display: flex;
  gap: 1rem;
}

.footer .social-link {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  color: white;
  font-size: 1.1rem;
}

/* Facebook - Blue */
.footer .social-link[href*="facebook"] {
  background: #1877F2;
  border-color: #1877F2;
}

.footer .social-link[href*="facebook"]:hover {
  background: #166fe5;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* Twitter - Light Blue */
.footer .social-link[href*="twitter"] {
  background: #1DA1F2;
  border-color: #1DA1F2;
}

.footer .social-link[href*="twitter"]:hover {
  background: #1a91da;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

/* Instagram - Gradient */
.footer .social-link[href*="instagram"] {
  background: radial-gradient(circle at 30% 107%, 
                #fdf497 0%, 
                #fdf497 5%, 
                #fd5949 45%, 
                #d6249f 60%, 
                #285AEB 90%);
  border-color: #d6249f;
}

.footer .social-link[href*="instagram"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(214, 36, 159, 0.4);
}

/* LinkedIn - Professional Blue */
.footer .social-link[href*="linkedin"] {
  background: #0077B5;
  border-color: #0077B5;
}

.footer .social-link[href*="linkedin"]:hover {
  background: #006ba1;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

/* YouTube - Red */
.footer .social-link[href*="youtube"] {
  background: #FF0000;
  border-color: #FF0000;
}

.footer .social-link[href*="youtube"]:hover {
  background: #e60000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* Default fallback for any other social links */
.footer .social-link:not([href*="facebook"]):not([href*="twitter"]):not([href*="instagram"]):not([href*="linkedin"]):not([href*="youtube"]) {
  background: var(--primary-gradient);
  border-color: var(--primary-color);
}

.footer .social-link:not([href*="facebook"]):not([href*="twitter"]):not([href*="instagram"]):not([href*="linkedin"]):not([href*="youtube"]):hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Ensure icons are white and properly sized */
.footer .social-link i {
  color: white !important;
  font-size: 1.1rem;
}

/* Dark theme adjustments */
[data-theme="dark"] .footer .social-link {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Tooltip styling remains the same */
.footer .social-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  margin-bottom: 0.5rem;
  z-index: 10;
}

.footer .social-link:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
}  





