* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
}

body {
  background: #0b0b14;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #000000bf;
  padding: 15px 8%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
}

.logo h2 {
  font-size: 20px;
  color: #111827;
}

.logo span {
  color: #2563eb;
}

/* NAV */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #f6f8fa;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #049ba8;
}

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 950px;
  background: linear-gradient(135deg, #000000, #11181a);
  border-radius: 15px;
  padding: 40px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.mega-parent.active .mega-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
}

.mega-item {
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.mega-item:hover {
  background: #01393e37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.mega-item h4 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #fff;
}

.mega-item p {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}

.mega-item a {
  display: block;
  font-size: 14px;
  color: #049ba8;
  margin-bottom: 6px;
}

/* CTA */
.btn {
  padding: 10px 22px;
  background: linear-gradient(45deg, #11182745, #11182700);
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  border: 1px solid #026f79;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 100, 235, 0);
  color: #026f79;
}

/* MOBILE BUTTON */
.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 900;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.abc {
  display: none;
}

/* MOBILE STYLES */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 320px;
    background: #000000e6;
    flex-direction: column;
    padding: 25px;
    transition: 0.4s ease;
    overflow-y: auto;
    z-index: 1001;
  }

  .abc {
    display: flex;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-right: 280px;
  }

  .close-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #026f79;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
  }

  .close-btn span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: white;
  }

  .close-btn span:first-child {
    transform: rotate(45deg);
  }

  .close-btn span:last-child {
    transform: rotate(-45deg);
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
  }

  .nav-links a {
    display: block;
    width: 100%;
    font-size: 16px;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 15px 0;
    display: none;
    grid-template-columns: 1fr;
  }

  .mega-parent.active .mega-menu {
    display: grid;
  }

  .btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}
/* =========================Hero section============================== */
/* HERO SECTION */
/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  overflow: hidden;
}

/* Background Video */
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.65) contrast(1.1);
}

/* Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 187, 249, 0.25),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(155, 93, 229, 0.25),
      transparent 40%
    ),
    linear-gradient(to bottom, rgba(5, 10, 25, 0.7), rgb(0 0 0 / 0%));
  z-index: -1;
}

/* Floating lights */
.hero-lights span {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: floatLight 12s infinite ease-in-out;
}

.hero-lights span:nth-child(1) {
  background: #00bbf9;
  top: 10%;
  left: 10%;
}

.hero-lights span:nth-child(2) {
  background: #9b5de5;
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

.hero-lights span:nth-child(3) {
  background: #00f5d4;
  top: 50%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes floatLight {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -40px) scale(1.2);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Glass Card */
.hero-content {
  max-width: 1000px;
  padding: 50px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0);
  /* backdrop-filter: blur(14px); */
  border: 1px solid rgba(255, 255, 255, 0);
  animation: fadeUp 1.2s ease;
  position: relative;
  z-index: 2;
}

/* Animated border */
.hero-content::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  /* background: linear-gradient(120deg, #00bbf9, #9b5de5, #00f5d4, #00bbf9); */
  background-size: 300%;
  animation: borderMove 8s linear infinite;

  /* -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0); */
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes borderMove {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 300%;
  }
}

/* Text animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tagline */
.tagline {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #00f5d4;
}

/* Heading */
.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  animation: fadeUp 1s ease 0.2s both;
}

/* Gradient typing text */
#typing-text {
  background: linear-gradient(90deg, #00f5d4, #00bbf9, #9b5de5, #00f5d4);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s linear infinite;
  position: relative;
}

#typing-text::after {
  content: "|";
  animation: blink 1s infinite;
  margin-left: 6px;
}

/* Glow behind typing */
#typing-text::before {
  content: "";
  position: absolute;
  inset: -10px;
  /* background: linear-gradient(90deg, #00bbf9, #9b5de5); */
  filter: blur(25px);
  opacity: 0.6;
  z-index: -1;
}

@keyframes gradientMove {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 300%;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Paragraph */
.hero p {
  margin-top: 25px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  color: #d6e2ea;
  line-height: 1.7;
  animation: fadeUp 1s ease 0.5s both;
}

/* Buttons */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

.btn {
  padding: 14px 34px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* Primary button */
.btn-primary {
  background: linear-gradient(90deg, #00bbf9, #2563eb);
  color: #000;
  box-shadow: 0 0 25px rgba(0, 187, 249, 0.7);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 187, 249, 1);
}

/* Shine effect */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Outline button */
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #00f5d4;
  color: #00f5d4;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero p {
    font-size: 16px;
  }
}

