* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}
html {
  scroll-padding-top: 80px; /* match or slightly more than navbar height */
}

body {
    /*background-color: #0a0a0a;*/
    /*background-image: url("../images/pexels-bess-hamiti-83687-36487.jpg");*/

    color: white;
}
.video-background {

    position: fixed;

    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;

}
.video-background::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-background::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* dark overlay */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;

}
/* Hamburger hidden by default (desktop) */


.logo {
  font-size: 1.5em;
}

.highlight {
  color: #38f9d7;
}




.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}




.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
    /*background: radial-gradient(circle at 50% 30%, #111 0%, #000 100%);*/
}


.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: #38f9d7;
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 247, 209, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 247, 209, 0.3);
}

/*navbar section*/

nav {
    position: fixed;
    top: 0;
    left: -300px; /* hidden off screen (left side now) */
    width: 300px;
    height: 100%;
    background: rgba(72, 91, 91, 0.5);
    backdrop-filter: blur(5px);
    transition: left 0.4s ease;
    padding: 20px;
    z-index: 999;
}

nav.active {
    left: 0; /* slide in from left */
}

.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px; /* moved toggle to left */
    width: 30px;
    height: 25px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animation for X icon */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

nav a {
    color: rgb(251, 250, 249);
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.nav-divider {
    width: 70%;
    height: 2px;
    margin: 20px auto;
    border-radius: 5px;
}

nav a:hover {
    background: #38f9d7;
    color: #0b0c10;
    border-radius: 5px;
}

/* Ensure visibility on larger screens */
@media (min-width: 1024px) {
    nav {
        left: -300px; /* keep it hidden off-screen */
        display: block;
    }
}

/* Header */
/* Header */
header {
    display: flex;
    justify-content: flex-end; /* pushes everything to the right */
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 40px;
}




/* Optional: body lock when nav open (prevents background scroll) */
body.nav-open {
  overflow: hidden;
}


/*features section*/

.features-section {
  background-color: #0b0f17;
  padding: 80px 50px;
  color: #fff;

}

.section-title {
  text-align: center;
  color: #38f9d7;
  font-size: 2.5rem;

  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
}

.feature-card {
  background: #131a24;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(28, 52, 49, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(56, 249, 215, 0.3);
}

.feature-icon {
  font-size: 36px;
  color: #38f9d7;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p {
  font-size: 1rem;
  color: #bbb;
}




/*about section*/


/* About Section */
.about-section {
  background-color: #0b0f17;
  padding: 80px 0;
  color: white;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.about-title {
  color: #38f9d7;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.about-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #131a24;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
  padding: 20px;
}

.about-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  border: 3px solid #38f9d7;
}

.about-text {
  flex: 2 1 500px;
  text-align: left;
  padding: 20px;
}

.about-name {
  color: #38f9d7;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.about-text h4 {
  color: #38f9d7;
  margin-top: 20px;
  font-size: 1.3rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
}


.pricing-section {
  background-color: #000;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #38f9d7;
  margin-bottom: 40px;
}

.pricing-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(56, 249, 215, 0.3);
  gap: 40px;
}

.pricing-content {
  flex: 1 1 300px;
  max-width: 500px;
  text-align: left;
}

.pricing-content h3 {
  font-size: 28px;
  color: #38f9d7;
  margin-bottom: 15px;
}

.qr-container {
  flex: 1 1 250px;
  text-align: center;

}

.qr-container img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  border: 2px solid #38f9d7;
  padding: 5px;
    background: white;
}

.qr-container p {
  margin-top: 10px;
  color: #ccc;
}


/*resume uplaod form*/


.resume-upload-section {

  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  animation: fadeInBlur 1s ease-in-out;



}

.resume-upload-content {
  max-width: 600px;
  background-color: rgba(20, 20, 20, 0.85);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(56, 249, 215, 0.3);
  color: #fff;
  animation: slideIn 1.2s ease;
  font-family: 'Segoe UI', sans-serif;

}
 .resume-upload-content:hover{
     transform: translateY(-7px);

 }

.resume-upload-content h1,
.resume-upload-content p,
.resume-upload-content label,
.resume-upload-content button,
.resume-upload-content h2,
.resume-upload-content h3,
.resume-upload-content ul,
.resume-upload-content li {
  color: #fff;
}

.resume-upload-content h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.resume-upload-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.resume-upload-content input[type="file"],
.resume-upload-content button {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: none;
  background-color: #38f9d7;
  color: #090909;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.resume-upload-content input[type="file"] {
  background-color: #333;
}

.resume-upload-content button:hover {
  background-color: #38f9d7;
}

.resume-upload-content ul {
  padding-left: 20px;
}

@keyframes fadeInBlur {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(10px);
  }
}

@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}




/*markdown style*/
/* AI Feedback Section */
.ai-feedback-section {
  background: #181a1b; /* Softer dark */
  color: #f5f5f5;
  padding: 60px 20px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.ai-feedback-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* AI Feedback Card */
.ai-box {
  background: linear-gradient(145deg, #1e2224, #17191a);
  border: 1px solid rgba(78, 242, 212, 0.4);
  border-radius: 14px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(78, 242, 212, 0.2);
}

.ai-box h2 {
  color: #4ef2d4;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.markdown-body ul {
  margin-left: 1.5rem;
  list-style: disc;
  padding-left: 10px;
}

.markdown-body strong {
  color: #4ef2d4;
}

.markdown-body h2, .markdown-body h3 {
  color: #6fffe9;
  margin-top: 1.5em;
}

.markdown-body li {
  margin-bottom: 0.6em;
}


 #suggestions-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  /* Class to make it visible */
  #suggestions-section.show {
    opacity: 1;
    transform: translateY(0);
  }

   #ats_score {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  /* Class to make it visible */
  #ats_score.show {
    opacity: 1;
    transform: translateY(0);
  }
  #loading-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    font-family: sans-serif;
  }

  .loading-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #38f9d7;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
  }

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




  /*register page design*/

