html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.social-icon img {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.social-icon:hover img {
    transform: scale(1.15) rotate(-6deg);
    box-shadow: 0 4px 16px rgba(39,117,252,0.18);
}

.glass-hero {
    background: rgba(255,255,255,0.10);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 3rem 2rem;
    margin-top: 2rem;
}

/* Animated gradient for products */
.animated-gradient {
    background: linear-gradient(270deg, #6a11cb, #2575fc, #43c6ac, #f7971e, #ee0979);
    background-size: 1200% 1200%;
    animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.product-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

    .product-card:hover {
        transform: translateY(-10px) scale(1.04);
        box-shadow: 0 12px 32px 0 rgba(39,117,252,0.18);
    }

/* Neumorphism for service cards */
.neu-card {
    background: #f5f6fa;
    border-radius: 1.5rem;
    box-shadow: 8px 8px 24px #d1d9e6, -8px -8px 24px #ffffff;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .neu-card:hover {
        box-shadow: 0 8px 32px 0 #2575fc55, 0 1.5px 0 #fff;
        transform: translateY(-6px) scale(1.03);
    }

#ai-chatbot-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 340px;
    z-index: 9999;
    font-family: 'Segoe UI', Arial, sans-serif;
}

#ai-chatbot-header {
    background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
    color: #fff;
    padding: 14px 18px;
    border-radius: 18px 18px 0 0;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px rgba(39,117,252,0.18);
}

#ai-chatbot-body {
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px 0 rgba(39,117,252,0.18);
    padding: 0 0 12px 0;
    max-height: 420px;
    display: flex;
    flex-direction: column;
}

#ai-chatbot-messages {
    padding: 16px;
    height: 220px;
    overflow-y: auto;
    font-size: 1rem;
}

.ai-chatbot-msg {
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 80%;
    word-break: break-word;
}

    .ai-chatbot-msg.user {
        background: #2575fc;
        color: #fff;
        align-self: flex-end;
        margin-left: 20%;
        text-align: right;
    }

    .ai-chatbot-msg.ai {
        background: #f1f3f6;
        color: #222;
        align-self: flex-start;
        margin-right: 20%;
    }

#ai-chatbot-form {
    display: flex;
    gap: 8px;
    padding: 0 12px;
}

#ai-chatbot-input {
    flex: 1;
    border-radius: 12px;
}

#ai-chatbot-form button {
    border-radius: 12px;
    min-width: 70px;
}

@media (max-width: 500px) {
    #ai-chatbot-widget {
        right: 8px;
        bottom: 8px;
        width: 98vw;
        max-width: 98vw;
    }

    /* Glassmorphism for hero */
    .glass-hero {
        background: rgba(255,255,255,0.10);
        border-radius: 1.5rem;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.18);
        padding: 3rem 2rem;
        margin-top: 2rem;
    }
    /* Animated gradient for products */
    .animated-gradient {
        background: linear-gradient(270deg, #6a11cb, #2575fc, #43c6ac, #f7971e, #ee0979);
        background-size: 1200% 1200%;
        animation: gradientMove 12s ease infinite;
    }

    @keyframes gradientMove {
        0% {
            background-position: 0% 50%
        }

        50% {
            background-position: 100% 50%
        }

        100% {
            background-position: 0% 50%
        }
    }

    .product-card {
        transition: transform 0.2s, box-shadow 0.2s;
    }

        .product-card:hover {
            transform: translateY(-10px) scale(1.04);
            box-shadow: 0 12px 32px 0 rgba(39,117,252,0.18);
        }
    /* Neumorphism for service cards */
    .neu-card {
        background: #f5f6fa;
        border-radius: 1.5rem;
        box-shadow: 8px 8px 24px #d1d9e6, -8px -8px 24px #ffffff;
        transition: box-shadow 0.2s, transform 0.2s;
    }

        .neu-card:hover {
            box-shadow: 0 8px 32px 0 #2575fc55, 0 1.5px 0 #fff;
            transform: translateY(-6px) scale(1.03);
        }
    /* Shared background for header and hero */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: transparent;
        transition: background 0.3s, box-shadow 0.3s;
        color: #fff;
    }

        .site-header.solid {
            background: #2575fc; /* Or your preferred solid color */
            color: #fff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }

    .hero-section {
        min-height: 60vh;
        background: url('/Images/Abstract-Website-Background.jpg') center center/cover no-repeat;
        position: relative;
        padding-top: 80px; /* To avoid header overlap */
    }

    .scale-feature-icon img,
    .scale-feature-icon-head-flex img {
        width: 90px !important;
        height: 90px !important;
        object-fit: contain;
        margin-bottom: 12px;
    }

    .whatsapp-icon-web {
        position: fixed;
        bottom: 2px;
        right: 100px;
        z-index: 1000003;
        text-align: right;
    }

    .footer5 .widget__title {
        color: #fff;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .footer5 .links a {
        color: #bdbdbd;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer5 .links a:hover {
            color: #6C63FF;
            text-decoration: underline;
        }

    .footer5 .widget, .footer5 .widget--links {
        margin-bottom: 2.5rem;
    }

    .footer5 .footer_logo {
        filter: brightness(0) invert(1);
        max-width: 160px;
        margin-bottom: 1.5rem;
    }

    .footer5 .social ul {
        padding-left: 0;
        margin: 0.5rem 0 0 0;
        list-style: none;
    }

    .footer5 .social li {
        margin-right: 14px;
    }

    .footer5 .social a {
        color: #bdbdbd;
        font-size: 1.4rem;
        transition: color 0.2s;
    }

        .footer5 .social a:hover {
            color: #6C63FF;
        }

    .footer5 .links li {
        margin-bottom: 0.75rem;
    }

    .footer5 .links i {
        color: #6C63FF;
    }

    .footer__big .container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
