/*
Theme Name: KEWI LABS
Theme URI: https://kewilabs.com
Author: Kewi Labs
Author URI: https://kewilabs.com
Description: A custom WordPress theme for the KEWI LABS meme coin project featuring a dark, modern, futuristic design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kewilabs
Tags: dark, one-column, custom-menu, featured-images, theme-options, translation-ready
*/

:root {
  /* Colors - Background */
  --background-primary: #0D1117;
  --background-card: #161B22;
  --background-card-hover: #1F242B;
  
  /* Colors - Text */
  --text-primary: #FFFFFF;
  --text-secondary: #8B949E;
  --text-accent-primary: #00FFD1;
  --text-accent-secondary: #4A90E2;
  
  /* Colors - Accent */
  --accent-primary: #00FFD1;
  --accent-secondary: #4A90E2;
  --accent-tertiary: #A855F7;
  --accent-quaternary: #F97316;
  --accent-glow-primary: rgba(0, 255, 209, 0.15);
  --accent-glow-secondary: rgba(74, 144, 226, 0.15);
  
  /* Colors - Border */
  --border-default: #30363D;
  --border-interactive: #00FFD1;
  
  /* Colors - Status */
  --status-success: #238636;
  
  /* Typography */
  --font-family: 'Inter', 'Manrope', sans-serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --spacing-unit: 8px;
  --section-padding: 100px 24px;
  
  /* Effects */
  --border-radius-medium: 12px;
  --border-radius-large: 16px;
  --border-radius-xlarge: 24px;
  --shadow-glow: 0px 0px 20px 0px var(--accent-glow-primary);
  --transition-duration: 0.3s;
  --transition-timing: ease-in-out;
}

/* Base Styles */
body {
  font-family: var(--font-family);
  background-color: var(--background-primary);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Logo Styles */
.kewi-logo {
  max-height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.footer-logo .kewi-logo {
  max-height: 15px;
  margin-bottom: 10px;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 calc(3 * var(--spacing-unit));
}

section {
  padding: var(--section-padding);
}

/* Typography */
h1, .display {
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: calc(3 * var(--spacing-unit));
}

h2, .heading {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: calc(2 * var(--spacing-unit));
}

h3, .subheading {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: calc(3 * var(--spacing-unit));
}

h4, .card-title {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: calc(1 * var(--spacing-unit));
}

p, .body {
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: calc(2 * var(--spacing-unit));
}

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

.list-item {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.list-item:before {
  content: "•";
  margin-right: calc(1 * var(--spacing-unit));
  color: var(--accent-primary);
}

/* Accent Text */
.text-accent-primary {
  color: var(--text-accent-primary);
}

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

/* Grid Layout */
.grid {
  display: grid;
  gap: calc(3 * var(--spacing-unit));
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: var(--border-radius-medium);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-duration) var(--transition-timing);
  display: inline-block;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--background-primary);
  box-shadow: 0 0 20px rgba(0, 255, 209, 0.3);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 255, 209, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  padding: 14px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

/* Cards */
.card {
  background-color: var(--background-card);
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-default);
  padding: 24px;
  height: 100%;
  transition: all var(--transition-duration) var(--transition-timing);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-interactive);
}

/* Header & Navigation */
.site-header {
  background-color: #0A0E15;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-default);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-title {
  font-size: 1.75rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.site-title a {
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px; /* Add spacing between KEWI and LABS */
}

.site-title .kewi,
.site-title .labs {
  letter-spacing: 2px;
}

.site-title .accent-letter {
  color: var(--accent-primary);
}

.site-title .letter-w {
  /* If W needs specific styling */
}

/* Individual letter styling handled by accent-letter class */

.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.main-navigation .menu-item a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition-duration) var(--transition-timing);
  padding: 5px 0;
  position: relative;
}

.main-navigation .menu-item a:hover,
.main-navigation .current-menu-item a {
  color: var(--accent-primary);
}

.main-navigation .menu-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-primary);
  transition: width var(--transition-duration) var(--transition-timing);
}

.main-navigation .menu-item a:hover::after,
.main-navigation .current-menu-item a::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--text-primary);
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--text-primary);
  position: absolute;
  transition: all var(--transition-duration) var(--transition-timing);
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  bottom: -8px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .primary-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-primary);
    padding: 20px;
    border-bottom: 1px solid var(--border-default);
    display: none;
  }
  
  .primary-menu-container.active {
    display: block;
  }
  
  .main-navigation .menu {
    flex-direction: column;
    gap: 15px;
  }
}

