/* --- GLOBAL STYLES & VARIABLES --- */
:root {
    --bg-dark: #0A0A0A;
    --bg-light: #FFF;
    --border-color: rgba(199,199,199,1.00);
    --text-primary: #000;
    --text-secondary: #878787;
    --primary-accent: #4c2cff;
    --primary-accent-hover: #5A2EEA;
    --gradient-start: #6A3FFB;
    --gradient-end: #B33FFB;
    --success-color: #32c99f;
    --error-color: #FF5F56;

    --font-family: "Segoe UI", Inter, sans-serif;
    --container-width: 1200px;
    --transition-speed: 0.3s; 
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); background-color: var(--bg-light); color: var(--text-primary); line-height: 1.6; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0); background-size: 40px 40px; }
.container { /*max-width: var(--container-width);*/ margin: 0 auto; padding: 0 40px; }
a { color: var(--primary-accent); text-decoration: none; transition: color var(--transition-speed); }
a:hover { color: var(--primary-accent-hover); }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--text-primary); font-weight: 700; }
h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; line-height: 1.2; }
h3 { font-size: 1.5rem; }
p { color: var(--text-primary); margin-bottom: 1rem; }
section { padding: 100px 0;color: #252525 }

.txtcenter {text-align: center}
.txtsm {font-size: small}


/* --- BUTTONS --- */
.btn { display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 30px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all var(--transition-speed);
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  border: 0;
  line-height: 1; }
.btn-primary { background-color: var(--primary-accent); color: white; }
.btn-primary:hover { background-color: var(--bg-dark); color:#FFF; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(106, 63, 251, 0.4); }
.btn-secondary { background-color: #FFF; color: var(--text-primary); border: 1px solid var(--border-color); }
.btn-secondary:hover { background-color: var(--bg-light);transform: translateY(-2px); box-shadow: 0 4px 15px rgba(106, 63, 251, 0.4); }
.btn-default { background-color: var(--success-color); color: white;}
.btn-default:hover { background-color: #29a683;color:#fff;transform: translateY(-2px); box-shadow: 0 4px 15px rgba(106, 63, 251, 0.4); }
.btn-tertiary { background-color: var(--bg-dark); color: white; }
.btn-tertiary:hover { background-color: var(--bg-dark);transform: translateY(-2px); box-shadow: 0 4px 15px rgba(106, 63, 251, 0.4);color: white; }
.btn-off { background-color: var(--error-color); color: white; }
.btn-off:hover { background-color: var(--error-color); color: white; }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.btn i { margin-left: 8px; font-size: 1.2em; }

/* --- HEADER --- */
#main-header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: background-color var(--transition-speed), border-bottom var(--transition-speed);/*background-image: radial-gradient(800px circle at 10% 80%, rgba(196, 218, 253, 0.36), #0000 60%), radial-gradient(700px circle at 90% 80%, rgba(244, 239, 254, 0.7), #0000 60%), radial-gradient(600px circle at 50% 10%, rgb(248, 252, 255), #0000 60%);*/ }
#main-header.scrolled { background-color: var(--bg-light); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); }
#main-header nav { display: flex; justify-content: space-between; align-items: center; }
.logo { max-height: 30px }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { color: var(--text-primary); font-weight: 600; position: relative; padding-bottom: 5px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-accent); transition: width var(--transition-speed); }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 10px; }
.hamburger { display: none; background: none; border: none; color: var(--text-primary); font-size: 2rem; cursor: pointer; }
.nav-search {display: flex;  align-items: center;}
.nav-search input{padding: 12px 18px; border-radius: 30px; border: 1px solid var(--border-color); font-size: 14px; outline: none; transition: 0.3s ease;width: 150px}
@media (min-width: 768px) {
.nav-search input {transition: width 0.3s ease, box-shadow 0.3s ease; }
.nav-search input:focus {
    width: 280px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }

}

.dropdown {
  position: relative;
  list-style: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 20px;
  min-width: 300px;
  border-radius: 0px 10px 10px 10px;


  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.dropdown:hover .dropdown-menu {
  display: grid;
}

.column {
  display: flex;
  flex-direction: column;
}

.first-column {
  border-right: 1px solid #ccc;
  padding-right: 20px;
}

.dropdown-menu a {
  text-decoration: none;
  color: #000;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.dropdown-menu a:hover {
  color: #4c2cff;
}


/* --- HERO SECTION --- */
#hero { text-align: center; padding-top: 140px; padding-bottom: 40px; position: relative; overflow: hidden; width: 100%;background-color: #f8fafc;
  background-image: radial-gradient(800px circle at 10% 80%, rgba(100, 158, 255, 0.6), transparent 60%), radial-gradient(700px circle at 90% 80%, rgba(183, 108, 255, 0.7), transparent 60%), radial-gradient(600px circle at 50% 10%, rgba(255, 255, 255, 0.5), transparent 60%); }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2.5rem; }
.gradient-text { background: linear-gradient(90deg, #42ACFA, var(--gradient-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-fill-color: transparent; }
.hero-buttons { display: flex; justify-content: center; gap: 20px; }


#hero2 { text-align: left; padding-top: 10px; padding-bottom: 20px; position: relative; overflow: hidden; width: 100%;background-color: #fff; }
.hero2-content { max-width: 100%; margin: 0 auto; }
.hero2-content h1 { margin-bottom: 1rem;font-size:1.8rem; }
.hero2-content p { font-size: 1.2rem; max-width: 100%; margin-bottom: 5px; }
.spacing-10{padding:10px 0}
.spacing-20{padding:20px 0}
.spacing-50{padding:50px 0}
.white {color: #FFF;}
.strip {background: rgba(237,221,254,1.00); border-radius: 10px;padding:10px;display: flex;flex-flow: row; justify-content: flex-start;}

/* --- SHARED STYLES --- */
.section-header { text-align: center; max-width: 700px; margin: 80px auto 50px auto; }
.code-window { background: #FFF; border: 1px solid var(--border-color); border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); text-align: left; }
.code-window-header { padding: 10px 15px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; }
.dots { display: flex; gap: 8px; }
.dots span { width: 12px; height: 12px; border-radius: 50%; }
.dots span:nth-child(1) { background: var(--error-color); }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: var(--success-color); }
.code-window-header span:last-child { color: var(--text-secondary); margin: 0 auto; /*transform: translateX(-18px); /* Center align title */ }
.code-window-body { padding: 20px; font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.9rem; overflow-x: auto; }
.logo-wrapper {display: flex; align-items: center; gap: 5px; text-decoration: none;}

/* --- CLIENTS SECTION --- */
#clients { text-align: center; padding:10px 10px; }
#clients p { margin-bottom: 2rem; font-weight: 100; }
.client-logos { display: flex; justify-content: space-evenly; align-items: center; flex-wrap: wrap; /*gap: 30px; filter: grayscale(1) brightness(1.5); opacity: 1;*/ }
.client-logos span { font-size: 1rem; font-weight: 400; letter-spacing: 1px; }

/* --- HOW IT WORKS SECTION --- */
.workflow-steps { display: flex; justify-content: space-between; gap: 30px; text-align: center; position: relative; }
.workflow-steps::before { content: ''; position: absolute; top: 40px; left: 15%; right: 15%; height: 2px; background: repeating-linear-gradient(90deg, var(--border-color), var(--border-color) 6px, transparent 6px, transparent 12px); z-index: -1; }
.step-card { background: var(--bg-light); padding: 30px; border: 1px solid var(--border-color); border-radius: 12px; flex: 1; }
.step-icon { font-size: 2.5rem; color: var(--primary-accent); margin-bottom: 1.5rem; background: rgba(106, 63, 251, 0.1); width: 80px; height: 80px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--primary-accent); }
.step-icon h2 {color:var(--primary-accent)}
.step-card h3 { margin-bottom: 1rem; }
.step-card2 {background: var(--bg-light);border-radius: 12px; flex: 1; width: 100%;
}

/* --- FEATURES SECTION --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(900px, 1fr)); }
.feature-card { background: var(--bg-light); padding: 30px; border: 1px solid var(--border-color); border-radius: 12px; transition: transform var(--transition-speed), box-shadow var(--transition-speed); }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.card-icon { font-size: 2.5rem; color: var(--primary-accent); margin-bottom: 1.5rem; }
.feature-card h3 { margin-bottom: 1rem; }

/* --- USE CASES SECTION --- */
.use-cases-tabs { max-width: 900px; margin: 0 auto; }
.use-cases-tabs2 { max-width: 710px;  margin: 0 auto;}
.tab-buttons { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; background: var(--bg-light); padding: 8px; border-radius: 10px; border: 1px solid var(--border-color); }
.tab-btn { background: none; border: none; color: var(--text-secondary); padding: 12px 24px; border-radius: 8px; cursor: pointer; font-weight: 600; transition: all var(--transition-speed); }
.tab-btn.active { background: var(--primary-accent); color: white; }
.tab-btn.customessay { background: #fac84f; color: #000; }
.tab-pane { display: none; background: var(--bg-light); border: 1px solid var(--border-color); padding: 40px; border-radius: 12px; text-align: center; }
.tab-pane.active { display: block; }
.tab-pane i { font-size: 3rem; color: var(--primary-accent); margin-bottom: 1rem; }
.tab-pane h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.tab-pane p { max-width: 600px; margin: 0 auto; }

/* --- INTERACTIVE DEMO --- */
#interactive-demo { padding-bottom: 0px; }
#terminal-code::after { content: '▋'; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.code-window-body .prompt { color: var(--success-color); }
.code-window-body .output { color: var(--text-secondary); }

/* --- COMPARISON SECTION --- */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.comparison-col { background: var(--bg-light); padding: 40px; border: 1px solid var(--border-color); border-radius: 12px; }
.comparison-col.col-new { border-color: var(--primary-accent); }
.comparison-col h3 { font-size: 1.8rem; margin-bottom: 2rem; }
.comparison-col ul li { display: flex; align-items: center; margin-bottom: 1rem; font-size: 1.1rem; }
.comparison-col ul i { font-size: 1.5rem; margin-right: 15px; }
.comparison-col:first-child i { color: var(--error-color); }
.comparison-col.col-new i { color: var(--success-color); }

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: var(--bg-light); padding: 30px; border: 1px solid var(--border-color); border-radius: 12px; }
.quote { font-size: 1.1rem; margin-bottom: 2rem; }
.author { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; }
.author-info h4 { margin: 0; font-size: 1.1rem; }
.author-info span { color: var(--text-secondary); }

/* --- PRICING SECTION --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: center; }
.pricing-plan { background: var(--bg-light); padding: 40px; border: 1px solid var(--border-color); border-radius: 12px; text-align: center; transition: transform var(--transition-speed); }
.pricing-plan:hover { transform: scale(1.02); }
.pricing-plan.highlighted { border: 2px solid var(--primary-accent); transform: scale(1.05); position: relative; overflow: hidden; }
.highlight-badge { position: absolute; top: 15px; right: -45px; background: var(--primary-accent); color: white; padding: 5px 50px; font-size: 0.9rem; font-weight: 600; transform: rotate(45deg); }
.pricing-plan h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.price { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 2rem; }
.price span { font-size: 3.5rem; font-weight: 700; color: var(--text-primary); }
.pricing-plan ul { text-align: left; margin: 2rem 0; }
.pricing-plan ul li { margin-bottom: 1rem; display: flex; align-items: center; }
.pricing-plan ul li i { color: var(--primary-accent); font-size: 1.2rem; margin-right: 10px; }
.pricing-plan .btn { width: 100%; }

/* --- INTEGRATIONS SECTION --- */
.integrations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px; max-width: 800px; margin: 0 auto; }
.integration-logo { background: var(--bg-light); border: 1px solid var(--border-color); border-radius: 10px; padding: 25px; display: flex; align-items: center; justify-content: center; transition: all var(--transition-speed); }
.integration-logo:hover { transform: translateY(-5px); border-color: var(--primary-accent); color: var(--primary-accent); }
.integration-logo span { font-weight: 600; display: flex; align-items: center; gap: 10px; }
.integration-logo i { font-size: 1.8rem; }

/* --- FAQ SECTION --- */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; padding: 25px 0; text-align: left; font-size: 1.2rem; color: var(--text-primary); cursor: pointer; font-weight: 600; }
.faq-question i { font-size: 1.5rem; color: var(--primary-accent); transition: transform var(--transition-speed); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer p { padding: 0 0 25px 0; }

/* --- CTA SECTION --- */
#cta { background: linear-gradient(135deg, #4c2cff, #7b8cff); border-radius: 20px; padding: 80px 40px; margin-top: 80px; }
.cta-content { text-align: center; max-width: 800px; margin: 0 auto; }
.cta-content h2 { font-size: 2.8rem; margin-bottom: 1rem; }
.cta-content h1 { font-size: 3.5rem; margin-bottom: 1rem; color:#fff; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-content .btn-primary { background-color: white; color: var(--primary-accent); }
.cta-content .btn-primary:hover { background-color: #f0f0f0; color: var(--primary-accent); box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4); }

.cta-section { position: relative; overflow: hidden; border-radius: 30px; padding: 60px 60px; color: white;  background: linear-gradient(135deg, #4c2cff, #7b8cff);margin: 80px 40px;}
.inner-hero { position: relative; overflow: hidden; padding: 60px 60px; color: white;  background: linear-gradient(135deg, #4c2cff, #7b8cff);margin-top: 95px;}

/* Concentric circles on right */
.cta-section::after { content: ""; position: absolute; right: -150px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.18) 30%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.08) 70%, transparent 75% );}
.inner-hero::after { content: ""; position: absolute; right: -150px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.18) 30%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.08) 70%, transparent 75% );}

/* --- FOOTER --- */
#main-footer { padding: 80px 0 20px; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-column .logo { display: block }
.footer-column h4 { font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer-column ul li { margin-bottom: 1rem; }
.footer-column ul a { color: var(--text-secondary); }
.footer-column ul a:hover { color: var(--text-primary); }
.social-links { display: flex; gap: 15px; margin-top: 1rem; }
.social-links a { font-size: 1.5rem; color: var(--text-secondary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--border-color); font-size: 0.9rem; color: var(--text-secondary); }

/* --- ANIMATIONS --- */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .nav-links, .nav-actions .btn-secondary { display: none; }
    .hamburger { display: block; }
    .nav-links.active { display: flex; flex-direction: row; position: absolute; top: 79px; left: 0; width: 100%; background: var(--bg-light); padding: 20px; border-bottom: 1px solid var(--border-color); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .workflow-steps { flex-direction: column; }
    .workflow-steps::before { display: none; }
    .order-dashboard { flex-direction: column; }
    .order-left, .order-right { width: 100%; }
    .card-grid { grid-template-columns: 1fr 1fr; }

}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .nav-links, .nav-actions {font-size:14px}
    .nav-search input {width:140px}
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-plan.highlighted { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    .tab-buttons { flex-direction: column; }
    .comparison-grid { grid-template-columns: 1fr; }
    .card-grid { grid-template-columns: 1fr; }
    .order-dashboard {
        flex-direction: column;
        gap: 20px;
    }

    .message {
        max-width: 100% !important;
    }

    .message-header {
        flex-direction: column;
        gap: 3px;
    }
    .container {
    padding: 0 20px;
}
    
/*    INFO BAR*/
     .info-bar {
    flex-direction: column;
  }

  .info-items {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .item {
    border-right: none !important;
    border-bottom: 1px solid #d8dde0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .item:last-child {
    border-bottom: none;
  }

  .download-strip {
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

}


.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: auto;
}

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

.star-input {
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    display: flex;
    gap: 0;
}

.star-input .star {
    
    transition: color 0.2s ease;
}

.star-input .star.active,
.star-input .star:hover,
.star-input .star:hover ~ .star {
    color: #ccc;
}

.star-input .star.selected,
.star-input .star.selected ~ .star {
    color: #f4b400;
}

.login-card {
  background: #ffffffa6;
  padding: 40px 35px;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: left;
}
.login-content {
  max-width: 500px;
  margin: 0 auto;
}

.login-card input {
  padding: 12px 18px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
  text-align: left;
 color: #4c2cff;
}

.login-card input:focus {
  border-color: #999;
}
.login-card select {
     padding: 12px 18px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
  text-align: left;
  color: #4c2cff;
  background:#4f30fe0d;
    
}
.login-card button {
  padding: 12px;
  border-radius: 30px;
  border: none;
  width: 100%;
  
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-card button:hover {
  opacity: 0.85;
}

.breadcrumb{
font-size:13px;
color:#777;
margin-top: 10px;
}

.breadcrumb a{
color:#555;
text-decoration:none;
}

.breadcrumb a:hover{
text-decoration:underline;
}

.breadcrumb span{
margin:0 5px;
}

/* Table container */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 0 auto;
    border-radius: 12px;
/*    overflow: hidden;*/
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.table-wrapper.inner {
    max-width: 400px;
    
}

/* Table */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

/* Header */
.custom-table thead {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-start));
}

.custom-table th {
    color: #ffffff;
    text-align: left;
    padding: 18px 13px;
    font-size: 16px;
    font-weight: 600;
}

/* Body rows */
.custom-table tbody tr {
    border-bottom: 1px solid #e3e3e3;
    transition: background 0.2s ease;
}


.custom-table tbody tr:last-child {
    border-bottom: none;
}

/* Cells */
.custom-table td {
    padding: 18px 13px;
    font-size: 15px;
    color: #666;
    text-align: left;
}

.custom-table td:nth-child(3),
.custom-table td:nth-child(3),
.custom-table th:nth-child(3) {
  text-align: center;
}

/* Subtle hover effect */
.custom-table tbody tr:hover {
    background-color: #f5f9fc;
    
    transition: 0.2s ease;
}

.custom-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.11);
}

/* Table cells */
.custom-info-table td {
    padding: 8px 18px;
    border-bottom: 1px solid #e0e0e0;
}

/* Remove bottom border from last row */
.custom-info-table tr:last-child td {
    border-bottom: none;
}

/* Left column */
.custom-info-table td.left {
    background-color: var(--gradient-start);
    color:#fff;
    width: 40%;
    font-weight: bold;
}

/* Right column */
.custom-info-table td.right {
    background-color: #ffffff;
    text-align: right;
}

.status {
  position: relative;
  padding-left: 18px; /* space for dot */
}

.status::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-25%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Red dot for pending */
.status.pending::before {
  background-color: deeppink;
}
.status.not_paid::before {
  background-color: deeppink;
}
/* Green dot for paid */
.status.paid::before {
  background-color: var(--success-color);
}
.status.confirmed::before {
  background-color: lightgreen;
}
.status.under_evaluation::before {
  background-color: black;
}
.status.completed::before {
  background-color: limegreen;
}
.status.refunded::before {
  background-color: red;
}
.status.working::before {
  background-color: #ffaf00;
}

hr {
color: #d8d8d847;
  height: 1px;
}
hr-2x {
color: #d8d8d847;
height: 2px;
}


/* Layout */
.order-dashboard {
    display: flex;
    gap: 30px;
    max-width: 100%;
    margin: 40px auto 20px;
}

/* Left */
.order-left {
    flex: 1;
}

/* Right */
.order-right {
    flex: 2;
}

/* Cards Grid */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Card Design */
.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.11);
    border: 1px solid #ddd;
}

