.keycap {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bolder;
    background-color: #5e17eb;
    border-radius: 8px;
    padding: 0px 8px;
    display: inline-block;
    text-align: center;
    color: #fff;
}

.keycap-footer {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bolder;
    background-color: #5e17eb;
    border-radius: 8px;
    padding: 0px 8px;
    display: inline-block;
    text-align: center;
    color: #fff;
}

.navbar-brand-footer {
    margin: 0;
    font-size: x-large;
}

.logo-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: white;
}

.navbar-brand {
    margin: 0;
    font-size: 2.2rem;
}

.ud-hero {
    background-image: linear-gradient(to bottom right, rgb(5, 39, 103) 0%, #3a0647 100%) !important;
    
}

.ud-white-btn {
    background-color: #5e17eb !important;
    color: white !important;
    
}

.btn-outline-primary {
    color: #fff;
    border-color: #5e17eb;
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff; !important;
    background-color: #5e17eb;
    border-color: #5e17eb;
}

.logo-inline {
    width: 1.5em;
    height: 1.4em;
    margin-top: -0.2em;
    vertical-align: middle;
}

.swiper-container {
    width: 100%;
    max-width: 500px; /* or fit your design */
    margin: 0 auto;
}
.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.swiper-slide img {
    filter: brightness(50%) blur(1px); /* dim & slight blur */
    transition: all 0.3s ease;
}

.swiper-slide-active img {
    filter: brightness(100%) blur(0); /* normal for center */
    transform: scale(1.05); /* optional: subtle zoom */
    z-index: 2;
}

.ud-hero-buttons {
    display: flex;
    flex-wrap: wrap;   /* allow wrapping when not enough space */
    gap: 1rem;         /* spacing between buttons */
    list-style: none;
    padding: 0;
    margin: 0;
}

.ud-hero-buttons li {
    flex: 1 1 auto;    /* let items shrink/wrap naturally */
}

.ud-hero-buttons a {
    display: block;
    text-align: center;
}

.desktop-break {
    display: block;
}





.nowrap {
    white-space: nowrap;
}





/* Make navbar logo and text responsive */
.navbar-brand img.logo-inline {
    height: 1.4em;
    width: 1.5em;
    margin-top: 0;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 2.2rem;
    vertical-align: middle;
    transition: all 0.3s ease;
}

/* Shrink logo and text on tablets */
@media (max-width: 992px) {
    .navbar-brand img.logo-inline {
        height: 40px;
        width: 40px;
    }
    .logo-text {
        font-size: 28px;
    }
}

/* Shrink more on mobile */
@media (max-width: 576px) {
    .navbar-brand img.logo-inline {
        height: 32px;
        width: 32px;
    }
    .logo-text {
        font-size: 22px;
    }
}