/* Expertise Section */
.expertise-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.expertise-section .heading {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
}

.expertise-section .text-accent-primary {
  background: linear-gradient(90deg, #00FFD1, #4A90E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expertise-section .subheading {
  text-align: center;
  color: #8B949E;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.expertise-card {
  background-color: #0E1218;
  border: 1px solid rgba(48, 54, 61, 0.6);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.1), transparent 70%);
  z-index: 0;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 209, 0.1);
  border-color: rgba(0, 255, 209, 0.3);
}

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

.expertise-card:hover .hex-icon i {
  color: #0E1218;
}

.hex-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #0F1B20;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
  transition: all 0.3s ease;
}

.hex-icon::after {
  content: '';
  position: absolute;
  width: 54px;
  height: 54px;
  background-color: #0E1218;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}

.hex-icon i {
  color: var(--accent-primary);
  font-size: 24px;
  z-index: 2;
}

.expertise-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

.expertise-card .description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.expertise-card .feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style: none;
  margin-top: auto;
}

.expertise-card .list-item {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  color: #8B949E;
}

.expertise-card .list-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .expertise-card {
    padding: 24px;
  }
}

/* Project Card */
.project-card {
  background: linear-gradient(180deg, rgba(22, 28, 36, 0.9) 0%, rgba(10, 15, 20, 0.9) 100%);
  border-radius: 12px;
  overflow: hidden;
  padding: 25px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid rgba(0, 255, 209, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 1; /* Make sure cards are always visible */
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 255, 209, 0.2);
}

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

.project-card .project-logo {
  flex-shrink: 0;
}

.project-card .project-logo .logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.project-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.project-card .card-body p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.project-card .project-link {
  color: var(--color-accent-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-top: auto;
  width: fit-content;
}

.project-card .project-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.project-card .project-link:hover {
  color: white;
}

.project-card .project-link:hover i {
  transform: translateX(3px);
}

/* Updated pill-style tags to match reference design */
.pill-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 5px 0;
}

.pill-tag {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  padding: 5px 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pill-tag i {
  color: var(--color-accent-primary);
  font-size: 11px;
}

.pill-tag:hover {
  background-color: rgba(0, 255, 209, 0.1);
  color: white;
  border-color: rgba(0, 255, 209, 0.2);
}

/* Testimonial Card */
.testimonial-card .rating {
  color: #F97316;
  margin-bottom: 16px;
}

.testimonial-card .user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: 600;
}

/* Tech Stack Card */
.tech-stack-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tech-stack-card .icon {
  width: 48px;
  height: 48px;
}

/* Process Timeline */
.process-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--background-primary);
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.05), transparent 70%);
  z-index: 0;
}

.process-section .heading {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-size: 2.8rem;
}

.process-section .text-accent-secondary {
  color: #4A90E2;
}

.process-section .text-accent-primary {
  color: #00FFD1;
}

.process-section .subheading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.process-timeline .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 10px;
}

.process-timeline .step-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-timeline .step-circle::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  z-index: -1;
  transform: translate(-5px, -5px);
  border-width: 3px !important;
  border-style: solid;
}

.process-timeline .circle-inner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.5rem;
  color: #FFFFFF;
}

/* Step 1 - Green */
.process-timeline .step-1 {
  background-color: #1D9869;
}

.process-timeline .step-1::before {
  border: 2px solid #1D9869;
}

/* Step 2 - Blue */
.process-timeline .step-2 {
  background-color: #3584D5;
}

.process-timeline .step-2::before {
  border: 2px solid #3584D5;
}

/* Step 3 - Green */
.process-timeline .step-3 {
  background-color: #1D9869;
}

.process-timeline .step-3::before {
  border: 2px solid #1D9869;
}

/* Step 4 - Orange */
.process-timeline .step-4 {
  background-color: #F0A500;
}

.process-timeline .step-4::before {
  border: 2px solid #F0A500;
}

/* Step 5 - Blue */
.process-timeline .step-5 {
  background-color: #3584D5;
}

.process-timeline .step-5::before {
  border: 2px solid #3584D5;
}

.process-timeline .step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: #FFFFFF;
}

.process-timeline .step-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
  max-width: 200px;
}

@media (max-width: 992px) {
  .process-timeline {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .process-timeline .step {
    width: 30%;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
  }
  
  .process-timeline .step {
    width: 100%;
    max-width: 300px;
    margin-bottom: 40px;
  }
  
  .process-timeline .step-description {
    max-width: 100%;
  }
}

/* Background Effects */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  transition: all 15s ease-in-out;
}

