/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* =========================
   GLOBAL
========================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#070b17;
  color:#fff;
  overflow-x:hidden;
}

/* =========================
   CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar{
  width:8px;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(#00e0ff,#7a3cff);
  border-radius:20px;
}

/* =========================
   OVERLAY
========================= */

.overlay{
  position:fixed;
  inset:0;

  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(6px);

  opacity:0;
  visibility:hidden;

  transition:0.4s ease;

  z-index:998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* =========================
   HEADER
========================= */
.header{
  width:100%;
  height:82px;

  position:sticky;
  top:0;
  left:0;

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

  padding:0 6%;

  z-index:999;

  background:rgba(5,8,20,0.55);
  backdrop-filter:blur(20px);

  border-bottom:1px solid rgba(255,255,255,0.06);

  /* premium depth */
  box-shadow:
  0 15px 50px rgba(0,0,0,0.45);
}

/* soft glow top layer */
.header::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;

  background:linear-gradient(90deg,transparent,#00e0ff,#7a3cff,transparent);
  opacity:0.8;
}

/* animated bottom accent */
.header::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:2px;

  background:linear-gradient(90deg,#00e0ff,#7a3cff,#00ffb3,#00e0ff);
  background-size:300% 100%;
  animation:lineFlow 5s linear infinite;

  opacity:0.5;
}

@keyframes lineFlow{
  0%{background-position:0%}
  100%{background-position:300%}
}

/* =========================
   LOGO WRAPPER
========================= */

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;

  transition:0.3s ease;
}

.logo:hover{
  transform:translateY(-1px);
}

/* ICON BOX */
.logo-icon{
  width:60px;
  height:60px;

  border-radius:16px;

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

  background:linear-gradient(135deg,#00e0ff,#7a3cff);
  position:relative;

  box-shadow:
  0 0 20px rgba(0,224,255,0.25),
  0 0 40px rgba(122,60,255,0.15);
}

/* inner glow ring */
.logo-icon::after{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.15);
}

/* IMAGE */
.logo-img{
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scale(1.2);
  filter:drop-shadow(0 0 6px rgba(0,224,255,0.4));
}

/* =========================
   TEXT STYLE (CLEAN PREMIUM)
========================= */

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

