:root,
.color-scheme {
    --primary: rgb(9, 68, 156);
    --secondary: rgb(245, 245, 245);
    --accent: rgb(115, 160, 211);
    --background: rgb(83, 83, 83);
    --dark: #04080fff;
    --light: #fff;
}

.primary-section {
    background-color: var(--primary);
    color: var(--light);
}

.secondary-section {
    background-color: var(--secondary);
    color: var(--dark);
}

.accent-section {
    background-color: var(--accent);
    color: var(--dark);
}

.background-section {
    background-color: var(--background);
    color: var(--dark);
}

.dark-section {
    background-color: var(--dark);
    color: var(--background);
}

body {
    font-family: "Roboto", sans-serif;
}

.navbar-nav .nav-link {
    color: #fff;
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #ffd43a;
    background-color: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

h1,
h2 {
    font-family: "Noto Sans", serif;
}

.navbar-brand {
    font-family: "Noto Sans", serif;
    font-size: xx-large;
}

.p {
    font-family: "Roboto", sans-serif;
}

.navbar {
    background: rgba(4, 8, 15, 0.75) !important;
    backdrop-filter: blur(6px);
    border-bottom: 1px ridge rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(80, 125, 188, 0.08);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar .navbar-brand,
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s, background 0.2s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--accent) !important;
    background: rgba(80, 125, 188, 0.08);
    border-radius: 0.4rem;
    text-decoration: none;
}

.navbar .navbar-brand img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

.hero {
    border-bottom: 6px solid rgb(32, 32, 32, 0.5) !important;
}

header {
    margin-top: 0px;
    border-bottom: 6px solid rgb(32, 32, 32, 0.3) !important;
}

.header-title {
    font-size: 48px;
    font-weight: bold;
}

.resources {
    border-bottom: 6px solid rgb(32, 32, 32, 0.2) !important;
}

.about {
    border-bottom: 6px solid rgb(32, 32, 32, 0.1) !important;
}

.faq {
    border-bottom: 6px solid rgb(32, 32, 32, 0.3) !important;
}

section {
    scroll-margin: 50px;
}

.card {
    border: 1px solid #ddd;
}

.card:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-service {
    background-color: #22272e;
    color: #fff;
    cursor: pointer;
}

.card-service:hover {
    background-color: #f1f105;
    color: #22272e;
}

.card-title {
    font-weight: bold;
    font-size: 22px;
}

.gallery-card {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-img {
    object-fit: cover;
    height: 400px;
    filter: brightness(85%);
}

.partner-img {
    object-fit: contain;
    width: 120px;
    padding: 0 2%;
}

.gallery-description {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 3%;
    text-align: center;
}

.title {
    font-weight: bold;
    margin-bottom: 3%;
}

.text-large {
    font-size: 1.25rem;
}

.card.accent-section {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Navbar brand styling */
.navbar-brand.d-flex.align-items-center {
    font-size: 2rem;
    font-weight: 700;
}

/* Navbar border and shadow */
.navbar {
    border-bottom: 6px solid rgb(32, 32, 32, 0.7) !important;
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.15);
}

/* Modal custom styles */
#findOutMoreModal .modal-content {
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px rgba(80, 125, 188, 0.18);
}

#findOutMoreModal .modal-header {
    background: var(--powder-blue, #a1c6ea);
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
}

#findOutMoreModal .modal-title {
    color: var(--rich-black, #04080f);
    font-weight: bold;
}

#findOutMoreModal .modal-body {
    max-height: 400px;
    overflow-y: auto;
    background: var(--platinum, #dae3e5);
}

#findOutMoreModal blockquote {
    font-size: 1.1rem;
    color: #222;
}

#findOutMoreModal .alert-info {
    background: var(--columbia-blue, #bbd1ea);
    color: #222;
}

#partners {
    width: 100vw; /* full viewport width */
}

.partner-img {
    max-height: 120px !important;
    width: auto !important;
}
