* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: black;
  position: relative;
  font-family: sans-serif;
  overflow-x: hidden;
}

/* Smooth Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #a200ff, #2e34e5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #c300ff, #4e54ff);
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 20px;
  background-color: transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(0px);
}

nav.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(162, 0, 255, 0.2);
}

.logo img {
  height: 80px;
  width: 160px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.list ul {
  color: white;
  text-align: left;
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  list-style: none;
  display: flex;
  gap: 30px;
}

.list ul li span {
  padding: 10px 15px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  display: inline-block;
}

.list ul li span:hover {
  color: white;
  background: linear-gradient(to right, #a200ff, #2e34e5);
  box-shadow:
    0 0 10px #8434ed75,
    0 0 25px #6634f18c,
    0 0 50px #8917e67f,
    0 0 100px #273ae87f;
  transform: translateY(-2px);
}

/* Enhanced Cursor Glow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 6, 215, 0.3) 0%, rgba(162, 0, 255, 0.15) 30%, rgba(0, 0, 0, 0) 70%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  z-index: 9999;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  will-change: transform;
}

.cursor-glow.hover {
  width: 250px;
  height: 250px;
  opacity: 0.8;
}

/* Hero Section */
.img-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.img-container img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.681);
  z-index: 1;
  transition: background-color 0.5s ease;
}

.container-box {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  gap: 160px;
  padding: 100px 50px 0px 50px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.mic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 100%;
  max-width: 480px;
  height: auto;
  transition: transform 0.3s ease;
}

.spline-iframe {
  width: 100%;
  height: 600px;
  max-height: 600px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .mic.spline-embed {
    display: none;
  }
}

.text p {
  color: white;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
}

.line1 {
  font-size: clamp(24px, 5vw, 50px);
  font-weight: 500;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  margin: 20px 0px;
}

