/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary & Accent */
  --primary: #0082FB;
  /* Meta Azure Radiance */
  --primary-foreground: #FFFFFF;
  /* white text on blue */

  --secondary: #0064E0;
  /* Meta Science Blue */
  --secondary-foreground: #FFFFFF;
  /* white text on blue */

  /* Muted & Accent fallback */
  --muted: #F2F2F2;
  /* light gray */
  --muted-foreground: #333333;
  /* dark gray text */

  --accent: var(--secondary);
  --accent-foreground: var(--secondary-foreground);

  /* Destructive (e.g., error) fallback */
  --destructive: #E63946;
  /* red */
  --destructive-foreground: #FFFFFF;

  /* Neutrals */
  --border: #E6E6E6;
  --input: #E6E6E6;
  --ring: #0064E0;
  /* highlight ring with secondary */

  --background: #FFFFFF;
  --foreground: #1A1A1A;

  /* Card & Popover (same as background) */
  --card: var(--background);
  --card-foreground: var(--foreground);
  --popover: var(--background);
  --popover-foreground: var(--foreground);

  /* Dark theme adjustments */
  --dark-background: #F8F8FF;
  /* dark blue background */
  --dark-foreground: #292929;
  --dark-card: var(--dark-background);
  --dark-card-foreground: var(--dark-foreground);
  --dark-popover: var(--dark-background);
  --dark-popover-foreground: var(--dark-foreground);

  --dark-primary: var(--primary);
  --dark-primary-foreground: var(--primary-foreground);
  --dark-secondary: var(--secondary);
  --dark-secondary-foreground: var(--secondary-foreground);

  --dark-muted: #333333;
  --dark-muted-foreground: #1B1B1B;

  --dark-accent: var(--dark-secondary);
  --dark-accent-foreground: var(--dark-secondary-foreground);

  --dark-destructive: #C73E1D;
  --dark-destructive-foreground: var(--dark-foreground);

  --dark-border: #4DA6FF;
  --dark-input: var(--dark-border);
  --dark-ring: #0064E0;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #4DA6FF, #80C7FF);
  --gradient-dark: linear-gradient(135deg, #F8F8FF, #81b5e9);
  --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 40px rgba(0, 130, 251, 0.3);

  /* Animations */
  --transition-smooth: all 0.3s ease;
  --transition-fast: all 0.15s ease-out;
}


/* Custom cursor elements */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: #4DA6FF;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid #4DA6FF;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  background-color: rgba(77, 166, 255, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;

}

.about-text .section-title {
  color: var(--dark-background);
}

.about-text .section-description {
  color: ghostwhite;
}

.section-description {
  font-size: 1.125rem;
  color: ghostwhite;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #424242;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-secondary {
  background: #dfefff;
  color: var(--dark-foreground);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-hero {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition-smooth);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100%;
}

.logo img {
  max-width: 100%;
}


.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: var(--dark-muted-foreground);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition-smooth);
  font-size: 1rem;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: var(--primary);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.contact-info {
  font-size: 0.875rem;
}

.contact-label {
  color: var(--dark-muted-foreground);
  margin: 0;
}

.contact-number {
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}


/* Hide the default checkbox */
.checkbox-toggle {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  user-select: none;
}

@media (min-width: 768px) {
  .checkbox-toggle {
    display: none;
  }
}

.checkbox-toggle input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.toggle-icon {
  position: relative;
  width: 1.3em;
  height: 1.3em;
}

.toggle-icon span {
  position: absolute;
  width: 32px;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease-in-out;
}

.toggle-icon span:nth-child(1) {
  top: 10%;
}

.toggle-icon span:nth-child(2) {
  top: 50%;
}

.toggle-icon span:nth-child(3) {
  top: 90%;
}

.checkbox-toggle input:checked+.toggle-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.checkbox-toggle input:checked+.toggle-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.checkbox-toggle input:checked+.toggle-icon span:nth-child(3) {
  transform: translateX(-50px);
  opacity: 0;
}