/* Register Page Container */
#register-page-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Glassmorphism Box */
#register-page-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 20px;
    padding: 40px;
    width: 350px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    text-align: center;
}

/* Form */
#register-page-form h2 {
    color: #38f9d7;
    margin-bottom: 20px;
}

#register-page-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 15px;
}

#register-page-form input::placeholder {
    color: #bbb;
}

#register-page-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #38f9d7, #0ff);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

#register-page-form button:hover {
    background: linear-gradient(90deg, #0ff, #38f9d7);
    transform: translateY(-2px);
}



/*profile style*/

/* Profile Page Styling */
.profile-container {
    max-width: 750px;
    margin: 100px auto;
    background: rgba(13, 13, 13, 0.6); /* darker glass look */
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(56, 249, 215, 0.3);
    text-align: center;
    color: #fff;
    border: 1px solid rgba(56, 249, 215, 0.3);
    animation: fadeInUp 1s ease;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: rgba(56, 249, 215, 0.15);
    border: 3px solid #38f9d7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: #38f9d7;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(56, 249, 215, 0.5);
}

.profile-username {
    font-size: 2rem;
    font-weight: bold;
    color: #38f9d7;
    text-shadow: 0 0 10px rgba(56, 249, 215, 0.8);
}

.profile-details {
    margin: 30px 0;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 1rem;
}

.detail-label {
    font-weight: bold;
    color: #38f9d7;
}

.detail-value {
    color: #f0f0f0;
}

.profile-actions {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.profile-actions .btn {
    background: linear-gradient(135deg, #38f9d7, #0dcaf0);
    color: #000;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(56, 249, 215, 0.6);
}

.profile-actions .btn:hover {
    background: linear-gradient(135deg, #0dcaf0, #38f9d7);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(56, 249, 215, 0.9);
}

/* Premium Button */
.premium-btn {
    background: #38f9d7;
    color: #000;
    cursor: not-allowed;
}

/* Smooth animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/*payment page design*/

.pay-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(56,249,215,0.6);
}

/* How it works */


.how-it-works {
  text-align: center;
  padding: 60px 20px;
  background-color: #0b0f17;
    margin-top: 150px;
    margin-bottom: 150px;

}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.how-it-works .intro {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

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

.step {
  background: #131a24;;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  width: 300px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
}

.step i {
  font-size: 2rem;
  color: #0073e6;
  margin-bottom: 15px;
}

.final-cta {
  margin-top: 50px;
  font-size: 1.2rem;
}

.btn-upgrade {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #0073e6;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-upgrade:hover {
  background: #005bb5;
}

/* CTA */
.cta {
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}
.cta h2 { margin-bottom: 25px; }


/* Upgrade Section */
.upgrade-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  color: #fff;
}

/* Glassmorphic Pricing Card */
.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(56, 249, 215, 0.3);
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(56, 249, 215, 0.2);
  backdrop-filter: blur(12px);
  animation: fadeIn 1s ease-in-out;
}

.pricing-card h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.highlight {
  color: #38f9d7;
  text-shadow: 0 0 10px rgba(56, 249, 215, 0.8);
}

.pricing-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ccc;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin: 20px 0;
  color: #38f9d7;
}
.price span {
  display: block;
  font-size: 0.9rem;
  color: #aaa;
}

/* Glowing Button */
.glow-btn {
  background: linear-gradient(90deg, #38f9d7, #00c6ff);
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  box-shadow: 0 0 20px rgba(56, 249, 215, 0.6);
  transition: all 0.3s ease-in-out;
}
.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(56, 249, 215, 0.9);
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}


/*css for job description*/

  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #f0f0f0;
  }
  .form-group input[type="file"],
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 16px;
  }


  /* --- Loading Overlay Styles --- */
#loading-overlay {
  position: fixed; /* Cover the entire screen */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 15, 23, 0.8); /* Dark semi-transparent background */
  backdrop-filter: blur(8px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; /* Use flexbox for centering */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

#loading-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

#loading-overlay p {
  color: #fff;
  margin-top: 20px;
  font-size: 1.2em;
  font-weight: 500;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.2); /* Faint circle */
  border-top-color: #38f9d7; /* Your neon-cyan accent color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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


/* In your Startup_app/css/style.css file */

.stats-section {
  background-color: #0b0f17; /* Matches your features section */
  padding: 80px 50px;
  color: #fff;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.chart-container {
  flex: 1 1 300px; /* Flexbox for responsive columns */
  max-width: 350px;
  position: relative;
}

.stats-text {
  flex: 1 1 400px; /* Flexbox for responsive columns */
  max-width: 600px;
}

.stats-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.big-number {
  font-size: 6rem;
  font-weight: 700;
  color: #38f9d7; /* Your highlight color */
  margin: 0;
  line-height: 1;
}

.stats-description {
  font-size: 1.2rem;
  color: #ccc;
  margin-top: 10px;
  margin-bottom: 25px;
}

.stats-solution {
  font-size: 1.1rem;
  line-height: 1.7;
}

.stats-solution strong {
  color: #38f9d7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    text-align: center;
  }
  .stats-text {
    order: -1; /* Puts the text above the chart on mobile */
  }
}