.line2 {
  font-size: clamp(48px, 15vw, 75px);
  font-weight: 500;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
  background: linear-gradient(to right, #ffffff, #a200ff, #2e34e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.line3 {
  font-size: clamp(12px, 3vw, 22px);
  font-weight: 150;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.6s;
  margin: 50px 0px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shine-btn {
  display: flex;
  position: absolute;
  margin: 10px 0 100px clamp(20px, 20vw, 400px);
  transform: translateX(-50%);
  z-index: 2;
  gap: 70px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn1,
.btn2 {
  position: relative;
  overflow: hidden;
  color: white;
  padding: 12px 24px;
  border-radius: 7px;
  font-size: clamp(14px, 2vw, 18px);
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-style: normal;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn1 {
  background: linear-gradient(to right, #a200ff, #2e34e5);
}

.btn2 {
  background-color: rgba(0, 0, 0, 0.147);
  border: 1px solid white;
}

.btn1:hover,
.btn2:hover {
  color: black;
  background: linear-gradient(to right, #a200ff, #2e34e5);
  border: none;
  transform: scale(1.05);
  box-shadow:
    0 0 10px #8434ed75,
    0 0 25px #6634f18c,
    0 0 50px #8917e67f,
    0 0 100px #273ae87f;
}

/* Body Content */
.container-body {
  padding: 70px 20px;
  background: linear-gradient(to bottom, #6a00ff1f, #000000);
}

.choose p {
  color: white;
  font-size: clamp(24px, 6vw, 60px);
  font-weight: bold;
  text-align: center;
  font-family: "Comme", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-bottom: 50px;
}

.line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}


.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  color: white;
  text-align: center;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 20px;
}

.features div {
  padding: 30px;
  border-radius: 10px;
  min-height: 400px;
  background: linear-gradient(to right, #2f0349, #050639);
  transition: all 0.3s ease;
  position: relative;
}

.features div:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 10px #8434ed3b,
    0 0 25px #6634f133,
    0 0 50px #8917e632,
    0 0 100px #273ae848;
}

.features h3 {
  margin-top: 10px;
  font-size: clamp(14px, 2vw, 20px);
  font-family: "Encode Sans SC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fcfcfc;
  margin-bottom: 20px;
}

.features p {
  font-size: clamp(12px, 1.5vw, 16px);
  font-family: "Encode Sans SC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-bottom: 20px;
}

.featureImg {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 120px;
  height: 120px;
}

/* Brand Bar */
.brand-bar-wrapper {
  overflow: hidden;
  width: 100%;
  background-color: #131214f6;
  margin: 50px 0px;
}

.brand-bar {
  display: flex;
  gap: 40px;
  width: max-content;
}

.brand {
  flex-shrink: 0;
  margin: 20px;
  max-height: 100px;
  width: auto;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.video-desktop {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 18px;
  margin: 0 auto;
}

.video-desktop:hover {
  transform: scale(1.05);
  transition: 0.3s;
  box-shadow:
    0 0 10px #8434ed3b,
    0 0 25px #6634f133,
    0 0 50px #8917e632,
    0 0 100px #273ae848;
}

.video-mobile {
  display: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .line2 {
    font-size: clamp(50px, 5vw, 55px);
    text-align: center;
  }

  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
  }
}

/* Services */
.services {
  display: flex;
  gap: 30px;
  margin-left: 0px;
  padding: 50px 200px 50px 0px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.serviceImg {
  flex: 1;
  min-width: 300px;
}

.serviceImg img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 10px;
}

.slide-in-img {
  opacity: 0;
  transform: translateX(100px);
}

.service {
  flex: 1;
  min-width: 300px;
  color: white;
  text-align: center;
  font-family: "Comme", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  border-radius: 20px;
  padding: 30px;
  background: linear-gradient(to right, #2f0349, #050639);
}

.service p.faq {
  font-size: clamp(24px, 5vw, 60px);
  font-weight: bold;
  margin-bottom: 40px;
}

.faq-list {
  list-style: none;
  padding: 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  margin: 10px 0;
  background-color: rgba(160, 160, 161, 0.1);
  border: 1px solid rgba(162, 0, 255, 0.2);
  border-radius: 7px;
  color: white;
  font-size: clamp(12px, 1.5vw, 16px);
  font-family: "Comme", sans-serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(162, 0, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.faq-question:hover::before {
  left: 100%;
}

.faq-question:hover {
  transform: translateX(5px);
  background-color: rgba(162, 0, 255, 0.15);
  border-color: rgba(162, 0, 255, 0.5);
  box-shadow: 0 0 20px rgba(162, 0, 255, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #780caa;
  border-radius: 5px;
  padding: 0 15px;
  margin: 0 20px 20px 20px;
  font-size: clamp(11px, 1.3vw, 14px);
  line-height: 1.8;
  will-change: max-height, padding;
}

.faq-answer.open {
  max-height: 500px;
  padding: 15px;
}

/* Footer */
.divider {
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #780caa, #2e34e5);
}

.footer {
  background: #111;
  color: #bbb;
  padding: 50px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
  max-width: 1200px;
  margin: 0 auto 20px auto;
}

.footer h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}

.footer h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #780caa, #2e34e5);
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer p {
  font-size: 14px;
  line-height: 22px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #780caa;
}

.contact-info li {
  font-size: 14px;
  margin: 6px 0;
}

.subscribe-form {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.subscribe-form input {
  padding: 8px;
  border: none;
  border-radius: 3px;
  flex: 1;
  min-width: 150px;
}

.subscribe-form button {
  background: linear-gradient(to right, #780caa, #2e34e5);
  border: none;
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}

.subscribe-form button:hover {
  opacity: 0.9;
  box-shadow:
    0 0 50px #8434ed3e,
    0 0 50px #6634f18c,
    0 0 50px #8917e63d,
    0 0 50px #273ae83e;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 13px;
}

.social-icons a {
  color: #bbb;
  margin: 0 8px;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #780caa;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 50px;
  right: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b358;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 80px 20px 20px 20px;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .list.active {
    left: 0;
  }

  .list ul {
    flex-direction: column;
    gap: 10px;
  }

  .list ul li span:hover {
    color: white;
    background: none !important;
    box-shadow: none !important;
  }

  .container-box {
    flex-direction: column;
    padding: 80px 20px;
    text-align: center;
  }

  .mic {
    order: -1;
  }

  .mic img {
    max-height: 400px;
  }

  .shine-btn {
    bottom: 50px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .features div {
    min-height: 280px;
    padding: 20px;
    padding-bottom: 100px;
  }

  .featureImg {
    width: 80px;
    height: 80px;
    bottom: 10px;
    right: 10px;
  }

  .label {
    flex-direction: column;
  }

  .label .side {
    display: none;
  }

  .services {
    flex-direction: column;
    padding: 50px 15px;
  }

  .serviceImg {
    order: 2;
  }

  .service {
    order: 1;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-container .footer-col:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 70px;
    width: 140px;
  }

  .line2 {
    font-size: clamp(38px, 5vw, 55px);
    text-align: center;
  }

  .container-box {
    padding: 60px 15px;
  }

  .features {
    padding: 0 10px;
    gap: 20px;
  }

  .features div {
    min-height: 250px;
    padding: 15px;
    padding-bottom: 80px;
  }

  .featureImg {
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 10px;
  }

  .label,
  .services,
  .container-body {
    padding: 30px 15px;
  }

  .footer {
    padding: 30px 15px 20px 15px;
  }
}