:root {
  --primary-color: #6f42c1;
  --secondary-color: #2ec5e8;
  --accent-color: #ff7b72;
  --dark-bg: #0d1117;
  --darker-bg: #010409;
  --light-text: #f0f6fc;
  --muted-text: #8b949e;
  --border-color: #30363d;
  --card-bg: #161b22;
  --button-bg: #238636;
  --button-hover: #2ea043;
  --transition: all 0.3s ease;
  --scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Accounts for fixed header */
}

section{
  padding: 80px 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* Top Banner */
.top-banner {
  background-color: var(--darker-bg);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.banner-icon {
  margin-right: 8px;
}

.banner-link {
  margin-left: 12px;
  color: var(--secondary-color);
  font-weight: 500;
}

.banner-link:hover {
  text-decoration: underline;
}

/* Header */
header {
  background-color: var(--darker-bg);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo{
  max-width: 270px;
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.logo img{
  width: 100%;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.logo-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.logo-text {
  color: #2ec5e8;
}

.main-nav ul {
  display: flex;
  gap: 24px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.main-nav a:hover {
  color: var(--secondary-color);
}

.main-nav a.active {
  color: var(--secondary-color);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-btn {
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 16px;
}

.talk-btn {
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.talk-btn:hover {
  color: var(--secondary-color);
}

.trial-btn {
  background-color: var(--button-bg);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.trial-btn:hover {
  background-color: var(--button-hover);
}

.login-link {
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.login-link:hover {
  color: var(--secondary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--light-text);
}

/* Hero Section */
.hero {
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.subtitle {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.highlight {
  color: var(--secondary-color);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(46, 197, 232, 0.2);
  z-index: -1;
}

.description {
  font-size: 18px;
  color: var(--muted-text);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.try-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
}

.try-btn:hover {
  background-color: #7e57c2;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.circle-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(111, 66, 193, 0.3);
}

.circle-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(46, 197, 232, 0.3);
}

.circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.2), rgba(46, 197, 232, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-logo {
  width: 110px;
  height: 75px;
  object-fit: cover;
}

.visual-dots .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-1 {
  top: 20%;
  left: 20%;
  background-color: var(--primary-color);
  animation: pulse 3s infinite;
}

.dot-2 {
  top: 20%;
  right: 20%;
  background-color: var(--secondary-color);
  animation: pulse 3s infinite 0.5s;
}

.dot-3 {
  bottom: 20%;
  left: 20%;
  background-color: var(--accent-color);
  animation: pulse 3s infinite 1s;
}

.dot-4 {
  bottom: 20%;
  right: 20%;
  background-color: var(--primary-color);
  animation: pulse 3s infinite 1.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.visual-lines .line {
  position: absolute;
  background-color: rgba(46, 197, 232, 0.3);
}

.line-1 {
  top: 50%;
  right: 0;
  width: 100px;
  height: 2px;
  transform: translateY(-50%);
}

.line-2 {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  transform: translateX(-50%);
}

.line-3 {
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  transform: translateX(-50%);
}

/* Benefits Section */
.benefits {
  background-color: var(--darker-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.2), rgba(46, 197, 232, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon i {
  font-size: 24px;
  color: var(--secondary-color);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--muted-text);
  font-size: 15px;
}

/* How It Works Section */

.steps-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 25px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-right: 30px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-content {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid var(--border-color);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(46, 197, 232, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-icon i {
  font-size: 20px;
  color: var(--secondary-color);
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--muted-text);
  font-size: 15px;
}

/* Code Preview Section */

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.preview-container {
  background-color: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  background-color: var(--darker-bg);
  border-bottom: 1px solid var(--border-color);
}

.tab {
  padding: 12px 20px;
  background: none;
  border: none;
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.tab.active {
  color: var(--light-text);
  border-bottom: 2px solid var(--primary-color);
}

.tab:hover:not(.active) {
  color: var(--light-text);
  background-color: rgba(255, 255, 255, 0.05);
}

.code-editor {
  display: flex;
  padding: 16px 0;
  overflow-x: auto;
}

.line-numbers {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  color: var(--muted-text);
  font-family: monospace;
  text-align: right;
  user-select: none;
}

.code-content {
  display: none;
  flex: 1;
  font-family: monospace;
  padding-right: 16px;
}

.code-content.active {
  display: block;
}

.code-content pre {
  margin: 0;
}

.code-content code {
  color: var(--light-text);
}

/* Template Showcase Section */
.template-showcase {
  background-color: var(--darker-bg);
}

.section-description {
  text-align: center;
  color: var(--muted-text);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.template-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.template-preview {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.template-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.template-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 17, 23, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.template-preview:hover .template-overlay {
  opacity: 1;
}

.template-preview:hover img {
  transform: scale(1.05);
}

.view-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.view-btn:hover {
  background-color: #7e57c2;
}

.template-info {
  padding: 20px;
}

.template-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.template-info p {
  color: var(--muted-text);
  font-size: 14px;
}

.showcase-cta {
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.view-all-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
}


.upload-container {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  gap: 30px;
}

.upload-area {
  flex: 1;
  background-color: var(--card-bg);
  border-radius: 8px;
  border: 2px dashed var(--border-color);
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.upload-area:hover {
  border-color: var(--secondary-color);
}

.upload-area.dragover {
  border-color: var(--secondary-color);
  background-color: rgba(46, 197, 232, 0.05);
}

.upload-icon {
  font-size: 48px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.upload-area h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.upload-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  margin: 15px 0;
  cursor: pointer;
  transition: var(--transition);
}

.upload-btn:hover {
  background-color: #7e57c2;
}

.upload-info {
  font-size: 12px;
  color: var(--muted-text);
}

.upload-preview {
  flex: 1;
  background-color: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
}

.preview-header h3 {
  font-size: 18px;
  margin: 0;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--muted-text);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.remove-btn:hover {
  color: var(--accent-color);
}

.preview-image {
  height: 300px;
  overflow: hidden;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.convert-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.convert-btn:hover {
  background-color: #7e57c2;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid var(--border-color);
}

.quote {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.quote::before {
  content: '"';
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -15px;
}

.author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 16px;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 14px;
  color: var(--muted-text);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.1), rgba(46, 197, 232, 0.1));
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: var(--muted-text);
  margin-bottom: 40px;
}

.cta-form-container {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid var(--border-color);
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background-color: var(--darker-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--light-text);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--muted-text);
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
  align-self: center;
}

.submit-btn:hover {
  background-color: #7e57c2;
}

/* Footer */
footer {
  background-color: var(--darker-bg);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--muted-text);
  margin: 16px 0;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.link-group h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.link-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-group a {
  font-size: 14px;
  color: var(--muted-text);
  transition: var(--transition);
}

.link-group a:hover {
  color: var(--light-text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--muted-text);
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--light-text);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #7e57c2;
  transform: translateY(-5px);
}







 /* Upload Section */


.upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Upload Area */
.upload-area {
    width: 100%;
    max-width: 500px;
    min-height: 300px;
    border: 2px dashed #cbd5e0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.upload-area:hover, .upload-area.dragover {
    border-color: #4299e1;
    background-color: #ebf8ff;
}

.upload-icon {
    font-size: 3rem;
    color: #4299e1;
    margin-bottom: 15px;
}

.upload-area h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2d3748;
}

.upload-btn {
    background-color: #4299e1;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin: 15px 0;
    transition: background-color 0.3s ease;
}

.upload-btn:hover {
    background-color: #3182ce;
}

.upload-info {
    font-size: 0.9rem;
    color: #718096;
    text-align: center;
}

/* Upload Preview */
.upload-preview {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f7fafc;
    border-bottom: 1px solid #edf2f7;
}

.preview-header h3 {
    font-size: 1.2rem;
    color: #2d3748;
}

.remove-btn {
    background: none;
    border: none;
    color: #a0aec0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #e53e3e;
}

.preview-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #edf2f7;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.file-info {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #edf2f7;
}

.file-info i {
    color: #4299e1;
}

#fileName {
    font-weight: 600;
    color: #2d3748;
}

#fileSize {
    color: #718096;
    font-size: 0.9rem;
}

.convert-btn {
    width: 100%;
    padding: 15px;
    background-color: #4299e1;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.convert-btn i {
    font-size: 1.1rem;
}

/* Output Container */
.output-container {
    width: 100%;
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #2d3748;
    color: white;
}

.output-header h3 {
    font-size: 1.2rem;
}

.output-tabs {
    display: flex;
    gap: 5px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.copy-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.copy-btn:hover {
    color: #4299e1;
}

.output-content {
    position: relative;
}

.code-block {
    display: none;
    padding: 20px;
    margin: 0;
    background-color: #1a202c;
    color: #e2e8f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-x: auto;
    white-space: pre-wrap;
    min-height: 300px;
    max-height: 500px;
    overflow-y: auto;
}

.code-block.active {
    display: block;
}

.upload-box {
    border: 2px dashed #aaa;
    padding: 40px;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
  }

  #fileUpload {
    display: none;
  }

  .convert-btn {
    width: 160px;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .output-container {
    margin-top: 40px;
    width: 90%;
    max-width: 800px;
    display: none;
  }

  pre {
    background: #000;
    color: #00ff66;
    padding: 20px;
    border-radius: 12px;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
  }






  /*---------------------------------------------*/
  .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Content area */
  .content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
  }
  
  .highlight {
    color: #38bdf8;
  }
  
  .description {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.7;
  }
  
  /* Bullet points */
  .bullet-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
  }
  
  .bullet-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  .check-icon {
    width: 24px;
    height: 24px;
    color: #6f42c1;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  /* CTA Button */
  .cta-container {
    padding-top: 16px;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s;
  }
  
  .cta-button:hover {
    background-color: #7e57c2;
  }
  
  /* Card styles */
  .card-container {
    position: relative;
  }
  
  .card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(to right, #38bdf8, #0ea5e9);
    border-radius: 8px;
    filter: blur(8px);
    opacity: 0.75;
  }
  
  .card {
    position: relative;
    background-color: #1e293b;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #334155;
  }
  
  .card-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
  
  .card-icon {
    width: 64px;
    height: 64px;
    background-color: #7e57c2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .card-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  /* Feature list */
  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #0f172a;
    border-radius: 6px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(56, 189, 248, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
  }
  
  .feature-title {
    font-weight: 500;
  }
  
  .feature-description {
    font-size: 0.875rem;
    color: #94a3b8;
  }



  /* Policy Pages Specific Styles */
.policy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
  color: #e2e8f0;
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
}

.policy-header h1 {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 10px;
}

.policy-header p {
  color: #94a3b8;
  font-size: 1rem;
}

.policy-content {
  background-color: #1e293b;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.policy-section {
  border-bottom: 1px solid #334155;
  padding: 40px 0;
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  color: #38bdf8;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.policy-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.policy-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.policy-section a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s;
}

.policy-section a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

.policy-section strong {
  color: #f8fafc;
}

/* Cookie Settings Demo */
.cookie-settings-demo {
  margin: 20px 0;
  text-align: center;
}

.cookie-settings-button {
  background-color: #38bdf8;
  color: #0f172a;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-settings-button:hover {
  background-color: #0ea5e9;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.cookie-modal-content {
  background-color: #1e293b;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content h2 {
  color: #38bdf8;
  margin-bottom: 15px;
}

.cookie-options {
  margin: 20px 0;
}

.cookie-option {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #334155;
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option label {
  font-weight: 500;
  color: #f8fafc;
  margin-left: 10px;
}

.cookie-option p {
  margin-top: 5px;
  margin-left: 30px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.cookie-save-btn, .cookie-accept-btn, .cookie-close-btn {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.cookie-save-btn {
  background-color: #38bdf8;
  color: #0f172a;
}

.cookie-save-btn:hover {
  background-color: #0ea5e9;
}

.cookie-accept-btn {
  background-color: #10b981;
  color: #0f172a;
}

.cookie-accept-btn:hover {
  background-color: #059669;
}

.cookie-close-btn {
  background-color: #334155;
  color: #f8fafc;
}

.cookie-close-btn:hover {
  background-color: #475569;
}

/* Legal Dropdown in Footer */
.legal-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.legal-dropdown i {
  margin-left: 5px;
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.legal-submenu {
  display: none;
  margin-top: 10px;
  padding-left: 15px;
}

.legal-submenu li {
  margin-bottom: 8px;
}

.legal-submenu a {
  color: #94a3b8;
  transition: color 0.3s;
}

.legal-submenu a:hover {
  color: #38bdf8;
}

.footer-logo{
  max-width: 230px;
  width: 100%;
}

.footer-logo img{
  width: 100%;
}

/* Form validation and message styles */
.input-error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 1px #e53e3e !important;
}

.form-error {
  color: #e53e3e;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

.form-message {
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: fadeIn 0.3s ease-in-out;
}

.success-message {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
}

.error-message {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.fade-out {
  animation: fadeOut 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

/* Disable button styles */
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .policy-container {
      padding: 60px 15px;
  }
  
  .policy-content {
      padding: 25px;
  }
  
  .policy-header h1 {
      font-size: 2rem;
  }
  
  .cookie-modal-content {
      margin: 15% auto;
      padding: 20px;
      width: 90%;
  }
  
  .cookie-buttons {
      flex-direction: column;
  }
  
  .cookie-buttons button {
      width: 100%;
      margin-bottom: 10px;
  }
}

/* Responsive Styles */
@media (max-width: 991px) {

  .logo {
    max-width: 180px;
  }

  .visual-logo {
    width: 70px;
    height: 45px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav a {
    font-size: 20px;
    line-height: 1.2;
    padding: 0;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .visual-container {
    width: 300px;
    height: 300px;
  }

  .circle-outer {
    width: 280px;
    height: 280px;
  }

  .circle-middle {
    width: 200px;
    height: 200px;
  }

  .circle-inner {
    width: 120px;
    height: 120px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

@media (max-width: 768px) {
  

  .title {
    font-size: 36px;
  }

  .description {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .upload-container {
    flex-direction: column;
  }

  .step {
    flex-direction: column;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .step:not(:last-child)::after {
    left: 25px;
    top: 50px;
    height: calc(100% - 50px);
  }

  .cta-form-container {
    padding: 30px 20px;
  }
}

/* Responsive styles */
@media (min-width: 768px) {
  
  .grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 0;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .try-btn,
  .contact-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .visual-container {
    width: 250px;
    height: 250px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
  }

  .benefit-card,
  .step-content,
  .template-card,
  .upload-area,
  .upload-preview {
    padding: 20px;
  }

  .benefit-icon,
  .step-icon {
    width: 50px;
    height: 50px;
  }

  .template-preview {
    height: 200px;
  }
}

@media (max-width: 476px) {

  .step{
    margin-bottom: 5px;
  }

  .steps-container{
    max-width: 300px;
  }

  .step-number {
    left: -40px;
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .step:not(:last-child)::after {
    left: -21px;
  }

  .tab{
    padding: 10px;
    font-size: 12px;
    font-weight: 400;
  }


}