/* style.css */
:root {
  --bg-dark: #0a0f16;
  --bg-darker: #05080c;
  --primary-teal: #00f0ff;
  --primary-green: #00ff66;
  --primary-blue: #003cff;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;

  --glass-bg: rgba(16, 25, 40, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glow-shadow: 0 0 20px rgba(0, 240, 255, 0.2);

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background animated glow */
.glow-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: drift 20s infinite alternate linear;
}
.blob1 {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
}
.blob2 {
  bottom: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-teal) 0%, transparent 70%);
  animation-delay: -5s;
}
.blob3 {
  top: 40%;
  left: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
  opacity: 0.2;
  animation-delay: -10s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 50px);
  }
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -1px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.5rem;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.highlight {
  background: linear-gradient(90deg, var(--primary-teal), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.text-center {
  text-align: center;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--primary-teal);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.5);
}

.toggle-glow:hover {
  animation: pulse 1.5s infinite;
}

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

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Glass UI Elements */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
}

.hover-glow:hover {
  box-shadow: var(--glow-shadow);
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.3);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition);
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background: rgba(5, 8, 12, 0.85);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary-teal);
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: var(--transition);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 8, 12, 0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Sections General */
.section {
  padding: 8rem 0 4rem;
}

.container-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.side-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 600px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-img {
  width: 100%;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0, 240, 255, 0.15);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* About Section */
.about-container {
  max-width: 800px;
  text-align: center;
}

/* Services */
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.soon {
  font-size: 0.75rem;
  background: rgba(0, 255, 102, 0.1);
  color: var(--primary-green);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 102, 0.3);
  vertical-align: middle;
  margin-left: 0.5rem;
}

/* Process section */
.process-image-wrapper {
  margin: 4rem 0;
}

.full-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* Benefits */
.benefit-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: center;
}

.list-icon {
  font-size: 2.5rem;
}

.list-item h4 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.list-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Footer Focus CTA */
.footer {
  padding: 6rem 0 2rem;
  background: var(--bg-darker);
  position: relative;
  border-top: 1px solid var(--glass-border);
}

.footer-cta {
  background: linear-gradient(
    180deg,
    rgba(0, 60, 255, 0.05) 0%,
    rgba(0, 240, 255, 0.05) 100%
  );
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.contact-info {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-info a {
  color: var(--primary-teal);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #64748b;
  font-size: 0.9rem;
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .container-split,
  .alt-flow {
    grid-template-columns: 1fr;
  }

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

  .alt-flow .image-content {
    grid-row: 1;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .section {
    padding: 5rem 0 3rem;
  }
}