/* ============================end hero section========================== */

/* ================================== about section =======================*/
.about-section {
  max-width: 1300px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #0b0b14;
}

/* Left Text Column */
.about-heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}
.about-heading h2 span {
  background: linear-gradient(177deg, #00f5d4, #00bbf9, #9b5de5, #9b5de5);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 20px;
}
h4 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #fff;
}
/* Stats Boxes */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.stat-box {
  border: 1px solid #222;
  padding: 12px;
  border-radius: 0px;
  transition: all 0.3s;
  text-align: start;
}
strong {
  color: #00f0ff;
}
.stat-box:hover {
  border-color: #00f0ff;
  /* box-shadow: 0 0 15px rgba(0, 240, 216, 0.5); */
}
.stat-box h3 {
  font-size: 2rem;
  margin: 0;
  color: #00f0ff;
}
.stat-box p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #aaa;
}

/* Right Image Grid */
.image-grid {
  display: grid;
  grid-template-areas:
    "big top-right"
    "big bottom-right";
  gap: 15px;
}
.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.big {
  grid-area: big;
  height: 100%;
}
.top-right {
  grid-area: top-right;
  height: 48%;
}
.bottom-right {
  grid-area: bottom-right;
  height: 48%;
}

/* Fourth Blockchain Image below stats */
.blockchain-image {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.blockchain-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
  }
  .image-grid {
    grid-template-areas:
      "big"
      "top-right"
      "bottom-right";
  }
  .image-grid img {
    height: auto;
  }
}
/* =======================about section end====================== */
/* =========================== Services Section ===================== */

.services-section {
  background: #020b14;
  padding: 40px 20px;
  color: white;
}

