* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: #0f172a;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  background: rgba(255,255,255,0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo-tagline {
  font-size: 14px;
  color: #6b7280;
  margin: 2px 0 0 0;
}
.brand-text {
  display: flex;
  flex-direction: column;   /* THIS puts tagline below */
  margin-left: 10px;
}

.section {
  padding: 100px 20px;
}
.hero-left,
.mock-left,
.mock-right {
  width: 100%;
}
video, canvas {
  width: 100%;
}
.mock-section,
.dashboard-wrapper,
.insight-wrapper {
  flex-direction: column;
}

.navbar nav a:hover {
  box-shadow: 0 4px 12px rgba(30, 52, 148, 0.432);
  transform: translateY(-3px);
  transition: box-shadow 0.3s ease, transform 0.3s ease
}
.navbar nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #0f172a;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;              /* space between logo and text */
}

.logo img {
   height: 75px;          /* adjust size if needed */
  width: auto;
  filter: drop-shadow(0 0 6px rgba(37,99,235,0.4));
}

.logo span {
  font-size: 37px;
  font-weight: 700;
  color: #0d50ec;
}

.cta {
  padding: 10px 16px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
}

.cta:hover {
  background: #1e40af;
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.4);
}

/* SECTIONS */
.section {
  min-height: 100vh;
  padding: 120px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.light {
  background: #f8fafc;
}

.dark {
  background: #0f172a;
  color: white;
  text-align: center;
}

/* PARALLAX */
.parallax {
  background-image: url("images/blue-waves.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero {
  text-align: left;
}

.mid {
  min-height: 80vh;
}

.dashboard {
  min-height: 90vh;
}



/* LEFT */
.hero-left {
  width: 50%;
}

/* RIGHT */
.hero-right {
  position: absolute;      /* stick to hero */
  right: 80px;             /* distance from right edge */
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  display: flex;
  justify-content: center;
}

/* VIDEO CONTAINER */
.video-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.mock-interview {
  padding: 100px 80px;
  background: #f8fafc;
}

.mock-content {
  max-width: 700px;
}

.mock-interview h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0f172a;
}

.subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 25px;
}

.mock-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.mock-points li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  font-size: 16px;
}

.mock-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}


/* HIDDEN BY DEFAULT */
.hidden {
  display: none;
}

/* VIDEO */
.video-box video {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

/* CONTENT */
.content h1 {
  font-size: 52px;
  max-width: 700px;
}

.content p {
  margin: 20px 0;
  font-size: 18px;
}

/* FEATURES SECTION */
.features-section{
padding:100px 20px;
text-align:center;

background:linear-gradient(135deg,#eef2ff,#e0ecff);
display:flex;
flex-direction:column;
align-items:center;   /* 🔥 CENTER EVERYTHING */
}

/* TITLE */
.features-section h2{
font-size:32px;
font-weight:700;
margin-bottom:60px;
color:#0a0a0a;
text-align:center;
}

/* GRID */
.features-grid{
display:flex;
justify-content:center;
align-items:center;
gap:30px;
position:relative;
}

/* LINE */


@keyframes flow{
0%{background-position:0%;}
100%{background-position:200%;}
}

/* CARD */
.feature-card{
position:relative;
z-index:1;

width:240px;
padding:45px 30px;

border-radius:22px;

/* 🔥 GLASS + CLEAN */
background:rgba(255,255,255,0.9);
backdrop-filter:blur(10px);

box-shadow:0 15px 40px rgba(0,0,0,0.1);

transition:0.3s;
}

.feature-card{
opacity:0;
transform:translateY(40px);
transition:all 0.6s ease;
}

/* visible state */
.feature-card.show{
opacity:1;
transform:translateY(0);
}
.feature-card{
animation:float 4s ease-in-out infinite;
}

.feature-card:nth-child(2){ animation-delay:0.5s; }
.feature-card:nth-child(3){ animation-delay:1s; }
.feature-card:nth-child(4){ animation-delay:1.5s; }
.feature-card:nth-child(5){ animation-delay:2s; }

@keyframes float{
0%,100%{ transform:translateY(0);}
50%{ transform:translateY(-8px);}
}
/* HOVER */
.feature-card:hover{
transform:translateY(-15px) scale(1.1);
box-shadow:0 30px 80px rgba(0,0,0,0.25);
}

.feature-card:nth-child(3){
transform:scale(1.12);
background:white;
box-shadow:0 25px 80px rgba(0,0,0,0.25);
}

/* ICON IMAGE */
.feature-card img{
width:95px;
margin-bottom:15px;
transition:0.3s;
}

.feature-card:hover img{
transform:scale(1.1);
filter:drop-shadow(0 10px 20px rgba(108,99,255,0.4));
}

/* TITLE */
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0f172a;
  font-weight: 600;
}

/* TEXT */
.feature-card p {
  font-size: 13px;
  color: #0368f7;
  line-height: 1.5;
}

.step{
position:absolute;
top:-20px;
left:50%;
transform:translateX(-50%);

background:white;
border:2px solid #6c63ff;

width:42px;
height:42px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font: weight bold 16px Inter, Arial, sans-serif;
color:#6c63ff;

box-shadow:0 10px 25px rgba(108,99,255,0.4);
}


/* HOW IT WORKS */
.how-it-works {
  background: url("images/waves.png") center/cover no-repeat;
  padding: 80px 40px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0f172a;
}

/* STEPS CONTAINER */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

/* EACH STEP */
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 15px;
  font-weight: 500;
  color:#020617;
}

