:root{
  --primary:#5b2d8b;
  --primary-600:#4a2372;
  --accent:#c3a6e5;
  --bg:#ffffff;
  --soft:#f5f2fa;
  --muted:#6c757d;
  --card-shadow:0 8px 30px rgba(91,45,139,0.07);
  --glass:rgba(255,255,255,0.8);
  --radius:12px;
  --fw-regular:500;
  --fw-strong:700;
}

#popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup {
  position: relative;
  background: #ffffff;
  width: 420px;
  padding: 36px 32px 32px;
  border-radius: 22px;
  text-align: center;
  z-index: 10001;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.popup h2 {
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: 26px;
  font-weight: 700;
}

.popup p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 18px;
}



.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;

  all: unset;

  width: 32px;
  height: 32px;

  background: #f2f2f2;
  color: #111;

  font-size: 20px;
  font-weight: bold;

  border-radius: 50%;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: #e6e6e6;
}




.popup-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
}

.popup-desc {
  font-size: 14px;
  color: #555;
  margin: 12px 0 16px;
}

.popup-list {
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin-bottom: 18px;
}

.voice-btn {
  background: #f5f5f7;
  color: #111;
  border: 2px solid #111;
}

.voice-btn:hover {
  background: #111;
  color: #fff;
}



.popup .cta {
  display: inline-block;
  margin-top: 8px;
  color: #0071e3;
  font-weight: 600;
  text-decoration: none;
}

.popup .cta:hover {
  text-decoration: underline;
}


.party {
  position: absolute;
  top: 50%;
  font-size: 40px;
  transform: translateY(-50%);
  animation: pop 0.6s infinite alternate;
}

.party.left { left: -55px; }
.party.right { right: -55px; }

@keyframes pop {
  from { transform: translateY(-50%) scale(1); }
  to { transform: translateY(-50%) scale(1.3); }
}

.popup ul {
  list-style: none;
  padding: 0;
  margin: 18px auto 22px;
  max-width: 260px;
  text-align: left;
}

.popup ul li {
  font-size: 14px;
  margin: 8px 0;
  color: #222;
}


#fx {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

.party-shooter {
  position: absolute;
  top: 50%;
  font-size: 40px;
  transform: translateY(-50%);
  animation: pop 0.6s infinite alternate;
  z-index: 10002;
}

.party-shooter.left { left: -50px; }
.party-shooter.right { right: -50px; }

@keyframes pop {
  from { transform: translateY(-50%) scale(1); }
  to { transform: translateY(-50%) scale(1.3); }
}

#lottie {
  width: 120px;
  margin: 0 auto 16px;
}

#popup-overlay {
  backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(0,0,0,0.45);
}


#popup-overlay {
  animation: fadeIn 0.35s ease forwards;
}

.popup {
  transform: scale(0.88) translateY(30px);
  opacity: 0;
  animation: springIn 0.55s cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes springIn {
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}


.ai-close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 30px;
  height: 30px;

  border: none;
  background: #f2f2f2;
  color: #111;

  font-size: 18px;
  font-weight: bold;
  line-height: 1;

  border-radius: 50%;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s ease;
}

.ai-close:hover {
  background: #e5e5e5;
}

/* Voice button — TOP LEFT */
.ai-voice-mini {
  position: absolute;
  top: 14px;
  left: 14px;

  width: 30px;
  height: 30px;

  border: none;
  background: #f2f2f2;
  color: #111;

  font-size: 16px;
  line-height: 1;

  border-radius: 50%;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s ease;
}

.ai-voice-mini:hover {
  background: #e5e5e5;
}




.voice-mini {
  position: absolute;
  top: 14px;
  left: 14px;

  all: unset;

  background: #f2f2f2;
  color: #111;

  padding: 6px 8px;
  font-size: 13px;
  line-height: 1;

  border-radius: 6px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.voice-mini:hover {
  background: #e6e6e6;
}

body { font-family: Arial; background:#f4f4f4; }
form {
  max-width: 400px;
  margin: 50px auto;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}
input, textarea, button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}
button {
  background: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}
#status { margin-top: 10px; }

.ai-agent {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}
.ai-agent h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.ai-agent p {
  max-width: 600px;
  margin: auto;
  font-size: 16px;
  opacity: 0.9;
}
.ai-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: #00e5ff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
}
.ai-btn:hover {
  background: #00bcd4;
}

