/* === Global Font === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: black;
  backdrop-filter: blur(5px);
  z-index: 999;
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 35px;
  opacity: 1;
}

.nav-links {
  display: none;
}

.nav-links a {
  margin-left: 2rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: cyan;
  transform: scale(1.05);
}

.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  display: block;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background: black;
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  position: absolute;
  top: 100%;
  width: 100%;
}

.mobile-menu a {
  color: white;
  margin: 0.5rem 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: cyan;
  transform: scale(1.05);
}

/* Show nav-links on desktop */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* Scrolled effect */
.scrolled {
  background: rgba(0, 0, 0, 0.7) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* === HERO === */
#hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: #000;
  overflow: hidden;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  z-index: 0;
}

.flare.cyan {
  width: 300px;
  height: 300px;
  background: cyan;
  top: 33%;
  left: 33%;
}

.flare.pink {
  width: 250px;
  height: 250px;
  background: pink;
  bottom: 25%;
  right: 25%;
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-logo {
  z-index: 2;
  margin-bottom: 1rem;
  transition: transform 0.1s ease-out;
}

.hero-logo img {
  width: 600px;
  max-width: 60vw;
  opacity: 0.95;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  z-index: 2;
  text-shadow: 0 0 20px cyan;
  margin-bottom: 1rem;
}

.hero-description {
  max-width: 700px;
  z-index: 2;
  color: #aaa;
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-btn {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}


/* START Services Section === */
          #services {
            position: relative;
            padding: 6rem 2rem;
            background: #000;
            overflow: hidden;
            color: #fff;
            text-align: center;
          }

          .services-gradient-bg,
          .services-gradient-circle,
          .services-gradient-blur {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
          }

          .services-gradient-bg {
            background: linear-gradient(135deg, #000, #12052c, #000);
            background-size: 400% 400%;
            animation: gradientBG 20s ease infinite;
          }

          @keyframes gradientBG {
            0%, 100% {
              background-position: 0% 50%;
            }
            50% {
              background-position: 100% 50%;
            }
          }

          .services-gradient-circle {
            background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.04), transparent 70%);
          }

          .services-gradient-blur {
            background: linear-gradient(to bottom right, rgba(0, 255, 255, 0.05), rgba(128, 0, 128, 0.05), transparent);
            filter: blur(120px);
            opacity: 0.15;
          }

          .services-title {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, cyan, violet, limegreen);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
          }

          .services-subtitle {
            font-size: 1rem;
            color: #bbb;
            margin-bottom: 3rem;
            min-height: 30px;
            position: relative;
            z-index: 1;
          }

          .services-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
          }

          .service-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1.5rem;
            padding: 2rem 1.5rem;
            backdrop-filter: blur(12px);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
          }

          .service-card:hover {
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
            transform: translateY(-5px);
          }

          .service-icon {
            width: 100px;
            height: 100px;
            margin-bottom: 1rem;
            position: relative;
          }

          .service-icon img,
          .service-icon lottie-player {
            width: 100%;
            height: 100%;
            object-fit: contain;
          }

          .service-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #fff;
          }

          .service-card p {
            font-size: 0.95rem;
            color: #ccc;
            line-height: 1.6;
          }

/* END SERVICE Section  */


/* START CHOOSE US Section */
          #choose {
            position: relative;
            background: black;
            padding: 6rem 2rem;
            overflow: hidden;
            color: white;
            font-family: 'Inter', sans-serif;
          }

          #choose-stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
          }

          .choose-title-block {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto 4rem;
            text-align: center;
          }

          .choose-title {
          font-size: 3rem;
          font-weight: 600;
          text-transform: none;
          line-height: 1.2;
          letter-spacing: -0.5px;
          background: linear-gradient(to right, cyan, violet, limegreen);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          color: transparent; /* fallback */
          margin-bottom: 0.5rem;
        }


          .choose-subtitle {
            font-size: 1rem;
            font-weight: 400;
            color: #ccc;
            letter-spacing: 0.3px;
            margin-top: 0.5rem;
            line-height: 1.6;
          }

          .choose-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
          }

          .choose-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
          }

          .choose-card:hover {
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
            transform: scale(1.04);
          }

          .choose-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: cyan;
          }

          .choose-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: white;
            line-height: 1.3;
          }

          .choose-card p {
            font-size: 1rem;
            color: #ccc;
            line-height: 1.6;
          }

/* END CHOOSE US Section */

