* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body {
  background:#0a0a0a;
  color:white;
}


/* BUTTON */
.btn {
  background:#7c3aed;
  padding:10px 20px;
  border-radius:20px;
  text-decoration:none;
  color:white;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  position: relative;
  margin-top: 80px;
}

.hero-left {
  width: 50%;
}

.hero-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  width: 90%;
  max-width: 600px;
  animation: floatImage 4s ease-in-out infinite;
}

.hero span {
  color:#a855f7;
}

.hero-bg {
  position:absolute;
  right:10%;
  width:400px;
  height:400px;
  background:#7c3aed33;
  filter:blur(100px);
}

.hero p {
  font-size: 18px;
  color: #bbb;
  margin: 20px 0 30px;
  max-width: 500px;
}


/* SECTION */
.section {
  padding:100px 8%;
  text-align:center;
}

.cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card {
  background:#111;
  padding:20px;
  border-radius:10px;
}

/* FAQ */
.faq {
  max-width:700px;
  margin:auto;
  text-align:left;
}

.faq-item {
  background:#111;
  margin:15px 0;
  padding:18px;
  border-radius:12px;
  cursor:pointer;
}

.faq-question {
  font-weight:600;
  position:relative;
}

.faq-question::after {
  content:"+";
  position:absolute;
  right:0;
}

.faq-item.active .faq-question::after {
  content:"-";
}

.faq-answer {
  max-height:0;
  overflow:hidden;
  transition:0.4s;
}

.faq-item.active .faq-answer {
  max-height:200px;
  margin-top:10px;
}

/* CTA */
.cta {
  margin:120px 8%;
  padding:80px 20px;
  text-align:center;
  background:#111;
  border-radius:20px;
}

/* FOOTER */
.footer {
  text-align:center;
  padding:40px 0 60px;
  color:#aaa;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
  margin-top: 40px;
  overflow: hidden; /* 👈 IMPORTANT */
}

.hero-bg {
  position: absolute;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7c3aed33, transparent);
  filter: blur(100px);
}

img {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden; /* 👈 prevents side scroll */
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 
    0 0 10px #7c3aed,
    0 0 25px #7c3aed,
    0 0 40px #a855f7;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn.outline {
  background: transparent;
  border: 1px solid #7c3aed;
  color: white;
}

.btn.outline:hover {
  background: rgba(124, 58, 237, 0.1);
  box-shadow: 0 0 15px #7c3aed;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
  padding-left: 10px;
}

.hero-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #7c3aed55, transparent);
  top: 15%;
  right: 5%;
  filter: blur(120px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.navbar a {
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #a855f7;
  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

/* WHY SECTION */
.why {
  padding: 100px 8%;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 60px;
}

/* GRID */
.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.why-card {
  background: #111;
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  border: 1px solid #7c3aed;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

/* ICON */
.why-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* TEXT */
.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #aaa;
}

@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.btn {
  padding: 10px 25px;
  font-size: 14px;
}

/* SHRINK STATE */

.navbar.shrink {
  height: 80px;
}

/* NAV LINKS */
.navbar a {
  font-size: 14px;
  transition: 0.3s;
}

/* SHRINK LINKS */
.navbar.shrink a {
  font-size: 13px;
}

/* BUTTON */
.navbar .btn {
  padding: 8px 18px;
  font-size: 14px;
  transition: 0.3s;
}

/* SHRINK BUTTON */
.navbar.shrink .btn {
  padding: 6px 14px;
  font-size: 13px;
}

html {
  scroll-behavior: smooth;
}

.btn {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
}

.btn:hover {
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}
/* WHATSAPP FLOAT (CLEAN VERSION) */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;

  display: flex;
  align-items: center;
  gap: 8px;

  background: #25D366;
  color: white;

  padding: 10px;
  border-radius: 50px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  z-index: 999;

  transition: all 0.3s ease;

  width: 45px; /* small circle */
  overflow: hidden;
}

/* ICON */
.whatsapp-float img {
  width: 26px;
  height: 26px;
}

/* TEXT hidden */
.whatsapp-float span {
  opacity: 0;
  white-space: nowrap;
  transition: 0.3s;
}

/* HOVER EXPAND */
.whatsapp-float:hover {
  width: 140px;
  padding: 10px 14px;
}

/* SHOW TEXT */
.whatsapp-float:hover span {
  opacity: 1;
}

/* SOFT GLOW (not overkill) */
.whatsapp-float {
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}


.page-section {
  padding: 140px 8% 100px; /* 👈 top padding fixes navbar overlap */
  text-align: center;
}


/* SERVICES SECTION */
.services-section {
  padding: 100px 8%;
  text-align: center;
}

/* GRID */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* CARD */
.service-card {
  background: #111;
  padding: 25px;
  border-radius: 20px;
  transition: 0.3s;
  border: 1px solid transparent;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* TEXT */
.service-card h3 {
  margin: 10px 0;
}

.service-card p {
  color: #bbb;
  font-size: 14px;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px);
  border: 1px solid #7c3aed;
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.3);
}

/* CTA */
.services-cta {
  margin-top: 60px;
}

.services-cta h3 {
  margin-bottom: 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

body {
  padding-top: 80px;
}

/* NAV LINKS (DESKTOP) */
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* BUTTON */
.nav-links .btn {
  padding: 8px 18px;
}

/* HIDE MOBILE ITEMS */
.menu-toggle,
.nav-center,
.mobile-menu {
  display: none;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  padding: 0px 8%;
  height: 120px;

  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);

  z-index: 1000;
}

/* LEFT */
.nav-left img {
  height: 100px;
}

/* CENTER */
.nav-links {
  display: flex;
  justify-content: center;
}

.nav-links ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 15px;
}

/* RIGHT */
.nav-right {
  display: flex;
  justify-content: flex-end;
}
/* LOGO */
.logo {
  height: 100px;
}
.navbar.shrink .logo {
  height: 70px;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* DESKTOP LINKS */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* REMOVE BULLETS */
.nav-links a::before {
  content: none !important;
}

/* BUTTON */
.desktop-btn {
  padding: 8px 18px;
}

/* HIDE MOBILE ELEMENTS */
.menu-toggle,
.nav-center,
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {

  .navbar {
    padding: 10px 15px;
  }

  .logo {
    height: 30px;
  }

  .nav-links,
  .desktop-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 22px;
    cursor: pointer;
  }

  .nav-center {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 600;
  }

  /* MOBILE MENU */
  .mobile-menu {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;

    background: #000;

    display: none;
    flex-direction: column;
    text-align: center;

    padding: 20px 0;
    z-index: 999;
  }

  .mobile-menu a {
    padding: 12px;
    color: white;
    text-decoration: none;
  }

  .mobile-menu.active {
    display: flex;
  }
}