:root {
  --primary: #00f0ff;
  --secondary: #7b2dff;
  --dark: #0a0a1a;
  --darker: #050510;
  --light: #f0f8ff;
  --gray: #a0a8b0;
  --sidebar-width: 300px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, var(--darker), var(--dark));
  color: var(--light);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Minimal Top Navigation */
.top-nav {
  background: rgba(15, 15, 35, 0.95);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 50px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.8rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-btn {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--darker);
  border: none;
  border-radius: 30px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
}

.menu-toggle {
  background: transparent;
  border: none;
  color: var(--light);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(0, 240, 255, 0.1);
  color: var(--primary);
}

/* Sidebar Navigation */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: var(--sidebar-width);
  height: 100vh;
  background: rgba(15, 15, 35, 0.98);
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(0, 240, 255, 0.1);
  z-index: 1200;
  padding: 1.5rem;
  overflow-y: auto;
  transition: all 0.4s ease;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.4);
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.nav-group {
  margin-bottom: 2rem;
}

.nav-group-title {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.nav-list {
  list-style: none;
}

.nav-item {
  margin-bottom: 0.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  color: var(--light);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(0, 240, 255, 0.1);
  color: var(--primary);
}

.nav-icon {
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
  margin-right: 12px;
}

/* Main Content */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(123, 45, 255, 0.1), transparent 50%),
    radial-gradient(circle at bottom left, rgba(0, 240, 255, 0.1), transparent 50%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--light), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.features {
  padding: 5rem 2rem;
  background: rgba(10, 10, 26, 0.7);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(20, 20, 40, 0.6);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(123, 45, 255, 0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.feature-desc {
  color: var(--gray);
  line-height: 1.6;
}

.stats {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--darker), var(--dark));
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(0,240,255,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(20, 20, 40, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(123, 45, 255, 0.2);
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--gray);
  font-size: 1.1rem;
}

.footer {
  padding: 3rem 2rem;
  background: var(--darker);
  text-align: center;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-text {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.copyright {
  color: var(--gray);
  font-size: 0.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }
}

:root {
  --primary: #00f0ff;
  --secondary: #7b2dff;
  --dark: #0a0a1a;
  --darker: #050510;
  --light: #f0f8ff;
  --gray: #a0a8b0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.display-1,
.display-2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.navbar {
  background-color: rgba(10, 10, 26, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.navbar-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  color: var(--light) !important;
  margin: 0 10px;
  position: relative;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hero-section {
  background: linear-gradient(135deg, var(--darker), var(--dark));
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(0,240,255,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
}

.hero-headline {
  font-size: 3.5rem;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--light), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.hero-subhead {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 40px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  color: var(--darker);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
  color: var(--darker);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
  color: var(--primary);
}

.value-card {
  background: rgba(20, 20, 40, 0.6);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(123, 45, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
  z-index: -1;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: transparent;
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  bottom: -10px;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.1;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 50%;
  filter: blur(30px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  animation: float 15s infinite ease-in-out;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  animation: float 12s infinite ease-in-out reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 20%;
  animation: float 10s infinite ease-in-out 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, 20px);
  }
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  to {
    transform: translateY(-100vh);
  }
}

.feature-highlight {
  position: relative;
  padding: 100px 0;
}

.feature-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.8), rgba(5, 5, 16, 0.9));
  z-index: -1;
}

.feature-img-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 45, 255, 0.1));
  z-index: 1;
}

.glow-effect {
  position: relative;
}

.glow-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
  z-index: -1;
  animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.1;
    transform: scale(1.1);
  }
}

.stats-container {
  background: linear-gradient(135deg, rgba(123, 45, 255, 0.1), rgba(0, 240, 255, 0.1));
  border-radius: 15px;
  padding: 60px;
  margin: 80px 0;
  border: 1px solid rgba(123, 45, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.stats-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(0,240,255,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
  transform: rotate(45deg);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray);
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
}

.cta-headline {
  color: var(--darker);
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.team-section {
  padding: 100px 0;
}

.team-card {
  background: rgba(20, 20, 40, 0.6);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(123, 45, 255, 0.2);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  margin: 0 auto 20px;
}

.team-name {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary);
  margin-bottom: 5px;
}

.team-title {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.team-bio {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.9), rgba(5, 5, 16, 0.95));
}