/* NUMBER CIRCLE */
.circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

/* CONNECTING LINE */
.line {
  width: 40px;
  height: 2px;
  background: #c7d2fe;
}

/* ACTIVE STEP (optional highlight) */
.step.active {
  border: 1px solid #c7d2fe;
}


.buttons button {
  margin-right: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
}

.buttons :hover {
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37,99,235,0.4);
  transform: translateY(-2px);
}

.dashboard-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.dashboard-wrapper img {
  width: 55%;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.dashboard-text {
  width: 45%;
}


.tick-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.tick-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #0f172a;
}

/* Tick Icon */
.tick-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.primary {
  background: #2563eb;
  color: white;
}

.secondary {
  background: white;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.step {
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-3px);
}


/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card img {
  width: 60px;
  margin-bottom: 15px;
}

.insight-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.insight-wrapper img {
  width: 50%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(37,99,235,0.3);
}


/* STEPS */
.steps {
  margin-top: 30px;
  font-size: 18px;
}

.steps li {
  margin-bottom: 15px;
}

/* CONTACT SECTION BACKGROUND */
.contact-section {
  background: url("images/waves.png") center/cover no-repeat;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

/* CONTACT BOX */
.contact-card {
  background: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* TITLE */
.contact-card h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #0f172a;
}

/* FORM ROW */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* INPUTS */
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
  outline: none;
}

.contact-card textarea {
  resize: none;
  height: 120px;
  margin-bottom: 20px;
}

/* INPUT FOCUS */
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* BUTTON */
.contact-card button {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.4);
}

/* MOBILE */

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  background: #020617;
  color: #94a3b8;
}

/* MOBILE */



/* LOGIN & SIGNUP BOX */
.center {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    background: white;
    width: 320px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.box input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 1rem;
}

.box button {
    width: 100%;
    padding: 12px;
    background: #00c9a7;
    color: white;
    font-size: 1rem;
}

.box p {
    text-align: center;
    margin-top: 15px;
    color: black;
}

.box a {
    color: #007bff;
}
.mock-section {
  display: flex;                 /* 🔑 KEY */
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 80px;
}

/* LEFT CONTENT */
.mock-left {
  width: 50%;
}

/* RIGHT VIDEO */
.mock-right {
  width: 50%;
  display: flex;
  justify-content: flex-end;     /* pushes video to right */
}

/* VIDEO BOX */
.video-container {
  width: 150%;
  max-width: 720px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.video-container video {
  width: 100%;
  display: block;
}
@media (max-width: 900px) {
  .mock-section {
    flex-direction: column;
  }

  .mock-left,
  .mock-right {
    width: 100%;
  }

  .mock-right {
    justify-content: center;
    margin-top: 30px;
  }
}
.feature-points li {
  transition: transform 0.2s ease, color 0.2s ease;
}

.feature-points li:hover {
  transform: translateX(6px);
  color: #2563eb;
}
.feature-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.feature-points li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #1f2937;
  line-height: 1.6;
}

.feature-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;       /* Intervuea blue */
  font-weight: bold;
  font-size: 18px;
}

.logo-letter {
  font-size: 44px;
  font-weight: 700;
  color: #2563eb;
  animation: logoFadeSlide 1.2s ease forwards;
}

@keyframes logoFadeSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.dashboard {
  max-width: 800px;
  margin: auto;
}

.card1 {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  margin-top: 30px;
}

