@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap);

:root {
  --white: #ffffff;
  --boundry: 1200px;
  --quick: all 0.3s ease-in-out;
  --med: all 0.5s ease-in-out;
  --black: #14161b;
  --light: #eef3fb;
  --blue: #29abe2;
  --purple: #8b46e0;
  --accent: #5566e6;
  --grad: linear-gradient(135deg, #29abe2, #8b46e0);
  --unit: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; }
h1 span, h2 span, h3 span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
a { text-decoration: none; }

h2.title { font-size: 38px; text-align: center; }
p.strong { font-size: 22px; font-weight: 600; }

/* ---------- Buttons ---------- */
.btn-main {
  background: var(--grad);
  border: none;
  border-radius: 50px;
  color: #fff;
  padding: 11px 26px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(85, 102, 230, 0.25);
  transition: var(--quick);
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(85, 102, 230, 0.35); }
.btn-invert {
  background: var(--white);
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50px;
  padding: 10px 26px;
  font-weight: 600;
  display: inline-block;
  transition: var(--quick);
}
.btn-invert:hover { background: var(--accent); color: #fff; }

/* ---------- Header ---------- */
.header-parent { position: fixed; top: 18px; left: 0; width: 100%; z-index: 100; }
.header-parent .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--boundry);
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(85, 102, 230, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(20, 22, 27, 0.08);
}
.header-parent .logo img { height: 38px; transition: var(--quick); }
.header-parent .logo:hover img { transform: scale(1.05); }
.header-parent .links { display: flex; align-items: center; gap: 10px; }
.header-parent .links a {
  color: var(--black);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--quick);
}
.header-parent .links a:hover, .header-parent .links a.active { color: var(--accent); background: var(--light); }
.header-parent .menu { display: none; cursor: pointer; color: var(--black); }

#header-mob {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transform: translateX(100%);
  transition: var(--quick);
}
#header-mob.openall { transform: translateX(0); }
#header-mob .close { position: absolute; top: 30px; right: 30px; font-size: 34px; cursor: pointer; }
#header-mob .links-mob { display: flex; flex-direction: column; align-items: center; }
#header-mob .links-mob a { color: var(--black); font-size: 26px; font-weight: 600; margin: 14px 0; }
#header-mob .links-mob a:active { color: var(--accent); }

/* ---------- Sections ---------- */
.page { width: 100%; overflow: hidden; }
section { width: 100%; }

