* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefaf5;
    color: #1c1c1c;
    line-height: 1.5;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    padding: 1rem 0;
    transition: all 0.2s;
}
.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1a2a3a, #2c3e4e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nav-link {
    font-weight: 500;
    color: #2c3e4e;
    margin: 0 0.25rem;
    transition: color 0.2s;
    font-size: 0.95rem;
}
.nav-link:hover {
    color: #c9773e;
}
.nav-icon-link {
    color: #2c3e4e !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.nav-icon-link:hover {
    color: #c9773e !important;
    transform: scale(1.15);
}

/* Hero Section - Showcase Ready-Made Solutions */
.hero-section {
    background: linear-gradient(120deg, #f0ede8 0%, #faf6f0 100%);
    padding: 5rem 0 4rem;
    border-bottom: 1px solid #eee5dc;
}
.hero-badge {
    display: inline-block;
    background: #c9773e20;
    color: #b45a2e;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 1.2rem;
}
.hero-title {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2f3a;
}
.hero-highlight {
    color: #c9773e;
    border-bottom: 3px solid #eac8b0;
}
.hero-description {
    font-size: 1.1rem;
    color: #4a5b68;
    max-width: 550px;
    margin: 1.5rem 0;
}
.btn-hero {
    background: #1f2f3a;
    border: none;
    padding: 0.9rem 2rem;
    color: white;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.25s;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}
.btn-hero:hover {
    background: #c9773e;
    transform: translateY(-2px);
}
.solution-card-img {
    background: #fff;
    padding: 0.5rem;
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}

/* solution highlight section (Bagisto style) */
.solutions-showcase {
    background: #ffffff;
    border-radius: 32px;
    margin-top: -2rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.03);
}
.platform-card {
    background: #fef9f4;
    border-radius: 28px;
    padding: 1.5rem;
    transition: all 0.2s ease;
    border: 1px solid #f0e5db;
}
.platform-card:hover {
    transform: translateY(-5px);
    border-color: #e1cfbe;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
}
.platform-icon {
    font-size: 2.5rem;
    color: #c9773e;
    margin-bottom: 1rem;
}
.btn-outline-solution {
    border: 1.5px solid #c9773e;
    background: transparent;
    color: #c9773e;
    border-radius: 40px;
    padding: 0.4rem 1.2rem;
    font-weight: 500;
    font-size: 0.85rem;
}
.btn-outline-solution:hover {
    background: #c9773e;
    color: white;
}

/* CTA Banner for Solutions */
.cta-solutions-banner {
    background: linear-gradient(135deg, #1e2a32 0%, #2a3b45 100%);
    border-radius: 32px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    color: white;
}
.cta-solutions-banner h3 {
    font-size: 1.8rem;
    font-weight: 700;
}
.btn-light-solution {
    background: #c9773e;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.2s;
}
.btn-light-solution:hover {
    background: #a85f2e;
    transform: translateY(-2px);
    color: white;
}

/* Showcase Grid of Solutions (No Products, No Feature Cards) */
.solutions-grid-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.solution-item-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.03);
    border: 1px solid #f0e4d8;
}
.solution-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px -12px rgba(0,0,0,0.12);
}
.solution-img {
    background: #f7f2ea;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.solution-item-card:hover .solution-img img {
    transform: scale(1.03);
}
.solution-info {
    padding: 1.5rem;
}
.solution-info h3 {
    font-weight: 700;
    font-size: 1.3rem;
}
.solution-badge {
    background: #c9773e10;
    color: #c9773e;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.8rem;
}
.btn-solution-demo {
    background: #f5ede5;
    border: none;
    width: 100%;
    padding: 0.7rem;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.2s;
    color: #2c3e4e;
    margin-top: 1rem;
}
.btn-solution-demo:hover {
    background: #c9773e;
    color: white;
}

/* Trust strip (minimal alternative to features) - optional but professional */
.trust-strip {
    background: #f9f5f0;
    border-radius: 60px;
    padding: 0.8rem 1.5rem;
    margin: 2rem 0 1rem;
    text-align: center;
}
.trust-strip span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #3c4f5c;
    margin: 0 1rem;
}

footer {
    background: #1e2a32;
    color: #e7dfd7;
    margin-top: 3rem;
    padding: 2.5rem 0 1rem;
}
.footer h4, .footer-col h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f2e3d8;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li a {
    color: #cbc2b8;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-col ul li a:hover {
    color: #c9773e;
}
.footer-bottom {
    border-top: 1px solid #2e3f48;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.social-links a {
    color: #cbc2b8;
    margin-left: 1rem;
    font-size: 1.2rem;
}
.social-links a:hover {
    color: #c9773e;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}
.solution-alert {
    background: #ecf7f0;
    border-left: 5px solid #c9773e;
    border-radius: 20px;
}

/* Client Logos Section */
.client-logo-box {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.3s ease;
}
.client-logo-box:hover {
    box-shadow: 0 8px 20px rgba(201, 119, 62, 0.15);
    transform: translateY(-4px);
}
.client-logo-box img {
    opacity: 0.7;
    transition: opacity 0.3s;
}
.client-logo-box:hover img {
    opacity: 1;
}