.btn-primary {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
}
video, canvas {
  width: 420px;
  height: auto;
  border-radius: 12px;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.save-message {
  margin-top: 15px;
  padding: 12px 18px;
  background: #16a34a;
  color: white;
  border-radius: 10px;
  display: none;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s ease;
}


.face-capture-body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8fafc;
}

.capture-wrapper {
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.camera-box-face-capture {
  position: relative;
  width: 360px;
  height: 270px;   /* lock aspect ratio */
}

.camera-box-face-capture video,
.camera-box-face-capture canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

#facePreview {
  display: none;
  width: 120px;
  border-radius: 10px;
}

.preview-box-face-capture {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
}

.preview-title {
  font-size: 14px;
  color: #444;
  margin-bottom: 4px;
}
#proceedBtn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
}

/* Page background */
.candidate-form {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  height: 100vh;
}

/* Center container */
.capture-wrapper-candidate-form {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card */
.form-card-candidate-form {
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  width: 360px;
  text-align: center;
}

/* Title */
.form-card-candidate-form h2 {
  margin-bottom: 25px;
  color: #1f2937;
}

/* Inputs */
.form-card-candidate-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.form-card-candidate-form input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Button */
.btn-primary-candidate-form {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary-candidate-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.form-error {
  color: #dc2626;
  font-size: 13px;
  margin-bottom: 10px;
  min-height: 16px;
}

.capture-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 20px;
}

.timer {
  font-size: 28px;
  font-weight: bold;
  color: #2563eb;
}

.transcript {
  background: #111;
  color: #0f0;
  padding: 10px;
  height: 90px;
  overflow: auto;
  font-size: 12px;
  border-radius: 8px;
}

.video-audio-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
}

#preview {
  width: 420px;
  border-radius: 12px;
  background: black;
}

.audio-panel {
  width: 200px;
}

#micBar {
  width: 100%;
  height: 20px;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
}

#micFill {
  height: 100%;
  width: 0%;
  background: #00ff66;
  transition: width 0.1s linear;
}

.button-row {
  margin-top: 20px;
}

.btn-primary {
  padding: 12px 20px;
  margin: 5px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}



.login-card {
  position: relative;
  width: 340px;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  text-align: center;
  color: white;
}

.login-card h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.sub {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 24px;
}

input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 15px;
  background: rgba(255,255,255,0.9);
  transition: 0.2s;
}

input:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
}

.login-button {
  width: 100%;
  padding: 14px;
  margin-top: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  cursor: pointer;
  transition: 0.2s;
}

.login-button:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.signup {
  margin-top: 18px;
  font-size: 14px;
}

.signup a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.signup a:hover {
  text-decoration: underline;
}

/* mobile responsive */


.camera-box {
  position: relative;
}

#video {
  width: 100%;
  border-radius: 12px;
}

#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

#preview {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 10px;
  display: block;
}
.status-text {
  font-weight: bold;
  margin-bottom: 10px;
}

.save-message {
  opacity: 0;
  background: #4CAF50;
  color: white;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: opacity 0.4s;
}


.coverflow{
padding:100px 20px;
text-align:center;
background:linear-gradient(135deg,#5f5cff,#7aa8ff);
color:rgb(15, 15, 15);
overflow:hidden;
}

.carousel{
position:relative;
width:100%;
height:450px;
display:flex;
align-items:center;
justify-content:center;
}

/* TRACK */
.track{
display:flex;
justify-content:center;
align-items:center;
position:relative;
width:100%;
height:100%;
}

/* ITEM */
.item{
position:absolute;
width:260px;
height:360px;

border-radius:20px;
overflow:hidden;

transition:0.6s ease;

box-shadow:0 20px 40px rgba(0,0,0,0.25);

/* 🔥 ADD THIS */
background:rgba(58, 7, 177, 0.1);
backdrop-filter:blur(10px);

opacity:0;
transform:translateX(0) scale(0.8);
}

/* IMAGE */
.item img{
width:100%;
height:100%;
object-fit:cover;
}

/* CENTER */
.item.active{
opacity:1;
transform:translateX(0) scale(1.1);
z-index:5;

/* 🔥 ADD GLOW */
box-shadow:0 30px 80px rgba(0,0,0,0.4);
}

/* LEFT SIDE */
.item.left-1{
opacity:0.7;
transform:translateX(-220px) rotateY(25deg) scale(0.9);
z-index:4;
}

.item.left-2{
opacity:0.4;
transform:translateX(-420px) rotateY(40deg) scale(0.8);
z-index:3;
}

/* RIGHT SIDE */
.item.right-1{
opacity:0.7;
transform:translateX(220px) rotateY(-25deg) scale(0.9);
z-index:4;
}

.item.right-2{
opacity:0.4;
transform:translateX(420px) rotateY(-40deg) scale(0.8);
z-index:3;
}

.item.left-1,
.item.right-1{
opacity:0.6;
}

.item.left-2,
.item.right-2{
opacity:0.3;
}

/* NAV BUTTONS */
.nav{
position:absolute;
top:50%;
transform:translateY(-50%);
background:white;
color:#333;
border:none;
width:45px;
height:45px;
border-radius:50%;
cursor:pointer;
font-size:18px;
z-index:10;
}

.left{ left:20px; }
.right{ right:20px; }


.overlay{
position:absolute;
bottom:0;
width:100%;
padding:20px;

/* 🔥 DARK GRADIENT */
background:linear-gradient(
to top,
rgba(0,0,0,0.85),
rgba(0,0,0,0.3),
transparent
);

color:rgb(8, 8, 8);
text-align:left;
}

.overlay h3{
margin:0;
font-size:18px;
font-weight:600;
}

.overlay p{
margin-top:5px;
font-size:15px;
opacity:0.9;
color: #f2f3f5;
}

.track {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1)
}
.item.active {
  animation: popIn 0.6s ease;
}
@keyframes pop {    
  from { transform: scale(0.9); }
  to { transform: scale(1.1); }
} 

