:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: 'Space Grotesk', sans-serif;
}

.hero-section {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0) 100%), url('../../assets/images/monitor.png');
    background-size: cover;
    background-position: center right;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 102, 255, 0.1), 0 10px 10px -5px rgba(0, 102, 255, 0.04);
}

.custom-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #0066FF;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.btn-cta {
    position: relative;
    overflow: hidden;
}

.btn-cta:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-cta:hover:after {
    left: 100%;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
}

input:focus {
    outline: none;
}

.app-color{
    color: #1a428a;
}

.app-color-bg{
    background-color: #1a428a;
}

.app-color-border{
    border-color: #1a428a;
}
.contact-hero {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.8) 100%), url('../../assets/images/placeholder.png');
    background-size: cover;
    background-position: center;
}