.static-party {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 90px;
  pointer-events: none;
  z-index: 10002;
}

.static-party span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 2px;
}

.static-party span:nth-child(1)  { top: 10px; left: 20px;  background: #ff4d4d; }
.static-party span:nth-child(2)  { top: 35px; left: 55px;  background: #ffd11a; }
.static-party span:nth-child(3)  { top: 15px; left: 95px;  background: #4dff4d; }
.static-party span:nth-child(4)  { top: 55px; left: 130px; background: #4dd2ff; }
.static-party span:nth-child(5)  { top: 25px; left: 170px; background: #b84dff; }
.static-party span:nth-child(6)  { top: 65px; left: 30px;  background: #ff944d; }
.static-party span:nth-child(7)  { top: 12px; left: 150px; background: #4dffb8; }
.static-party span:nth-child(8)  { top: 48px; left: 85px;  background: #ff4da6; }
.static-party span:nth-child(9)  { top: 72px; left: 115px; background: #66ccff; }
.static-party span:nth-child(10) { top: 32px; left: 45px;  background: #99ff33; }

#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10005; 
}


.nav-menu{
  display:flex;
  align-items:center;
  gap:2rem;
}

.nav-link{
  text-decoration:none;
  font-weight:500;
  color:#1f1f1f;
  position:relative;
  transition:color .3s ease;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#5b2d8b;
  transition:width .3s ease;
}

.nav-link:hover{
  color:#5b2d8b;
}

.nav-link:hover::after{
  width:100%;
}

.dark-toggle{
  background:none;
  border:none;
  cursor:pointer;
  font-size:1.2rem;
  margin-left:1rem;
}

.dark-toggle .moon{
  display:none;
}

.burger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.burger span{
  width:26px;
  height:3px;
  background:#1f1f1f;
  border-radius:3px;
  transition:.3s ease;
}

@media(max-width:768px){
  .burger{
    display:flex;
  }

  .nav-menu{
    position:fixed;
    top:70px;
    right:-100%;
    width:260px;
    height:calc(100vh - 70px);
    background:#ffffff;
    flex-direction:column;
    padding:2.5rem 2rem;
    gap:1.8rem;
    transition:right .4s ease;
    box-shadow:-10px 0 30px rgba(0,0,0,.1);
  }

  .nav-menu.active{
    right:0;
  }

  .nav-link{
    font-size:1.1rem;
  }
}

.burger.active span:nth-child(1){
  transform:rotate(45deg) translate(6px,6px);
}

.burger.active span:nth-child(2){
  opacity:0;
}

.burger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}
section{
  width:100%;
  padding-left:20px;
  padding-right:20px;
  box-sizing:border-box;
}

.hero{
  position: relative;
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 20px;
  width:100%;
  overflow:hidden;
}

.hero-bg{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-image: url(img/bg.jpeg);
  background-size: cover;
  background-position: center;
  z-index:1;
  transition: filter 0.25s ease;
}

.hero-content{
  position: relative;
  z-index:2;
}

.hero-content *{
  transition: all 0.25s ease;
}


.client-title{
  font-size:clamp(28px,3.2vw,38px);
  font-weight:800;
  color:#4a2372;
  text-align:center;
  margin:0 auto 40px;
  padding:14px 34px;
  width:fit-content;
  border-radius:14px;
  background:linear-gradient(180deg,#ffffff,#f5f2fa);
  box-shadow:0 12px 32px rgba(91,45,139,0.12);
  letter-spacing:.5px;
  position:relative;
}

.client-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-10px;
  transform:translateX(-50%);
  width:60%;
  height:4px;
  border-radius:10px;
  background:linear-gradient(90deg,#5b2d8b,#c3a6e5);
}

.client-title:hover{
  transform:translateY(-4px);
  transition:.25s ease;
  box-shadow:0 18px 44px rgba(91,45,139,0.18);
}


.client-logos{
  padding:18px 0 40px;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  width:100%;
}
.client-logos img{
  height:56px;
  width: 200px;
  margin:0 18px;
  filter:grayscale(85%);
  opacity:.85;
  transition:filter .25s ease, transform .25s ease, opacity .25s ease;
}
.client-logos img:hover{filter:none; opacity:1; transform:translateY(-6px)}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  padding: 14px 20px;
  color: #4b0082; 
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.section-title:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 26px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.latest-news-section{
  padding:54px 20px;
  background:linear-gradient(180deg, var(--bg), var(--soft));
  width:100%;
}
.news-card{
  background:linear-gradient(180deg,#ffffff, #fbfdff);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--card-shadow);
  height:100%;
  transition:transform .18s ease, box-shadow .18s ease;
}
.news-card h5{margin-top:0; color:#0b2b45; font-weight:700}
.news-card p{color:var(--muted); margin-bottom:14px}
.news-card .btn{padding:8px 14px;border-radius:8px}

.collab-section{
  background:#ffffff;
}

.collab-title {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  padding: 14px 20px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.collab-title:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 26px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.collab-logo{
  background:linear-gradient(180deg,#ffffff,#f5f2fa);
  border-radius:16px;
  padding:40px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 32px rgba(91,45,139,0.12);
  transition:.25s ease;
  overflow:hidden;
}

.collab-logo img{
  max-height:88px;
  max-width:220px;
  object-fit:contain;
}

.collab-logo:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 46px rgba(91,45,139,0.18);
}

.collab-tag{
  position:absolute;
  top:18px;
  left:-38px;
  transform:rotate(-45deg);
  padding:6px 46px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:#ffffff;
}

.collab-tag.active{
  background:#dc2626;
}

.collab-tag.soon{
  background:#9ca3af;
}

.about-heading {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  padding: 14px 20px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.about-heading:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 26px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}



*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Ubuntu,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

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

.section-title{
  font-size:2.2rem;
  margin-bottom:3rem;
  color:var(--primary);
}

.process-section{
  padding:5rem 0;
  background:var(--soft);
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;
}

.process-card{
  background:#fff;
  padding:2.5rem 2rem;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:transform .3s ease, box-shadow .3s ease;
}

.process-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.process-card span{
  display:inline-block;
  font-size:1.4rem;
  font-weight:700;
  color:#fff;
  background:var(--primary);
  width:48px;
  height:48px;
  line-height:48px;
  border-radius:50%;
  margin-bottom:1.2rem;
}

.process-card h5{
  font-size:1.2rem;
  margin-bottom:.6rem;
}

.process-card p{
  color:var(--muted);
}

.stats-section{
  padding:4.5rem 0;
  background:var(--primary);
  color:#fff;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:2.5rem;
  text-align:center;
}

.stat h3{
  font-size:2.6rem;
  margin-bottom:.4rem;
  color:var(--accent);
}

.stat p{
  font-size:1rem;
  opacity:.9;
}

.testimonials-section{
  padding:5rem 0;
  background:#f5f2fa;
}

.section-title{
  font-size:2.2rem;
  margin-bottom:3rem;
  color:#5b2d8b;
}

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
}

.testimonial-box{
  background:#ffffff;
  padding:2.5rem 2rem;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
  transition:transform .3s ease, box-shadow .3s ease;
}

.testimonial-box:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.testimonial-box p{
  font-size:1rem;
  color:#555;
  margin-bottom:1.5rem;
  line-height:1.7;
}

.testimonial-box h5{
  font-size:1.1rem;
  color:#5b2d8b;
  margin-bottom:.2rem;
}

.testimonial-box span{
  font-size:.9rem;
  color:#6c757d;
}

.about{padding:60px 20px; width:100%}
.about-heading{font-size:28px; font-weight:700; color:#0b2740}
.about-text{color:#374151}

.services{padding:48px 20px; width:100%}
.service-card{
  background:linear-gradient(180deg,#fff,#fbfdff);
  border-radius:14px;
  padding:22px;
  height:100%;
  border-top:4px solid var(--primary);
  transition:transform .18s ease, box-shadow .18s ease;
}

.display-6 {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  padding: 12px 18px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.display-6:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 26px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.service-card h6{color:var(--primary); font-weight:700}
.service-card p{color:var(--muted)}

.section-title.text-center {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  padding: 12px 18px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.section-title.text-center:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 26px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.why-choose-us{padding:64px 20px; background:var(--bg); width:100%}
.feature-card{
  background:#fff;
  border-radius:12px;
  padding:18px;
  transition:transform .18s ease, box-shadow .18s ease;
  border-left:4px solid var(--primary);
}
.feature-card h5{color:#0b2740; margin-bottom:6px}
.feature-card p{color:var(--muted)}

.fw-bold.mb-5 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  padding: 10px 16px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 18px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.fw-bold.mb-5:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 24px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.team-section{padding:54px 20px; width:100%}
.team-card{
  background:linear-gradient(180deg,var(--primary),var(--primary-600));
  color:#fff;
  border-radius:12px;
  padding:20px;
  text-align:center;
  transition:transform .18s ease;
}
.team-card img{width:84px;height:84px;border-radius:50%;background:#fff;padding:10px;object-fit:cover}
.team-card h6{margin:12px 0 6px;font-weight:700}
.team-card p{margin:0;color:#e6eefc}
.team-card:hover{transform:translateY(-6px); box-shadow:0 18px 40px rgba(30,144,255,0.12)}

.fw-bold.mb-3 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  padding: 10px 16px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 18px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.fw-bold.mb-3:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 24px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.cta-section{
  padding:56px 20px;
  background:linear-gradient(90deg, rgba(30,144,255,0.06), rgba(99,179,237,0.03));
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
}
.cta-box{
  background:linear-gradient(180deg, rgba(30,144,255,0.04), rgba(255,255,255,0.5));
  padding:28px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 20px 40px rgba(2,6,23,0.06);
}
.cta-box h2{margin:0 0 12px;color:#04263b}
.cta-box p{color:var(--muted); margin-bottom:16px}

h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  padding: 10px 16px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 18px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

h2:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 24px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.contact-section{padding:64px 20px; width:100%}
.contact-form{
  background:var(--bg);
  padding:28px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(2,6,23,0.04);
}
.contact-form input, .contact-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #e6ecf8;
  resize:vertical;
  font-size:15px;
}
.contact-form input:focus, .contact-form textarea:focus{outline:none; border-color:var(--primary); box-shadow:0 6px 20px rgba(30,144,255,0.06)}
.contact-form button{
  background:var(--primary);
  color:#fff;
  border:0;
  padding:12px 22px;
  border-radius:10px;
  font-weight:700;
}

.footer-section{
  background:#071126;
  color:#cfd9f1;
  padding:60px 20px 30px;
}

.footer-logo{
  height:56px;
  filter:brightness(0) invert(1);
}

.footer-desc{
  color:#9fb2d9;
  line-height:1.7;
  font-size:14.5px;
}

.footer-heading{
  font-size:17px;
  font-weight:700;
  margin-bottom:14px;
  color:#ffffff;
}

.footer-section p{
  font-size:14px;
  color:#b6c6e3;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:#cfd9f1;
  text-decoration:none;
  transition:.2s ease;
}

.footer-links a:hover{
  color:#c3a6e5;
  padding-left:4px;
}

.footer-social{
  display:flex;
  gap:12px;
  justify-content:flex-start;
}

.footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.06);
  color:#ffffff;
  transition:.25s ease;
}

.footer-social a:hover{
  background:#5b2d8b;
  transform:translateY(-4px);
}

.footer-hr{
  margin:30px 0 16px;
  border:0;
  height:1px;
  background:rgba(255,255,255,0.08);
}

.footer-bottom{
  font-size:13px;
  color:#9fb2d9;
}
.footer-bottom a{
  color:#c3a6e5;
  text-decoration:none;
}

.section-hover-active *:not(.hovered){
  filter: blur(4px) brightness(70%);
  pointer-events: none;
  transition: all 0.25s ease;
}

.interactive-box{
  transition: all 0.25s ease;
  z-index: 2;
}

.interactive-box.hovered{
  filter: none !important;
  transform: translateY(-6px);
  pointer-events: auto;
  z-index: 5;
}
@media (max-width:768px){
  .hero{
    text-align:center;
    flex-direction:column;
    justify-content:center;
  }
}