/* MAIN TITLE */
.logo-text h1{
  font-size:26px;
  font-weight:900;
  letter-spacing:1px;

  background:linear-gradient(90deg,#ffffff,#00e0ff,#7a3cff,#ffffff);
  background-size:300% auto;

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  animation:textGlowFlow 4s linear infinite;

  text-transform:uppercase;

  position:relative;
}

/* glowing underline */
.logo-text h1::after{
  content:"";
  position:absolute;
  bottom:-4px;
  left:0;

  width:100%;
  height:2px;

  background:linear-gradient(90deg,#00e0ff,#7a3cff);
  border-radius:10px;

  opacity:0.6;
}

/* SUB TITLE */
.logo-text span{
  font-size:11px;
  letter-spacing:6px;
  font-weight:700;

  color:rgba(191,243,255,0.75);

  margin-top:4px;
  margin-left:65px;
  text-transform:uppercase;

  /* premium glow text */
  text-shadow:
  0 0 10px rgba(0,224,255,0.25),
  0 0 20px rgba(122,60,255,0.15);
}

/* animation */
@keyframes textGlowFlow{
  0%{background-position:0%}
  100%{background-position:300%}
}

/* hover effect */
.logo-text:hover h1{
  letter-spacing:2px;
  text-shadow:0 0 18px rgba(0,224,255,0.3);
}

/* =========================
   MENU BUTTON
========================= */

.menu-btn{
  width:54px;
  height:54px;

  border:none;
  outline:none;
  cursor:pointer;

  border-radius:16px;

  background:
  linear-gradient(135deg,#121a33,#0a1022);

  color:#fff;
  font-size:20px;

  border:1px solid rgba(255,255,255,0.08);

  transition:0.3s ease;
}

.menu-btn:hover{
  transform:translateY(-2px);

  background:
  linear-gradient(135deg,#00d9ff,#7a3cff);
}

/* =========================
   SIDEBAR
========================= */

.sidebar{
  position:fixed;
  top:0;
  right:-100%;

  width:50%;
  max-width:420px;
  min-width:280px;

  height:100vh;

  z-index:1000;

  overflow:hidden;

  transition:0.45s ease;

  background:
  linear-gradient(
  180deg,
  rgba(10,14,30,0.98),
  rgba(4,8,20,0.98)
  );

  backdrop-filter:blur(20px);

  border-left:1px solid rgba(255,255,255,0.08);
}

.sidebar.active{
  right:0;
}

/* =========================
   SIDEBAR GLOW
========================= */

.sidebar-glow{
  position:absolute;

  width:420px;
  height:420px;

  border-radius:50%;

  background:
  radial-gradient(circle,
  rgba(0,224,255,0.22),
  rgba(122,60,255,0.18),
  transparent);

  top:-120px;
  right:-120px;

  filter:blur(10px);

  z-index:-1;
}

/* =========================
   SIDEBAR TOP
========================= */

.sidebar-top{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:28px 24px;

  border-bottom:1px solid rgba(255,255,255,0.08);
}

.sidebar-logo{
  display:flex;
  align-items:center;
  gap:12px;

  font-size:18px;
  font-weight:700;
}

.sidebar-logo i{
  color:#00e0ff;
}

/* =========================
   CLOSE BUTTON
========================= */

.close-btn{
  width:42px;
  height:42px;

  border:none;
  cursor:pointer;

  border-radius:14px;

  background:#131b34;
  color:#fff;

  font-size:18px;

  transition:0.3s ease;
}

.close-btn:hover{
  background:#00d9ff;
  color:#000;
}

/* =========================
   MENU LINKS
========================= */

.menu-links{
  list-style:none;
  padding:24px;
}

.menu-links li{
  margin-bottom:18px;
}

.menu-links a{
  display:flex;
  align-items:center;
  gap:16px;

  text-decoration:none;

  padding:18px;

  border-radius:18px;

  color:#dce8ff;

  font-size:16px;
  font-weight:500;

  background:
  rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.05);

  transition:0.3s ease;
}

.menu-links a:hover{
  transform:translateX(6px);

  background:
  linear-gradient(
  135deg,
  rgba(0,224,255,0.16),
  rgba(122,60,255,0.16)
  );

  border-color:rgba(0,224,255,0.2);
}

.menu-links i{
  color:#00d9ff;
}

/* =========================
   HERO
========================= */

.hero{
  width:100vw;

  margin:0;
  padding:0;

  overflow:hidden;

  line-height:0;
}

/* HERO IMAGE */

.hero-image{
  width:100vw;
  height:auto;

  display:block;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .sidebar{
    width:78%;
  }

}

@media(max-width:480px){

  .header{
    padding:0 5%;
  }

  .logo{
    gap:10px;
  }

  .logo-icon{
    width:48px;
    height:48px;
  }

  .logo-icon i{
    font-size:20px;
  }

  .logo-text h1{
    font-size:20px;
  }

  .logo-text span{
    font-size:10px;
    letter-spacing:3px;
  }

  .menu-btn{
    width:48px;
    height:48px;

    font-size:18px;
  }

  .sidebar{
    width:85%;
  }

}

/* =========================
   HERO DESC (INTEGRATED LOOK)
========================= */

/* =========================
   HERO DESCRIPTION SECTION
========================= */

.hero-desc{
  width:100%;
  padding:30px 6% 50px;

  text-align:center;

  background:linear-gradient(
    to bottom,
    rgba(7,11,23,0.15),
    rgba(7,11,23,0.95)
  );
}

/* =========================
   TITLE (ANIMATED)
========================= */

.hero-desc h2{
  font-size:32px;
  font-weight:900;

  letter-spacing:0.5px;

  background:linear-gradient(90deg,#ffffff,#00e0ff,#7a3cff);
  background-size:200%;

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  animation:shine 3s linear infinite;

  margin-bottom:14px;
}

/* =========================
   DESCRIPTION TEXT
========================= */

.hero-desc p{
  font-size:15px;
  line-height:27px;

  color:#b7c7e6;

  max-width:900px;
  margin:auto;

  opacity:0.95;

  animation:fadeUp 0.8s ease;
}

/* =========================
   BUTTON WRAPPER
========================= */

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:18px;

  margin-top:25px;
  flex-wrap:wrap;
}

/* =========================
   COMMON BUTTON STYLE
========================= */

.play-btn,
.download-btn{
  display:flex;
  align-items:center;
  gap:10px;

  text-decoration:none;

  padding:14px 32px;

  border-radius:14px;

  font-size:15px;
  font-weight:700;

  letter-spacing:0.4px;

  position:relative;
  overflow:hidden;

  transition:0.35s ease;

  transform:translateZ(0);
}

/* =========================
   SHINE EFFECT
========================= */

.play-btn::before,
.download-btn::before{
  content:"";
  position:absolute;

  top:0;
  left:-120%;

  width:60%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );

  transform:skewX(-20deg);
}

/* =========================
   PLAY BUTTON (FLOATING + GLOW)
========================= */

.play-btn{
  color:#fff;

  background:linear-gradient(135deg,#00d9ff,#7a3cff);

  border:1px solid rgba(255,255,255,0.1);

  box-shadow:
  0 10px 30px rgba(0,224,255,0.25),
  0 0 60px rgba(122,60,255,0.2);

  animation:floatPulse 2.5s ease-in-out infinite;
}

/* HOVER */

.play-btn:hover{
  transform:translateY(-6px) scale(1.08);

  box-shadow:
  0 20px 50px rgba(0,224,255,0.45),
  0 0 80px rgba(122,60,255,0.3);
}

/* =========================
   DOWNLOAD BUTTON (GLASS STYLE)
========================= */

.download-btn{
  color:#fff;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.18);

  backdrop-filter:blur(10px);
}

.download-btn:hover{
  transform:translateY(-6px) scale(1.05);

  background:rgba(255,255,255,0.12);

  border-color:rgba(0,224,255,0.4);
}

/* =========================
   SHINE ANIMATION TRIGGER
========================= */

.play-btn:hover::before,
.download-btn:hover::before{
  animation:shineMove 0.8s ease forwards;
}

/* =========================
   ACTIVE CLICK EFFECT
========================= */

.play-btn:active,
.download-btn:active{
  transform:translateY(-2px) scale(0.98);
}

/* =========================
   KEYFRAMES
========================= */

@keyframes shine{
  0%{ background-position:0%; }
  100%{ background-position:200%; }
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes shineMove{
  0%{ left:-120%; }
  100%{ left:120%; }
}

@keyframes floatPulse{
  0%{
    transform:translateY(0);
    box-shadow:
    0 10px 30px rgba(0,224,255,0.25),
    0 0 50px rgba(122,60,255,0.15);
  }

  50%{
    transform:translateY(-6px);
    box-shadow:
    0 18px 45px rgba(0,224,255,0.35),
    0 0 70px rgba(122,60,255,0.25);
  }

  100%{
    transform:translateY(0);
    box-shadow:
    0 10px 30px rgba(0,224,255,0.25),
    0 0 50px rgba(122,60,255,0.15);
  }
}


/* =========================
   APP INFO SECTION
========================= */

.app-info{
  width:100%;
  padding:40px 6%;

  background:linear-gradient(
    to bottom,
    rgba(7,11,23,0.2),
    rgba(7,11,23,0.95)
  );

  text-align:center;
}

/* TITLE */

.app-info h3{
  font-size:26px;
  font-weight:900;

  margin-bottom:25px;

  background:linear-gradient(to right,#ffffff,#00e0ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* GRID */

.info-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

  gap:15px;

  max-width:1100px;
  margin:auto;
}

/* ITEM CARD */

.info-item{
  padding:16px 14px;

  border-radius:14px;

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.08);

  text-align:left;

  transition:0.3s ease;
}

.info-item:hover{
  transform:translateY(-4px);

  border-color:rgba(0,224,255,0.3);

  background:rgba(255,255,255,0.06);
}

/* LABEL */

.info-item span{
  font-size:12px;
  color:#8da4d0;

  letter-spacing:1px;
}

/* VALUE */

.info-item p{
  margin-top:6px;

  font-size:15px;
  font-weight:600;

  color:#ffffff;
}

/* FULL WIDTH ITEM */

.info-item.full{
  grid-column:1 / -1;
}


/* =========================
   STRATEGY SECTION
========================= */

.strategy{
  width:100%;
  padding:50px 6%;

  background:linear-gradient(
    to bottom,
    rgba(7,11,23,0.15),
    rgba(7,11,23,0.95)
  );

  text-align:center;
}

/* TITLE */

.strategy h2{
  font-size:26px;
  font-weight:900;

  margin-bottom:15px;

  background:linear-gradient(to right,#ffffff,#00e0ff,#7a3cff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* INTRO TEXT */

.strategy .intro{
  max-width:900px;
  margin:auto;

  font-size:15px;
  line-height:28px;

  color:#b7c7e6;

  margin-bottom:30px;
}

/* GRID */

.strategy-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

  gap:18px;

  max-width:1100px;
  margin:auto;
}

/* CARD */

.strategy-card{
  padding:18px 16px;

  border-radius:14px;

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.08);

  text-align:left;

  transition:0.3s ease;
}

.strategy-card:hover{
  transform:translateY(-5px);

  background:rgba(255,255,255,0.06);

  border-color:rgba(0,224,255,0.3);
}

/* CARD TITLE */

.strategy-card h3{
  font-size:16px;
  font-weight:700;

  margin-bottom:8px;

  color:#ffffff;
}

/* CARD TEXT */

.strategy-card p{
  font-size:14px;
  line-height:24px;

  color:#b9c7e5;
}

/* =========================
   SLIDER
========================= */

.slider{
  width:100%;
  position:relative;
  overflow:hidden;
  background:#000;
}

/* REMOVE absolute layout */
.slides{
  width:100%;
}

.slide{
  display:none;
  width:100%;
}

.slide.active{
  display:block;
}

/* FULL IMAGE NO CUT NO BLACK SPACE ISSUE */
.slide img{
  width:100%;
  height:auto;      /* 🔥 KEY FIX */
  display:block;
}

/* CAPTION */
.slide-caption{
  position:absolute;
  bottom:15px;
  left:15px;

  color:#fff;
  background:rgba(0,0,0,0.5);
  padding:8px 12px;
  border-radius:6px;
  font-size:14px;
}

/* BUTTONS */
.prev, .next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;

  background:rgba(0,0,0,0.4);
  color:#fff;

  border:none;
  width:40px;
  height:40px;
}

.prev{ left:10px; }
.next{ right:10px; }

@media(max-width:768px){
  .prev,.next{
    width:32px;
    height:32px;
  }

  .slide-caption{
    font-size:12px;
  }
}

/* BUTTONS */


/* =========================
   FEATURES SECTION
========================= */

.features{
  width:100%;
  padding:50px 6%;

  text-align:center;

  background:linear-gradient(
    to bottom,
    rgba(7,11,23,0.15),
    rgba(7,11,23,0.95)
  );
}

/* TITLE */

.features h2{
  font-size:26px;
  font-weight:900;

  margin-bottom:15px;

  background:linear-gradient(to right,#ffffff,#00e0ff,#7a3cff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* INTRO */

.features-intro{
  max-width:900px;
  margin:auto;

  font-size:15px;
  line-height:28px;

  color:#b7c7e6;

  margin-bottom:30px;
}

/* GRID */

.features-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

  gap:18px;

  max-width:1100px;
  margin:auto;
}

/* CARD */

.feature-card{
  padding:18px 16px;

  border-radius:14px;

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.08);

  text-align:left;

  transition:0.3s ease;
}

.feature-card:hover{
  transform:translateY(-5px);

  background:rgba(255,255,255,0.06);

  border-color:rgba(0,224,255,0.3);
}

/* CARD TITLE */

.feature-card h3{
  font-size:16px;
  font-weight:700;

  margin-bottom:8px;

  color:#ffffff;
}

/* CARD TEXT */

.feature-card p{
  font-size:14px;
  line-height:24px;

  color:#b9c7e5;
}

/* =========================
   FAQ SECTION
========================= */

.faq{
  width:100%;
  padding:50px 6%;
  margin-bottom:0;

  padding-bottom:20px;

  text-align:center;

  background:linear-gradient(
    to bottom,
    rgba(7,11,23,0.2),
    rgba(7,11,23,0.95)
  );
}

/* TITLE */

.faq h2{
  font-size:26px;
  font-weight:900;

  margin-bottom:30px;

  background:linear-gradient(to right,#ffffff,#00e0ff,#7a3cff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ITEM */

.faq-item{
  max-width:900px;
  margin:0 auto 14px;

  text-align:left;
}

/* QUESTION */

.faq-question{
  width:100%;

  background:transparent;

  border:none;

  outline:none;

  cursor:pointer;

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

  font-size:16px;
  font-weight:600;

  color:#ffffff;

  padding:14px 0;

  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* ICON */

.icon{
  font-size:20px;
  color:#00e0ff;

  transition:0.3s ease;
}

/* ANSWER */

.faq-answer{
  max-height:0;
  overflow:hidden;

  color:#b9c7e5;

  font-size:14px;
  line-height:26px;

  transition:max-height 0.4s ease;

  padding-right:10px;
}

/* ACTIVE STATE */

.faq-item.active .faq-answer{
  max-height:300px;
  margin-top:10px;
}

.faq-item.active .icon{
  transform:rotate(45deg);
}


/* =========================
   CONCLUSION SECTION (PREMIUM)
========================= */
/* =========================
   CONCLUSION WRAPPER (GOD LEVEL)
========================= */

.conclusion{
  width:100%;
  margin:0;

  /* 👇 FAQ se thoda gap */
  padding:70px 6% 40px;

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

  background:
    radial-gradient(circle at top, rgba(0,224,255,0.08), transparent 55%),
    radial-gradient(circle at bottom, rgba(122,60,255,0.08), transparent 55%),
    #070b17;

  position:relative;
}

/* =========================
   GLASS BOX (ULTRA PREMIUM)
========================= */

.conclusion-box{
  width:100%;
  max-width:950px;

  padding:45px 35px;

  border-radius:26px;

  position:relative;
  overflow:hidden;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.14);

  backdrop-filter:blur(22px);

  box-shadow:
    0 25px 80px rgba(0,0,0,0.55),
    0 0 90px rgba(0,224,255,0.10);

  text-align:center;

  transform:translateY(0);
  transition:0.4s ease;
}

/* hover lift (premium feel) */
.conclusion-box:hover{
  transform:translateY(-6px);
  box-shadow:
    0 35px 100px rgba(0,0,0,0.65),
    0 0 120px rgba(122,60,255,0.15);
}

/* =========================
   GLOW BORDER ANIMATION
========================= */

.conclusion-box::before{
  content:"";
  position:absolute;
  inset:-2px;

  background:linear-gradient(135deg,#00e0ff,#7a3cff,#00ffb3,#00e0ff);

  filter:blur(18px);
  opacity:0.18;

  z-index:-1;
  animation:glowMove 6s linear infinite;
}

/* =========================
   TITLE (SEO + WOW)
========================= */

.conclusion-box h2{
  font-size:30px;
  font-weight:900;

  margin-bottom:15px;

  background:linear-gradient(90deg,#ffffff,#00e0ff,#7a3cff);
  background-size:200%;

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  animation:shine 3s linear infinite;
}

/* =========================
   TEXT
========================= */

.conclusion-box p{
  font-size:15px;
  line-height:29px;

  color:#b9c7e5;

  margin-bottom:20px;
}

/* =========================
   TAGLINE (GLOW IMPACT)
========================= */

.conclusion-glow-text{
  font-size:13px;
  font-weight:800;
  letter-spacing:4px;

  color:#00e0ff;

  margin-bottom:25px;

  text-shadow:0 0 25px rgba(0,224,255,0.5);

  animation:pulse 2s infinite;
}

/* =========================
   BUTTON (FLOAT + SHINE)
========================= */

/* =========================
   FLOATING CTA BUTTON (GOD LEVEL)
========================= */

.conclusion-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:16px 42px;

  border-radius:18px;

  font-size:15px;
  font-weight:900;
  letter-spacing:0.5px;

  text-decoration:none;
  color:#fff;

  background:linear-gradient(135deg,#00d9ff,#7a3cff);

  position:relative;
  overflow:hidden;

  cursor:pointer;

  /* glow */
  box-shadow:
    0 15px 40px rgba(0,224,255,0.25),
    0 0 70px rgba(122,60,255,0.25);

  /* floating animation */
  animation:floatBtn 3s ease-in-out infinite;

  transition:0.35s ease;
}

/* =========================
   HOVER EFFECT (LIFT + ZOOM)
========================= */

.conclusion-btn:hover{
  transform:translateY(-8px) scale(1.10);

  box-shadow:
    0 25px 70px rgba(0,224,255,0.45),
    0 0 120px rgba(122,60,255,0.35);
}

/* =========================
   CLICK EFFECT (PRESS FEEL)
========================= */

.conclusion-btn:active{
  transform:translateY(-2px) scale(0.98);
}

/* =========================
   SHINE ANIMATION
========================= */

.conclusion-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;

  width:60%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  transform:skewX(-20deg);
}

.conclusion-btn:hover::before{
  animation:shineMove 0.8s ease forwards;
}

/* =========================
   FLOAT ANIMATION
========================= */

@keyframes floatBtn{
  0%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-6px);
  }
  100%{
    transform:translateY(0);
  }
}

/* =========================
   SHINE MOVE
========================= */

@keyframes shineMove{
  0%{
    left:-120%;
  }
  100%{
    left:120%;
  }
}

/* =========================
   MOBILE FIX
========================= */

@media(max-width:768px){
  .conclusion-btn{
    width:100%;
    padding:15px 20px;
    font-size:14px;
  }
}

/* =========================
   ANIMATIONS
========================= */

@keyframes pulse{
  0%,100%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(1.05); opacity:0.7; }
}

@keyframes shine{
  0%{ background-position:0%; }
  100%{ background-position:200%; }
}

@keyframes shineMove{
  0%{ left:-120%; }
  100%{ left:120%; }
}

@keyframes glowMove{
  0%{ transform:rotate(0deg) scale(1); }
  100%{ transform:rotate(8deg) scale(1.1); }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .conclusion{
    padding:60px 5% 30px;
  }

  .conclusion-box{
    padding:30px 20px;
    border-radius:20px;
  }

  .conclusion-box h2{
    font-size:22px;
  }

  .conclusion-box p{
    font-size:14px;
  }

}


/* =========================
   FOOTER
========================= */

.footer{
  width:100%;
  position:relative;
  margin-top:0;

  padding-top:60px;
  padding:80px 6% 30px;

  background:#070b17;

  overflow:hidden;
  color:#fff;
}

/* GLOW BACKGROUND */

.footer-glow{
  position:absolute;
  inset:-200px;

  background:
    radial-gradient(circle at 20% 30%, rgba(0,224,255,0.18), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(122,60,255,0.18), transparent 55%);

  filter:blur(60px);
  opacity:0.9;

  animation:footerGlow 6s ease-in-out infinite alternate;
}

/* GRID */

.footer-container{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:30px;

  max-width:1200px;
  margin:auto;
}

/* BRAND */

.footer-brand h2{
  font-size:24px;
  font-weight:900;

  background:linear-gradient(to right,#fff,#00e0ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  margin-bottom:12px;
}

.footer-brand p{
  font-size:14px;
  line-height:26px;
  color:#b9c7e5;
}

/* HEADINGS */

.footer-links h3,
.footer-social h3{
  font-size:16px;
  margin-bottom:14px;

  color:#ffffff;
}

/* LINKS */

.footer-links a{
  display:block;

  text-decoration:none;

  color:#b9c7e5;

  font-size:14px;

  margin-bottom:10px;

  transition:0.3s ease;
}

.footer-links a:hover{
  color:#00e0ff;
  transform:translateX(4px);
}

/* SOCIAL ICONS */

.social-icons{
  display:flex;
  gap:12px;

  margin-bottom:10px;
}

.social-icons a{
  width:40px;
  height:40px;

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

  border-radius:10px;

  background:rgba(255,255,255,0.06);

  color:#fff;

  transition:0.3s ease;
}

.social-icons a:hover{
  background:linear-gradient(135deg,#00d9ff,#7a3cff);

  transform:translateY(-4px) scale(1.1);
}

/* TEXT */

.footer-social p{
  font-size:13px;
  color:#8da4d0;
  line-height:22px;
}




/* =========================
   DISCLAIMER
========================= */

.footer-disclaimer{
  margin-top:25px;
}

.footer-disclaimer h3{
  font-size:16px;
  margin-bottom:10px;
  color:#ffffff;
}

.footer-disclaimer p{
  font-size:13px;
  line-height:22px;

  color:#8da4d0;

  max-width:300px;
}

/* responsive fix */
@media(max-width:900px){
  .footer-disclaimer p{
    max-width:100%;
  }
}
/* BOTTOM */

.footer-bottom{
  position:relative;
  z-index:2;

  text-align:center;

  margin-top:50px;
  padding-top:20px;

  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-bottom p{
  font-size:13px;
  color:#8da4d0;
}

/* ANIMATION */

@keyframes footerGlow{
  0%{ transform:scale(1); }
  100%{ transform:scale(1.1); }
}

/* RESPONSIVE */

@media(max-width:900px){
  .footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:500px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .social-icons{
    justify-content:center;
  }
}


.testimonials{
  padding:90px 6%;
  text-align:center;
  background:
    radial-gradient(circle at top,#101a3a 0%,#070b17 60%),
    linear-gradient(135deg,#070b17,#0b1224);
  position:relative;
  overflow:hidden;
}

/* glowing background effect */
.testimonials::before{
  content:"";
  position:absolute;
  top:-100px;
  left:50%;
  transform:translateX(-50%);
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(79,140,255,0.25), transparent 70%);
  filter:blur(40px);
  z-index:0;
}

.testimonials h2{
  font-size:34px;
  font-weight:800;
  margin-bottom:40px;
  color:#ffffff;
  letter-spacing:1px;
  position:relative;
  z-index:1;
}

/* CARD */
.testimonial-box{
  max-width:750px;
  margin:auto;
  padding:45px 35px;
  border-radius:20px;

  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 0 20px rgba(79,140,255,0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:0.5s ease;
  position:relative;
  z-index:1;
}

/* hover premium feel */
.testimonial-box:hover{
  transform:translateY(-6px) scale(1.01);
  box-shadow:
    0 25px 70px rgba(0,0,0,0.6),
    0 0 25px rgba(79,140,255,0.2);
}

/* TEXT */
.testimonial-box p{
  font-size:20px;
  color:#e5e7eb;
  line-height:1.6;
  margin-bottom:18px;
  min-height:80px;
  transition:0.4s ease;
}

.testimonial-box h4{
  color:#4f8cff;
  font-size:18px;
  font-weight:700;
  letter-spacing:0.5px;
}

/* glowing line accent */
.testimonial-box::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:60%;
  height:2px;
  background:linear-gradient(90deg,transparent,#4f8cff,transparent);
  opacity:0.6;
}


#reviewText, #reviewName{
  transition:0.3s ease;
}

.stats{
  padding:70px 6%;
  text-align:center;
  background:#070b17;
}

.stats h2{
  font-size:30px;
  font-weight:800;
  color:#ffffff;
  margin-bottom:10px;
}

.stats-sub{
  color:#9aa7c7;
  font-size:14px;
  max-width:600px;
  margin:0 auto 30px;
}

/* 2 per row layout */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:15px;
}

/* mobile responsive */
@media(max-width:600px){
  .stats-grid{
    grid-template-columns:1fr;
  }
}

/* card style (clean + matches testimonials) */
.stat-box{
  background:#0f172a;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:14px;
  padding:25px;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  transition:0.3s ease;
}

.stat-box:hover{
  transform:translateY(-3px);
  border-color:rgba(79,140,255,0.3);
}

.stat-box h3{
  font-size:26px;
  font-weight:800;
  color:#4f8cff;
  margin-bottom:6px;
}

.stat-box p{
  color:#cbd5e1;
  font-size:13px;
}


/* CAPTION */

