* { box-sizing: border-box; margin:0; padding:0; }
body {
font-family: 'Inter', sans-serif;
background: #f9fafb;
color: #333;
}
header.custom-header, footer.site-footer {
background: #f2d397; color: #485565;
padding: 2rem 1rem;
text-align: center;
}
.logo-title-wrap {
display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.logo-circle {
width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
}
.logo-circle img {
width: 100%; height: 100%; object-fit: cover;
}
.title-group h1 {
font-size: 2rem; font-weight: 700;
}
.title-group p {
font-size: 1rem; color: #6b7280;
}
main.section-content {
padding: 3rem 1rem;
max-width: 1100px;
margin: auto;
text-align: center;
}
main.section-content h2 {
font-size: 2rem;
color: #374151;
margin-bottom: 1rem;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
main.section-content p {
font-size: 1.05rem;
color: #555;
max-width: 800px;
margin: 0 auto 2rem;
}
/* New ===================== */
.conversion-types {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 1rem;
padding: 1rem;
}
.conversion-box {
background-color: #fff;
border-radius: 10px;
padding: 1rem;
text-align: center;
cursor: pointer;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
transition: transform 0.2s ease;
}
.conversion-box i {
font-size: 2rem;
height: 40px;               /* ✅ Equal icon height */
line-height: 40px;          /* ✅ Vertical centering */
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 0.5rem;
color: #2c3e50;
}
.conversion-box span {
font-size: 0.9rem;
font-weight: 500;
color: #333;
white-space: nowrap;
}
/* Responsive layout for mobile */
@media (max-width: 768px) {
.conversion-types {
grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
}
}
/* New ===================== */
/* .conversion-types {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 1rem;
margin-top: 2rem;
margin: 2rem auto;         
max-width: 980px;          
} */
/* .conversion-box {
background: white;
padding: 1.2rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
transition: transform 0.3s;
} */
.conversion-box:hover {
transform: translateY(-4px);
}
/* .conversion-box i {
color: #3b82f6;
margin-bottom: 0.5rem;
font-size: 1.5rem;
} */
/* .conversion-box span {
font-weight: 600;
display: block;
font-size: 1rem;
color: #374151;
} */
.cta-button {
display: inline-block;
margin-top: 2rem;
background-color: #798798;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 6px;
font-weight: 600;
font-size: 1.1rem;
text-decoration: none;
transition: background 0.3s ease;
}
.cta-button:hover {
background-color: #485565;
}
.benefits-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 2rem;
margin: 3rem auto 2rem;
max-width: 1100px;
text-align: center;
}
.benefits-grid div {
/* background: #fff; */
padding: 1rem;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
background: linear-gradient(135deg, #f2d397 0%, #ebedee 100%);
width: 180px;
}
.benefits-grid i {
font-size: 1.5rem;
color: #485565;
margin-bottom: 0.5rem;
}
.benefits-grid p {
font-weight: 600;
color: #374151;
}
@media (min-width: 1024px) {
.benefits-grid {
gap: 5.5rem;
}
}
.faq-section {
width: 100%;
max-width: 980px;
margin: 3rem auto;
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 .footer-content {
max-width: 1300px;
margin: 0 auto;
}
.footer-links a {
margin: 0 0.75rem;
color: #485565;
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover { color: #3b82f6; }
.footer-copy {
margin-top: 0.5rem;
font-size: 0.85rem;
color: #6b7280;
}
/* 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========== */
.prodev-visitor-strip {
background: #616978;
padding: 0.75rem 1rem;
text-align: center;
box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}
.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);
}
}