/* ========== GENERAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f8f9fc;
  color: #333;
}

/************************* Index PAGE STYLES (Unique Classes) *********************************/


/* ========== NAVBAR ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #4f46e5;
  color: #fff;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e0e0ff;
}

.btn-login {
  background: #226af1;
  color: #4f46e5;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}


/* Mobile Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 22px;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero-buttons .btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
}

.primary-btn {
  background: #fff;
  color: #4f46e5;
  font-weight: bold;
}

.secondary-btn {
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
}

.primary-btn:hover {
  background: #f3f3ff;
}

.secondary-btn:hover {
  background: #fff;
  color: #4f46e5;
}

/* ========== FEATURES ========== */
.features {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.features h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #f8f9fc;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 35px;
  color: #4f46e5;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

/* ========== ABOUT ========== */
.about {
  padding: 70px 20px;
  background: #f3f4ff;
  text-align: center;
}

.about-content h2 {
  font-size: 30px;
  color: #333;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto;
  color: #555;
}

/* ========== FOOTER ========== */
.footer {
  text-align: center;
  background: #fff;
  padding: 20px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #eee;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #4f46e5;
    top: 65px;
    right: 0;
    width: 200px;
    padding: 20px;
  }

  .nav-links a {
  padding: 8px 0;
}

.nav-links .btn-login {
  background: #fff;
  color: #4f46e5;
  text-align: center;
  margin-top: 10px;
}


  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 30px;
  }
}


/* =========================
   Benefits Section
========================= */
.benefits {
  padding: 80px 20px;
  text-align: center;
  background: #f8f9fc;
}

.benefits h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card i {
  font-size: 35px;
  color: #4f46e5;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* =========================
   Workflow Section
========================= */
.workflow {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.workflow h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.step-card {
  background: #f8f9fc;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card i {
  font-size: 35px;
  color: #2563eb;
  margin-bottom: 15px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #555;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* =========================
   Testimonials Section
========================= */
.testimonials {
  padding: 80px 20px;
  background: #f3f4ff;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 16px;
  color: #2563eb;
}

/* =========================
   FAQ Section
========================= */
.faq {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.faq h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.faq-item {
  max-width: 700px;
  margin: 0 auto 20px auto;
  background: #f8f9fc;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: left;
}

.faq-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #2563eb;
}

.faq-item p {
  font-size: 14px;
  color: #555;
}

/* =========================
   Call-to-Action (CTA) Section
========================= */
.cta {
  background: #4f46e5;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 15px;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 30px;
}

.cta a.btn {
  padding: 12px 25px;
  margin: 5px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
}

.cta .primary-btn {
  background: #fff;
  color: #4f46e5;
}

.cta .secondary-btn {
  border: 2px solid #fff;
  color: #fff;
}

.cta .primary-btn:hover {
  background: #f3f3ff;
}

.cta .secondary-btn:hover {
  background: #fff;
  color: #4f46e5;
}

/* =========================
   Responsive Grids
========================= */
@media (max-width: 768px) {
  .feature-grid,
  .benefits-grid,
  .workflow-steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cta a.btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
}





/************************* Index PAGE STYLES (Unique Classes) *********************************/



/************************* LOGIN PAGE STYLES (Unique Classes) *********************************/

/* Wrapper to isolate everything */
.login-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Login box */
.login-box {
  background: #fff;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 460px;
  animation: loginFadeIn 1s ease-in-out;
  position: relative;
}

/* Logo */
.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.login-logo img {
  width: 42%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* Heading */
.login-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 22px;
  font-weight: bold;
}

/* Form */
.login-form-group {
  margin-bottom: 20px;
  position: relative;
}

.login-form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

.login-form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.login-form-group input:focus {
  border-color: #4f46e5;
  outline: none;
  box-shadow: 0px 0px 6px rgba(79, 70, 229, 0.4);
}

/* Password eye icon */
.login-password-wrapper input {
  padding-right: 40px;
}

.login-password-wrapper .login-toggle-password {
  position: absolute;
  top: 70%;
  right: 14px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  font-size: 18px;
}

/* Submit button */
.login-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #4f46e5, #9333ea);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-btn:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(79, 70, 229, 0.5);
}

/* Footer text */
.login-footer {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 12px;
  color: #666;
  opacity: 0.85;
  user-select: none;
  transition: all 0.3s ease;
}

/*.login-footer:hover {*/
/*  opacity: 1;*/
/*  transform: translate(-50%, -2px);*/
/*  color: #333;*/
/*}*/

/* Animation */
@keyframes loginFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/********************************** END LOGIN PAGE STYLES *********************************/