/* SECTION */
.pricing-section{
padding:100px 20px;
text-align:center;
background:linear-gradient(135deg,#f8fafc,#eef2ff);
}

/* TITLES */
.pricing-section h2{
font-size:34px;
font-weight:700;
margin-bottom:8px;
color:#0f172a;
}

.subtitle{
color:#64748b;
margin-bottom:10px;
}

.tagline{
color:#6c63ff;
font-weight:600;
margin-bottom:50px;
}

/* GRID */
.pricing-grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

/* CARD */
.price-card{
position:relative;

width:280px;
padding:40px 25px;

border-radius:22px;
background:white;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

transition:0.3s;
}

/* HOVER */
.price-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 70px rgba(0,0,0,0.15);
}

/* HIGHLIGHT */
.price-card.highlight{
border:2px solid #6c63ff;
transform:scale(1.05);
}

/* BADGE */
.badge{
position:absolute;
top:-12px;
left:50%;
transform:translateX(-50%);

background:#6c63ff;
color:white;

padding:6px 14px;
border-radius:20px;
font-size:12px;
font-weight:600;
}

/* PRICE */
.price-card h1{
font-size:36px;
margin:10px 0;
color:#6c63ff;
}

/* LIST */
.price-card ul{
list-style:none;
padding:0;
margin:20px 0;
}

.price-card li{
margin:8px 0;
color:#475569;
font-size:14px;
}

/* BUTTON */
.price-card button{
width:100%;
padding:12px;

border:none;
border-radius:30px;

background:#6c63ff;
color:white;

font-weight:600;
cursor:pointer;

transition:0.3s;
}

.price-card button:hover{
background:#5848e5;
}
/* ELITE CARD (SPECIAL STYLE) */
.price-card.elite{
background:linear-gradient(135deg,#6c63ff,#5a8dee);
color:white;
transform:scale(1.08);
box-shadow:0 30px 90px rgba(108,99,255,0.4);
}

/* TEXT INSIDE ELITE */
.price-card.elite h1,
.price-card.elite h3,
.price-card.elite li{
color:white;
}

.price-card.elite .per-interview{
color:#e0e7ff;
}

/* BUTTON */
.price-card.elite button{
background:white;
color:#6c63ff;
}

.price-button:hover{
background:#053beb;

}

/* BADGE */
.elite-badge{
background:#fff;
color:#6c63ff;
}
.trust-container{
width:100%;
overflow:hidden;
margin-bottom:15px;
}

.trust-text{
display:inline-block;
white-space:nowrap;

font-size:18px;
font-weight:500;
color:#6c63ff;

/* smooth movement */
animation:scrollText 10s linear infinite;
}

/* animation */
/* ================= MOBILE FIX ================= */
/* ================= SIMPLE MOBILE FIX ================= */
/* ===== PREMIUM MOBILE UI ===== */
@media (max-width: 768px) {

  body {
    padding: 0;
    margin: 0;
  }

  /* SECTION SPACING */
  .section {
    padding: 70px 16px;
  }

  /* NAVBAR CLEAN */
  .navbar {
    padding: 12px 16px;
  }

  .navbar nav {
    display: none; /* hide messy links */
  }

  /* HERO FIX */
  .hero-left,
  .hero-right {
    width: 100%;
    position: static;
    transform: none;
  }

  .content {
    text-align: center;
  }

  .content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .content p {
    font-size: 14px;
    margin-top: 10px;
  }

  /* BUTTONS (VERY IMPORTANT) */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .buttons button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
  }

  /* CARDS */
  .feature-card,
  .card {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
  }

  /* FLEX TO COLUMN */
  .mock-section,
  .dashboard-wrapper,
  .insight-wrapper,
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }

  /* VIDEO */
  video, canvas {
    width: 100% !important;
    border-radius: 12px;
  }

  /* CLEAN LOOK */
  .glass {
    backdrop-filter: blur(10px);
  }

}
.mobileHeader {
  display: none;
}

