* { box-sizing: border-box; margin:0; padding:0; }
body {
font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
background: #eef2f7;
color: #333;
}
header.custom-header {
background: #f2d397;
color: #485565;
padding: 2rem 1rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.logo-title-wrap {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
text-align: left;
}
.logo-circle {
width: 64px;
height: 64px;
display: flex;
border-radius: 50%;
align-items: center;
justify-content: center;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
overflow: hidden;
}
.logo-circle img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
}
.title-group h1 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 0.3rem;
color: #485565;
}
.title-group p {
font-size: 1rem;
font-weight: 400;
color: #485565;
max-width: 420px;
}
h1 { font-size:2rem; margin-bottom: .5rem; }
main {
max-width: 1300px;
margin:2rem auto;
padding:0 1rem;
}
.tool-section {
display: flex;
flex-direction: column;
gap: 2rem;
}
@media (min-width: 768px) {
.tool-section {
flex-direction: row;
justify-content: space-between;
align-items: stretch;
}
}
.upload-box, .description-container {
flex: 1;
height: 600px;
padding: 2rem 1rem;
border-radius: 12px;
background: #fff;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.upload-box {
text-align: center;
border: 2px dashed #6366f1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #f2d397 0%, #ebedee 100%);
}
.upload-box.hover { border-color: #818cf8; }
.upload-box select, .upload-label {
margin: 1rem 0;
padding: .6rem 1rem;
font-size: 1rem;
border-radius: 6px;
border: 1px solid #cbd5e1;
}
.upload-box select {
margin-top: 0.5rem;
}
.upload-box input { display:none; }
.upload-label {
background: #3b82f6;
color: #fff;
cursor: pointer;
transition: background .3s ease;
display: inline-block;
margin-top: 0.5rem;
}
.upload-label:hover { background: #2563eb; }
#convert-btn, #download-btn {
display:block;
width:100%;
padding:.8rem;
margin-top: 1rem;
border:none;
border-radius:6px;
font-size:1rem;
cursor:pointer;
transition: all 0.3s ease;
}
#convert-btn {
background:#10b981;
color:#fff;
}
#convert-btn.loading {
background: linear-gradient(90deg, #34d399, #059669);
animation: pulse 1s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
#convert-btn:disabled { background:#9ca3af; cursor:not-allowed; }
#download-btn {
background: linear-gradient(45deg, #f59e0b, #ef4444);
color: #fff;
display: none;
}
.preview {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
margin-top: 1rem;
overflow-y: auto;
max-height: 200px;
padding: 0.5rem;
width: 100%;
}
.preview img {
width: 100px;
height: auto;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.description-container {
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
background: linear-gradient(135deg, #f2d397 0%, #ebedee 100%);
}
/* OR */
.scroll-text {
overflow-y: auto;
max-height: 100%;
padding-right: 10px;
}
.blog-section {
width: 100%;
margin-top: 3rem;
background: linear-gradient(135deg, #f2d397 0%, #ebedee 100%);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
color: #1f2937;
}
.blog-section h2 {
text-align: center;
margin-bottom: 1.5rem;
font-size: 2rem;
color: #485565;
}
.blog-section p {
font-size: 1.1rem;
line-height: 1.8;
margin: 1rem 0;
}
.faq-section {
width: 100%;
margin-top: 3rem;
background: linear-gradient(135deg, #f2d397 0%, #ebedee 100%);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
color: #1f2937;
}
.faq-section h2 {
text-align: center;
margin-bottom: 1.5rem;
font-size: 2rem;
color: #485565;
}
.faq-item {
margin-bottom: 1.5rem;
padding: 1rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.faq-item h4 {
margin-bottom: 0.4rem;
color: #4f46e5;
font-size: 1.1rem;
}
.faq-item p {
font-size: 1rem;
}
.site-footer {
background: #f2d397; /* match your page's tone */
padding: 2rem 1rem;
text-align: center;
color: #485565;
font-size: 0.95rem;
margin-top: 3rem;
}
.footer-content {
max-width: 1300px;
margin: 0 auto;
}
.footer-links {
margin-bottom: 1rem;
}
.footer-links a {
margin: 0 0.75rem;
color: #485565;
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover {
color: #3b82f6;
}
.footer-credit {
margin: 0.5rem 0;
}
.footer-copy {
margin: 0.25rem 0;
font-size: 0.85rem;
color: #6b7280;
}
.scroll-text p {
display: flex;
align-items: flex-start;
gap: 10px;
margin-bottom: 10px;
font-size: 1rem;
line-height: 1.5;
}
.scroll-text p i {
width: 22px; /* Fixed width to align icons */
text-align: center;
color: #485565; /* Optional: add color to icons */
margin-top: 3px;
flex-shrink: 0;
}
.review-section {
/* background: #f9fafb; */
/* padding: 2rem 1rem; */
text-align: center;
/* border-top: 1px solid #e0e0e0; */
width: 100%;
margin-top: 3rem;
background: linear-gradient(135deg, #f2d397 0%, #ebedee 100%);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
color: #1f2937;
}
.review-section h2 {
font-size: 1.75rem;
color: #374151;
margin-bottom: 0.5rem;
}
.review-section p {
color: #555;
font-size: 1rem;
margin: 0.5rem 0;
}
.feedback-btn {
margin-top: 1rem;
background-color: #798798;
color: white;
padding: 0.6rem 1.2rem;
border: none;
border-radius: 6px;
font-size: 1rem;
cursor: pointer;
transition: background 0.3s;
}
.feedback-btn:hover {
background-color: #485565;
}
/* Modal Styling */
.modal-overlay {
display: none;
position: fixed;
z-index: 9999;
left: 0; top: 0;
width: 100vw; height: 100vh;
background-color: rgba(0, 0, 0, 0.6);
justify-content: center;
align-items: center;
}
.modal-overlay.show {
display: flex; /* shown and centered when .show is added */
}
.modal-content {
background-color: #fff;
padding: 2rem;
border-radius: 10px;
width: 90%;
max-width: 500px;
position: relative;
}
.close-modal {
position: absolute;
top: 1rem;
right: 1rem;
font-size: 1.4rem;
cursor: pointer;
}
.modal-content h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
}
.modal-content form {
display: flex;
flex-direction: column;
}
.modal-content form label {
margin-top: 0.75rem;
font-weight: 600;
}
.modal-content form input,
.modal-content form textarea,
.modal-content form select {
padding: 0.5rem;
margin-top: 0.3rem;
border: 1px solid #ccc;
border-radius: 5px;
}
.submit-btn {
margin-top: 1.5rem;
background-color: #10b981;
color: white;
padding: 0.6rem;
font-size: 1rem;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background 0.3s;
}
.submit-btn:hover {
background-color: #059669;
}
/* Navbar ========== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
overflow-x: hidden;
}
.prodev-navbar {
background: #2c3e50;
padding: 1rem 0;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
position: relative;
z-index: 99;
width: 100%;
}
.prodev-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
/* ✅ Hide logo by default (desktop) */
.prodev-logo {
display: none;
}
/* ✅ Show logo only on mobile */
@media (max-width: 768px) {
.prodev-logo {
display: block;
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
color: #f2d397;
font-size: 1.5rem;
font-weight: bold;
}
}
.prodev-hamburger {
position: absolute;
right: 1rem;
font-size: 1.5rem;
color: #f2d397;
cursor: pointer;
display: none;
}
.prodev-nav-links {
list-style: none;
display: flex;
justify-content: center;
gap: 1.5rem;
transition: all 0.3s ease-in-out;
}
.prodev-nav-links li a {
text-decoration: none;
color: #f2d397;
font-weight: 600;
font-size: 1rem;
padding: 0.5rem 1rem;
border-radius: 5px;
transition: all 0.3s ease;
white-space: nowrap;
}
.prodev-nav-links li a:hover {
background-color: #f2d397;
color: #111;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Mobile styles */
@media (max-width: 768px) {
.prodev-hamburger {
display: block;
}
.prodev-nav-links {
display: none;
flex-direction: column;
align-items: center;
background-color: #2c3e50;
width: 100%;
padding: 1rem 0;
}
.prodev-nav-links.show {
display: flex;
}
}
/* Footbar========== */
.visitor-ticker {
color: #f2d397;
font-weight: 600;
font-size: 1.1rem;
display: inline-block;
}
/* visitor bottombar */
.prodev-visitor-strip {
background: #2c3e50;
padding: 0.75rem 1rem;
text-align: center;
box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}
.visitor-ticker {
font-weight: 600;
font-size: 1.1rem;
color: #f8f8f8;
}
.visitor-icon {
color: #ffffff;
font-size: 1.3rem;
margin-right: 8px;
}
.animated-icon {
animation: pulse-glow 1.8s ease-in-out infinite;
will-change: transform, opacity;
}
@keyframes pulse-glow {
0%, 100% {
opacity: 0.7;
transform: scale(1);
}
50% {
opacity: 1;
transform: scale(1.2);
}
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.page-wrapper {
min-height: calc(100vh - 140px); /* adjust based on header + footer height */
display: flex;
flex-direction: column;
}
.site-footer {
margin-top: auto;
}
.feedback-btn {
margin-top: 1rem;
background-color: #798798;
color: white;
padding: 0.6rem 1.2rem;
border: none;
border-radius: 6px;
font-size: 1rem;
cursor: pointer;
transition: background 0.3s;
}
.feedback-btn:hover {
background-color: #485565;
}
/* Modal Styling */
.modal-overlay {
display: none;
position: fixed;
z-index: 9999;
left: 0; top: 0;
width: 100vw; height: 100vh;
background-color: rgba(0, 0, 0, 0.6);
justify-content: center;
align-items: center;
}
.modal-overlay.show {
display: flex; /* shown and centered when .show is added */
}
.modal-content {
background-color: #fff;
padding: 2rem;
border-radius: 10px;
width: 90%;
max-width: 500px;
position: relative;
}
.close-modal {
position: absolute;
top: 1rem;
right: 1rem;
font-size: 1.4rem;
cursor: pointer;
}
.modal-content h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
}
.modal-content form {
display: flex;
flex-direction: column;
}
.modal-content form label {
margin-top: 0.75rem;
font-weight: 600;
}
.modal-content form input,
.modal-content form textarea,
.modal-content form select {
padding: 0.5rem;
margin-top: 0.3rem;
border: 1px solid #ccc;
border-radius: 5px;
}
.submit-btn {
margin-top: 1.5rem;
background-color: #10b981;
color: white;
padding: 0.6rem;
font-size: 1rem;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background 0.3s;
}
.submit-btn:hover {
background-color: #059669;
}

/* ═══════════════════════════════════════════
   Enhanced Feedback Modal Styles
   ═══════════════════════════════════════════ */
.modal-overlay.show {
display: flex !important;
justify-content: center;
align-items: center;
}
.feedback-modal-enhanced {
animation: feedbackSlideIn 0.35s ease-out;
}
@keyframes feedbackSlideIn {
from { opacity: 0; transform: translateY(30px) scale(0.95); }
to   { opacity: 1; transform: translateY(0) scale(1); }
}
.feedback-modal-header {
text-align: center;
margin-bottom: 1rem;
}
.feedback-celebration-icon {
font-size: 2.5rem;
display: block;
margin-bottom: 0.25rem;
}
.feedback-modal-header h3 {
font-size: 1.5rem;
color: #1f2937;
margin-bottom: 0.25rem;
}
.feedback-subtitle {
color: #6b7280;
font-size: 0.95rem;
}
.feedback-label {
display: block;
margin-top: 0.75rem;
margin-bottom: 0.25rem;
font-weight: 600;
font-size: 0.95rem;
color: #374151;
}
.feedback-optional {
font-weight: 400;
color: #9ca3af;
font-size: 0.85rem;
}
/* Star Rating */
.feedback-star-rating {
display: flex;
gap: 0.35rem;
justify-content: center;
margin: 0.5rem 0 0.25rem;
}
.feedback-star {
font-size: 2rem;
color: #d1d5db;
cursor: pointer;
transition: color 0.15s, transform 0.15s;
line-height: 1;
user-select: none;
}
.feedback-star:hover,
.feedback-star.active {
color: #f59e0b;
transform: scale(1.15);
}
/* Button Row */
.feedback-btn-row {
display: flex;
gap: 0.75rem;
margin-top: 1.25rem;
}
.feedback-submit-btn {
flex: 1;
}
.feedback-skip-btn {
flex: 0 0 auto;
background: transparent;
color: #6b7280;
border: 1px solid #d1d5db;
padding: 0.6rem 1.2rem;
font-size: 1rem;
border-radius: 6px;
cursor: pointer;
transition: background 0.2s, color 0.2s;
}
.feedback-skip-btn:hover {
background: #f3f4f6;
color: #374151;
}
/* Thank You State */
.feedback-thankyou {
text-align: center;
padding: 2rem 1rem;
}
.feedback-thankyou-icon {
width: 64px;
height: 64px;
margin: 0 auto 1rem;
background: #10b981;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
animation: feedbackPopIn 0.5s ease-out;
}
@keyframes feedbackPopIn {
0%   { transform: scale(0); opacity: 0; }
60%  { transform: scale(1.2); opacity: 1; }
100% { transform: scale(1); }
}
.feedback-thankyou h3 {
font-size: 1.5rem;
color: #1f2937;
margin-bottom: 0.5rem;
}
.feedback-thankyou p {
color: #6b7280;
margin-bottom: 1.5rem;
}
.feedback-done-btn {
min-width: 120px;
}