.sec1 { display: grid; place-items: center; min-height: 100vh; background: var(--light); }
.sec1 .hero-box { display: flex; align-items: center; max-width: var(--boundry); width: 100%; padding: 110px 20px 40px; gap: 20px; }
.sec1 .hero-box .left { display: flex; flex-direction: column; justify-content: center; width: 52%; }
.sec1 .hero-box .left h1 { font-size: 54px; }
.sec1 .hero-box .left p { font-size: 19px; color: #4a4f5a; margin-top: 18px; }
.sec1 .hero-box .left .btn-box { display: flex; align-items: center; gap: 18px; margin-top: 36px; flex-wrap: wrap; }
.sec1 .hero-box .right { display: flex; align-items: center; justify-content: center; width: 48%; }
.sec1 .hero-box .right img { width: 100%; max-width: 520px; height: auto; border-radius: 16px; }

.sec2 { display: grid; place-items: center; padding: 80px 0; }
.sec2 .wcu-box { display: flex; flex-direction: column; align-items: center; max-width: var(--boundry); width: 100%; padding: 0 20px; }
.sec2 .top { text-align: center; max-width: 700px; }
.sec2 .top p { color: #6a6f7a; margin-top: 12px; }
.sec2 .bottom { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 40px; }
.sec2 .smallbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 340px;
  max-width: 100%;
  padding: 28px;
  border: 1px solid rgba(85, 102, 230, 0.15);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 22, 27, 0.05);
  transition: var(--quick);
}
.sec2 .smallbox:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(85, 102, 230, 0.15); }
.sec2 .smallbox .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  margin-bottom: 18px;
}
.sec2 .smallbox h3 { font-size: 20px; }
.sec2 .smallbox p { color: #6a6f7a; margin-top: 8px; font-size: 15px; }

.sec3 { display: grid; place-items: center; padding: 80px 0; background: var(--light); }
.sec3 .values-box { display: flex; align-items: center; gap: 50px; max-width: var(--boundry); width: 100%; padding: 0 20px; }
.sec3 .values-box .vleft { width: 45%; }
.sec3 .values-box .vleft img { width: 100%; height: auto; border-radius: 16px; }
.sec3 .values-box .vright { width: 55%; }
.sec3 .values-box .vright h2 { font-size: 36px; }
.sec3 .values-box .vright p { color: #4a4f5a; margin-top: 16px; }
.sec3 .values-box .vright ul { list-style: none; margin-top: 20px; }
.sec3 .values-box .vright li { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-weight: 500; }
.sec3 .values-box .vright li::before { content: "✓"; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 13px; flex-shrink: 0; }

/* FAQ */
.sec4 { display: grid; place-items: center; padding: 80px 0; }
.sec4 .faq-box { display: flex; flex-direction: column; max-width: 850px; width: 100%; padding: 0 20px; }
.sec4 .top { text-align: center; }
.sec4 .bottom { margin-top: 36px; }
.sec4 .faq {
  position: relative;
  margin: 12px 0;
  padding: 20px 50px 20px 24px;
  border: 1px solid rgba(20, 22, 27, 0.1);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--quick);
}
.sec4 .faq h3 { font-size: 17px; }
.sec4 .faq .arrow { position: absolute; top: 18px; right: 20px; font-size: 26px; transition: var(--quick); color: var(--accent); }
.sec4 .faq p { max-height: 0; overflow: hidden; opacity: 0; color: #6a6f7a; transition: var(--med); }
.sec4 .faq.faq-open { border-color: var(--accent); background: var(--light); }
.sec4 .faq.faq-open .arrow { transform: rotate(180deg); }
.sec4 .faq.faq-open p { max-height: 320px; opacity: 1; margin-top: 12px; }

/* ---------- About ---------- */
.about-container { display: flex; flex-direction: column; align-items: center; padding: 140px 20px 60px; }
.about-container .about-box { display: flex; align-items: center; gap: 50px; max-width: var(--boundry); width: 100%; }
.about-container .about-box .left { width: 55%; }
.about-container .about-box .left h2 { font-size: 46px; }
.about-container .about-box .left p { color: #4a4f5a; margin: 14px 0; }
.about-container .about-box .left a { margin-top: 16px; }
.about-container .about-box .right { width: 45%; }
.about-container .about-box .right img { width: 100%; height: auto; border-radius: 16px; }

/* ---------- Contact ---------- */
.contact-container { display: flex; flex-direction: column; align-items: center; padding: 140px 20px 20px; }
.contact-container .page-head { text-align: center; margin-bottom: 36px; }
.contact-container .contact-box { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; max-width: var(--boundry); width: 100%; }
.contact-container .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 340px;
  max-width: 100%;
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(85, 102, 230, 0.15);
  border-radius: 16px;
  text-align: center;
  transition: var(--quick);
}
.contact-container .box:hover { background: var(--light); transform: translateY(-4px); }
.contact-container .box .icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--grad); color: #fff; font-size: 24px; margin-bottom: 16px;
}
.contact-container .box .label { font-weight: 600; font-size: 18px; }
.contact-container .box a, .contact-container .box span.val { color: #6a6f7a; margin-top: 6px; display: block; }
.contact-container .box a:hover { color: var(--accent); }

/* ---------- Contact form ---------- */
.form-section { display: flex; justify-content: center; width: 100%; padding: 20px 20px 70px; }
.form-card {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--boundry);
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(20, 22, 27, 0.1);
}
.form-card .form-intro { width: 40%; padding: 44px; background: var(--grad); color: #fff; }
.form-card .form-intro h2 { font-size: 32px; }
.form-card .form-intro h2 span { -webkit-text-fill-color: #fff; }
.form-card .form-intro p { margin-top: 14px; opacity: 0.92; }
.form-card .form-intro .detail { margin-top: 22px; }
.form-card .form-intro .detail h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.form-card .form-intro .detail span { display: block; margin-top: 4px; }
.form-card .form-body { width: 60%; padding: 44px; background: #fff; }
.form-card .grid2 { display: flex; flex-wrap: wrap; gap: 14px; }
.form-card .grid2 input { flex: 1 1 45%; }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin: 8px 0;
  padding: 13px 16px;
  border: 1px solid rgba(20, 22, 27, 0.15);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: var(--quick);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(85, 102, 230, 0.12); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .consent { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0; font-size: 12.5px; color: #6a6f7a; }
.contact-form .consent input { width: auto; margin: 3px 0 0; }
.contact-form button {
  background: var(--grad);
  border: none;
  border-radius: 50px;
  color: #fff;
  padding: 12px 34px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--quick);
}
.contact-form button:hover { transform: translateY(-2px); }
.contact-form .form-note { font-size: 13px; color: var(--accent); margin-top: 14px; font-weight: 500; }

/* ---------- Apply ---------- */
.apply-container { display: flex; flex-direction: column; align-items: center; padding: 140px 20px 60px; }
.apply-container .page-head { text-align: center; margin-bottom: 36px; }
.apply-container .apply-box { display: flex; gap: 30px; max-width: var(--boundry); width: 100%; flex-wrap: wrap; }
.apply-container .apply-box .left, .apply-container .apply-box .right {
  flex: 1 1 380px;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
}
.apply-container .apply-box .left { border: 1px solid rgba(85, 102, 230, 0.15); }
.apply-container .apply-box .left ul { list-style: none; margin-top: 18px; text-align: left; }
.apply-container .apply-box .left li { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.apply-container .apply-box .left li::before { content: "✓"; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 12px; flex-shrink: 0; }
.apply-container .apply-box .right { background: var(--light); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.apply-container .apply-box .right p { color: #6a6f7a; margin-top: 10px; }
.apply-container .apply-box .right a { margin-top: 22px; }

/* ---------- Legal ---------- */
.legal-page { max-width: 900px; margin: 0 auto; padding: 140px 20px 80px; }
.legal-page h1 { font-size: 42px; margin-bottom: 10px; }
.legal-page h2 { font-size: 25px; margin: 30px 0 10px; }
.legal-page h3 { font-size: 19px; margin: 20px 0 8px; }
.legal-page p { line-height: 1.75; margin: 10px 0; color: #3a3f4a; }
.legal-page a { color: var(--accent); }

/* ---------- Footer ---------- */
.footer_parent { background: var(--black); color: #fff; }
.footer_parent .footer { display: flex; flex-wrap: wrap; justify-content: space-between; max-width: var(--boundry); margin: 0 auto; padding: 60px 20px 30px; gap: 30px; }
.footer_parent .col1 { width: 38%; }
.footer_parent .col1 .logo img { height: 44px; background: #fff; padding: 6px 10px; border-radius: 8px; }
.footer_parent .col1 .desc { margin: 18px 0; color: rgba(255, 255, 255, 0.6); }
.footer_parent .col1 .social { display: flex; gap: 12px; }
.footer_parent .col1 .social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, 0.08); color: #fff; transition: var(--quick); }
.footer_parent .col1 .social a:hover { background: var(--grad); }
.footer_parent .col2, .footer_parent .col3 { display: flex; flex-direction: column; }
.footer_parent .footer-header { margin-bottom: 14px; font-size: 18px; font-weight: 600; }
.footer_parent .col2 a { padding: 7px 0; color: rgba(255, 255, 255, 0.6); transition: var(--quick); }
.footer_parent .col2 a:hover { color: #fff; }
.footer_parent .col3 p { color: rgba(255, 255, 255, 0.6); padding: 6px 0; }
.footer_parent .copy { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 20px; text-align: center; color: rgba(255, 255, 255, 0.45); font-size: 14px; }

/* ---------- Responsive ---------- */
@media only screen and (max-width: 1000px) {
  h2.title { font-size: 30px; }
  .header-parent .links, .header-parent .btn-container { display: none !important; }
  .header-parent .menu { display: flex; font-size: 28px; }

  .sec1 .hero-box { flex-direction: column-reverse; text-align: center; padding-top: 100px; }
  .sec1 .hero-box .left, .sec1 .hero-box .right { width: 100%; }
  .sec1 .hero-box .left h1 { font-size: 36px; }
  .sec1 .hero-box .left .btn-box { justify-content: center; }

  .sec3 .values-box { flex-direction: column; }
  .sec3 .values-box .vleft, .sec3 .values-box .vright { width: 100%; }

  .about-container .about-box { flex-direction: column-reverse; text-align: center; }
  .about-container .about-box .left, .about-container .about-box .right { width: 100%; }
  .about-container .about-box .left h2 { font-size: 34px; }

  .form-card .form-intro, .form-card .form-body { width: 100%; }

  .footer_parent .col1, .footer_parent .col2, .footer_parent .col3 { width: 100%; }
}

@media only screen and (max-width: 600px) {
  .sec1 .hero-box .left h1 { font-size: 30px; }
  .form-card .grid2 input { flex: 1 1 100%; }
  .legal-page h1 { font-size: 30px; }
}