.services-container {
  max-width: 1300px;
  margin: auto;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h5 {
  letter-spacing: 3px;
  font-size: 13px;
  color: #7df9ff;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: 44px;
  font-weight: 700;
}

.services-header span {
  background: linear-gradient(90deg, #00bbf9, #2563eb);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-header p {
  color: #9db4c0;
  margin-top: 15px;
}

/* GRID */

/* GRID - Auto Responsive */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* CARD STYLE */

.service-card {
  position: relative;
  padding: 35px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 255, 255, 0.15);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Glow Border Effect */

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #00bbf9, #2563eb, #00f2ff);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

/* Hover */

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 240, 255, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

/* ICON */

.icon {
  font-size: 30px;
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #00bbf9, #2563eb);
  color: white;
}

/* Title */

.service-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Description */

.service-card p {
  color: #a8c0cf;
  font-size: 15px;
  line-height: 1.6;
}

/* Number badge */

.number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
}

/* CARD */

.service-card {
  position: relative;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  background: rgba(0, 20, 30, 0.6);
  transition: 0.4s;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #00b3ff;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}

.icon {
  font-size: 26px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00bbf9, #2563eb);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  color: #9db4c0;
  font-size: 14px;
}

.number {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 12px;
  color: #7aa3b7;
}

/* Responsive */

@media (max-width: 768px) {
  .services-header h2 {
    font-size: 32px;
  }
}
/* ==============================services section end ==================== */
/* ============================= state bar============================== */

.stats-bar-section {
  padding: 60px 20px;
  background: #060606;
}

/* MAIN BAR */

.stats-bar {
  max-width: 1200px;
  margin: auto;
  padding: 40px 50px;
  border-radius: 20px;

  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;

  background: linear-gradient(135deg, #0b1830, #0a1225);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ITEM */

.stats-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 220px;
}

/* ICON */

.stats-icon {
  font-size: 38px;
  color: white;
}

/* TEXT */

.stats-item p {
  margin: 0;
  color: #cfd8ff;
  font-size: 15px;
}

.stats-item h3 {
  margin: 0;
  font-size: 42px;
  color: #41a1ff;
  font-weight: 700;
}

/* Responsive */

@media (max-width: 768px) {
  .stats-bar {
    justify-content: center;
    text-align: left;
    padding: 30px;
  }

  .stats-item {
    width: 100%;
  }

  .stats-item h3 {
    font-size: 34px;
  }
}
/* ========================state bar end ==================================== */
/* ================================= Why choose section========================= */

/* SECTION */

.adv-slider-section {
  background: #020b14;
  padding: 110px 0;
  color: white;
  overflow: hidden;
}

/* HEADER */

.adv-slider-header {
  text-align: center;
  margin-bottom: 70px;
}

.adv-slider-header h5 {
  letter-spacing: 3px;
  font-size: 13px;
  color: #7df9ff;
}

.adv-slider-header h2 {
  font-size: 44px;
  margin: 10px 0;
}

.adv-slider-header span {
  background: linear-gradient(90deg, #00bbf9, #2563eb);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adv-slider-header p {
  color: #9db4c0;
}

/* SLIDER */

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TRACK */

.slide-track {
  display: flex;
  width: calc(300px * 18);
  animation: scroll 35s linear infinite;
}

/* AUTO SCROLL */
/* Continuous auto scroll */
.slide-track {
  display: flex;
  gap: 20px;
  animation: scroll 35s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.slider:hover .slide-track {
  animation-play-state: paused;
}

/* CARD */

.slide-card {
  width: 280px;
  margin: 0 15px;
  padding: 30px;
  border-radius: 14px;

  background: rgba(0, 20, 30, 0.65);
  border: 1px solid rgba(0, 187, 255, 0.25);

  transition: 0.4s;
}

.slide-card:hover {
  transform: translateY(-10px);
  border-color: #00f0ff;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.25);
}

/* ICON */

.slide-card i {
  font-size: 26px;
  color: #00f0ff;
  margin-bottom: 15px;
  display: block;
}

.slide-card p {
  color: #9db4c0;
  font-size: 14px;
}

/* PAUSE ON HOVER */

.slider:hover .slide-track {
  animation-play-state: paused;
}

/* Responsive */

@media (max-width: 768px) {
  .adv-slider-header h2 {
    font-size: 30px;
  }

  .slide-card {
    width: 240px;
  }
}
a {
  text-decoration: none;
}
/* ================================= why choose end=========================== */

/* ======================================= CTA ==================================== */

/* ================= CTA SECTION ================= */
/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  background: #1a1c1f49;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(135deg, #00f0ff82, #2563eb54);
  border-radius: 20px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
}

/* LEFT IMAGE */
.cta-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.circle-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
}

.circle-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  /* border: 8px solid #fff; */
}

/* RINGS */
.ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 10px solid transparent;
}

.ring1 {
  border-top: 10px solid #008cff;
  border-left: 10px solid #008cff;
  top: -20px;
  left: -20px;
  /* animation: rotate 6s linear infinite; */
}

.ring2 {
  border-bottom: 10px solid #f0f1e8;
  border-right: 10px solid #f8f9f4;
  top: -20px;
  left: -20px;
  /* animation: rotate 8s linear infinite reverse; */
}

/* RIGHT CONTENT */
.cta-content {
  flex: 1;
  color: #fff;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #f5f6f3;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #25d7f7;
  transform: translateY(-3px);
}

/* ANIMATION */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }

  .cta-content h2 {
    font-size: 32px;
  }
}
/* ========================================== CTA end ================================== */

/* ===================================== footer =========================== */

/* FOOTER */
.main-footer {
  background: #020b14;
  padding-top: 90px;
  border-top: 1px solid rgba(0, 255, 255, 0.15);
}

/* CONTAINER */
.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding: 0 20px 60px;
}

