/*
* Variables
*/
:root {
  --neon-green: #00ff88;
  --neon-blue: #00b4d8;
  --dark-bg: linear-gradient(45deg, #000428, #004e92);
}

/*
* Global Styles
*/
body {
  background: var(--dark-bg);
  min-height: 100vh;
  font-family: "Montserrat", serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0px;
}

.ai-particles {
  position: absolute; 
  width: 100%; 
  height: 100%; 
  pointer-events: none; 
  z-index: 1;
}

/*
* Buttons
*/
.dumble-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
  color: #000;
  position: relative;
  overflow: hidden;
}
.dumble-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.3),
    transparent
  );
  transition: 0.5s;
}
.dumble-btn:hover::before {
  left: 100%;
}
.dumble-btn-sm {
  padding: .5rem 1rem;
}
.dumble-btn-md {
  padding: .725rem 1rem;
}
.dumble-btn-outline {
  background: transparent;
  border: 2px solid #00ff88;
  color: #fff;
}

/*
* Inputs
*/
.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: white!important;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}
.form-label {
  color: rgba(255, 255, 255, 0.8);
}
.form-control::placeholder {
  color: #999;
}
.form-control-light,
.form-control-light:focus {
  border: 1px solid var(--neon-blue);
  color: #000!important;
}
.form-control:read-only {
  color: #999!important;
  border: none!important;
}

/*
* colors
*/
.bg-gradient {
  background: linear-gradient(45deg, #00ff88, var(--neon-blue))!important;
}
.bg-danger {
  background: linear-gradient(45deg, var(--bs-danger), red)!important;
  color: #fff;
}
.text-gradient {
  background: linear-gradient(45deg, #00ff88, var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.text-blue {
  color: var(--neon-blue);
}

/*
* Alerts
*/
.alert {
  color: #fff;
  border: none;
  border-radius: 10px;
}
.alert-danger {
  background-color: var(--bs-danger);
}
.alert-success {
  background-color: var(--bs-success);
}
.alert-info {
  background-color: var(--bs-info);
}

/*
* Cards
*/
.card {
  border-radius: 16px;
  overflow: hidden;
}

/*
* Modals
*/
.modal {
  background: rgb(139 139 139 / 50%);
}
.modal-content {
  border-radius: 16px;
}

/*
* Animations
*/
.animation-floating {
  transition: 0.3s;
  cursor: pointer;
}

.animation-floating:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 20px rgba(0,255,136,0.2);
}

/*
* Components.Server
*/
.animated-server {
  position: absolute;
  right: 10%;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animated-server .server {
  position: relative;
  width: 300px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.8s forwards;
  animation-delay: 0.2s;
}

.animated-server .server-box {
  width: 250px;
  height: 350px;
  background: #0a1929;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.animated-server .server-front {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.animated-server .server-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  position: absolute;
  top: 20px;
  right: 20px;
  animation: blink 2s infinite;
}

.animated-server .server-panel {
  width: 80%;
  height: 40px;
  background: #000a14;
  border-radius: 5px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(-20px);
}

.animated-server .server-panel:nth-child(2) {
  animation: slideIn 0.5s forwards;
  animation-delay: 0.5s;
}

.animated-server .server-panel:nth-child(3) {
  animation: slideIn 0.5s forwards;
  animation-delay: 0.7s;
}

.animated-server .server-panel:nth-child(4) {
  animation: slideIn 0.5s forwards;
  animation-delay: 0.9s;
}

.animated-server .server-panel:nth-child(5) {
  animation: slideIn 0.5s forwards;
  animation-delay: 1.1s;
}

.animated-server .server-indicator {
  width: 70%;
  height: 10px;
  background: #1a1a1a;
  border-radius: 5px;
  overflow: hidden;
}

.animated-server .progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
  animation: progress 1.5s forwards;
  animation-delay: 1.3s;
}

.animated-server .server-panel:nth-child(3) .progress-bar {
  animation-delay: 1.5s;
}

.animated-server .server-panel:nth-child(4) .progress-bar {
  animation-delay: 1.7s;
  animation-duration: 2s;
}

.animated-server .server-panel:nth-child(5) .progress-bar {
  animation-delay: 1.9s;
  animation-duration: 1.2s;
}

.animated-server .server-vents {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
}

.animated-server .vent {
  width: 10px;
  height: 40px;
  background: #000a14;
  border-radius: 3px;
}

.animated-server .glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, rgba(0, 180, 216, 0) 70%);
  top: 0;
  left: 0;
  opacity: 0;
  animation: pulse 3s infinite alternate;
  animation-delay: 2s;
}

