Site.css
/* Single html definition */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Body layout */
body {
    overflow-x: hidden;
    max-width: 100vw;
    margin-bottom: 60px;
    padding-top: 5rem;
}

/* Center the main container and add side padding */
.container {
    max-width: 1400px; /* centers body content in the middle of page */
    margin: 0 auto; /* horizontal centering */
    padding-left: 20px; /* left padding */
    padding-right: 20px; /* right padding */
    overflow-x: hidden;
}

/* Focus states */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>Header and Navigation<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

.navbar {
    background-color: #E0E0E0 !important;
    padding-top: 2rem;
    padding-bottom: 0.25rem;
    height: 5rem;
    overflow: hidden;
}

.nav-link-custom {
    margin-left: 1.5rem;
    margin-right: 2rem;
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
}

/* Hover highlight */
ul.navbar-nav li a.nav-link-custom:hover {
    color: #054e14 !important;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

/* Header logo styling */
.top-logo {
    height: 10rem;
    width: auto;
    display: block;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 576px) {
    .top-logo {
        height: 6rem;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tagline Container - positioned independently under the logo */
.tagline-container {
    position: absolute;
    top: 2rem;
    left: 5rem;
    transform: translateX(6rem);
    margin: 0;
    padding: 0;
    z-index: 1001;
    pointer-events: none;
    white-space: nowrap;
}

/* Tagline text styling */
.header-tagline {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    padding: 1.5rem 4.75rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .tagline-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
        width: 100%;
        margin-top: 0.5rem;
        white-space: normal;
    }

    .header-tagline {
        font-size: 0.6rem;
        padding: 0.5rem;
    }
}

/*Footer>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>Footer>>>>>>>>>>>>>>>>*/

.footer-custom {
    background-color: #E0E0E0 !important;
    height: 5rem;
    overflow: hidden;
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Footer content layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
}

/* Footer LEFT side - BADGES, COPYRIGHT, PRIVACY */
.footer-left {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    left: 1.2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Copyright and privacy */
.footer-company {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.footer-privacy {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: 0.2s ease-in-out;
    white-space: nowrap;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

    .footer-privacy:hover {
        color: #054e14 !important;
        text-decoration: none;
    }

/* Badges container */
.app-badges-container {
    display: flex;
    align-items: center;
    gap: 0rem;
}

/* App Store & Google Play badges */
.app-badge-img {
    height: 2rem !important;
    width: auto;
    display: block;
    padding: 0rem !important;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

@media (max-width: 1200px) {
    .app-badge-img {
        height: 2.5rem !important;
        padding: 0.2rem !important;
    }
}

@media (max-width: 992px) {
    .app-badge-img {
        height: 2rem !important;
        padding: 0.15rem !important;
    }
}

@media (max-width: 768px) {
    .app-badge-img {
        height: 1.5rem !important;
        padding: 0.1rem !important;
    }
}

@media (max-width: 576px) {
    .app-badge-img {
        height: 1.25rem !important;
        padding: 0.05rem !important;
    }
}

.app-badge-img:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Footer RIGHT side - ABOUT US, RESOURCES, COMMUNITY links */
.footer-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Footer blocks - About us, Resources, Community */
.footer-blocks {
    display: flex;
    gap: 3rem;
}

/* Individual block */
.footer-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Block title */
.footer-block-title {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #333;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Block links - stacked vertically */
.footer-block-links {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

/* Link styling */
.footer-link {
    color: #333 !important;
    text-decoration: none !important;
    font-size: 0.7rem;
    white-space: nowrap;
}

    .footer-link:hover {
        text-decoration: none !important;
        color: #054e14 !important;
    }

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column-reverse;
        gap: 1rem;
        padding: 0.5rem;
    }

    .footer-left {
        order: 2;
        flex-direction: column;
        gap: 0.5rem;
        left: 0;
        align-items: center;
        width: 100%;
    }

    .footer-right {
        order: 1;
        flex-direction: column;
        gap: 1.5rem;
        right: 0;
        align-items: center;
        width: 100%;
    }

    .footer-blocks {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .app-badges-container {
        gap: 0.25rem;
    }

    .footer-company,
    .footer-privacy {
        font-size: 0.8rem;
    }
}

/* >>>>>>>>>>>>>>>>Animated Pulse for notification badges<<<<<<<<<<<<<<<<<<<<<<<<<<< */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 0.5s ease-out;
}

