body {
    background-color: #0B0F1A;
    color: #F5F7FA;
    font-family: 'Montserrat', sans-serif;
    padding-top: 100px;
}



.nav-link {
    font-size: 1.25rem; /* Bigger */
    font-weight: 700; /* Stronger */
    letter-spacing: 1px; /* More premium spacing */
    margin-left: 25px;
    text-transform: uppercase; /* Corporate feel */
}
.nav-link {
    position: relative;
}

    .nav-link::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: #1E90FF;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: #1E90FF !important;
    }

.footer {
    background-color: #121826;
    color: #9CA3AF;
}

.section-dark {
    background-color: #121826;
    padding: 80px 0;
}

.btn-primary {
    background-color: #1E90FF;
    border: none;
}

    .btn-primary:hover {
        background-color: #00C2A8;
    }

.card-dark {
    background-color: #121826;
    border: 1px solid #1f2937;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card-dark:hover {
        transform: translateY(-8px);
        box-shadow: 0 0 20px rgba(30,144,255,0.3);
    }



/* NAVBAR IMPROVEMENTS */

.navbar {
    padding: 20px 0;
}

.navbar-logo {
    height: 80px; /* +10px as requested */
    transition: transform 0.3s ease;
}

    .navbar-logo:hover {
        transform: scale(1.05);
    }

.nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 20px;
}

.navbar-brand {
    margin-right: 40px;
}


.active-nav {
    color: #1E90FF !important;
}

    .active-nav::after {
        width: 100% !important;
    }


.navbar.scrolled {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}



/* HERO SECTION */

.hero-section {
    height: 100vh;
    background: linear-gradient( to bottom, rgba(11,15,26,0.85), rgba(11,15,26,0.95) ), url('https://specializedretailstorage.blob.core.windows.net/groupwebmedia/hero.jpg') center/cover no-repeat;
}

.hero-title {
    font-size: 5rem; /* MUCH bigger */
    font-weight: 800; /* Stronger */
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #9CA3AF;
    margin-top: 20px;
}

.custom-navbar {
    background-color: rgba(11, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}


/* Coumity page spacing */
.community-block {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.community-image {
    max-height: 450px;
    object-fit: cover;
}


.section-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 30px 0;
}

.section-heading {
    font-weight: 700;
    letter-spacing: 1px;
}

.division-block h5 {
    font-weight: 600;
    color: #1E90FF;
}

.division-block p {
    color: #C9D1D9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

    .values-list li {
        margin-bottom: 12px;
        line-height: 1.6;
        color: #C9D1D9;
    }