/* Base styling */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #0B0121, #442274);
  color: #c6c7ca;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #ebeffa;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(136, 79, 255, 0.25);
  transition: all 0.3s ease;
}

.container {
  max-width: 1080px;
  margin: auto;
  padding: 10px;
}

.menubar {
  max-width: 1080px;
  margin: auto;
  padding: 0px;

}


.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-content: flex-start;
  justify-content: center;
  

}

.steps h2{
  font-size: 40px;
  color: #ebeffa;
}

.steps p{
  font-size: 18px;
  text-align: center;
    color: #ebeffa;
  
}

.step{
  width: 300px;
  height: auto;
  padding: 20px;
  background-color: #1d1233;
  border-radius: 10px;
  margin: 10px;
  box-shadow: 0 0 15px rgba(136, 79, 255, 0.2);
}

.step h3 {
  font-size: 20px;
  color: #ebeffa;
  margin-bottom: 10px;

}



.step img {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  
}



.features h2{
  font-size: 35px;
  color: #ebeffa;
  text-align: center;
}

.features p{
  font-size: 18px;
    color: #ebeffa;
    text-align: center;
  
}


.features {

  padding: 20px;
  background-color: #1d1233;
  margin: 80px 0px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(136, 79, 255, 0.2);
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-content: flex-start;
  justify-content: center;
  margin-top: 40px;
 
}

.features-list h3 {
  font-size: 20px;
  color: #ebeffa;
  margin-bottom: 10px;
  text-align: center;

}

.feature {
  height: auto;
  width: 300px;
  padding: 10px;
  border: 1px solid #3a3055;
  border-radius: 10px;


}



.steps h2 {

  font-size: 34px;
  text-align: center;

}

.step{
  flex: 1;
  padding: 20px;
  background-color: #1d1233;
  border-radius: 10px;
  margin: 10px;
  box-shadow: 0 0 15px rgba(136, 79, 255, 0.2);
}

.step h3 {
  font-size: 20px;
  color: #ebeffa;
  margin-bottom: 10px;
  text-align: center;

}
.steps h2 {
  text-align: center;

}


.hero {
  background: linear-gradient(to bottom, #0B0121, #442274);
  padding: 40px 20px;
  margin-top: 100px;
  margin-bottom: 50px;
  border-radius: 10px;
  text-align: center;
  color: #ebeffa;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(136, 79, 255, 0.2);
}

.result-box {
  background-color: #1d1233;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(136, 79, 255, 0.2);
}

/* Transcript result box */
#outputText {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #3a3055;
  margin-top: 20px;
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
  white-space: no-wrap;
  margin-bottom: 15px;

  
}

/*FAQS */
.faq-section {
  background: #f9fbff;
  padding: 20px 20px;
  border-top: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(136, 79, 255, 0.2);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #222;
  text-align: center;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.faq-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}



/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 2, 37, 0.295); /* Transparent background */
  backdrop-filter: blur(10px);
  padding: 0px 0px 10px 0px;
  position: sticky;
  top: 0;
  z-index: 999;
  margin: 10px 0;
}

.logo img {
  display: block;
  margin: 0 auto;
  margin-bottom: 5px;

}


.nav-links a {
  color: #ebeffa;
  margin-left: 50px;
  margin-right: 50px;
  transition: color 0.2s;


}


.navbar a:hover {

  color: #655a8b;


}

/* Remove Timestamps links */
.remove-timestamps {
 background: linear-gradient(to bottom, #ffffff, #ffffff);
  padding: 10px 0px 50px 0px;
  margin-top: 80px;
  margin-bottom: 80px;
  border-radius: 10px;
  text-align: center;
  color: #ebeffa;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(136, 79, 255, 0.2);
}

.remove-timestamps h3{
  color: #01040e;
  text-align: center;
  font-size: 35px;

}

.remove-timestamps p{
  color: #655a8b;
  text-align: center;
  font-size: 16px;

}





/* Headings */
h1, h2, h3 {
  color: #ebeffa;
  margin-bottom: 10px;

}

.title {
  font-size: 55px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
}

.title-style {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(270deg,#4f56ff,#ff4980);
  -webkit-background-clip: text;
  background-clip: text;

}

.subtitle {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 40px;
}

/* Buttons */
button {
  background-color: #0B0121;
  border: 2px 
  solid #655a8b;
  padding: 12px 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  margin: 10px 0;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(136, 79, 255, 0.3);
  transition: 0.3s;
  
}

button:hover {
  background-color: #5e39aa;
  box-shadow: 0 4px 20px rgba(136, 79, 255, 0.5);
}

/* Inputs */
input, select {

  width: 90%;
  max-width: 100%;
  min-height: 61px;
  padding-left: 30px;
  margin: 12px 0;
  border: 3px solid #655a8b;
  border-radius: 8px;
  background: #1d1233;
  color: #ebeffa;

  
}

textarea {
  width: 80%;
  max-width: 80%;
  min-height: 61px;
  padding-left: 30px;
  margin: 12px 0;
  border: 3px solid #655a8b;
  border-radius: 8px;
  background: #1d1233;
  color: #ebeffa;
  font-size: 16px;
  padding: 20px;

  
}










/* Step-by-step and FAQs */
.section {
  margin-top: 60px;
}

.step-box, .faq-box {
  background-color: #1d1233;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255, 102, 255, 0.1);
}

/* Footer */
.footer {
  max-width: 1080px;
  text-align: center;
  margin-top: 40px;
   margin: auto;
  padding: 0px 20px;
  border-top: 1px solid #3a3055;
  font-size: 14px;
  color: #999;
}

.transcribe-cta {
  text-align: center;
  background-color: #f0f8ff;
  padding: 25px;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.transcribe-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.transcribe-cta p {
  font-size: 1rem;
  color: #555;
}


.footer-menu-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 15px;
}

.footer-menu a {
  margin: 0 10px;
}

.footer-social a {
  font-size: 18px;
  margin: 0 8px;
  color: #ebeffa;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #007BFF;
}

@media (max-width: 600px) {
  .footer-menu-social {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/*Share buttons */

.share-section {
  margin: 40px 0 20px;
  text-align: center;
}

.share-section p {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.share-buttons a {
  display: inline-block;
  margin: 6px 8px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.share-buttons .facebook { background: #3b5998; }
.share-buttons .twitter { background: #1da1f2; }
.share-buttons .linkedin { background: #0077b5; }
.share-buttons .whatsapp { background: #25d366; }
.share-buttons .reddit { background: #ff4500; }
.share-buttons .telegram { background: #0088cc; }

.share-buttons a:hover {
  opacity: 0.9;
}









/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 0;
    position: static;
  }

  

  .navbar a {
    margin: 10px 10px;
  }

  .title, h1, h2, h3 {
    font-size: 30px;
  }

  .hero {
  
  margin-top: 30px;
  margin-bottom: 30px;
 
}

.menubar {
  max-width: 1080px;
  height: auto;
  margin: auto;
  padding-bottom: 5px;

}
  
}



.custom-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

.custom-toast.show {
  opacity: 1;
  pointer-events: auto;
}

#historyList {
  transition: opacity 0.5s ease;
}


#historyList {
  overflow-y: auto;
  margin-top: 20px;
  padding: 10px;
  background-color: #1d1233;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(136, 79, 255, 0.2);
}

#historyList li{
  list-style: none;
  padding: 10px;
  border: 1px solid #3a3055;
  color: #ebeffa;
  font-size: 16px;
  margin-bottom: 10px;
  border-radius: 5px;


}
  