.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--dark-border);
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease, padding 0.5s ease;
  interpolate-size: allow-keywords;
}

.nav-mobile.active {
  height: auto;
  padding: 1rem 0;
}


.nav-link-mobile {
  color: var(--dark-muted-foreground);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-link-mobile:hover {
  color: var(--primary);
}

.mobile-cta {
  margin-top: 1rem;
  width: fit-content;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;

}

.hero-content {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 6rem 0 4rem;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

.hero-left {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-left {
    text-align: left;
  }
}

.customer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.customer-avatars {
  display: flex;
  margin-left: -0.5rem;
}

.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 2px solid var(--dark-background);
  margin-left: -0.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--dark-muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: flex;
  justify-content: center;
  height: 250px;
  align-items: flex-end;
  overflow: hidden;
}

.step {
  position: relative;
  text-align: center;
  color: white;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
  transition: all 0.5s ease;
  background: linear-gradient(0deg, transparent, hsl(208.63deg 100% 70%));
  border-radius: 5px;
}

/* .step:hover {
  background-color: #74b3ffe5;
  transform: translateY(-5px);
} */

/* Individual step sizes */
#step1 {
  width: 15%;
  height: 90%;
}

#step2 {
  width: 15%;
  height: 40%;
}

#step3 {
  width: 15%;
  height: 60%;
}

#step4 {
  width: 15%;
  height: 20%;
}

#step5 {
  width: 15%;
  height: 70%;
}

#step6 {
  width: 15%;
  height: 95%;
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.play-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

@media (min-width: 1024px) {
  .stat {
    text-align: left;
  }
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--dark-muted-foreground);
}


.stats-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 300px;
}

.stats-card .customer-avatars {
  justify-content: center;
  margin-bottom: 1rem;
}

.stats-card p {
  font-size: 0.875rem;
  color: var(--dark-muted-foreground);
  margin: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-muted-foreground);
  font-size: 0.875rem;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: var(--dark-muted-foreground);
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* About Section */
.about {
  position: relative;
  padding: 5rem 0;
  background-color: #292929;
  overflow: hidden;
  border-radius: 2rem;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/about-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {

    gap: 4rem;
  }
}

.about-image {
  position: relative;
}

.about-image .image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 1.5rem;
  position: relative;
}

.about-image .image::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .2;
  mix-blend-mode: multiply;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: bottom;
}

.floating-stats {
  position: absolute;
  bottom: -2rem;
  right: -0.8rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  max-width: 200px;
}

.floating-stats .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.floating-stats .stat-label {
  font-size: 0.875rem;
  color: var(--background);
}

.about-text {
  padding: 1.5rem;
  background-color: #424242;
  border-radius: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.features-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature span {
  color: gainsboro;
}

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-stats {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
  text-align: center;
}

.about-stats .stat-label {
  color: gainsboro;
}

@media (min-width: 1024px) {
  .about-stats {
    text-align: left;
  }
}

/* Stats Section */
.stats-section {
  position: relative;
  padding: 5rem 0;
  background: var(--dark-background);
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(251, 146, 60, 0.1), transparent 70%);
  z-index: -1;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  /* transition: var(--transition-smooth); */
}



.stat-card .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: inline;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 0.25rem;
}

.stat-card .stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-foreground);
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--dark-muted-foreground);
}

.stats-cta {
  text-align: center;
}

/* Services Section */
.services {
  padding: 5rem 0;
  /* background: var(--gradient-dark); */
  background-color: #dfefff;
  border-radius: 2rem;
  margin-bottom: 4rem;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(200px, auto);
}

/* Mobile: Stack everything */
.services-grid>*:first-child {
  grid-column: 1;
  grid-row: span 1;
}

/* Tablet and up: Perfect 3-card layout */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(220px, auto));
  }

  /* First card: 1 column, 2 rows (hero card) */
  .services-grid>*:first-child {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  /* Second card: 2 columns, 1 row (top right) */
  .services-grid>*:nth-child(2) {
    grid-column: 2 / span 2;
    grid-row: 1;
  }

  /* Third card: 2 columns, 1 row (bottom right) */
  .services-grid>*:nth-child(3) {
    grid-column: 2 / span 2;
    grid-row: 2;
  }
}

