﻿:root {
    --navy: #081c2a;
    --deep: #0a1421;
    --teal: #21998d;
}

body {
    margin: 0;
    color: #eef;
    font-family: 'Inter', system-ui, Arial, sans-serif;
    overflow-x: hidden;

}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #081c2a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#2ab7a9, #0f5f9c);
    border-radius: 100px;
    border: 2px solid #081c2a;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(#3bcdbd, #1b74b8);
    }


html {
    position: relative;
    min-height: 100%;
    height: 100%;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: #2ab7a9 #081c2a;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/*Start of nav*/
.container-fluid {
    width: 75%;
}

.nav-containter {
    padding: 0px;
    width: 80%;
}

@media (max-width:980px) {
    .nav-containter {
        width: 97%;
    }
}

@media (max-width: 1070px) {
    .nav-item {
        font-size: 18px;
        padding-left: 14px;
    }
}

#brand {
    color: white;
}

.nav-link {
    color: white !important;
}


/*Brand on the navbar*/
#brand {
    color: white;
    font-weight: bolder;
    font-size: 25px;
    float: right;
}

.brand-NavTop {
    padding: 0px;
    height: 40px;
    width: 40px
}

#brand:hover {
    background-image: linear-gradient(var(--teal) 0 0);
    background-position: bottom center;
    background-size: 80% 2px;
    background-repeat: no-repeat;
}

.nav-item {
    font-weight: 500;
    font-size: 22px;
    padding: 1px;
    padding-left: 22px;
}

.nav-item:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
    text-decoration-color: var(--teal);
}




.mainNavBarContent {
    justify-content: right;
}

.mainNavBar {
    border-bottom-width: 1px;
    border-color: rgb(1, 44, 125);
    border-bottom-style: groove;

}

.navbar-toggler {
    font-size: 1.3rem;
    margin-top: 10px;
}

.navbar-toggler-icon {
    background-size: 128%;
}

.loginButton {
    width: fit-content;
    background-color: rgb(42, 72, 88);
    font-weight: bold;
    border-color: rgb(1, 44, 125);
    border-width: 3px;
    border-style: outset;
    padding: 5px;
    padding-right: 5px;
    padding-left: 5px;
    margin-left: 20px;
    margin-top: 4px;
    padding-left: 9px;
    padding-right: 9px;
    font-size: 18px;
    border-radius: 37px;
    color: white;
}




/*Nav Bar stuffEnd


/* Improved Ocean Gradient */
/*.ocean-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient( to bottom, #a0e0ff 0%, #7ac8ff 12%, #4c9ecf 26%, #2a7eb8 42%, #1b6998 55%, #0f4a7a 68%, #0a2e5a 80%, #081c2a 92%, #060f1a 100% );
    z-index: -3;
}*/
    .ocean-bg {
    position: fixed;
    inset: 0;
    background-image: url('/images/ocean-gradient.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -3;
}
    /* Softer, more organic light rays */
    .ocean-bg::before {

        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.07) 38%, transparent 48%), linear-gradient(98deg, transparent 25%, rgba(255,255,255,0.05) 35%, transparent 55%), linear-gradient(112deg, transparent 40%, rgba(255,255,255,0.06) 48%, transparent 62%);
        background-size: 220% 220%, 180% 180%, 250% 250%;
        animation: light-drift-1 55s linear infinite, light-drift-2 72s linear infinite reverse, light-drift-3 48s linear infinite;
        opacity: 0.55;
        mix-blend-mode: normal;
        pointer-events: none;

    }

@keyframes light-drift-1 {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 80%;
    }
}

@keyframes light-drift-2 {
    0% {
        background-position: 100% 20%;
    }

    100% {
        background-position: 0% 90%;
    }
}

@keyframes light-drift-3 {
    0% {
        background-position: 30% 100%;
    }

    100% {
        background-position: 70% 0%;
    }
}

/* Particles */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    animation: float-particle linear infinite;
    box-shadow: 0 0 8px rgba(135, 214, 255, 0.7);
}


@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0.6);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-120px) scale(1.4);
        opacity: 0;
    }
}

/* Darker Navbar */
.navbar, .glass {
    background: rgba(6, 12, 22, 0.85);
/*    backdrop-filter: blur(16px); opimizing for firefox here*/
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.scrolled .navbar {
    background: rgba(5, 10, 20, 0.95);
}

.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.display-1 {
    font-weight: 700;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    font-size:3rem
}

.btn-primary {
    background: var(--teal);
    border: none;
    padding: 12px 32px;
}
.btn-primary:hover {
    background: var(--teal);
    filter: brightness(.9);
    border-color: var(--teal);
}
.btn:focus,
.btn:focus-visible {
    box-shadow: 0 0 0 .15rem rgba(17,59,89,.25);
}
.btn:active,
.btn.active {
    background-color: var(--teal);
    filter: brightness(.9);
    border-color: rgba(17,59,89,.25);
}



.card {
/*    background: rgba(255,255,255,0.06);*/
    background: rgba(0, 0, 0, 0.49);
    border: 1px solid rgba(255,255,255,0.09);
    transition: all 0.1s ease;
}

    .card:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,0.11);
    }


section {
    padding: 100px 0;
    position: relative;
}

.chamberlogo {
    width: 100px;
    margin: 5px;
}


.socialLogo {
    width: 30px;
    height: 30px;
    margin: 10px;
    margin-bottom: 5px;
}

    .socialLogo:hover {
        border-color: white;
        border-width: 2px;
        border-style: solid;
    }

.x {
    border-radius: 50%;
}

