.service-boxarea {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 45px 35px;
  position: relative;
  transition: all 0.45s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 0 rgba(255, 255, 255, 0);
  overflow: hidden;
}

/* Background Glow */
.service-boxarea::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15), transparent 60%);
  opacity: 0;
  transition: 0.5s;
}

.service-boxarea:hover::after {
  opacity: 1;
}

/* 3D Hover Effect */
.service-boxarea:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 40px 80px rgba(79, 70, 229, 0.25);
}

/* ICON STYLE */
.service-boxarea .icons {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
  transition: 0.4s;
}

.service-boxarea:hover .icons {
  transform: rotate(-6deg) scale(1.1);
}

.service-boxarea .icons img {
  width: 36px;
  filter: brightness(0) invert(1);
}

/* TITLE */
.service-boxarea a {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  display: inline-block;
  transition: 0.3s;
}

.service-boxarea:hover a {
  color: #4f46e5;
}

/* DESCRIPTION */
.service-boxarea p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #475569;
}

/* READ MORE BUTTON */
.service-boxarea .readmore {
  font-weight: 700;
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-boxarea .readmore i {
  transition: 0.4s;
}

.service-boxarea:hover .readmore i {
  transform: translateX(8px);
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.service-boxarea .icons {
  animation: floatIcon 3s ease-in-out infinite;
}



.hero-slide {
  min-height: 750px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-top: 100px;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020753 0%, #6746fc 100%);

}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 18px;
  background: rgba(247, 243, 244, 0.15);
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  font-size: 14px;
}

.hero-slide h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-slide p {
  margin-top: 20px;
  font-size: 17px;
  max-width: 520px;
}



.hero-image-wrapper {
  max-width: 100%;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  object-fit: contain;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-slide h1 {
    font-size: 42px;
  }

  .hero-slide p {
    font-size: 16px;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
    margin: 20px auto 0;
  }
}

@media (max-width: 575px) {
  .hero-slide h1 {
    font-size: 32px;
  }

  .hero-slide p {
    font-size: 14px;
  }

  .hero-btns a {
    width: 80%;
    text-align: center;
  }

  .hero-image {
    max-width: 300px;
  }
}



.mbq-bottom-nav {
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* nav item */
.mbq-nav-item {
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* link fix */
.mbq-nav-item a {
  text-decoration: none;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* icon */
.mbq-nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}

/* hover */
.mbq-nav-item:hover a {
  color: #4f46e5;
}

/* active */
.mbq-nav-item.active a {
  color: #4f46e5;
  font-weight: 600;
}

.mbq-nav-item.active i {
  transform: scale(1.15);
}

@media (min-width: 992px) {
  .mbq-bottom-nav {
    display: none;
  }

  .social_icon {
    display: none;
  }
}