body {
    background: linear-gradient(180deg, #d0e2ff 0%, #f9d6ff 50%, #f8f9fa 100%) !important;
    min-height: 100vh;
}

/* Navbar icon container – keep white rounded box */
.navbar-brand-icon {
    width: 32px;
    height: 32px;
    border-radius: .75rem;
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: .5rem;
}

/* Full hero section layout */
.hero-wrapper {
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hero logo wrapper – PURPLE BOX REMOVED */
.hero-logo {
    width: auto;
    height: auto;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Hero logo image */
.hero-logo img {
    width: 150px;
    /* adjust size as needed */
    height: auto;
    display: block;
}

/* Badge */
.hero-badge {
    border-radius: 999px;
    padding: .35rem .75rem;
    font-size: .875rem;
}

/* Title */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto 2rem auto;
    color: #343a40;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
}

#typing-text {
    white-space: nowrap;
}

.typing-cursor::after {
    content: '|';
    display: inline-block;
    margin-left: 2px;
    animation: typingCursorBlink 0.7s infinite;
}

@keyframes typingCursorBlink {

    0%,
    50% {
        opacity: 1;
    }

    50.01%,
    100% {
        opacity: 0;
    }
}