@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap");
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
}
body,
html {
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.active-testimonial {
  border: 4px solid #8b5cf6;
  transform: scale(1.15);
  z-index: 20;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.thumb-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-gradient {
  background: linear-gradient(180deg, #6366f1 0%, #2dd4bf 100%);
}

.icon-circle {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 50%;
  padding: 8px;
  z-index: 20;
}

.inner-circle {
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-link {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-link:hover {
  background-color: #f0fdfa !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: #0891b2 !important;
}

.blog-gradient {
  background: linear-gradient(180deg, #4da1c0 0%, #33bfc0 100%);
}

.sticky-header {
  position: sticky !important;
  top: 0;
  z-index: 50;
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.nav-link-item {
  margin-left: 2.5rem;
  position: relative;
}
.nav-underline {
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}
.nav-underline::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #4dbcc1;
  transition: width 0.3s ease;
}
.nav-underline:hover {
  color: #4dbcc1;
}
.nav-underline:hover::after {
  width: 100%;
}

.active-link {
  color: #4dbcc1 !important;
}
.active-link::after {
  width: 100% !important;
}

.card-gradient {
  background: linear-gradient(135deg, #7de2d1 0%, #a18cd1 100%);
}

.banner-blob-shape {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.active .accordion-content {
  max-height: 200px;
}

.active .arrow-icon {
  transform: rotate(180deg);
}

.card-gradient-main {
  background: linear-gradient(180deg, #7d66d9 0%, #4dbcc1 100%);
}
.overlay-mask {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 45;
}
#side-panel-mobile {
  transition: transform 0.4s ease-in-out;
  transform: translateX(100%);
  width: 100%;
}

#side-panel-mobile.active {
  transform: translateX(0);
}

.floating-icon-circle {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 50%;
  padding: 8px;
  z-index: 20;
}
.floating-inner-circle {
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-v2-social {
  width: 35px;
  height: 35px;
  background-color: #7d66d9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-v2-contact-icon {
  width: 40px;
  height: 40px;
  background-color: #7d66d9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Media Query */
@media (min-width: 480px) {
  #side-panel-mobile {
    width: 400px;
  }
}
