        html {
    scroll-behavior: smooth;
}

/* Fix scroll offset for fixed navbar */
section {
    scroll-margin-top: 110px;
}

/* Fix logo size properly */
.logo-img {
    height: 50px;
    width: auto;
}

/* Remove broken CSS */
.footer-icon-text {
    color: white;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 140px 0 60px;
        text-align: center;
    }

    .navbar-brand {
        margin-left: 0;
    }
}
        :root {
            --primary: #0d3c8f;
            --primary-dark: #092c6b;
            --accent: #2563eb;
            --light: #f1f5f9;
            --dark: #0b1e3a;
        }

        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: #f8faff;
            color: #1e293b;
            margin: 0;
        }

        .section-padding { padding: 90px 0; }

        h1, h2, h3, h4, h5 { font-weight: 700; }

        /* Navbar */
        .navbar {
            background: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 22px;
            display: flex;
            align-items: center;
            margin-top: 20px;
            margin-bottom: 20px;
            margin-left: 25px;
        }

        .nav-link {
            font-weight: 500;
            color: #334155 !important;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
        }

        /* Buttons */
        .btn-primary-custom {
            background: var(--primary);
            color: #fff !important;
            border-radius: 8px;
            font-weight: 600;
            padding: 10px 22px;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(13,60,143,0.25);
        }

        /* Hero */
.hero {
    background: linear-gradient(135deg, #f6f8ff, #e8efff);
    padding: 160px 0 80px; /* pushes hero below navbar */
}

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.15;
        }

        .hero p {
            color: #475569;
            font-size: 1.2rem;
            max-width: 520px;
        }

        /* Services */
        .services {
            background: #f1f5fb;
        }

        .service-card {
            background: #fff;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-6px);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
        }

        /* Stats - Restored original style */
        .stat-icon {
            font-size: 2.5rem;
            color: #888;
            margin-bottom: 10px;
        }

        .stat-number {
            font-weight: 800;
            font-size: 3rem;
            color: var(--primary);
        }

        /* Growth / Solutions */
        .growth {
            background: var(--primary);
            color: #fff;
        }

        .growth ul {
            list-style: none;
            padding: 0;
        }

        .growth li {
            margin-bottom: 14px;
            font-size: 1.1rem;
        }

        .growth li::before {
            content: "✓ ";
            color: #22c55e;
            font-weight: 700;
            margin-right: 10px;
        }

        /* CTA */
        .cta {
            background: #eef3ff;
            text-align: center;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: #cbd5e1;
            padding: 70px 0 25px;
        }

        footer a {
            color: #94a3b8;
            text-decoration: none;
        }

        footer a:hover {
            color: #fff;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            font-size: 14px;
            color: #ffffff;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
        }
        .footer icon text {
            color: white
        }

        /* WhatsApp Widget */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: #25D366;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            cursor: pointer;
            z-index: 1000;
            transition: 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-chat {
            position: fixed;
            bottom: 100px;
            right: 25px;
            width: 340px;
            height: 460px;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.25);
            display: none;
            flex-direction: column;
            overflow: hidden;
            z-index: 1000;
        }

        .whatsapp-header {
            background: #25D366;
            color: #fff;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .whatsapp-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background: #f7f7f7;
            display: flex;
            flex-direction: column;
        }

        .bot-message, .user-message {
            padding: 10px 14px;
            border-radius: 14px;
            margin-bottom: 10px;
            font-size: 14px;
            max-width: 80%;
        }

        .bot-message {
            background: #ffffff;
            align-self: flex-start;
        }

        .user-message {
            background: #dcf8c6;
            align-self: flex-end;
        }

        .whatsapp-input {
            display: flex;
            padding: 10px;
            border-top: 1px solid #eee;
            background: #fff;
        }

        .whatsapp-input input {
            flex: 1;
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 8px 12px;
            font-size: 14px;
        }

        .whatsapp-input button {
            background: #25D366;
            border: none;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-left: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }




        /*facebook floating icon*/
        .facebook-float {
    position: fixed;
    bottom: 95px;
    right: 25px;
    background: #1877F2;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: 0.3s ease;
}

.facebook-float:hover {
    transform: scale(1.1);
}