.hero-1 {
  background: #f9f9ff;
}

#changingWord {
  display: inline-block;
  min-width: 120px;
  text-align: left;
}

.card-box {
  border-radius: 20px;
  /* border: 1px solid #3f06a3; */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-top-width: 6px;
  transition: transform 0.3s ease;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.card-box:hover {
  transform: translateY(-5px);
}

.decorative-circle {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .card-box {
    min-height: auto;
    margin-bottom: 1rem;
  }
}

.solution-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: none;
}

.solution-section.show {
  opacity: 1;
  transform: translateY(0);
  display: block;
}
.filter-container {
  display: flex;
  width: 55%;
  justify-content: center;
  background: white;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  gap: 5px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.filter-container::-webkit-scrollbar {
  height: 6px;
}

.filter-container::-webkit-scrollbar-thumb {
  background: rgba(63, 6, 163, 0.5);
  border-radius: 3px;
}

.filter-option {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  background: #f9f6ff;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.filter-option:hover {
  background: #f2ecfe;
}

.filter-option.active {
  background: linear-gradient(135deg, #3f06a3, #6a11cb);
  color: #fff;
  box-shadow: 0 6px 16px rgba(63, 6, 163, 0.3);
}

@media (max-width: 768px) {
  .filter-container {
    justify-content: flex-start;
    padding: 8px 10px;
    width: auto;
  }
}

/* LMS */
/* .enhanced-solutions-section{
     background: linear-gradient(
        to bottom,
        rgba(63, 6, 163, 0.12) 0%,
        rgba(63, 6, 163, 0.06) 40%,
        rgba(255, 255, 255, 1) 100%
    );
} */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-top: 2.2rem;
}

.feature-sidebar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.2s;
}

.nexus-menu-item {
  padding: 1rem 1.5rem;
  /* margin: 6px 0px; */
  /* border-radius: 1rem; */
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: transparent;
}

.nexus-menu-item .menu-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #3f06a3;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.nexus-menu-item.active {
  background: rgb(250, 249, 255);
  box-shadow: 0 12px 22px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.menu-text h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #0a1927;
}

.menu-text p {
  font-size: 0.8rem;
  color: #5b6e8c;
  line-height: 1.35;
  margin-bottom: 0px;
}

.detail-zone {
  background: #ffffff;
  border-radius: 2rem;
  padding: 1.8rem 2rem;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.dynamic-card {
  display: none;
  animation: floatIn 0.4s ease-out;
}

.dynamic-card.active-card {
  display: block;
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-new {
  background: #e6f0ff;
  color: #004e9e;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  display: inline-block;
}

.insight-metric {
  background: #f8fafd;
  border-radius: 1.2rem;
  padding: 0.8rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.btn-neon {
  background: #0f172a;
  color: white;
  border-radius: 60px;
  padding: 0.6rem 1.4rem;
  font-weight: 500;
  border: none;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.btn-neon:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li i {
  color: #3f06a3;
  /* background: #eef2ff; */
  padding: 5px;
  border-radius: 50%;
  font-size: 0.8rem;
}

/* hr {
  margin: 1rem 0;
  opacity: 0.3;
} */

@media (max-width: 500px) {
  .nexus-menu-item {
    padding: 0.8rem 1rem;
    gap: 0.7rem;
  }

  .menu-text h5 {
    font-size: 0.9rem;
  }
}

.stats-flex {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

/* sms */
.scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -12px;
  padding: 0 12px;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.scroll-wrapper::-webkit-scrollbar-track {
  background: #f4f4f5;
  border-radius: 10px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
  background: #d4d4d8;
  border-radius: 10px;
}

.scroll-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.5rem 0 1.5rem 0;
}

.scroll-card {
  width: 280px;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.scroll-card:hover {
  border-color: #e4e4e7;
  background: #fefefe;
  transform: translateY(-4px);
}

.scroll-card.active {
  border-color: #3f06a3;
  background: #f4f3f5;
  box-shadow: 0 8px 20px -8px rgba(59, 130, 246, 0.15);
}

.card-icon ion-icon {
  font-size: 2rem;
  color: #3f06a3;
  margin-bottom: 1.25rem;
}

.scroll-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 0.75rem 0;
  color: #09090b;
}

.scroll-card p {
  font-size: 0.85rem;
  color: #52525b;
  line-height: 1.45;
  margin: 0 0 1.25rem 0;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #71717a;
  border-top: 1px solid #f4f4f5;
  padding-top: 1rem;
}

.dot {
  width: 3px;
  height: 3px;
  background: #d4d4d8;
  border-radius: 50%;
}

.scroll-indicator {
  display: flex;
  gap: 0.5rem;
}

.indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4d4d8;
  transition: all 0.2s;
}

.indicator-dot.active {
  width: 20px;
  border-radius: 4px;
  background: #3f06a3;
}

#studentDetailZone {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#studentDetailZone .bottom-row {
  margin-top: auto;
}
.bottom-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.demo-btn {
  display: inline-flex;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #3f06a3;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.demo-btn:hover {
  gap: 0.75rem;
  background: #2c2c6a;
  color: #fff;
}

@media (max-width: 768px) {
  .nav-arrows {
    justify-content: flex-start;
  }

  .title {
    font-size: 2rem;
  }
}
.product-card {
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3f06a3, #6d28d9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(63, 6, 163, 0.3);
}

.product-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: #5f6b7a;
  line-height: 1.6;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #3f06a3;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s;
}

.explore-btn:hover {
  color: #6d28d9;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.explore-btn:hover .arrow-icon {
  transform: translateX(6px);
}

.logo-slider {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.logo-img {
  height: 50px;
  flex-shrink: 0;
}

/* animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.modern-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
  height: 100%;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.modern-card p {
  font-size: small;
}
.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3f06a3, #6a3df0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-box i {
  color: white;
  font-size: 20px;
}

.modern-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.modern-card p {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
}

.testimonial-section {
  padding: 3rem 1rem;
  background-color: #f9fdff;
}

.testimonial-header h2 {
  font-weight: 700;
  font-size: 2rem;
}

.testimonial-header p {
  color: #8a8a8a;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  border: 1.2px solid rgb(228, 228, 228);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  color: #6c757d;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: start;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-user img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e3e3e3;
}

.testimonial-user strong {
  font-weight: 600;
  font-size: 1rem;
  color: #111;
}

.testimonial-user span {
  font-size: 0.85rem;
  color: #6c757d;
}
@media (max-width: 768px) {
  .menu-text h5 {
    font-size: 18px;
  }
  .content-grid {
    display: block;
  }
  .content-grid {
    display: block;
  }

  #studentDetailZone {
    display: block; 
    margin-top: 15px;
  }

  .dynamic-card {
    display: none;
    background: rgb(250, 249, 255);
    padding: 20px;
    border-radius: 12px;
  }

  .dynamic-card.active-card {
    display: block;
  }

  .dynamic-card {
    display: none;
    margin-top: 10px;
  }

  .dynamic-card.active-card {
    display: block;
    background: rgb(250, 249, 255);
    padding: 20px;
  }
}