.socialContainer {
    display: inline-flex;
    justify-content: right;
    width: fit-content;
    color: white;
    padding-left: 10px;
    /*        position: absolute;
        right: 0;*/
    padding-right: 15px;
    border-top-left-radius: 22px;
    font-weight: bold;
}

.footerOveride {
    border-top: none !important;
}

.chamberContainer {
    display: inline-flex;
    justify-content: left;
    width: fit-content;
    color: white;
    padding-left: 10px;
    /*        position: absolute;
        left: 0;*/
    padding-right: 15px;
    font-weight: bold;
}

.foot {
    color: white;
    text-align: center;
    width: 100%;
    /* line-height: 52px;*/
    flex-shrink: 0;
}

@media(max-width:900px) {
    .foot {
        text-align: left;
    }
}

@media(max-width:500px) {
    .foot {
        text-align: center;
        font-size: x-small;
    }
}

@media (max-width:1000px) {
    .infoBox {
        width: 90%;
    }
}

a {
    color: var(--teal);
}

    a:hover {
        color: var(--teal);
        opacity:75%;
    }
.copyright {
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
    width: fit-content;
    padding-top: 15px;
}

    .copyright > p {
        margin: 0;
        width: fit-content;
        align-content: baseline;
    }

.pageWrapper {
    min-height: 92.5%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto; /* Grows to fill space, pushing footer down */
}

.SeaFooter {
    flex-shrink: 0; /* Prevents footer from shrinking */
    margin-left: 1.2%;
    margin-right: 1.2%;
}

.veiwContainer {
    width: 100%;
}

@media (min-width: 1700px) {
    .veiwContainer {
        max-width: 100%;
    }
}
.veiwContainer {
    padding-top: 40px;
}

.subtitle {
    opacity: 1;
    animation: fadeInOut .25s ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



/*  timeline*/
.timeline-steps-horizontal {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.timeline-step {
    text-align: center;
    flex: 1;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .timeline-step:hover {
        transform: translateY(-4px);
    }

    .timeline-step.active {
        transform: translateY(-8px);
    }

.timeline-line-horizontal {
    position: absolute;
    top: 68px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: rgba(255,255,255,0.12);
    z-index: 1;
}

.timeline-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

    .timeline-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.timeline-step {
    text-align: center;
    flex: 1;
    padding: 15px 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .timeline-step:hover {
        transform: translateY(-6px);
    }

    .timeline-step.active {
        transform: translateY(-10px);
    }

.step-icon {
    font-size: 2.8rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.timeline-step.active .step-icon {
    color: #fff;
    transform: scale(1.15);
}

.nav-arrow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(42, 183, 169, 0.1);
    border: 2px solid rgba(42, 183, 169, 0.4);
    color: var(--teal);
    transition: all 0.3s ease;
}

    .nav-arrow:hover {
        background: var(--teal);
        color: #081c2a;
        transform: scale(1.1);
        box-shadow: 0 10px 30px rgba(42, 183, 169, 0.3);
    }

    .nav-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        transform: none;
    }
.timeline-steps-wrapper {
    position: relative;
    max-width: 820px;
    flex: 1;
}

.timeline-steps-horizontal {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-line-horizontal {
    position: absolute;
    top: 55px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: rgba(255,255,255,0.15);
    z-index: 1;
}

.nav-arrow {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(42, 183, 169, 0.12);
    border: 2px solid rgba(42, 183, 169, 0.5);
    color: var(--teal);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-bottom:52px
}

    .nav-arrow:hover {
        background: var(--teal);
        color: #081c2a;
        transform: scale(1.08);
        box-shadow: 0 8px 25px rgba(42, 183, 169, 0.4);
    }

    .nav-arrow:disabled {
        opacity: 0.35;
        cursor: not-allowed;
        transform: none;
    }
.faq-header {
    border-bottom: 3px solid var(--teal);
    display: inline-block;
    padding-bottom: 10px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

@media (max-width: 540px) {
    .row {
        padding-left: 0px;
        padding-right: 0px;
        margin: 0px;
        margin-top: 10px;
    }
}

.page-header {
    border-bottom: 3px solid var(--teal);
    display: inline-block;
    padding-bottom: 10px;
}
.form-control, .form-select, select {
    background: rgba(255,255,255,0.08) ;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 12px;
}

.form-control:focus, select:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(42, 183, 169, 0.2);
    color: #fff;
}
.btn-outline-light:hover{
    opacity:85%;
}

select, option {
    background: rgba(255,255,255,0.12);
    color: white;
    padding: 8px 12px;
}
.form-select:focus,
select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(42, 183, 169, 0.2);
    color: white;
    outline: none;
}
    select option:hover,
    select option:checked {
        background: var(--deep); /* slightly lighter on hover */
        color: white;
    }


.form-label {
    color: #ccc;
    font-weight: 500;
}

.control-label {
    color: #ccc;
    font-weight: 500;
    padding-bottom:2px;
}

.form-control:disabled {
    background: #0000004b;
    color: #e7e7e7;
    border-color: #555;
}

.form-control[readonly] {
    background-color: #0000004b;
    color: #e7e7e7;
    border-color: #555;
}



.dropdown-menu {
    background-color: var(--navy);
    color:white;
}
.dropdown-item:focus, .dropdown-item:hover {
    background-color: var(--deep);
    color: white;
    opacity: 100%;
}


.modal-content {
    background-color: var(--navy);
}
.alert-info{
    background-color: var(--deep);
    color:white;
    border-color:var(--teal);
}




.dropdown-menu-dark .dropdown-item.active{
    background-color: var(--deep);
}

.btn-dark {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    outline: none;
}
.dropdown-item {
    color: white;
}
.text-teal{
    color:var(--teal);
}