/* Custom Styles for elements hard to achieve with utility classes alone */
body {
    -webkit-font-smoothing: antialiased;
}

.hero-bg {
    background: linear-gradient(rgba(10, 15, 30, 0.4), rgba(10, 15, 30, 0.6)), url('../img/digital_services-Background.png') no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}

.hero-text-shadow {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8), 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.text-glow {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.metallic-text {
    background: linear-gradient(to bottom, #ffffff 0%, #b0b5ba 50%, #e2e8f0 51%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.2);
}

/* CSS Mobile Phone Mockup */
.css-phone {
    width: 140px;
    height: 280px;
    border-radius: 24px;
    border: 6px solid #1f2937;
    background-color: #000;
    position: relative;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    flex-shrink: 0;
}

.css-phone::before {
    /* Notch */
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 12px;
    background-color: #000;
    border-radius: 10px;
    z-index: 10;
}

.phone-screen-bg {
    background: linear-gradient(to bottom, #1e1b4b, #312e81, #000000);
}

.phone-screen-bg-alt {
    background: linear-gradient(to bottom, #000000, #1e1b4b, #000000);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (min-width: 768px) {
    .css-phone {
        width: 160px;
        height: 320px;
    }
}