@media (max-width: 1024px) {
  .animated-server {
    position: relative;
    right: 0;
    width: 80%;
  }
  
  .animated-server .server {
    width: 260px;
    height: 350px;
  }
  
  .animated-server .server-box {
    width: 220px;
    height: 320px;
  }
}

/*
* Components.Shield
*/
.animated-shield {
  position: absolute;
  right: 10%;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animated-shield .shield {
  position: relative;
  width: 300px;
  height: 350px;
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid var(--neon-blue);
  border-radius: 10% 10% 45% 45%;
  box-shadow: 0 0 25px var(--neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s forwards, pulseShield 3s infinite alternate;
  animation-delay: 0.2s;
}

.animated-shield .lock {
  width: 80px;
  height: 110px;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
  animation-delay: 0.7s;
}

.animated-shield .lock-body {
  width: 80px;
  height: 60px;
  background: var(--neon-green);
  border-radius: 8px;
  position: absolute;
  bottom: 0;
  box-shadow: 0 0 20px var(--neon-green);
}

.animated-shield .lock-shackle {
  width: 60px;
  height: 60px;
  border: 10px solid var(--neon-green);
  border-bottom: none;
  border-radius: 50px 50px 0 0;
  position: absolute;
  top: 0;
  left: 10px;
  box-shadow: 0 0 20px var(--neon-green);
}

.animated-shield .check-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  color: var(--dark-bg);
  opacity: 0;
  animation: fadeIn 0.5s forwards;
  animation-delay: 1.2s;
}

@media (max-width: 1024px) {
  .animated-shield {
    position: relative;
    right: 0;
    width: 80%;
  }
  
  .animated-shield .shield {
    width: 200px;
    height: 230px;
  }
  
  .animated-shield .lock {
    transform: scale(0.8);
  }
}

/*
* Components.Desktop
*/
.animated-desktop {
  width: 100%;
  height: 70vh;
  perspective: 1000px;
}

.animated-desktop .app-window {
  position: relative;
  width: 100%;
  height: 85%;
  background: #1E1E1E;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: rotateY(20deg) translateZ(-100px);
  animation: buildDesktopApp 1.5s forwards;
  animation-delay: 0.2s;
}

.animated-desktop .app-titlebar {
  height: 30px;
  background: #333;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.animated-desktop .window-controls {
  display: flex;
  gap: 6px;
}

.animated-desktop .control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.animated-desktop .close { background-color: #ff5f56; }
.animated-desktop .minimize { background-color: #ffbd2e; }
.animated-desktop .maximize { background-color: #27c93f; }

.animated-desktop .app-content {
  height: calc(100% - 30px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.animated-desktop .component {
  background: #2D2D2D;
  border-radius: 4px;
  padding: 10px;
  height: 100px;
  width: 95%;
  opacity: 0;
  transform: translateY(20px);
}

.animated-desktop .component-1 {
  animation: buildComponent 0.5s forwards;
  animation-delay: 1s;
  background: linear-gradient(90deg, #2D2D2D 70%, rgba(0, 255, 136, 0.1) 100%);
}

.animated-desktop .component-2 {
  animation: buildComponent 0.5s forwards;
  animation-delay: 1.3s;
  height: 150px;
  background: linear-gradient(90deg, #2D2D2D 80%, rgba(0, 180, 216, 0.1) 100%);
}

.animated-desktop .component-3 {
  animation: buildComponent 0.5s forwards;
  animation-delay: 1.6s;
  background: linear-gradient(90deg, #2D2D2D 60%, rgba(0, 255, 136, 0.1) 100%);
}

.animated-desktop .code-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 95%;
}

@media (max-width: 1024px) {
  .app-container {
    position: relative;
    right: 0;
    width: 80%;
    height: 50vh;
  }
}

/*
* Components.Phone
*/
.animated-phone {
  width: 300px;
  height: 540px;
  perspective: 1000px;
}

.animated-phone-phone {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: #111;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  transform-style: preserve-3d;
  animation: float 5s infinite ease-in-out, rotate 20s infinite linear;
}

.animated-phone-screen {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: #000;
  border-radius: 30px;
  overflow: hidden;
}

.animated-phone-app-ui {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #001, #002);
  opacity: 0;
  animation: buildApp 8s infinite;
}

.animated-phone-ui-element {
  position: absolute;
  background: linear-gradient(to right, var(--neon-green), var(--neon-blue));
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
}

.animated-phone .header {
  top: 20px;
  left: 20px;
  right: 20px;
  height: 40px;
  animation: fadeInUp 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 0.5s;
}

.animated-phone .content-1 {
  top: 80px;
  left: 20px;
  right: 20px;
  height: 100px;
  animation: fadeInUp 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 1s;
}

.animated-phone .content-2 {
  top: 200px;
  left: 20px;
  width: 60%;
  height: 30px;
  animation: fadeInUp 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 1.5s;
}

.animated-phone .content-3 {
  top: 250px;
  left: 20px;
  width: 80%;
  height: 30px;
  animation: fadeInUp 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 2s;
}

.animated-phone .button {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 60%;
  height: 50px;
  border-radius: 25px;
  animation: fadeInUp 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 2.5s;
}

@media (max-width: 768px) {
  .animated-phone { 
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 2rem auto;
    width: 250px;
    height: 500px;
  }
}

/*
* Components.Browser
*/
.browser-animation-container {
  flex: 1;
  min-width: 300px;
  height: 400px;
  position: relative;
  margin: 20px;
}

.animated-browser {
  width: 500px;
  height: 350px;
  background: #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: center;
  animation: appear 1s forwards;
}

.animated-browser-header {
  height: 30px;
  background: #e1e1e1;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.animated-browser-buttons {
  display: flex;
  gap: 5px;
}

.animated-browser-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.animated-browser-button:nth-child(1) {
  background: #ff5f57;
}

.animated-browser-button:nth-child(2) {
  background: #ffbd2e;
}

.animated-browser-button:nth-child(3) {
  background: #28ca41;
}

.animated-browser-address {
  background: white;
  margin-left: 10px;
  flex: 1;
  height: 20px;
  border-radius: 3px;
  font-size: 14px;
  padding: 0px 4px;
}

.animated-browser-content {
  height: calc(100% - 30px);
  background: white;
  overflow: hidden;
}

.animated-browser-elements {
  padding: 20px;
  opacity: 0;
}

.animated-browser-element {
  margin: 10px 0;
  height: 15px;
  border-radius: 4px;
  animation: build 0.5s forwards;
  opacity: 0;
}

.header-element {
  width: 70%;
  background: #333;
  height: 30px;
  margin-bottom: 20px;
  animation-delay: 0.5s;
}

.nav-element {
  width: 100%;
  background: var(--neon-blue);
  height: 20px;
  animation-delay: 1s;
}

.hero-element {
  width: 100%;
  height: 120px;
  background: var(--dark-bg);
  animation-delay: 1.5s;
}

.text-element {
  background: #ddd;
}

.text-element:nth-child(4) {
  width: 90%;
  animation-delay: 2s;
}

.text-element:nth-child(5) {
  width: 75%;
  animation-delay: 2.2s;
}

.cta-element {
  width: 150px;
  height: 25px;
  background: var(--neon-green);
  margin-top: 20px;
  animation-delay: 2.5s;
}

.animated-browser-code-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: var(--neon-green);
  font-family: monospace;
  font-size: 0.9rem;
  padding: 40px;
  transform: translateY(100%);
  animation: slideCode 5s 3s forwards;
  overflow: hidden;
}

.animated-browser-code-line {
  opacity: 0;
  animation: typeLine 0.1s forwards;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 5px;
}

.animated-browser-code-line:nth-child(1) { animation-delay: 3.1s; }
.animated-browser-code-line:nth-child(2) { animation-delay: 3.3s; }
.animated-browser-code-line:nth-child(3) { animation-delay: 3.5s; }
.animated-browser-code-line:nth-child(4) { animation-delay: 3.7s; }
.animated-browser-code-line:nth-child(5) { animation-delay: 3.9s; }
.animated-browser-code-line:nth-child(6) { animation-delay: 4.1s; }
.animated-browser-code-line:nth-child(7) { animation-delay: 4.3s; }
.animated-browser-code-line:nth-child(8) { animation-delay: 4.5s; }
.animated-browser-code-line:nth-child(9) { animation-delay: 4.7s; }
.animated-browser-code-line:nth-child(10) { animation-delay: 4.9s; }

.animated-browser-code-line .tag { color: var(--neon-blue); }
.animated-browser-code-line .attr { color: var(--neon-green); }
.animated-browser-code-line .value { color: #ff9e64; }
.animated-browser-code-line .comment { color: #565f89; }

@media (max-width: 768px) {
  .browser-animation-container {
    margin-right: 0px;
    margin-left: 0px;
  }
  .animated-browser {
    width: 100%;
  }
}

/*
* Components.Timeline
*/
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, var(--neon-green), var(--neon-blue));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.timeline-item {
  padding: 1rem 3rem;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 3rem;
}

/* Position the timeline items */
.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

/* The circles on the timeline */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  right: -0.75rem;
  background: var(--dark-bg);
  border: 3px solid var(--neon-green);
  top: 1.5rem;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 15px var(--neon-green);
}

.timeline-item:nth-child(even)::after {
  left: -0.75rem;
}

/* Timeline content container */
.timeline-content {
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.3);
}

/* Direction arrows for the timeline content */
.timeline-item:nth-child(odd) .timeline-content::after {
  content: '';
  position: absolute;
  border-width: 10px 0 10px 10px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(10, 10, 10, 0.7);
  top: 1.5rem;
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::after {
  content: '';
  position: absolute;
  border-width: 10px 10px 10px 0;
  border-style: solid;
  border-color: transparent rgba(10, 10, 10, 0.7) transparent transparent;
  top: 1.5rem;
  left: -10px;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid rgba(0, 255, 136, 0.5);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.timeline-icon i {
  font-size: 1.5rem;
  color: var(--neon-green);
}

.timeline-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 35px;
  height: 35px;
  background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.timeline-content h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.timeline-content p {
  color: #cccccc;
  margin-bottom: 0;
}

/* Media query for mobile view */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 5rem;
    padding-right: 1rem;
  }
  
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
    padding-left: 5rem;
  }
  
  .timeline-item::after,
  .timeline-item:nth-child(even)::after {
    left: 1.6rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::after {
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(10, 10, 10, 0.7) transparent transparent;
    right: auto;
    left: -10px;
  }
}

/*
* Sections
*/
section.spad {
  padding: 120px 0px;
}

/*
* Navbar
*/
.navbar {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1rem;
}

.navbar-brand {
  font-weight: 700;
  background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
}

.nav-link {
  color: rgba(255,255,255,0.8) !important;
  margin: 0 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--neon-green) !important;
}

.dropdown-menu {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  min-width: 220px;
}

.dropdown-item {
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  padding: 14px 20px;
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.05);
  color: var(--neon-green);
}

.navbar select {
  background-color: #000;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  border-color: #333;
}

.btn-login {
  background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
  border: none;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-login:hover {
  transform: scale(1.05);
}

.dropdown-toggle::after {
  border-top-color: var(--neon-green);
}

/*
* Hero Section
*/
.section-hero {
  background: linear-gradient(45deg, #000428, #004e92);
  position: relative;
  overflow: hidden;
}

.section-hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s forwards;
}

.section-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s 0.3s forwards;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.cta-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s 0.6s forwards;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

/*
* Solutions
*/
.section-solutions {
  background: rgba(0,0,0,0.95); 
  position: relative; 
  overflow: hidden;
}
.section-solutions h2 {
  font-size: 2.5rem;
}
.section-solutions .solution-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 2rem;
  min-height: 350px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,255,136,0.1);
  transition: 0.3s;
}
.section-solutions .solution-card .icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(0,255,136,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-solutions .solution-card .icon-wrapper i {
  font-size: 1.8rem;
  color: #00ff88;
}
.section-solutions .solution-card h3 {
  color: #00ff88;
  margin-bottom: 1rem;
}
.section-solutions .solution-card p {
  color: rgba(255,255,255,0.8);
}
.section-solutions .solution-card ul.solution-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}
.section-solutions .solution-card ul.solution-features li i {
  color: #00b4d8;
  margin-right: 8px;
}

/*
* Bliz
*/
.section-bliz .bliz-visual {
  background: linear-gradient(45deg, #000428, #004e92);
  border-radius: 20px;
  position: relative;
}
.section-bliz .bliz-logo {
  background: white;
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .section-bliz button {
    width: 100%;
    margin-bottom: 10px;
  }
}

/*
* Technologies
*/
.section-technologies {
  background: linear-gradient(45deg, #000428, #004e92);
  position: relative;
  overflow: hidden;
}
.section-technologies .animation-floating {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0,255,136,0.1);
  margin: auto;
}

/*
* Partners
*/
.section-partners {
  background: rgba(0,0,0,0.95);
  position: relative;
  overflow: hidden;
}
.section-partners .partner-logo {
  filter: grayscale(1) brightness(2); transition: 0.3s;
}

/*
* Clients
*/
.section-clients .project-card {
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.1);
}
.section-clients .project-card img {
  height: 40px;
  width: auto;
}
.section-clients .project-flag {
  position: absolute;
  left: -6px;
  top: -6px;
}
.section-clients .project-card .tech-stack i {
  background: rgba(0, 180, 216, 0.1);
  border-radius: 10px;
  padding: 8px;
  color: var(--neon-blue);
}

/*
* Footer
*/
footer {
  background: linear-gradient(45deg, #000428, #004e92);
  color: white;
  position: relative;
  overflow: hidden;
}
footer .footer-heading {
  color: #00ff88;
}
footer .social-icon {
  font-size: 1.5rem;
  color: var(--neon-blue);
}
footer .footer-brand {
  font-weight: 700;
  background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.8rem;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  footer .footer-bottom .col-md-6 {
    margin-bottom: 16px;
  }
}

/*
* Auth
*/
.section-auth {
  margin-top: 20vmin;
}
.section-auth .container {
  min-height: 70vmin;
}
.auth-card {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
.phone-input-group {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
.country-code-select {
  background: transparent;
  border: none;
  color: white;
  padding: 0.75rem 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.country-code-select:focus {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.1);
}
.input-group-text {
  background: transparent;
  border: none;
  padding-right: 0;
}
.form-control-phone {
  border: none;
  background: transparent;
  color: white;
  padding-left: 0.5rem;
}
.form-control-phone:focus {
  background: transparent;
  box-shadow: none;
}

/*
* User.Navigation
*/
.user-navigation {
  width: 100%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}
.user-nav-menu {
  width: 100%;
}
.user-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.user-nav-item {
  width: 100%;
}
.user-nav-link {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-weight: 500;
}
.user-nav-link:hover,
.user-nav-link.active {
  background-color: #222;
  color: #fff;
}
/* Mobile styles */
@media (max-width: 768px) {
  .user-navigation {
    padding: 0.75rem;
  }
  .user-nav-list {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 1rem;
  }
  .user-nav-list::-webkit-scrollbar {
    display: none;
  }
  .user-nav-item {
    flex: 0 0 auto;
    width: auto;
  }
  .user-nav-link {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}