:root {
    /*default*/
    --pulse-rgb: 146, 199, 62;
    --primary-color: #319758;
    --secondary-color: #046198;
    --primary-accent: #74ac84;
    --secondary-accent: #46749e;
    --primary-darken: #1a6537;
    --header-color: #192B46;
    --light-subtitle: #5D5E60;
    --primary-btn-color: #92C73E;
    --bronze: #CE8946;
    --silver: #C0C0C0;
    --gold: #FFD700;
    --platinum: #E5E4E2;
    --diamond: #B9F2FF;
    --elite: #000000;

}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #e9ecef;
}

.navCta:hover {
    background-color: var(--primary-accent);
}

.header-color {
    color: var(--header-color);
}

.light-subtitle-color {
    color: var(--light-subtitle);
}


#hero-section {
    background: url('/img/hero-img.png') no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 100px 10px 20px 10px;
}
@media only screen and (max-width: 768px) {
    #hero-section {
        background-position: center center;
    }
}

#blue-section, #our-process, #contact-us, #about-us {
    background: url('/img/bg-container-img.png') no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.subpage-header-bg {
    background: url('/img/bg-container-img.png') no-repeat top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.overlay {
    background-color: transparent;
    background-image: radial-gradient(at center center, #969DA4 0%, #C8CFD54A 60%);
}

#our-process::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left:0;
    right:0;
    background: url('/img/white-grey-bg.png') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    pointer-events: none;
    opacity: 0.15;
}

@media only screen and (max-width: 768px) {
    #hero-section {
        background-position: center left;
    }
}

.bg-bronze {
    background-color: var(--bronze);
}

.bg-silver {
    background-color: var(--silver);
}

.bg-gold {
    background-color: var(--gold);
}

.bg-platinum {
    background-color: var(--platinum);
}

.bg-diamond {
    background-color: var(--diamond);
}

.bg-elite {
    background-color: var(--elite);
}

.text-highlight {
    color: var(--primary-btn-color)
}

.bg-highlight {
    background-color: var(--primary-btn-color);
}

.primary-btn {
    background-color: var(--primary-btn-color);
    color: #000;
    padding: 32px 8px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.primary-btn:hover {
    background-color: var(--primary-darken);
    color: #fff;
}

.hero-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.pulseBtn {
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(var(--pulse-rgb), 0.5);
    background-color: var(--primary-btn-color);
    color: #000;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.pulseBtn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/*link hover animation*/
a.main-link {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

a.main-link:hover {
    color: var(--primary-accent);
}

/*why section items*/

.why-item {
    padding: 40px 25px;
    background-color: #EFF1F3;
    border: solid 2px #0E2642;
    border-radius: 15px;
    box-shadow: 0px 0px 30px 0px rgba(33, 37, 41, 0.26);
    height: auto;
}

/* Navbar container */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #333;
    padding: 0.5rem 1rem;
    color: #fff;
    position: relative;
    z-index: 50;
}

.brand-title {
    font-size: 1.2rem;
}

/* Hide the native checkbox */
.navbar .toggle-button {
    display: none;
}

/* Hamburger icon (3 bars) */
.navbar .toggle-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 200;
}
.navbar .toggle-icon span {
    width: 25px;
    height: 3px;
    background: #333;
    display: block;
}

/* Nav links */
.navbar-links {
    list-style: none;
    display: flex;
    gap: 16px;
    margin: 20px 0;
}
.navbar-links a {
    color: #000;
    text-decoration: none;
}

.navbar-links a:hover {
    color: var(--primary-accent);
}


    .navbar .toggle-icon {
        display: flex;
    }

    .sidebar {
        position: fixed;
        top: 0;
        z-index: 100;
        right: 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 400px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .sidebar li {
        text-align: center;
    }

    /* When checkbox is checked, slide menu in */
    .navbar .toggle-button:checked ~ .sidebar {
        transform: translateX(0);
    }

/*change hamburger to close btn*/
.toggle-icon span {
    opacity: 1;
    transition: all 0.3s ease-in-out;
    transform: rotate(0);
}

.toggle-icon span:nth-of-type(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    transform: rotate(0);
    transition: transform 0.3s ease-in-out;
}

.navbar .toggle-button:checked ~ .toggle-icon span:first-of-type {
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.navbar .toggle-button:checked ~ .toggle-icon span:last-of-type {
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.navbar .toggle-button:checked ~ .toggle-icon span:nth-of-type(2) {
    transition: transform 0.3s ease-in-out;
    transform: rotate(45deg);
    opacity: 1;
}

.navbar .toggle-button:checked ~ .toggle-icon span:nth-of-type(2)::before {
    transform: rotate(-90deg);
}




/*parallax*/
.slide-up {
    transform: translateY(125px);
    opacity: 0;
    width: 100%;
    height: auto;
    transition: all 0.7s ease-out;
}

.slide-up.show {
    transform: translateY(0);
    opacity: 1;
}


/*animations*/
@keyframes pulse {
    0% {
        transform:scale(.9);
    }
    70% {
        transform:scale(1);
        box-shadow: 0 0 0 35px rgba(var(--pulse-rgb), 0);
    }
    100% {
        transform:scale(.9);
        box-shadow: 0 0 0 0 rgba(var(--pulse-rgb), 0);
    }
}

