body {
    padding-top: 56px; /* Adjusts for fixed navbar */
}
.container {
    max-width: 1100px; /* Keeps content within a nice layout */
}

.bg-secondary-1 {
    background-color: rgba(3,19,32,1);
}

.bg-secondary-9 {
    background-color: rgba(3,19,32,.9);
}

.border-main {
    border-bottom: #d76523 1px solid;
}

.text-white {
    color: #ffffff;
}

.c-dropdown {
    float: left;
    overflow: hidden
}

.c-dropdown .dropbtn {
    border: 0;
    outline: 0;
    color: #fff;
    background-color: inherit;
    margin: 0
}

.c-dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    width: 100%;
    left: 0;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,.2);
    z-index: 1;
    padding: 20px;
    font-size: 16px;
    font-style: italic
}

.c-dropdown:hover .c-dropdown-content {
    display: block
}

.c-dropdown-content .nav-link:hover {
    border-bottom: 2px solid #000000;
}

.c-dropdown-content nav-link {
    color: #000000;
    border-bottom: 2px solid #ffffff;
}

.section-carousel {
    max-height: 800px;
}

.c-text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.c-text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.c-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.c-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.c-text-color {
    color: rgba(215, 100, 35, 1);
}

.c-font-extra-bold {
    font-weight: 800;
}

.c-spacer {
    height: 3.5rem;
}

.c-orange-spacer {
    background-color: rgba(215, 100, 35, 1);
    height: 2px;
}

.c-text-secondary {
    color: rgba(3, 19, 32, 1);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.c-text-main {
    color: rgba(215, 100, 35, 1);
}

.c-carousel-caption {
    top: 50px;
    bottom: auto !important;
}

.c-carousel-caption p {
    font-size: 1.5rem;
    font-weight: 200;
    line-height: 2rem;
    margin-top: 20px;
}

.c-h1 {
    font-size: 3.5rem;
}

.card-flip > div {
    backface-visibility: hidden;
    transition: transform 300ms;
    transition-timing-function: linear;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
}

.card-front {
    transform: rotateY(0deg);
}

.card-back {
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
}

.card-flip:hover .card-front {
    transform: rotateY(-180deg);
}

.card-flip:hover .card-back {
    transform: rotateY(0deg);
}

.c-card-rounded {
    border-radius: .375rem;
}

.c-font-bold {
    font-weight: 700;
}

.nav-item .nav-link {
    margin: 0 10px;
}

.nav-item .nav-link:hover {
    color: rgba(215, 100, 35, 1);
}

.custom-background {
    position: relative;
    min-height: 100vh; /* Ensures the container covers the viewport */
}

.custom-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 120, 144, 0.4);
    background: -moz-linear-gradient(left, rgba(41, 84, 195, 0.4) 0%, rgba(114, 190, 69, 0.4) 70%, rgba(1, 156, 92, 0.4) 100%);
    background: -webkit-linear-gradient(left, rgba(41, 84, 195, 0.4) 0%, rgba(114, 190, 69, 0.4) 70%, rgba(1, 156, 92, 0.4) 100%);
    background: linear-gradient(to right, rgba(41, 84, 195, 0.4) 0%, rgba(114, 190, 69, 0.4) 70%, rgba(1, 156, 92, 0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#158478', endColorstr='#019c5c', GradientType=1 );
    z-index: -1; /* Ensures it sits behind any content */
    pointer-events: none; /* Prevents interference with page interactions */
}

p, ul, ol {
    font-size: 1.5rem;
    font-weight: 200;
    line-height: 2rem;
}
