body {
  background: url('../img/page-bg-1.jpg') no-repeat center/cover fixed;

  /* background-image: url('https://png.pngtree.com/background/20250212/original/pngtree-elegant-abstract-background-with-soft-pastel-colors-and-networks-picture-image_15713581.jpg'); */
  /* background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center; */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.gradient-bg {
  /* background: linear-gradient(135deg, #2957a4 0%, #a2c4e8 100%);
   */
  /*background: linear-gradient(
    135deg,
    #a18cd1 0%,
    #fbc2eb 50%,
    #f9a8d4 75%,
    #ff9a9e 100%
  );*/
   background: linear-gradient(
    135deg,
    #f9a8d4 0%,
    #f78da7 35%,
    #ff7eb9 70%,
    #ff5e9c 100%
  );
}

.gradient-bg-balon {
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.text-main {
  color: #2957a4;
}

.bg-main {
  background-color: #2957a4;
}

/* -------------------------- Card Hover -------------------------- */
.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* -------------------------- Glass Effect -------------------------- */
.glass-effect {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* -------------------------- Glow & Animation -------------------------- */
.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  }
  to {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
  }
}

.floating-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.slide-in {
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------- Search Glow -------------------------- */
.search-glow:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* -------------------------- Mega Menu -------------------------- */
.mega-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.mega-menu.active {
  max-height: 400px;
  opacity: 1;
}

/* -------------------------- Mobile Menu -------------------------- */
.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}
.mobile-menu.active {
  transform: translateX(0);
}

/* -------------------------- Hero Center -------------------------- */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-center h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .hero-center p {
    font-size: 1rem;
  }
}

/* -------------------------- Process Card -------------------------- */
.process-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.process-card.active {
  border: 2px solid #3b82f6;
  background: linear-gradient(145deg, #dbeafe 0%, #e0e7ff 100%);
}

/* -------------------------- Timeline Step -------------------------- */
.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.timeline-step::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #e5e7eb;
  z-index: 1;
}
/* Mobile: width < 740px */
@media only screen and (max-width: 46.1875em) {
  .timeline-step::after {
    display: none;
  }
}
.timeline-step:last-child::after {
  display: none;
}
.timeline-step.completed::after {
  background: linear-gradient(90deg, #2957a4, #3b82f6);
}
.timeline-icon {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4f7ece, #2957a4);
  color: white;
  position: relative;
  z-index: 2;
}
/* Mobile: width < 740px */
@media only screen and (max-width: 46.1875em) {
  .timeline-icon {
    width: 35px;
    height: 35px;
  }
}
.timeline-step.active .timeline-icon {
  background: linear-gradient(135deg, #efc131, #ed8913);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  animation: pulse 2s infinite;
}
.timeline-step.one .timeline-icon {
  background: linear-gradient(135deg, #008060, #2bab60);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  animation: pulse 2s infinite;
}
.one_active {
  color: #008060;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* -------------------------- Evaluation Progress -------------------------- */
.evaluation-bar {
  height: 8px;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.evaluation-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #10b981, #34d399);
  transition: width 0.8s ease;
  position: relative;
}
.evaluation-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* -------------------------- Status Badge -------------------------- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.status-success {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
}
.status-active {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
}

/* -------------------------- Conclusion Box -------------------------- */
.conclusion-box {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border-left: 4px solid #f59e0b;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  margin: 12px 0;
}

.is-fixed {
  position: sticky;
  top: 80px;
  background-color: #fff;
  z-index: 30;
}