@media (max-width: 768px) {
  .mobileHeader {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .logo span {
    font-size: 20px;
    font-weight: 600;
  }
  
}


  /* Main app name (Intervuea) */
 
  /* Secondary brand (Evren) */
 


/* hide menu button in desktop */
.menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-btn {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px;
  }

  nav a {
    padding: 12px;
    border-bottom: 1px solid #eee;
  }

  nav.active {
    display: flex;
  }

}
@media (max-width: 768px) {
  .navbar {
    padding: 10px 12px;
  }
}
@media (max-width: 768px) {

  .logo-tagline {
    font-size: 11px;
    opacity: 0.7;
  }

}
@media (max-width: 768px) {

  .logo-letter {
    font-size: 20px;   /* try 18–22px */
    line-height: 1.2;
  }

}
/* ===== LOGIN & SIGNUP MOBILE FIX ===== */
@media (max-width: 768px) {

  /* CENTER FULL SCREEN */
  .center,
  .signup-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
  }

  /* LOGIN BOX */
  .box,
  .signup-card {
    width: 100%;
    max-width: 350px;
    padding: 20px;
    border-radius: 16px;
  }

  /* INPUTS */
  input {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    font-size: 14px;
  }

  /* BUTTONS */
  button {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    font-size: 15px;
    border-radius: 10px;
  }

  /* CAMERA BOX */
  .camera-box {
    width: 100%;
  }

  video {
    width: 100%;
    border-radius: 10px;
  }

  #preview {
    width: 100%;
    margin-top: 10px;
  }

}
@media (max-width: 768px) {

  /* FORCE FULL SCREEN FIX */
  .parallax {
    height: auto !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: 80px !important;
  }

  /* REMOVE ANY CENTER ISSUES */
  .center {
    width: 100% !important;
    padding: 0 15px !important;
  }

  /* MAKE LOGIN CARD PROPER */
  .box {
    width: 100% !important;
    max-width: 320px !important;
    margin: auto !important;
    padding: 20px !important;
    border-radius: 14px !important;
  }

}
/* FULL SCREEN CLEAN LAYOUT */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* CARD */
.box {
  width: 100%;
  max-width: 320px;
  padding: 25px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* INPUT */
.box input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
}

/* BUTTON */
.box button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
}
/* ===== LOGIN PAGE ISOLATION (FINAL FIX) ===== */
.login-page {

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  height: 100vh !important;
  margin: 0 !important;

  background: url("images/blue-waves.png") center/cover no-repeat !important;
}

/* 🚫 DISABLE OLD LAYOUT ONLY FOR LOGIN PAGE */
.login-page .parallax,
.login-page .center {
  all: unset !important;
}

/* ✅ CLEAN LOGIN CARD */
.login-page .box {
  width: 90% !important;
  max-width: 320px !important;

  padding: 25px !important;
  border-radius: 16px !important;

  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.login-page .navbar .cta {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 8px;
}

.login-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* HIDE BY DEFAULT (DESKTOP) */
/* DESKTOP BUTTON (default visible) */
.home-desktop {
  position: fixed;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  z-index: 9999;
 font-size: 14px;

}

/* MOBILE BUTTON (hidden by default) */
.mobile-home-btn {
  display: none;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

  /* hide desktop button */
  .home-desktop {
    display: none;
  }

  /* show mobile button */
  .mobile-home-btn {
    display: flex;

    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 9999;

    width: 44px;
    height: 44px;

    border-radius: 50%;
    border: none;

    background: #2563eb;
    color: white;

    font-size: 20px;
    align-items: center;
    justify-content: center;
  }

}