/* LOGO */
.footer-logo {
  background: linear-gradient(90deg, #00bbf9, #2563eb);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
  margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
  color: #9db4c0;
  line-height: 1.7;
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  color: #fff;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #9db4c0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00f0ff;
  padding-left: 6px;
}

/* CONTACT */
.footer-contact i {
  color: #00f0ff;
  margin-right: 8px;
}

/* SOCIAL */
.footer-social {
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  margin-right: 8px;
  color: #00f0ff;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #00f0ff;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(0, 255, 255, 0.15);
  color: #9db4c0;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ===================================footer end================================= */

/* ================================about page======================== */

/* ================= ABOUT HERO ================= */
/* ================= ABOUT HERO ================= */
.about-hero {
  text-align: center;
  padding: 160px 20px 120px;
  background:
    linear-gradient(rgba(5, 10, 25, 0.75), rgba(0, 0, 0, 0.85)),
    url("../img/aboutpage.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00f5d4, #00bbf9, #9b5de5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeDown 1.2s ease forwards;
}

.about-hero p {
  max-width: 750px;
  margin: auto;
  color: #cfd8dc;
  font-size: 18px;
  line-height: 1.7;
  animation: fadeUp 1.4s ease forwards;
}

/* ================= ABOUT CONTENT ================= */
.about-content {
  max-width: 1400px;
  margin: auto;
  padding-bottom: 40px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px; /* reduce gap for compact layout */
  align-items: center;
  margin-top: 70px;
}

.about-img {
  overflow: hidden;
  border-radius: 20px;
  max-width: 400px; /* limit image container width */
  margin: auto; /* center the image in its grid column */
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.6s;
}

.about-img:hover img {
  transform: scale(1.05); /* slightly smaller hover scale */
}
.about-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #fff;
}

.about-text p {
  color: #b0bec5;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ================= CARDS ================= */
.card-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(16px);
  transition: 0.5s;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.card img {
  width: 50%;
  margin-bottom: 20px;
  transition: transform 0.5s;
}

.card:hover img {
  transform: translateY(-8px) scale(1.1);
}

.card:hover {
  transform: translateY(-12px);
  border-color: #00bbf9;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.card h3 {
  margin-bottom: 15px;
  color: #fff;
}

.card p {
  color: #b0bec5;
  line-height: 1.7;
}

/* ================= STATS ================= */
.stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 45px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.4s,
    border-color 0.4s;
}

.stat:hover {
  transform: translateY(-10px);
  border-color: #9b5de5;
}

.stat h2 {
  font-size: 44px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00bbf9, #9b5de5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat p {
  color: #b0bec5;
}

/* ================= SCROLL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s,
    transform 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= KEYFRAMES ================= */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .about-hero h1 {
    font-size: 36px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .about-content {
    padding: 20px;
  }
}

/* ============================== services page =========================== */
/* Hero Section */
.service-content {
  text-align: center;
  padding: 160px 20px 120px;
  background:
    linear-gradient(rgba(5, 10, 25, 0.75), rgba(0, 0, 0, 0.85)),
    url(../img/services.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.service-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #00f5d4, #00bbf9, #9b5de5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 300;
}

/* General Section Styling */
.service1-row {
  padding: 80px 10%;
  display: flex;
  align-items: center;
  gap: 60px;
  border-bottom: 1px solid #067cae00;
}

.service1-row:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #00091a;
}

.service1-img {
  flex: 1;
  position: relative;
}

.service1-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 15px 15px 0px #1b1818;
}

.service1-text {
  flex: 1;
}

.tag {
  background: var(--primary-red);
  color: white;
  font-size: 11px;
  padding: 4px 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

h2 {
  font-size: 2.2rem;
  margin: 10px 0 20px;
  color: var(--dark-gray);
}
p.description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #c5c1c1;
  margin-bottom: 25px;
}

/* Feature Grid */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.features span {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features span::before {
  content: "→";
  color: #0d5599;
  font-weight: bold;
}

.cta-btn1 {
  padding: 14px 30px;
  border: 1px solid #5f5d5d;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  transition: 0.3s;
  display: inline-block;
}

.cta-btn1:hover {
  background: #05528561;
  color: #0589fd;
}

@media (max-width: 992px) {
  .service1-row,
  .service1-row:nth-child(even) {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }
  .features1 {
    justify-items: center;
  }
  .service1-img img {
    height: 300px;
    box-shadow: none;
  }
}
/* 1. Global Reveal State */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* 2. Specific Transitions for Service Images */
.service1-img {
  overflow: hidden;
}

.service1-img img {
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.service1-row:hover .service1-img img {
  transform: scale(1.08); /* Subtle zoom on hover */
}

/* 3. Button Interaction Animation */
.cta-btn1 {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-btn1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-red);
  transition: all 0.3s ease;
  z-index: -1;
}

.cta-btn1:hover::after {
  height: 100%;
}

/* 4. Feature Icon Animation */
.features span {
  transition: transform 0.3s ease;
  color: #fff;
}

.features span:hover {
  transform: translateX(10px);
  color: #248dd8;
}

/* =============================how we work========================== */
.container1 {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}
/* Header Styles */
.badge {
  background-color: #096dac;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

h2 {
  font-size: 24px;
  margin: 0 0 15px 0;
  font-weight: 800;
  background: linear-gradient(90deg, #00bbf9, #2563eb);
  background-size: 264%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: #cecaca;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
  font-weight: 300;
}

/* Grid Layout */
.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  text-align: left;
}

/* Card Styles */
.card1 {
  background: #06467300;
  border: 1px solid #969a9d68;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.card1:hover {
  border: 1px solid #67b7f8a1;
}

.card1.image-card {
  padding: 0;
  border: none;
  overflow: hidden;
}

.card1.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number {
  background: #1276b0;
  color: white;
  width: 40px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin-bottom: 25px;
}

.label {
  color: #1585c6;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 20px;
  margin: 0 0 15px 0;
  font-weight: 700;
  color: #fff;
}

p {
  font-size: 14px;
  color: #ffff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bottom-dash {
  width: 30px;
  height: 12px;
  background-color: #064d80;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .lifecycle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lifecycle-grid {
    grid-template-columns: 1fr;
  }
  h2 {
    font-size: 32px;
  }
  .why-list {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
/* 1. Initial State for Cards (Invisible) */
.card {
  opacity: 0;
  transform: translateY(30px);
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease,
    opacity 0.6s ease;
}

/* 2. Hover Effect */
.card:hover {
  transform: translateY(-10px) !important; /* Lift up */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #ddd;
}

.card:hover .bottom-dash {
  background-color: var(--primary-red); /* Dash lights up red on hover */
  width: 50px;
  transition: all 0.3s ease;
}

/* 3. Animation Class (Triggered by JS) */
.card.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* 4. Image card specific hover */
.image-card:hover img {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

/* ====================================mlm solutions====================== */
.mlm-hero {
  background:
    linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)),
    url("../img/mlmbg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 160px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.hero-badge {
  background: #0984e8;
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
}

.mlm-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.1;
}

.mlm-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.btn-main {
  background: #0984e8;
  color: white;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  transition: 0.4s;
  display: inline-block;
  border: 1px solid #0984e8;
}

.btn-main:hover {
  background: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(139, 0, 0, 0);
}

/* --- INFO SECTION --- */
.section {
  padding: 100px 20px;
}
.container {
  max-width: 1200px;
  margin: auto;
}

.about-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #00bbf9, #2563eb);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #79afec;
  margin-top: 10px;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 30px 30px 0px #f1f5f9;
}

/* --- FEATURE CARDS --- */
.bg-light {
  background: #579aff19;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #3332321c;
  padding: 40px;
  border: 1px solid #3e3e3f;
  transition: 0.4s;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #1a83f4;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-card i {
  font-size: 45px;
  color: #0973ec;
  display: block;
  margin-bottom: 20px;
}

/* --- PLAN CHIPS --- */
.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.plan-chip {
  padding: 15px 30px;
  background: white;
  border: 1px solid #ddd;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-blue);
  transition: 0.3s;
  cursor: default;
}

.plan-chip:hover {
  background: #00000000;
  color: white;
  border-color: #0984e8;
}

/* --- WHY SECTION --- */
.bg-dark {
  background: var(--dark-blue);
  color: #fff;
  position: relative;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.why-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.why-item i {
  color: #22c55e;
  font-size: 20px;
}

/* ============================ contact========================== */

.contact-image-section {
  background: #020b14;
  padding: 100px 20px;
  color: white;
}

.contact-image-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */

.contact-image-left {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.contact-image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.contact-image-left:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.image-overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.image-overlay p {
  font-size: 14px;
  color: #c5d8e2;
}

/* RIGHT CONTENT */

.contact-image-right h2 {
  font-size: 38px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00bbf9, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-intro {
  color: #9db4c0;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.info-box {
  padding: 25px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 255, 0.15);
  transition: 0.3s;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 240, 255, 0.15);
}

.info-box h4 {
  margin-bottom: 10px;
  color: #00bbf9;
}

.info-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #c5d8e2;
}

/* Responsive */

@media (max-width: 992px) {
  .contact-image-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-image-right h2 {
    font-size: 28px;
  }
}
