@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  scroll-behavior: smooth;
}

/* === css variables === */

:root {
  --white: #ffffff;
  --black: #000000;
  --bg-body: #f1f1f1;
  --dark-bg: #141414;
  --soft-card-bg: #d2d9f4;
  --text-primary: #0f172a;
  --text-secondary: #767676;
  --text-muted: #64748b;
  --text-placeholder: #9ca3af;
  --border-color: #e2e8f0;
  --primary: #4f46e5;
  --primary-hover: #4338ca;
}

body,
html {
  max-width: 100%;
  width: 100%;
  height: 100%;
  background: var(--bg-body);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

/* Ensure header is always visible with background on all pages */
body:not(.home-page) .header-top {
  background: #121212 !important;
}

/* Add this class to body of index.html only */
body.home-page .header-top {
  background: transparent;
}

/* === Header & Hero section === */

.Header {
  min-height: 100vh;
  padding: 1.4rem 3.5vw;
  position: relative;
  background:
    radial-gradient(
      650px 650px at 85% 55%,
      rgba(62, 54, 212, 0.35),
      transparent 60%
    ),
    radial-gradient(
      500px 500px at 20% 80%,
      rgba(79, 70, 229, 0.45),
      transparent 60%
    ),
    linear-gradient(180deg, var(--dark-bg), var(--black));
  animation: gradientMove 12s ease-in-out infinite alternate;
}

@keyframes gradientMove {
  0% {
    background-position:
      0% 0%,
      100% 100%,
      center;
  }

  50% {
    background-position:
      20% 30%,
      80% 60%,
      center;
  }

  100% {
    background-position:
      40% 10%,
      60% 80%,
      center;
  }
}

/* === Resume Guide Header Background === */

.resume-header-bg {
  /* height:92px; */
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      650px 650px at 85% 55%,
      rgba(62, 54, 212, 0.35),
      transparent 60%
    ),
    radial-gradient(
      500px 500px at 20% 80%,
      rgba(79, 70, 229, 0.45),
      transparent 60%
    ),
    linear-gradient(180deg, var(--dark-bg), var(--black));
}

.resume-hero {
  text-align: center;
  color: white;
  padding: 80px 0 40px;
}

.header-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 3.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  background: transparent;
}

.logo-section {
  display: flex;
  align-items: center;
}

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

.logoImage img {
  width: 3.5rem;
  height: auto;
  display: block;
  cursor: pointer;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.navbar .hoverLinks {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.44px;
  color: var(--white);
  font-family: "poppins", sans-serif;
  position: relative;
  transition: all 0.4s linear;
}

.navbar .hoverLinks:hover {
  color: var(--primary);
}

.navbar .hoverLinks::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.navbar .hoverLinks:hover::after {
  animation: underlineMove 0.4s linear forwards;
}

.navbar .hoverLinks.active {
  color: var(--primary);
}

.navbar .hoverLinks.active::after {
  width: 100%;
}

@keyframes underlineMove {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.btn-download {
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--white);
  padding: 0.78rem 1rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.36px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  line-height: 1;
  transition: background 0.4s ease;
}

.btn-download:hover {
  background: var(--primary-hover);
}

.btn-download i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.btn-download::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35),
    transparent 70%
  );
  opacity: 0.9;
}

.btn-download:hover::before {
  animation: shine 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shine {
  from {
    left: -150%;
  }

  to {
    left: 150%;
  }
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
}

.hamburger:hover {
  background: var(--primary);
}

/* === hero section === */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 6rem);
  padding: 10vh 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.hero-left .heading {
  font-size: clamp(3rem, 4.4vw, 4.8rem);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.08;
  margin: 0;
}

.heading span {
  color: var(--primary);
}

.paratext {
  max-width: 38rem;
  font-size: 0.95rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0.35px;
  margin: 0;
}

.store-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.6rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border-radius: 0.6rem;
}

.store-btn img {
  width: 150px;
  height: auto;
  overflow: hidden;
  cursor: pointer;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.users {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0.5rem 0rem;
}

.user-avatars {
  display: flex;
  align-items: center;
}

.user-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-left: -14px;
  background: var(--soft-card-bg);
  cursor: pointer;
}

.user-avatars img:first-child {
  margin-left: 0;
}