.aurora-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.6), rgba(0, 255, 209, 0.1));
  top: -400px;
  right: -200px;
}

.aurora-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.6), rgba(74, 144, 226, 0.1));
  bottom: -300px;
  left: -100px;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    flex-direction: column;
    align-items: center;
  }
  
  .process-timeline .step {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  h1, .display {
    font-size: 2.5rem;
  }
  
  h2, .heading {
    font-size: 2rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 255, 209, 0.1), transparent 50%);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(74, 144, 226, 0.1), transparent 50%);
  z-index: 1;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-process-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.process-icon {
  width: 30px;
  height: 30px;
  border: 2px solid;
  position: relative;
  opacity: 0;
}

.process-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: currentColor;
  transform: translate(-50%, -50%);
}

.process-icon-1 {
  border-color: #00FFD1;
  color: #00FFD1;
}

.process-icon-2 {
  border-color: #4A90E2;
  color: #4A90E2;
}

.process-icon-3 {
  border-color: #00FFD1;
  color: #00FFD1;
}

.process-line {
  height: 2px;
  width: 0;
  margin: 0 5px;
  opacity: 0;
}

.process-line:first-of-type {
  background: linear-gradient(to right, #00FFD1, #4A90E2);
}

.process-line:last-of-type {
  background: linear-gradient(to right, #4A90E2, #00FFD1);
}

.hero-section .display {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  top: 20px;
  opacity: 0;
}

.hero-section .text-accent-primary {
  background: linear-gradient(90deg, #00FFD1, #4A90E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .subheading {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #8B949E;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 80px;
  position: relative;
  top: 20px;
  opacity: 0;
}

.stats-container {
  width: 100%;
  background-color: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(10px);
  padding: 40px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(48, 54, 61, 0.6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box {
  padding: 20px;
  position: relative;
  top: 20px;
  opacity: 0;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-section .display {
    font-size: 3rem;
  }
  
  .hero-section .subheading {
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

/* Utility Classes */
.desktop-only {
  display: initial;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  
  .hero-section .display {
    font-size: 3rem;
  }
  
  .hero-section .subheading {
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Technology Stack Section */
.tech-stack-section {
  padding: 100px 0;
  position: relative;
  background-color: #0D1117;
  overflow: hidden;
}

.tech-stack-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.1), transparent 70%);
  z-index: 0;
}

.tech-stack-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1), transparent 70%);
  z-index: 0;
}

.tech-stack-section .heading {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.tech-stack-section .text-accent-primary {
  background: linear-gradient(90deg, #4A90E2, #00FFD1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.tech-card {
  background-color: #161B22;
  border: 1px solid #30363D;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 209, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: #4A90E2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-card:hover .tech-name {
  color: #FFFFFF;
}

.tech-icon, .tech-name {
  position: relative;
  z-index: 1;
}

.tech-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fa-fallback {
  opacity: 0;
  font-size: 24px;
  color: #FFFFFF;
}

.tech-icon:empty .fa-fallback,
.tech-icon[style*="background-image: none"] .fa-fallback {
  opacity: 1;
}

.tech-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: #8B949E;
  text-align: center;
}

/* Technology Stack Icons */
.ethereum-icon {
  background: url('img/tech/ethereum.svg') no-repeat center;
  background-size: contain;
}

.solana-icon {
  background: url('img/tech/solana.svg') no-repeat center;
  background-size: contain;
}

.polygon-icon {
  background: url('img/tech/polygon.svg') no-repeat center;
  background-size: contain;
}

.bsc-icon {
  background: url('img/tech/bsc.svg') no-repeat center;
  background-size: contain;
}

.avalanche-icon {
  background: url('img/tech/avalanche.svg') no-repeat center;
  background-size: contain;
}

.polkadot-icon {
  background: url('img/tech/polkadot.svg') no-repeat center;
  background-size: contain;
}

.hardhat-icon {
  background: url('img/tech/hardhat.svg') no-repeat center;
  background-size: contain;
}

.truffle-icon {
  background: url('img/tech/truffle.svg') no-repeat center;
  background-size: contain;
}

.web3js-icon {
  background: url('img/tech/web3js.svg') no-repeat center;
  background-size: contain;
}

.ipfs-icon {
  background: url('img/tech/ipfs.svg') no-repeat center;
  background-size: contain;
}

.graph-icon {
  background: url('img/tech/graph.svg') no-repeat center;
  background-size: contain;
}

.chainlink-icon {
  background: url('img/tech/chainlink.svg') no-repeat center;
  background-size: contain;
}

/* Responsive Technology Grid */
@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-card {
    padding: 16px;
  }
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    position: relative;
    background-color: var(--color-bg);
}

.projects-section .heading {
    margin-bottom: 20px;
    text-align: center;
}

.projects-section .subheading {
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-weight: normal;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Flagship Projects Layout */
.flagship-projects {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Main Featured Project */
.project-main {
    background: linear-gradient(to right, rgba(0, 20, 40, 0.8), rgba(0, 30, 60, 0.8));
    border-radius: 12px;
    overflow: hidden;
    padding: 40px;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    border: 1px solid rgba(0, 255, 209, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out forwards;
}

.project-main:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(100, 0, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.project-main .project-logo {
    display: flex;
    align-items: flex-start;
}

.project-main .logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
    box-shadow: 0 0 20px rgba(106, 17, 203, 0.5);
    animation: pulse 2s infinite;
}

.project-main .project-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-main .project-header {
    margin-bottom: 5px;
}

.project-main .project-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px;
    color: white;
}

.project-main .project-subtitle {
    font-size: 16px;
    color: var(--color-accent-primary);
    font-weight: 500;
}

.project-main .project-description {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
}

.project-main .project-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.project-main .tag {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 14px;
    color: var(--color-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.project-main .tag i {
    color: var(--color-accent-primary);
    font-size: 14px;
}

.project-main .project-metrics {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
    max-width: fit-content;
}

.project-main .metric {
    text-align: center;
    padding: 0 15px;
}

.project-main .metric:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.project-main .metric-value {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.project-main .metric-label {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.project-main .project-link {
    position: absolute;
    right: 40px;
    bottom: 40px;
    background-color: rgba(106, 17, 203, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(106, 17, 203, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.project-main .project-link:hover {
    background-color: rgba(106, 17, 203, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.project-main .project-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.project-main .project-link:hover i {
    transform: translateX(3px);
}

/* Project Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    background: linear-gradient(to bottom, rgba(22, 28, 36, 0.8), rgba(10, 15, 20, 0.8));
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(0, 255, 209, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(0); /* Set initial transform state */
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    animation: none; /* Disable animation on hover */
}

.project-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-card .project-logo .logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    animation: pulse 2s infinite;
}

.project-card .logo-kusd {
    background: linear-gradient(135deg, #2ecc71 0%, #1abc9c 100%);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.3);
}

.project-card .logo-gweiswap {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.3);
}

.project-card .logo-kewinodes {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.3);
}

.project-card .logo-kewil2 {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.3);
}

.project-card .project-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
    color: white;
}

.project-card .project-subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.project-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.project-card .card-body p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin: 0;
}

.project-card .mini-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-card .mini-tags .tag {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 12px;
    color: var(--color-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.project-card .mini-tags .tag i {
    color: var(--color-accent-primary);
    font-size: 12px;
}

.project-card .project-stat {
    margin-top: auto;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 12px 15px;
    border-radius: 8px;
    max-width: fit-content;
}

.project-card .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.project-card .stat-label {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.project-card .project-link {
    margin-top: auto;
    color: var(--color-accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.project-card .project-link:hover {
    color: white;
}

.project-card .project-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.project-card .project-link:hover i {
    transform: translateX(3px);
}

/* Projects Summary Stats */
.projects-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: rgba(0, 10, 20, 0.8);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(0, 255, 209, 0.1);
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
}

.projects-stats .stat-item {
    padding: 25px 15px;
    text-align: center;
}

.projects-stats .stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.projects-stats .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent-primary);
    margin-bottom: 5px;
}

.projects-stats .stat-label {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* Responsive styles */
@media (max-width: 992px) {
    .project-main {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .project-main .project-logo {
        margin-bottom: 20px;
    }
    
    .project-main .project-link {
        position: static;
        margin-top: 20px;
        width: fit-content;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-stats .stat-item:nth-child(2) {
        border-right: none;
    }
    
    .projects-stats .stat-item:nth-child(1),
    .projects-stats .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 576px) {
    .project-main .project-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .project-main .metric {
        padding: 10px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .project-main .metric:last-child {
        border-bottom: none;
    }
    
    .projects-stats {
        grid-template-columns: 1fr;
    }
    
    .projects-stats .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .projects-stats .stat-item:last-child {
        border-bottom: none;
    }
}

/* Project Animations - Updated to prevent disappearing on hover */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 209, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 209, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 209, 0);
    }
}

/* Apply animations in a way that won't conflict with hover */
.project-main {
    animation: fadeInUp 0.8s ease-out forwards;
}

.projects-grid .project-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.projects-grid .project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.projects-grid .project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.projects-grid .project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.projects-grid .project-card:nth-child(4) {
    animation-delay: 0.4s;
}

.projects-stats {
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.logo-circle {
    animation: pulse 2s infinite;
}

/* Ensure visibility after animations */
.project-card.animation-complete,
.projects-grid .project-card.in-view,
.project-main.animation-complete,
.project-main.in-view,
.projects-stats.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Make sure hovered cards always stay visible regardless of animation state */
.project-card:hover {
    opacity: 1 !important;
    transform: translateY(-5px) !important;
}

/* Pill-style tags for project cards */
.pill-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.pill-tag {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.pill-tag i {
    color: var(--color-accent-primary);
    font-size: 12px;
}

.pill-tag:hover {
    background-color: rgba(0, 255, 209, 0.1);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--background-primary);
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.05), transparent 70%);
  z-index: 0;
}

.testimonials-section .heading {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-size: 2.8rem;
}

.testimonials-section .text-accent-primary {
  color: #00FFD1;
}

.testimonials-section .subheading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.testimonial-cards {
  position: relative;
  z-index: 1;
}

/* Testimonial Card */
.testimonial-card .rating {
  color: #F97316;
  margin-bottom: 16px;
}

.testimonial-card .user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: 600;
}

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

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.05), transparent 70%);
  z-index: 0;
}

.cta-card {
  background-color: #0C111A;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(48, 54, 61, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-heading .text-accent-primary {
  color: #00FFD1;
}

.cta-subheading {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-buttons .btn {
  min-width: 180px;
}

.cta-footer {
  margin-top: 20px;
}

.cta-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.status-icon {
  color: #00FFD1;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .cta-card {
    padding: 40px 20px;
  }
  
  .cta-heading {
    font-size: 2.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Footer Styles */
.site-footer {
  background-color: #0A0E15;
  color: #888;
  padding: 60px 0 30px;
  position: relative;
  border-top: 1px solid rgba(48, 54, 61, 0.4);
}

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

.footer-widget .widget-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-widget .footer-description {
  color: #888;
  font-size: 0.95rem;
  margin-top: 15px;
  line-height: 1.5;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-logo .site-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo .kewi span,
.footer-logo .labs span {
  color: #00FFD1;
}

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

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

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00FFD1;
}

.social-icons {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons li a:hover {
  background-color: rgba(0, 255, 209, 0.1);
  color: #00FFD1;
  transform: translateY(-3px);
}

/* Specific social icon colors */
.social-icons .twitter-icon {
  background-color: rgba(29, 161, 242, 0.1);
}

.social-icons .discord-icon {
  background-color: rgba(114, 137, 218, 0.1);
}

.social-icons .telegram-icon {
  background-color: rgba(0, 136, 204, 0.1);
}

.social-icons .medium-icon {
  background-color: rgba(2, 184, 117, 0.1);
}

.social-icons .github-icon {
  background-color: rgba(36, 41, 46, 0.1);
}

.social-icons .twitter-icon:hover {
  background-color: rgba(29, 161, 242, 0.2);
}

.social-icons .discord-icon:hover {
  background-color: rgba(114, 137, 218, 0.2);
}

.social-icons .telegram-icon:hover {
  background-color: rgba(0, 136, 204, 0.2);
}

.social-icons .medium-icon:hover {
  background-color: rgba(2, 184, 117, 0.2);
}

.social-icons .github-icon:hover {
  background-color: rgba(36, 41, 46, 0.2);
}

.contact-info {
  margin-top: 15px;
}

.contact-email {
  color: #fff;
  font-size: 0.95rem;
}

.site-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(48, 54, 61, 0.4);
  font-size: 0.85rem;
}

.copyright {
  color: #666;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #00FFD1;
}

@media (max-width: 992px) {
  .footer-widgets {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-widget.footer-branding {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .site-info {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

/* General Mobile Optimizations */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }

  .stats-container {
    padding: 30px 0;
    margin-top: 30px;
  }

  .process-icon {
    width: 24px;
    height: 24px;
  }

  .process-line {
    width: 40px !important; /* Override JS animation */
  }

  .hero-process-icons {
    margin-bottom: 30px;
  }

  .hero-buttons {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .site-header .container {
    padding: 0 15px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .hero-section .display {
    font-size: 2.5rem;
  }
} 