.card h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--gradient-start);
}

.card p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}



/* Special Card Colors */
.status-card {
    background: #FFF;
    color: white;
    text-align: left;
    
}

.payment-status-card {
    background: #FFF;
    color: white;
    text-align: left;
}

.price-card {
    background: #fff;
    text-align: left;
}

/* Buttons */
.btn-paypal, .btn-razorpay {
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-right: 8px;
}

.btn-paypal {
    background: #0070ba;
    color: white;
}

.btn-razorpay {
    background: #528ff0;
    color: white;
}

.thank-you {
    color: green !important;
    font-weight: 600;
}

/* Conversation Container */
.conversation-section {
    width: 100%;
    
}

/* Message Bubble Base */
.message {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 18px;
    max-width: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    word-wrap: break-word;
}

/* Admin (Left Side) */
.admin-msg {
    background: #6a3ffb1a;
  margin-right: auto;
  border: 2px solid #734afb;

}

/* User (Right Side) */
.user-msg {
    background: #ffffffde;
    margin-right: auto;
    text-align: left;
    border: 2px solid #6a3ffb;

}

/* Header */
.message-header {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    margin-bottom: 8px;
    color: #6a3ffb;
}

/* Body */
.message-body {
    font-size: 18px;
    line-height: 1.5;
}