.hero-right .heroImage {
  width: 625px;
  height: 740px;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

/* === Premium Features === */

.premium-features-section {
  background-color: var(--white);
  padding: 100px 0;
}

.container {
  width: 100%;
  padding: 1.4rem 3.5vw;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-badge {
  display: inline-block;
  color: var(--primary);
  font-size: 1.02rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-description {
  font-size: 0.95rem;
  line-height: 1.6rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: var(--text-secondary);
}

.features-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.features-column {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.features-center {
  width: 40%;
  text-align: center;
}

.feature {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-card {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  cursor: pointer;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(79, 70, 229, 0.06),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  height: 2px;
  width: 0;
  background-color: var(--primary);
  transition: width 0.45s ease;
}

.feature-card:hover {
  border-color: rgba(79, 70, 229, 0.35);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  width: calc(100% - 48px);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon i {
  font-size: 22px;
  color: var(--white);
  line-height: 1;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.feature-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
}

.feature-connector {
  width: 2px;
  height: 40px;
  background-color: var(--primary);
  margin: 0 auto;
}

.feature-image {
  width: 480px;
  height: 640px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

/* === Privacy Policy List Styling Fix === */

.feature-card ul {
  margin: 10px 0 18px 0;
  padding-left: 22px;
}

.feature-card ul li {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 6px;
  position: relative;
}

/* Custom modern bullet */
.feature-card ul li::marker {
  color: var(--primary);
  font-size: 14px;
}

/* Email Link Styling */
.policy-email {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-email:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* === How Its Work Section === */

.work {
  background: var(--soft-card-bg);
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
}

.work-container {
  width: 100%;
  padding: 1.4rem 3.5vw;
  margin: 0 auto;
}

.work-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.work-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
}

.work-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.work-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.work-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.work-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 40px 28px;
  text-align: center;
  max-width: 340px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  position: relative;
  cursor: pointer;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}

.work-card .subheading {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.work-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.work-line {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
}

/* === App Showcase Section === */

.appShowcase {
  background-color: var(--white);
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
}

.appShowcase-container {
  width: 100%;
  padding: 0 3.5vw;
  margin: 0 auto;
}

.appShowcase-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.appShowcase-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--primary);
  margin-bottom: 14px;
}

.appShowcase-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.1;
}

.appShowcase-title span {
  color: var(--primary);
}

.appShowcase-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6rem;
  max-width: 620px;
  margin: 0 auto;
}

.appShowcase-slider {
  position: relative;
  overflow: hidden;
  padding: 64px 0px;
}

.appShowcase-cards {
  display: flex;
  gap: 32px;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.appShowcase-card {
  flex: 0 0 calc((100% - 64px) / 3);
  background-color: var(--bg-body);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  padding: 44px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    all 0.4s ease,
    box-shadow 0.4s ease;
}

.appShowcase-card:hover {
  transform: translateY(0px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.appShowcase-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.appShowcase-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.appShowcase-navigation {
  position: absolute;
  top: 30px;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  gap: 14px;
  z-index: 999;
  pointer-events: auto;
}

.nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background-color: var(--white);
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.nav-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.appShowcase-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.35s ease;
}

.dot.active {
  background-color: var(--primary);
  transform: scale(1.15);
}

/* === Download App Section === */

.download-app-section {
  width: 100%;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  background: url("../Assets/Banner/cta.png") center / cover no-repeat;
}

.download-app-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0.92;
  z-index: 1;
}

.download-app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.5vw;
  text-align: center;
  position: relative;
  z-index: 2;
}

.download-app-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.download-app-description {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.download-app-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: transparent;
  border-radius: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.store-button img {
  height: 56px;
  width: auto;
  display: block;
}

/* === Footer Section Start === */

.footer {
  background: linear-gradient(180deg, #111111, #0b0b0b);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}

.footer-container {
  margin: 0 auto;
  padding: 110px 3.5vw 70px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 90px;
}

.footer-logo {
  margin-bottom: 24px;
  width: 3.8rem;
  height: auto;
  display: block;
  cursor: pointer;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-links ul li a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links ul li a:hover {
  color: var(--primary);
}

.footer-links ul li a:hover::after {
  animation: footerUnderline 0.4s linear forwards;
}

.footer-links ul li a.active {
  color: var(--primary);
}

.footer-links ul li a.active::after {
  width: 100%;
}

@keyframes footerUnderline {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 3.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom span {
  color: var(--primary);
  font-weight: 600;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-brand {
  width: 32rem;
  display: flex;
  justify-content: space-between;
}

/* === Top To Scroll === */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 999999;
}

#scrollTopBtn:hover {
  background: var(--primary-hover);
  color: var(--white);
}

#scrollTopBtn i {
  font-size: 24px;
}

/* === Loader section === */

#fullPageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--primary);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

#fullPageLoader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
