html { scroll-behavior: smooth; }

:root {
  --ink: #0b1020;
  --muted: #5b6476;
  --brand: #14b8a6;
  --brand-2: #f59e0b;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --ring: rgba(20, 184, 166, 0.35);
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

body {
  font-family: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(20, 184, 166, 0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(245, 158, 11, 0.18), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 60%, #f8fafc 100%);
}

h1, h2, h3, h4 {
  font-family: "Fraunces", "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.logo { font-weight: 700; font-size: 1.5rem; }


#dropdown-menu {
    transition: opacity 0.3s ease, transform 0.3s ease;
  }


/* Home page Nav bar css */
.fade-enter {
      opacity: 0;
      transform: translateY(10px);
    }
    .fade-enter-active {
      transition: opacity 0.3s ease, transform 0.3s ease;
      opacity: 1;
      transform: translateY(0);
    }
    .group:hover svg {
      transform: rotate(180deg);
      transition: transform 0.3s ease;
    }
    .nav-link {
      position: relative;
      transition: color 0.3s ease;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -3px;
      left: 0;
      background-color: var(--brand);
      transition: width 0.3s ease;
    }
.nav-link:hover::after {
  width: 100%;
}

.mega-trigger-title {
  font-weight: 500;
  letter-spacing: -0.01em;
}

.mega-trigger-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.mega-trigger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(245, 158, 11, 0.18));
  color: #0f766e;
  font-size: 0.78rem;
}

.mega-menu-shell {
  width: min(92vw, 980px);
  padding-top: 0.9rem;
}

.mega-menu-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.14), transparent 40%);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(12px);
}

.mega-menu-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.18), transparent 38%),
    linear-gradient(160deg, #0f172a 0%, #132238 58%, #163047 100%);
  color: #f8fafc;
}

.mega-menu-head-copy {
  max-width: 520px;
}

.mega-menu-head-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
}

.mega-menu-head-text {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 0.95rem;
}

.mega-menu-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.mega-menu-highlight-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
}

.mega-menu-head-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.mega-menu-card {
  min-height: 138px;
  padding: 1rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.95));
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.mega-menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.28);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.mega-menu-card-icon {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.14), rgba(245, 158, 11, 0.14));
  color: #0f766e;
  font-size: 1rem;
}

.mega-menu-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.mega-menu-card-title {
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.35;
}

.mega-menu-card-text {
  font-size: 0.84rem;
  line-height: 1.55;
  color: #64748b;
}

.mega-menu-card-arrow {
  color: #94a3b8;
  font-size: 0.82rem;
}

.mega-mobile-group-button,
.mega-mobile-top-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.8rem 0;
  color: #1f2937;
  transition: color 0.2s ease;
}

.mega-mobile-group-button {
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.mega-mobile-top-link {
  justify-content: flex-start;
  gap: 0.75rem;
}

.mega-mobile-group-button:hover,
.mega-mobile-top-link:hover {
  color: var(--brand);
}

.mega-mobile-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: #475569;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-mobile-link:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.mega-mobile-icon {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
  font-size: 0.78rem;
  flex: 0 0 1.8rem;
}

@media (max-width: 768px) {
  .mega-menu-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
  }
}


  .icon-card {
            background: var(--surface);
            border: 1px solid rgba(15, 23, 42, 0.06);
            border-radius: 1rem;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            box-shadow: var(--shadow);
        }

        .icon-card:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
        }

        .floating {
            position: relative;
            animation: floatAnim 4s ease-in-out infinite;
        }

        @keyframes floatAnim {
            0% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-10px) translateX(5px); }
            50% { transform: translateY(0) translateX(0); }
            75% { transform: translateY(10px) translateX(-5px); }
            100% { transform: translateY(0) translateX(0); }
        }

.yulu-nav {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.yulu-btn {
  background: linear-gradient(135deg, var(--brand), #0ea5a4);
  color: #0b1020;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px var(--ring);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yulu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(20, 184, 166, 0.45);
}

.yulu-btn-outline {
  border: 1px solid rgba(15, 23, 42, 0.2);
  color: var(--ink);
  background: var(--surface-strong);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.yulu-btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.yulu-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
}

.yulu-glass {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.text-blue-600 { color: var(--brand) !important; }
.hover\:text-blue-600:hover { color: var(--brand) !important; }
.bg-blue-600 { background-color: var(--brand) !important; }
.bg-blue-100 { background-color: rgba(20, 184, 166, 0.15) !important; }
.bg-green-100 { background-color: rgba(20, 184, 166, 0.12) !important; }
.bg-teal-100 { background-color: rgba(20, 184, 166, 0.12) !important; }
.bg-orange-100 { background-color: rgba(245, 158, 11, 0.18) !important; }
.bg-red-100 { background-color: rgba(245, 158, 11, 0.12) !important; }
.bg-purple-100 { background-color: rgba(99, 102, 241, 0.15) !important; }
.shadow-md { box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1) !important; }