.testimonial-card {
  background: rgba(20, 20, 40, 0.8);
  border-radius: 15px;
  padding: 30px;
  border-left: 4px solid var(--primary);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: rgba(0, 240, 255, 0.2);
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--primary);
}

.author-info h5 {
  margin-bottom: 0;
  color: var(--primary);
}

.author-info p {
  color: var(--gray);
  font-size: 0.8rem;
  margin-bottom: 0;
}

.case-studies-section {
  padding: 100px 0;
}

.case-study-card {
  background: rgba(20, 20, 40, 0.6);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(123, 45, 255, 0.2);
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.case-study-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-study-body {
  padding: 25px;
}

.case-study-title {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary);
  margin-bottom: 15px;
}

.case-study-excerpt {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.case-study-tag {
  display: inline-block;
  background: rgba(0, 240, 255, 0.1);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  margin-right: 5px;
  margin-bottom: 5px;
}

.process-section {
  padding: 100px 0;
}

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--darker);
  font-weight: 700;
}

.process-content h4 {
  color: var(--primary);
  margin-bottom: 15px;
}

.process-line {
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.process-step:last-child .process-line {
  display: none;
}

.partners-section {
  padding: 80px 0;
  background: rgba(10, 10, 26, 0.8);
}

.partner-logo {
  filter: grayscale(100%) brightness(2);
  opacity: 0.7;
  transition: all 0.3s ease;
  height: 60px;
  width: auto;
  object-fit: contain;
}

.partner-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.footer {
  background-color: var(--darker);
  padding: 80px 0 30px;
  position: relative;
}

.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-links h5 {
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: var(--primary);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary);
  color: var(--darker);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  color: var(--gray);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .hero-headline {
    font-size: 2.8rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-subhead {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .stats-container {
    padding: 40px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .process-step {
    padding-left: 60px;
  }

  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .process-line {
    left: 25px;
  }
}

@media (max-width: 576px) {
  .hero-headline {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .cta-headline {
    font-size: 1.8rem;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease infinite;
}

.animate-gradient {
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 3s linear infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}


:root {
  --sidebar-width: 500px;
  /* Default for large screens */
}

/* Base Sidebar */
.sidebar {
  width: var(--sidebar-width);
  padding: 2rem 1.5rem;
  transition: left 0.4s ease, width 0.3s ease;
  left: -100%;
  /* hidden by default */
}

/* Small screens - Mobile */
@media (max-width: 767px) {
  .sidebar {
    width: 300px !important;
  }
}

/* Medium screens - Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .sidebar {
    width: 360px !important;
  }
}

/* Large screens - Desktops */
@media (min-width: 1024px) {
  .sidebar {
    width: 360px;
  }
}


/* Group Titles */
.nav-group-title {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.8px;
}

/* Nav Items */
.nav-link {
  font-size: 1.05rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
}

/* Icon Adjustments */
.nav-icon {
  font-size: 1.2rem;
  width: 32px;
  margin-right: 14px;
}

/* Sidebar Header */
.sidebar-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

/* Optional: Make sidebar scrollable if content overflows */
.sidebar {
  overflow-y: auto;
  max-height: 100vh;
}

@media (max-width: 480px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1rem;
    gap: 0.5rem;
  }

  .logo-img {
    width: 140px !important;
    height: auto;
  }

  .nav-actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    flex-grow: 1;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100% !important;
  /* Ensure it stays hidden */
  width: var(--sidebar-width);
  transition: left 0.4s ease;
  z-index: 1200;
}

.sidebar.active {
  left: 0 !important;
}

.logo-img {
  max-width: 100%;
  height: auto;
  width: 180px;
}

.sidebar {
  visibility: hidden;
  opacity: 0;
}

.sidebar.active {
  visibility: visible;
  opacity: 1;
}