@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ─────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────── */
:root {
  --brand-900: #0a0f1e;
  --brand-800: #111827;
  --brand-700: #1a2540;
  --brand-600: #1e3a5f;
  --brand-500: #1d4ed8;
  --brand-400: #3b82f6;
  --brand-100: #dbeafe;
  --accent:    #00d9b8;
  --accent-dim:#00b89c;
  --surface:   #ffffff;
  --surface-2: #f8fafc;
  --border:    rgba(30,58,95,0.12);
  --text-main: #0f172a;
  --text-muted:#64748b;
  --text-light:#94a3b8;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.12);
  --shadow-lg: 0 20px 60px rgba(15,23,42,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --nav-h:     68px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ─────────────────────────────────────────────
   HEADER BACKGROUND
───────────────────────────────────────────── */
.Header__headerBg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 480px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.Header__bgColor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(29,78,216,0.38) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 95% 40%,  rgba(0,217,184,0.20) 0%, transparent 60%),
    linear-gradient(160deg, #0a0f1e 0%, #1a2540 55%, #1e3a5f 100%);
}

.Header__bgColor::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 110px;
  background: #f8fafc;
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ─────────────────────────────────────────────
   NAV BAR
───────────────────────────────────────────── */
.Header__menuWrapper {
  position: relative;
  z-index: 100;
  height: var(--nav-h);
}

.Header__menuBox {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Header__logoPart {
  display: flex;
  align-items: center;
  gap: 12px;
}

.Header__logoimg {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.Header__logo {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.Header__logotxt {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: #ffffff;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.Header__navbtn {
  display: flex;
  align-items: center;
}

.Header__nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.Header__menuList {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  list-style: none;
}

.Header__menuList:hover {
  background: rgba(255,255,255,0.10);
  color: #ffffff;
}

.Header__menuList a,
.Header__menuList span {
  color: inherit;
  text-decoration: none;
}

.Header__menuClick {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.Header__menu {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
}

.Header__menu::before,
.Header__menu::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.Header__menu::before { top: -6px; }
.Header__menu::after  { top:  6px; }

/* ─────────────────────────────────────────────
   HERO / SEARCH AREA
───────────────────────────────────────────── */
.Header__titleSearchWrapper {
  position: relative;
  z-index: 10;
  padding: 52px 28px 60px !important;
}

.Header__titleSearchBox {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.Header__titleDescription {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.Header__welcomeTitle {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin: 0;
  animation: hd-fadeup 0.6s cubic-bezier(0.16,1,0.3,1) both;
}

.Header__welcomeDescription {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  animation: hd-fadeup 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.Header__banneralt {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: hd-fadeup 0.6s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

.Header__searchSubCont { width: 100%; }

.Header__searchalt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.Header__searchLink { flex: 1; }

.Header__searchBox {
  width: 100%;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.20), 0 0 0 1px rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 22px;
  height: 52px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  transition: box-shadow 0.2s;
}

.Header__searchBox:focus-within {
  box-shadow: 0 4px 32px rgba(0,217,184,0.28), 0 0 0 2px var(--accent);
}

.Header__searchBox input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  width: 100%;
}

.Header__searchBox input::placeholder { color: var(--text-light); }

.Header__panelbtns { flex-shrink: 0; }

.Header__cdstretchynav { position: relative; }

.Header__cdnavtrigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: background 0.18s, transform 0.18s;
  box-shadow: 0 4px 16px rgba(0,217,184,0.38);
}

.Header__cdnavtrigger:hover {
  background: var(--accent-dim);
  transform: scale(1.06);
}

.Header__cdnavtrigger::before,
.Header__cdnavtrigger::after {
  content: '';
  position: absolute;
  background: var(--brand-900);
  border-radius: 2px;
}

.Header__cdnavtrigger::before { width: 2px; height: 18px; }
.Header__cdnavtrigger::after  { width: 18px; height: 2px; }

.Header__container {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
  z-index: 200;
}

.Header__cdstretchynav:hover .Header__container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.Header__containerUl {
  list-style: none;
  padding: 6px;
  margin: 0;
}

.Header__containerUl li {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}

.Header__containerUl li:hover {
  background: var(--surface-2);
  color: var(--brand-500);
}

.Header__breadCrumbs,
[class*="BreadCrumb"],
[class*="breadcrumb"] {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

[class*="BreadCrumb"] a,
[class*="breadcrumb"] a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
}

[class*="BreadCrumb"] a:hover,
[class*="breadcrumb"] a:hover {
  color: var(--accent);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.Footer__footer {
  background: var(--brand-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.Footer__footer span {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

.Footer__footerLink {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}

.Footer__footerLink:hover { color: #ffffff; }

/* ─────────────────────────────────────────────
   SIGN IN PAGE — iframe height fix only
───────────────────────────────────────────── */
iframe#iamFrame {
  min-height: unset !important;
  height: 200px !important;
}

.Signin__part.commonStyle__Wd50 {
  min-height: unset !important;
  height: auto !important;
}

.Signin__signPart {
  min-height: unset !important;
  height: auto !important;
  padding: 20px 30px !important;
}

.Signin__wrapper {
  min-height: unset !important;
  height: auto !important;
}

.Signin__loginBox {
  align-items: flex-start !important;
  min-height: unset !important;
  height: auto !important;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .Header__menuClick { display: flex; }

  .Header__nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--brand-900);
    flex-direction: column;
    padding: 12px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .Header__menuList {
    width: 100%;
    padding: 12px 16px;
  }

  .Header__titleSearchWrapper {
    padding: 32px 20px 40px !important;
  }

  .Header__searchalt {
    flex-direction: column;
    align-items: stretch;
  }

  .Header__panelbtns { align-self: flex-end; }
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes hd-fadeup {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

