/* style.css – global + navbar + hero only */

:root {
  --primary-background: rgb(248, 249, 250);
  --primary-blue: #0048fb;
  --secondary-blue: #0026d8; /* exact button colour from the PDFs */
  --bg-light: #f8f9fa; /* alternating section background */
  --bg--blue: rgb(239, 241, 255);
  --card-bg: #fbfbff; /* silver-gray card for text */
  --card-white: #dcdadd; /* white card for badges */
  --text-dark: #1a1a1a;
  --text-muted: #555;
  --heading-font-size: 40px;
  --paragraph-font-size: 14px;
}

/* ------------------------------------------------- */
/* Global reset & font */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 100%;
}
body {
  font-family: "inter", system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--primary-background);
  line-height: 1.5;
  max-width: 100%;
  padding: 3%;
}

/* ------------------------------------------------- */
/* Container – same max-width on desktop & mobile */
.flex {
  display: flex;
}
.container {
  max-width: 100%;
  margin: 0 0;
  padding: 0 0;
}

/* ------------------------------------------------- */
/* NAVBAR */
.navbar {
  padding: 12px 0;
  background: var(--primary-background);
}
.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar__logo {
  font-size: 45px;
  font-weight: 700;
  color: var(--secondary-blue);
}
.navbar__login {
  background: var(--primary-blue);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sign_in_icon {
  font-weight: 200;
}
.navbar__login .arrow {
  font-size: 12px;
}

@media (max-width: 768px) {
  .navbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 486px) {
  .navbar__logo {
    font-size: 30px;
    font-weight: 500;
    color: var(--secondary-blue);
  }
  .navbar__login {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
  }
}
@media (max-width: 486px) {
  .navbar__login {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
  }
}
/* ------------------------------------------------- */
/* HERO */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: end;
  width: 100%;
  padding: 15px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  border-radius: 12px;
}
.hero__content {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

/* Text card – silver-gray */
.hero__text-card {
  background: rgba(251, 251, 255, 0.7); /* Transparent white layer */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 10px;
  max-width: 700px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3); /* subtle glass border */
}
.hero__tag {
  width: fit-content;
  display: block;
  font-size: 15px;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  background: #f8f9fa;
  margin-bottom: 12px;
}
.hero__title {
  font-size: var(--heading-font-size);
  font-weight: 120;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero__desc {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}

/* Badges card – white */
.hero__badges-card {
  background: var(--card-bg);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 180px;
}
.badge-link {
  display: block;
}
.badge {
  height: 46px;
  width: auto;
  transition: transform 0.2s ease;
}
.badge-link:hover .badge {
  transform: scale(1.05);
}

/* ------------------------------------------------- */
/* RESPONSIVE – matches mobile PDF */
@media (max-width: 992px) {
  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero__text-card,
  .hero__badges-card {
    max-width: 100%;
  }
  .hero__badges-card {
    flex-direction: row;
    padding: 16px;
    align-self: center;
  }
  .badge {
    height: 42px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero .container {
    padding: 40px 16px;
  }
  .hero__text-card {
    padding: 24px;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__desc {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .hero__badges-card {
    padding: 8px;
    align-self: center;
  }
  .badge-link {
    display: block;
  }
  .badge {
    height: 33px;
    width: auto;
    transition: transform 0.2s ease;
  }
}
@media (max-width: 300px) {
  .hero__badges-card {
    flex-direction: column;
    padding: 16px;
    align-self: center;
    justify-content: center;
  }
}

/* INTRO SECTION  */
.intro {
  padding: 60px 0;
  background: var(--primary-background);
}
.intro__inner {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}
.intro__title {
  font-size: var(--heading-font-size);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.intro__desc {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  max-width: 70%;
}
.gap_line {
  border: rgb(227, 230, 239) 0.25px solid;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .intro {
    padding: 48px 0;
  }
  .intro__title {
    font-size: 30px;
  }
  .intro__desc {
    font-size: 16px;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .intro {
    padding: 40px 0;
  }
  .intro__title {
    font-size: 26px;
  }
}

/* SCREENSHOTS SECTION – updated to single combined image */
.screenshots {
  background: var(--primary-background);
}
.screenshots__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.screenshots-combined {
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .screenshots-combined {
    max-width: 750px;
  }
}
@media (max-width: 768px) {
  .screenshots {
    padding: 48px 0;
  }
  .screenshots-combined {
    max-width: 100%;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .screenshots {
    padding: 40px 0;
  }
  .screenshots-combined {
    border-radius: 16px;
  }
}

/* START JOURNEY SECTION – added below SCREENSHOTS */
.start-journey {
  padding: 60px 0;
  background: var(--bg-light);
}
.start-journey__inner {
  text-align: left;
  display: flex;
  justify-content: space-between;
  background-color: var(--bg--blue);
  padding: 15px;
  border-radius: 10px;
  align-items: flex-end;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.start-journey__title {
  font-size: 15px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.start-journey__desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.start-journey__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.btn {
  width: 140px;
  height: 35px;
  font-weight: 500;
  font-size: medium;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn--outline {
  background: rgb(226, 230, 239);
  color: var(--text-dark);
  border: 2px solid rgb(226, 230, 239);
}
.btn--outline:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--primary-blue);
  color: #fff;
  border: 2px solid var(--primary-blue);
}
.btn--primary:hover {
  background: var(--secondary-blue);
  border-color: var(--secondary-blue);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .start-journey {
    padding: 48px 0;
  }
  .start-journey__title {
    font-size: 24px;
  }
  .start-journey__desc {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
@media (max-width: 480px) {
  .start-journey__inner {
    flex-direction: column;
    display: block;
  }
  .start-journey {
    padding: 40px 0;
  }
  .start-journey__title {
    font-size: 22px;
  }
}

/* ------------------------------------------------- */
/* ABOUT SECTION – added below START JOURNEY */
.about {
  display: flex;
}
.about__inner {
  text-align: left;
}

.about__title {
  font-size: var(--heading-font-size);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: left;
}
.about__desc {
  font-size: var(--paragraph-font-size);
  color: #444;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 80%;
  text-align: left;
}
.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about__card {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__card__head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.about__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}
.about__card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.about__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}
.about__card-desc,
.about__list {
  font-size: var(--paragraph-font-size);
  color: #555;
  line-height: 1.4;
}
.about__list {
  list-style: disc;
  padding-left: 15px;
  margin: 0;
}
.about__list li {
  margin-bottom: 8px;
}
.about__list li:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .about__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about__card {
    min-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 48px 0;
  }
  .about__title {
    font-size: 30px;
  }
  .about__desc {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .about__card {
    padding: 24px;
  }
  .about__desc {
    max-width: 100%;
  }
  .about__card-title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 40px 0;
  }
  .about__title {
    font-size: 26px;
  }
  .about__card {
    padding: 20px;
  }
  .about__card-icon {
    font-size: 32px;
  }
}

/* ------------------------------------------------- */
/* FAQ SECTION – added below ABOUT */
.faq {
  padding: 60px 0;
  background: var(--bg-light);
}
.faq__inner {
}
.faq__title {
  font-size: var(--heading-font-size);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.faq__accordion {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  border-bottom: none;
  border: none;
}
.faq__question {
  width: 100%;
  height: 30%;
  text-align: left;
  padding: 15px;
  background: #fff;
  border: none;
  font-size: 18px;
  color: rgb(82, 86, 93);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
  border-radius: 4px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}
.faq__item.active .faq__question {
  border-radius: 4px 4px 0px 0px;
}
.faq__question:hover {
  /* color: var(--primary-blue); */
}
.faq__icon {
  font-size: 16px;
  color: #888;
  transition: transform 0.3s ease;
}
.faq__item.active .faq__icon {
  transform: rotate(180deg);
}
.faq__answer {
  max-height: 0;
  background: #fff;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.faq__item.active .faq__answer {
  max-height: 250px;
  padding: 16px 0 24px;
  border-radius: 0px 0px 4px 4px;
  padding: 15px;
  color: rgb(82, 86, 93);

  border: none;
}
.faq__answer p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .faq {
    padding: 48px 0;
  }
  .faq__title {
    font-size: 30px;
    margin-bottom: 28px;
  }
  .faq__question {
    font-size: 15px;
    padding: 15px;
  }
  .faq__answer p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .faq {
    padding: 40px 0;
  }
  .faq__title {
    font-size: 26px;
  }
  .faq__question {
    font-size: 14px;
    color: rgb(82, 86, 93);
    align-items: flex-start;
    gap: 8px;
    padding: 15px;
  }
  .faq__icon {
    align-self: flex-end;
  }
}

/* ------------------------------------------------- */
/* CONTACT SECTION – added below FAQ */
.contact {
  background-color: var(--bg--blue);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
  border-radius: 8px;
}
.contact__inner {
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.contact__title {
  font-size: var(--heading-font-size);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-align: center;
}
.contact__subtitle {
  font-size: var(--paragraph-font-size);
  color: #444;
  text-align: left;
  line-height: 1.6;
}
.contact__grid {
  gap: 36px;
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__email {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}
.contact__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}
.contact__social-label {
  font-size: 15px;
  color: #000;
  font-weight: 600;
}
.contact__social {
  display: flex;
  gap: 5px;
}
.contact__social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #000;
  font-size: 30px;
  transition: all 0.2s ease;
}
.contact__social a:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-2px);
}
.contact__form {
  width: 50%;
  background-color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  gap: 16px;
}
.upper_contact_form {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact__input-group {
  width: 100%;
  position: relative;
}
.contact__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  background: #fff;
  transition: border 0.2s ease;
}
.contact__input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 72, 251, 0.1);
}
.contact__input::placeholder {
  color: #999;
}
.contact__checkbox {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  width: 100%;
}
.contact__checkbox input {
  margin-top: 3px;
}
.contact__submit {
  justify-content: right;
  gap: 10px;
  width: 30%;
}

/* Responsive */
@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__info {
    order: 2;
  }
  .contact__form {
    order: 1;
  }
}
@media (max-width: 768px) {
  .contact__inner {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }
  .contact {
    padding: 48px 0;
  }
  .contact__form {
    width: 100%;
  }
  .upper_contact_form {
    width: 100%;
  }
  .contact__title {
    font-size: 30px;
  }
  .contact__subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .contact__grid {
    gap: 32px;
  }
  .contact__submit {
    justify-content: right;
    gap: 10px;
    width: 50%;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 40px 0;
  }
  .contact__title {
    font-size: 26px;
  }

  .contact__input {
    padding: 12px 14px;
    font-size: 15px;
  }
  .contact__social a {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }
}
@media (max-width: 375px) {
  .contact__submit {
    justify-content: right;
    gap: 10px;
    width: 70%;
  }
}

/* ------------------------------------------------- */
/* FOOTER – added after CONTACT */
.footer {
  padding: 32px 0;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}
.footer__inner {
  text-align: center;
}
.footer__copyright {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 28px 0;
  }
  .footer__copyright {
    font-size: 13px;
  }
}
/* ------------------------------------------------- */
/* LOGIN PAGE – added to end of style.css */
/* ===================== GLOBAL ===================== */
.login-body {
  max-width: 100%;
  background-color: #f4f6f8; /* light grey tone for full-width top area */
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

/* Footer two-tone separation */
.footer.bg_white {
  background-color: #fff; /* white footer strip */
}

/* ===================== BACK LINK ===================== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #e2e6ef;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  margin: 24px;
  transition: background 0.2s ease;
}
.back-link:hover {
  background: #e0e0e0;
}

/* ===================== LOGIN SECTION ===================== */
.login {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  width: 100%;
}

/* Right-side image (desktop view) */
.login__bg {
  position: absolute;
  right: 2%;
  width: 45%;
  height: 600px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

/* Left-side form area */
.login__content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  z-index: 2;
}

/* Login Card */
.login__card {
  background: #fff;
  height: 600px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  width: 45%;
  margin-left: 2%;
}

.login__logo {
  font-size: 24px;
  font-weight: 700;
  color: #0026d8;
  margin-bottom: 16px;
}

.login__title {
  font-size: var(--heading-font-size, 32px);
  font-weight: 700;
  color: var(--text-dark, #222);
  margin-bottom: 12px;
}

.login__subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}

.login__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login__input-group label {
  display: block;
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
  font-weight: 500;
}

.login__input-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.2s ease;
}
.login__input-group input:focus {
  border-color: var(--primary-blue, #0026d8);
  outline: none;
}

/* Password toggle */
.password-wrapper {
  position: relative;
}
.password-wrapper i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
}
.password-wrapper i:hover {
  color: var(--primary-blue, #0026d8);
}

/* Forgot link */
.login__forgot {
  display: block;
  font-size: 15px;
  color: var(--primary-blue, #0026d8);
  text-decoration: none;
  text-align: right;
  margin-bottom: 16px;
  font-weight: 500;
}
.login__forgot:hover {
  text-decoration: underline;
}

/* Submit button */
.login__submit {
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  padding: 14px;
  width: 100%;
  height: 16%;
}

/* Layout container */
.main_container {
  display: flex;
  flex-direction: column;
}

.bg_white {
  margin-top: 20px;
  background-color: #fff;
  width: 100%;
}

/* ===================== RESPONSIVE (Mobile View) ===================== */
@media (max-width: 768px) {
  .login {
    flex-direction: column;
    justify-content: flex-start;
    background: transparent;
    padding: 0;
  }
  .login-body {
    background-color: #fff;
  }
  /* Image above card */
  .login__bg {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 0px;
    right: 0;
  }

  .login__content {
    justify-content: center;
  }

  .login__card {
    width: 100%;
    padding: 24px;
    margin-left: 0;
    border-radius: 12px 12px 0px 0px;
  }

  .login__logo {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .login__title {
    font-size: 26px;
  }

  .login__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .login__input-group label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .login__input-group input {
    padding: 10px 12px;
    font-size: 15px;
  }

  .password-wrapper i {
    right: 12px;
    font-size: 14px;
  }

  .login__forgot {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .login__submit {
    font-size: 16px;
    padding: 10px;
  }

  .back-link {
    padding: 6px 12px;
    font-size: 13px;
  }
  .bg_white {
    margin-top: 0px;
  }
}
