/* --------------------------
--------- Header Design---- */
.navigation-wrap {
    position: fixed;
    width: 100%;
    left: 0;
    background-color: rgba(156, 247, 244, 0.889);
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    font-family: "Alumni Sans";
}

.navigation-wrap .nav-item {
    padding: 0 0.625rem;
    transition: all 200ms linear;
}

.navigation-wrap .nav-item a {
    font-size: 30px;
}

.navbar-toggler:focus {
    outline: unset;
    border-color: unset;
    box-shadow: none;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: capitalize;
    color: #ab2c48;
    letter-spacing: 1px;
}

.navigation-wrap .main-btn {
    padding: 0.3125rem 1.4375rem;
    box-shadow: none;
    margin-left: 00.625rem;
}

/* change navbar styling on-scroll */
.navigation-wrap.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(156, 247, 244, 0.889);
    box-shadow: 0 0.12rem 1.75rem 0 rgb(0, 0, 0, 0.09);
    transition: all 0.15s ease-in-out 0s;
}

.navigation-wrap .nav-item a {
    font-size: 30px;
}


 .subscribe_now_btn {
    background: linear-gradient(135deg, #e31e24 0%, #ff4d4d 100%);
    font-size: 24px;
    font-weight: 700;
    color: white;
    padding: 15px 40px;
    border-radius: 50px; /* Pill shape is more modern */
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    max-width: 100%;
    align-items: center;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.subscribe_now_btn:hover {
    background: linear-gradient(135deg, #b7171b 0%, #e31e24 100%);
    color: #ffffff !important;
    box-shadow: 0 15px 30px rgba(227, 30, 36, 0.4);
    transform: scale(1.05); /* Zoom effect */
}

/* Subtle pulse for attention */
@keyframes shadow-pulse {
    0% { box-shadow: 0 0 0 0px rgba(227, 30, 36, 0.4); }
    100% { box-shadow: 0 0 0 20px rgba(227, 30, 36, 0); }
}

.subscribe_now_btn {
    animation: shadow-pulse 2s infinite;
}

/* Mobile Tweak for very small screens (like iPhone SE) */
@media (max-width: 480px) {
    .subscribe_now_btn {
        font-size: 18px; 
        padding: 12px 30px;
    }
}

.trust-item {
    font-family: "Livvic";
    font-size: 12px;
    font-weight: 500;
    color: #444;
}

.trust-divider {
    color: #ddd;
}

@media (max-width: 768px) {
    .subscribe_now_btn {
        font-size: 22px;
        width: 100%;
    }
    .trust-indicators {
        flex-direction: column;
        gap: 5px;
    }
    .trust-divider { display: none; }
}
@media (max-width: 991px) {
     .subscribe_now {
        display: none !important;
    }

        .navigation-wrap {
        text-align: center;
        background: #fff;
    }
}
@media (max-width: 1399px) and (min-width: 992px) {
    .navigation-wrap .nav-item a {
        font-size: 24px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .1rem;
        padding-left: .1rem;
    }
    .subscribe_now {
        display: none !important;
    }
}