:root {
    --primary-color: #2e7d32;
    --primary-light: #2E7D32;
    --secondary-color: #F1F8E9;
    --accent-color: #C5E1A5;
    --dark-color: #0F172A;
    --background-color: #f9fafb;
    --text-color: #111827;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: var(--background-color);
}

.navbar {
    padding-top: 14px;
    padding-bottom: 14px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin-left: 10px;
    margin-right: 10px;
}

.navbar .nav-link.active {
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    border-radius: 8px;
    padding-inline: 14px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-success {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.footer {
    background: var(--secondary-color);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 999;
}

.hero {
    min-height: 85vh;

    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
        url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?q=80&w=1974&auto=format&fit=crop');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    position: relative;
}

/* Glass button feel */
.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
}

/* Smooth typography feel */
.hero h1 {
    letter-spacing: -0.5px;
}


.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.saas-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.saas-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
}

.saas-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2E7D32;
    font-weight: bold;
}
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.shadow-sm {
    transition: all 0.3s ease;
}

.shadow-sm:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}
.form-control,
.form-select {
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #2E7D32;
    box-shadow: 0 0 0 0.2rem rgba(46,125,50,0.15);
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.bg-white {
    transition: all 0.3s ease;
}

.bg-white:hover {
    transform: translateY(-5px);
}