/* Desktop: Slightly larger and more refined */
@media (min-width: 1024px) {
  .services-grid {
    gap: 2.5rem;
    grid-auto-rows: minmax(250px, auto);
  }
}

.service-card {
  background: rgba(255, 255, 255, 25%);
  backdrop-filter: blur(10px);
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 1rem;
  padding: 2rem;
  /* transition: var(--transition-smooth); */
}

/* .service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
} */

.service-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-foreground);
}

.service-card p {
  color: var(--dark-muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  color: var(--dark-muted-foreground);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.services-cta {
  text-align: center;
  background: rgba(255, 255, 255, 25%);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 3rem 2rem;
}

.services-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-foreground);
}

.services-cta p {
  color: var(--dark-muted-foreground);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
  color: #4DA6FF;
}

.social-link:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer */
.footer {
  background: var(--dark-background);
  border: 1px solid var(--dark-border);
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  margin: 0 1px;
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  align-items: center
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* .footer-about-company {
  display: flex;
  align-items: center;
  gap: 1rem;
} */

.footer-logo {
  width: 150px;
}

.footer-logo img {
  max-width: 100%;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-foreground);
}

.footer-description {
  color: var(--dark-muted-foreground);
  margin: 1rem 0 2rem;
  line-height: 1.6;
}

.footer-contact p {
  color: var(--dark-muted-foreground);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact strong {
  color: var(--dark-foreground);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--dark-muted-foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0 2rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: var(--dark-foreground);
  font-size: 0.875rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-form input::placeholder {
  color: var(--dark-muted-foreground);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--dark-border);
  border-radius: 1.5rem;
  margin: 0 1px;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: var(--dark-muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--dark-muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.animate-slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease-out forwards;
}

.animate-slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* Fade-in from bottom */
/* Fade in animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.fade-in-up:nth-child(1) {
  transition-delay: 0s;
}

.fade-in-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-in-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-in-up:nth-child(4) {
  transition-delay: 0.3s;
}

.fade-in-up:nth-child(5) {
  transition-delay: 0.4s;
}

.fade-in-up:nth-child(6) {
  transition-delay: 0.5s;
}

:root {
  /* Effect controls */
  --spot-hsl: 209 100% 49%;
  --spot-hsl: 208 100% 72%;
  /* cyan-ish */
  --spot-alpha: 0.7;
  /* brightness of highlight */
  --spot-fade: 180px;
  /* radius of the spotlight */
  --bw: 3px;
  /* border width (the lit ring thickness) */
  --mx: -9999;
  /* mouse x (px) - set by JS */
  --my: -9999;
  /* mouse y (px) - set by JS */

  /* Theme */
  --bg: hsl(220 15% 7%);
  --panel: hsl(220 15% 10%);
  --text: hsl(210 15% 92%);
  --muted: hsl(220 10% 65% / 0.85);
  --border-base: hsl(210 10% 20% / 0.6);
  --accent: #0082FB;
}


.glow-border,
.btn-secondary {
  position: relative;

}

.glow-border::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at calc(var(--mx) * 1px) calc(var(--my) * 1px),
      hsl(var(--spot-hsl) / var(--spot-alpha)) 0%,
      transparent var(--spot-fade));
  background-attachment: fixed;
  padding: var(--bw);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;

}

.btn-secondary::before {
  padding: 3px;
}

.grid-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-mask: linear-gradient(180deg, transparent, white 0%, white 20%, transparent);
  mask: linear-gradient(180deg, transparent, white 0%, white 20%, transparent);
}

.square {
  position: absolute;
  width: 6rem;
  height: 6rem;
  border: 1px solid hsl(190deg 90% 60% / 15%);
  border-radius: 5px;
}

.square.glow-border::before {
  padding: 2px;

}