.glass {
    background: rgba(16, 26, 34, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.glass-card:hover {
    border-color: rgba(19, 146, 236, 0.3);
    box-shadow: 0 0 20px rgba(19, 146, 236, 0.1);
}

.text-glow {
    text-shadow: 0 0 30px rgba(19, 146, 236, 0.4);
}

.bg-mesh {
    background-color: #0a1116;
    background-image:
        radial-gradient(at 0% 0%, rgba(19, 146, 236, 0.1) 0px, transparent 50%),
        radial-gradient(
            at 100% 0%,
            rgba(139, 92, 246, 0.1) 0px,
            transparent 50%
        ),
        radial-gradient(
            at 50% 100%,
            rgba(19, 146, 236, 0.05) 0px,
            transparent 50%
        );
    background-attachment: fixed;
}

.grid-pattern {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #1392ec;
    opacity: 0;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes float-slow {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-slower {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float-slow 4s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-slower 5s ease-in-out infinite;
    animation-delay: 1s;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #101a22;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}
input,
select,
textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    border-color: #137fec !important;
    box-shadow: 0 0 0 2px rgba(19, 127, 236, 0.2) !important;
}
.sos-btn {
    background: linear-gradient(
        135deg,
        rgba(239, 68, 68, 0.2) 0%,
        rgba(185, 28, 28, 0.3) 100%
    );
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
    animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}
[data-service].active-icon > div {
    transform: scale(1.05);
}
.btn-gradient {
    background: linear-gradient(135deg, #1392ec 0%, #0d6eb3 100%);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #179cf8 0%, #0e7ac7 100%);
}

/* Abstract Background Pattern */
.bg-pattern {
    background-color: #101a22;
    background-image:
        radial-gradient(
            at 0% 0%,
            rgba(19, 146, 236, 0.15) 0px,
            transparent 50%
        ),
        radial-gradient(
            at 100% 0%,
            rgba(19, 146, 236, 0.1) 0px,
            transparent 50%
        ),
        radial-gradient(at 100% 100%, rgba(16, 26, 34, 1) 0px, transparent 50%);
}
.file-drop-area {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='16' ry='16' stroke='rgba(255,255,255,0.2)' stroke-width='2' stroke-dasharray='12%2c 12' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}
.file-drop-area:hover {
    background-color: rgba(255, 255, 255, 0.02);
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='16' ry='16' stroke='%231392ec' stroke-width='2' stroke-dasharray='12%2c 12' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
.glass-card-urgent {
    background: rgba(30, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
}

.bg-grid {
    background-size: 40px 40px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        10%,
        black,
        90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        5%,
        black,
        95%,
        transparent
    );
}
