body {
  font-family: "Poppins", Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-content {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  gap: 4px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  font-size: clamp(12px, 2vw, 30px);
}
.logo-img{
  max-width: clamp(32px, 3vw, 64px);
  height: auto;
}
nav {
  display: flex;
  gap: clamp(5px, 1.4vw, 2vw);

}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: clamp(0.7rem, 2.0vw, 1.4rem);
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary);
}
/* Buttons */
.button {
  display: inline-block;
  padding: clamp(8px, 0.8vw, 16px);
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
  font-size: clamp(10px, 2.2vw, 18px);
}



.button:hover {
  background: rgba(106, 74, 158, 0.9);
}

.button-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: fadeUp 0.5s ease-out;
}

/* Features */
.features {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.feature-item h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.step-item h3 {
  color: var(--secondary);
  margin: 1rem 0;
}

/* Pricing */
.pricing {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  text-align: center;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Contact */
.contact {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* Footer */
footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  margin-left: 1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

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

@media (min-width: 768px) {


  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Common styles for all steps */
.step {
  display: none;
  padding: clamp(20px, 5vw, 50px) clamp(15px, 5vw, 100px);
  max-width: 1200px;
  margin: 0 auto;
}

.step.active {
  display: flex;
  flex-direction: column;
  min-height: calc(100% - 140px);
}
#uploadForm{
  display: flex;
  flex-direction: column;
  align-items: center;
}


h2 {
  color: #353951;
  font-family: Poppins, sans-serif;
  font-size: clamp(22px, 4vw, 45px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: clamp(20px, 4vw, 50px);
  text-align: center;
}

/* Step A: File Upload */
.upload-container {
  display: flex;
  align-items: center;
  border-radius: 15px;
  border: 1px solid #9e804a;
  background: #fff;
  padding: clamp(10px, 2vw, 20px);
  position: relative;
  cursor: pointer;
  margin-bottom: clamp(20px, 4vw, 60px);
  width: 100%;
  max-width: 700px;
}

.upload-label {
  flex-grow: 1;
  color: #9e804a;
  font-size: clamp(14px, 2.5vw, 20px);
  line-height: 1.5;
}

#docInput {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#docInput:disabled {
  cursor: not-allowed;
}

.upload-container.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Language Dropdown */
.language-container {
  width: 100%;
  max-width: 700px;
  margin-bottom: clamp(20px, 4vw, 40px);
}

.language-container label {
  display: block;
  color: #9e804a;
  font-size: clamp(14px, 2.5vw, 20px);
  margin-bottom: 5px;
}

#languageSelect {
  width: 100%;
  height: 71px;
  min-height: fit-content;
  padding: clamp(10px, 2vw, 8px);
  border-radius: 15px;
  border: 1px solid #9e804a;
  color: #9e804a;
  background: #fff;
  font-size: clamp(14px, 2.5vw, 20px);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

#languageSelect:focus {
  /* box-shadow: 0 0 0 2px rgba(106, 74, 158, 0.2); */
}

#languageSelect option {
  padding: 10px;
  font-size: clamp(14px, 2.5vw, 18px);
}

/* Disabled Button */
.upload-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

.upload-icon {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #666;
  padding-right: clamp(5px, 2vw, 10px);
}

.file-info {
  margin-top: clamp(10px, 2vw, 20px);
  width: 100%;
  max-width: 700px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(10px, 2vw, 20px) 0;
  border-bottom: 1px solid rgba(158, 128, 74, 0.5);
  color: #9e804a;
  font-size: clamp(14px, 2.5vw, 20px);
  line-height: 1.5;
}

.row {
  color: #353951;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.5;
}

.upload-btn {
  display: block;
  width: 100%;
  max-width: 700px;
  border: none;
  padding: clamp(10px, 2vw, 20px);
  border-radius: 50px;
  background: #6a4a9e;
  cursor: pointer;
  margin-top: clamp(20px, 4vw, 40px);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  line-height: normal;
  transition: background-color 0.3s ease;
}

.upload-btn:hover {
  background: #5e0094;
}

/* Step B: Email Input */
#emailInput {
  width: 100%;
  max-width: 700px;
  padding: clamp(10px, 2vw, 20px);
  color: #9e804a;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.5;
  border-radius: 15px;
  border: 1px solid #9e804a;
  background: #fff;
  margin-bottom: clamp(20px, 4vw, 40px);
}

#sendOtpBtn {
  width: 100%;
  max-width: 700px;
  padding: clamp(10px, 2vw, 20px);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  line-height: normal;
  border-radius: 50px;
  background: #6a4a9e;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#sendOtpBtn:hover {
  background-color: #4a2590;
}


/* Step C: OTP Verification */
#stepC {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px); /* Account for header and footer */
  padding: clamp(20px, 5vw, 40px);
  text-align: center;
  margin: 0 auto;
}

#stepC h2 {
  color: #353951;
  font-family: Poppins;
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(10px, 2vw, 20px);
  text-align: center;
}

#stepC p {
  color: #353951;
  font-family: Inter;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: clamp(30px, 4vw, 40px);
  text-align: center;
}

.otp-container {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 16px);
  margin-bottom: clamp(30px, 4vw, 40px);
  width: 100%;
  max-width: 600px;
}

