:root {
  --bg-dark: #0b0f19;
  --bg-card: #151b2b;
  --accent: #00d285;
  --accent-glow: rgba(0, 210, 133, 0.3);
  --text-main: #fff;
  --text-white: #fff;
  --gradient-text: linear-gradient(135deg, #ffffff 0%, #00d285 100%);
}

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

.navbar-brand img {
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}

a.navbar-brand:focus,
a.navbar-brand:hover {
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #00d285 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-padding {
  padding: 100px 0;
}

/* --- BUTTONS --- */
.btn-techvion {
  background: #00d285;
  color: #000;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-techvion:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 210, 133, 0.3);
  background: #fff;
  color: #000;
}

/* --- NAVBAR GLASSMORPHISM --- */
.navbar {
  padding: 20px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
  z-index: 9999;
  position: relative;
}

.navbar-scrolled,
.navbar.mobile-open {
  background: rgba(11, 15, 25, 0.85);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
}

.navbar-brand {
  font-size: 1.6rem;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
}

.nav-link {
  color: #fff;
  font-weight: 500;
  margin: 0 15px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00d285 !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    padding: 12px 0px;
    z-index: 1000;
    background: #0b0f19;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
/* --- HERO SECTION --- */
#hero {
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(0, 210, 133, 0.08), transparent 40%), radial-gradient(circle at bottom left, rgba(0, 210, 133, 0.05), transparent 40%);
  position: relative;
}

.hero-tag {
  background: rgba(0, 210, 133, 0.1);
  color: #00d285;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 210, 133, 0.2);
}

/* --- CARDS (Services & Features) --- */
.glass-card {
  background: #151b2b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d285, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.glass-card:hover::before {
  transform: scaleX(1);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #00d285;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.glass-card:hover .icon-circle {
  background: #00d285;
  color: #000;
}

/* --- PROCESS TIMELINE --- */
.process-card {
  background: #151b2b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 210, 133, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 210, 133, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.step-number {
  font-size: 6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -10px;
  right: 10px;
  line-height: 1;
  z-index: 0;
  font-family: "Space Grotesk", sans-serif;
}

.process-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #00d285;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.process-card:hover .process-icon {
  background: #00d285;
  color: #000;
  transform: scale(1.1) rotate(5deg);
}

.step-content {
  position: relative;
  z-index: 1;
}

/* --- FOOTER --- */
footer {
  background: #05070a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 80px;
  padding-bottom: 30px;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 15px;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: white;
  box-shadow: none;
}

.form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}/*# sourceMappingURL=main.css.map */