/* START Stack Section === */
          #stack {
            background: black;
            padding: 6rem 2rem;
            position: relative;
            color: white;
            overflow: hidden;
          }

          .stack-flare {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: rgba(128, 0, 255, 0.1);
            filter: blur(120px);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
          }

          .stack-header {
            font-size: 3rem;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.5px;
            text-align: center;
            margin-bottom: 2rem;

            background: linear-gradient(90deg, #00ffe0, #ff66c4, #88ff00);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent; /* fallback */
            animation: gradientShift 6s ease infinite;
          }

          .stack-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
          }

          .stack-header p {
            font-size: 1.1rem;
            color: #aaa;
          }

          .stack-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
          }

          .stack-group h3 {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 1rem;
            line-height: 1.3;
            letter-spacing: 0.3px;
            text-align: left;

            background: linear-gradient(to right, #fc5555, #ffcead);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent; /* fallback */
          }

          .stack-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
          }

          .stack-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 1rem;
            text-align: center;
            font-size: 0.95rem;
            color: #ddd;
            backdrop-filter: blur(10px);
            transition: 0.3s ease;
          }

          .stack-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
          }

/* END STACK Section */

/* START CONTACT FORM  */
          #contact {
            position: relative;
            background: black;
            padding: 6rem 2rem;
            color: white;
            overflow: hidden;
          }

          .contact-flare {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: rgba(0, 255, 255, 0.08);
            filter: blur(120px);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
          }

          .contact-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
          }

          .contact-title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(to right, white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
          }

          /* Removed the underline */
          .contact-title::after {
            display: none;
          }

          .contact-form {
            background: rgba(255, 255, 255, 0.02);
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            backdrop-filter: blur(15px);
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
          }

          .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
          }

          .form-field {
            position: relative;
          }

          .form-field input {
            width: 100%;
            padding: 1rem;
            padding-right: 2.5rem;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.75rem;
            color: white;
            font-size: 1rem;
          }

          .form-field span {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: cyan;
          }

          .form-textarea {
            position: relative;
            margin-bottom: 1.5rem;
          }

          .form-textarea textarea {
            width: 100%;
            padding: 1rem;
            padding-right: 2.5rem;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.75rem;
            color: white;
            font-size: 1rem;
            resize: none;
          }

          .form-textarea span {
            position: absolute;
            right: 1rem;
            top: 1rem;
            color: cyan;
          }

          .form-button {
            text-align: center;
          }

          .form-button button {
            padding: 0.8rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            color: white;
            background: linear-gradient(to right, cyan, blue);
            border: none;
            border-radius: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
          }

          .form-button button:hover {
            transform: scale(1.05);
          }

          /* === Toast Notification === */
          .toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: linear-gradient(to right, #00ffe0, #0088ff);
            color: black;
            padding: 1rem 1.5rem;
            border-radius: 1.5rem;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            z-index: 9999;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
          }
          .toast.show {
            opacity: 1;
            transform: translateY(0);
          }
          .toast.hidden {
            display: none;
          }
          
/* END CONTACT FORM */

/* START FOOTER Section */
          #site-footer {
            background: rgb(0, 0, 0);
            color: white;
            padding: 4rem 2rem 6rem;
            position: relative;
            overflow: hidden;
            text-align: center;
            z-index: 10;
          }

          .footer-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 500px;
            height: 500px;
            background: rgba(93, 204, 255, 0.301);
            border-radius: 50%;
            filter: blur(120px);
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 0;
          }

          .footer-container {
            max-width: 960px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
          }

          .footer-logo img {
            width: 160px;
            height: auto;
            margin: 1rem auto 2rem;
          }

          .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            font-size: 0.9rem;
            margin-bottom: 1rem;
          }

          .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: 0.3s;
          }

          .footer-links a:hover {
            color: white;
          }

          .footer-copy {
            color: #666;
            font-size: 0.8rem;
          }
/* END FOOTER Section */



/* === Cookie Banner  === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  color: #f2f2f2;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid #333;
  z-index: 9999;
  box-shadow: 0 -1px 10px rgba(255, 255, 255, 0.05);
}

.cookie-banner p {
  margin: 0;
  line-height: 1.6;
  flex: 1 1 300px;
  color: #ccc;
}

.cookie-banner button {
  background: #f2f2f2;
  color: #000;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-banner button:hover {
  background: #ddd;
}

.cookie-banner.hidden {
  display: none;
}

/* === Legal Pages  === */
.legal-page {
  background: #000;
  color: #f2f2f2;
  padding: 6rem 1.5rem 8rem;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.legal-container h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #ddd;
}

.legal-container p {
  color: #bbb;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* === FINAL LOGO FIX FOR MOBILE === */
@media (max-width: 480px) {
  /* Logo wrappers */
  .logo,
  .hero-logo,
  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    overflow: visible;
  }

  /* Logo Images */
  .logo img {
    max-width: 140px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .hero-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-logo img {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  /* Spacing fixes */
  .navbar-container {
    padding: 1rem;
  }

  .footer-logo {
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}