.gradient-bg {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}
.gradient-bg-hero {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    position: relative;
    overflow: hidden;
}
/* Optional: Add a subtle pattern for more texture */
.gradient-bg-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}
.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.apps-grid::-webkit-scrollbar { width: 6px; }
.apps-grid::-webkit-scrollbar-track { background: #e5e7eb; }
.apps-grid::-webkit-scrollbar-thumb { background: #9ca3af; border-radius: 3px; }
.apps-grid::-webkit-scrollbar-thumb:hover { background: #6b7280; }

.service-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid #e5e7eb;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
    border-color: #3b82f6;
}
.tooltip {
    position: relative;
    display: inline-block;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #374151;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Mobile Menu Transition */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#mobile-menu.active {
    max-height: 500px; /* Adjust as needed */
}

/* Initial state for scroll animations */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transform: translateY(20px);
}
/* Final state for scroll animations */
.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.clientLogo img{
    border: 1px solid #cccccc69;
    height: 80px;
    border-radius: 5px;
    padding: 12px;
}