.otp-input {
  width: clamp(40px, 12vw, 80px);
  height: clamp(45px, 12vw, 80px);
  font-size: clamp(18px, 3vw, 24px);
  text-align: center;
  border-radius: 8px;
  border: 1px solid #9E804A;
  background: #FFF;
  outline: none;
  transition: border-color 0.3s;
}

.otp-input:focus {
  border-color: #6A4A9E;
  box-shadow: 0 0 0 2px rgba(106, 74, 158, 0.1);
}

#verifyOtpBtn {
  width: 100%;
  /* max-width: 400px; */
  height: clamp(50px, 8vh, 65px);
  padding: 0 20px;
  color: #FFF;
  font-family: Inter;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  line-height: normal;
  border: none;
  border-radius: 50px;
  background: #6A4A9E;
  cursor: pointer;
  margin-bottom: clamp(20px, 3vw, 30px);
  transition: background-color 0.3s ease;
}

#verifyOtpBtn:hover {
  background-color: #5b3f8f;
}

#verifyOtpBtn:disabled {
  background-color: #5b3f8f;
  cursor: not-allowed;
  opacity: 0.7;
}

.resend-text {
  color: #353951;
  font-family: Inter;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
  margin-bottom: clamp(10px, 2vw, 20px);
}

#resendOtpBtn {
  color: #6A4A9E;
  font-family: Inter;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: underline;
}

#resendOtpBtn:hover {
  color: #5b3f8f;
}

#otpVerifyMsg {
  margin-top: clamp(10px, 2vw, 20px);
  font-size: clamp(14px, 2vw, 16px);
  text-align: center;
}

/* Media Queries for Step C */
@media (max-width: 768px) {
  .otp-container {
    gap: 10px;
  }
  
  .otp-input {
    width: clamp(35px, 10vw, 60px);
    height: clamp(40px, 10vw, 60px);
  }
}

@media (max-width: 480px) {
  .otp-container {
    gap: 8px;
  }
  
  .otp-input {
    width: clamp(30px, 8vw, 50px);
    height: clamp(35px, 8vw, 50px);
  }
}

@media(max-width: 500px) {
  .contact{
    width: clamp(100px, 10vw, 300px);
  }
}

/* Step D: Download */
.primary-btn,
.secondary-btn {
  width: 100%;
  max-width: 650px;
  padding: clamp(10px, 2vw, 20px);
  font-family: Inter, sans-serif;
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 600;
  line-height: normal;
  border-radius: 50px;
  cursor: pointer;
  margin-bottom: clamp(10px, 2vw, 20px);
  transition: background-color 0.3s ease;
}

.primary-btn {
  color: #fff;
  background: #6a4a9e;
}

.primary-btn:hover {
  background-color: #4a2590;
}

.secondary-btn {
  color: #353951;
  background: rgba(218, 173, 93, 0.3);
}

.secondary-btn:hover {
  background-color: #d6c296;
}

/* Step E: Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 20px);
  max-width: 700px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: clamp(10px, 2vw, 20px);
  border-radius: 15px;
  border: 1px solid #9e804a;
  background: #fff;
  color: #9e804a;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.5;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-button {
  width: 100%;
  padding: clamp(10px, 2vw, 20px);
  border-radius: 50px;
  background: #6a4a9e;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #4a23a2;
}

/* Step F: About */
.about-section {
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  color: #353951;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.6;
  margin-bottom: clamp(15px, 3vw, 30px);
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader.active {
  opacity: 1;
  visibility: visible;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-text {
  margin-top: 15px;
  font-size: clamp(14px, 2.5vw, 16px);
  color: #333;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media(max-width:470px){
  .logo-text{
    display: none;
  }
}
/* Media Queries */
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about {
    margin-top: clamp(10px, 2vw, 20px);
  }

  .step {
    padding: clamp(15px, 3vw, 30px) clamp(10px, 3vw, 50px);
  }

  .otp-container {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .header {
    padding: clamp(10px, 2vw, 20px);
  }

  .about {
    flex-direction: column;
    align-items: center;
  }

  .step {
    padding: clamp(10px, 2vw, 20px);
  }

  .otp-input {
    width: clamp(35px, 10vw, 60px);
    height: clamp(40px, 10vw, 60px);  
  }
}

.email-container {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 20px);
  max-width: 700px;
}

#stepD {
  align-items: center;
}
@media(max-width: 500px) {
  #stepA {
    margin: 0px 10px;
  }
}


:root {
  --primary: #6A4A9E;
  --secondary: #9E804A;
  --text: #1a1a1a;
  --text-light: #666666;
  --background: #ffffff;
  --border: #e5e5e5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.5;
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-hero {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.privacy-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.privacy-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.privacy-content {
  padding: 4rem 2rem;
}

.privacy-wrapper {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.privacy-wrapper h2 {
  font-size: 1.8rem;
  margin-top: 25px;
  color: var(--primary);
}

.privacy-wrapper h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  color: var(--secondary);
}

.privacy-wrapper p,
.privacy-wrapper ul {
  font-size: 1.1rem;
  line-height: 1.7;
}

.privacy-wrapper ul {
  padding-left: 20px;
}

.privacy-wrapper ul li {
  margin-bottom: 10px;
}

.privacy-wrapper a {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-wrapper {
      padding: 30px;
  }
}