/* Time */
.time {
    font-size: 11px;
    color: #888;
    margin-top:6px;
}

/* Attachments */
.attachment {
    margin-top: 8px;
}

.attachment a {
    font-size: 13px;
    text-decoration: none;
    color: #0073e6;
}
textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    resize: vertical;
}

/*INFO BAR*/
.info-bar {
  width: 100%;
  background: linear-gradient(90deg, #fff, #aae5f324);
  border: 1px solid #d8dde0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-items {
  display: flex;
  align-items: center;
  flex: 1;
}

.item {
  padding: 14px 28px;
  text-align: center;
  border-right: 1px solid #d8dde0;
}

.item:last-child {
  border-right: none;
}

.value {
  font-size: 17px;
  font-weight: 500;
  color: #333;
}

.label {
  font-size: 13px;
  color: #6b6f72;
  margin-top: 4px;
}

.download-strip {
  margin-left: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
.payment-options{
  display:none;
  gap:10px;
}

.tags{

background: #cbf0ee;
  color: #288a84;
  font-size: 12px;
  padding: 0px 8px;
  border-radius: 12px;
  margin-left: 8px;
margin-right: auto;


}

.form-step{
display:none;
}

.form-step.active{
display:block;
}

.progress-bar{
height:6px;
background:#eee;
border-radius:10px;
margin-bottom:25px;
overflow:hidden;
}

#progressFill{
height:100%;
width:33%;
background:#4ab47b;
transition:0.3s;
}

.price-estimator{
background:#f5f7fa;
padding:15px;
border-radius:8px;
margin-top:15px;
}

.trust-box{
background:#fafafa;
padding:15px;
border-radius:8px;
margin-top:15px;
font-size:14px;
}
