nav{
    background-color: transparent;
    box-shadow: none;
    max-width: 100vw;
    margin: 0;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    color: var(--secondary-color);
}

.navbar-brand{
    color: var(--accent-color);
    font-size: 0.8rem;
}

.nav-cta{
    color: var(--secondary-color);
}

.navbar-brand img{
    width: 60px;
}

.navbar-brand:hover{
    color: var(--primary-color);
}

.navbar-toggler{
    background-color: var(--accent-color);
}

.navbar-toggler-icon{
    width: 30px;
    height: 30px;
}

.nav-link{
    color: var(--accent-color) !important;
}

.nav-link:hover{
    color: var(--primary-color) !important;
}

.header-container{
   position: relative;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   text-align: left;
   padding: 20px;
   text-align: center;
}

header{
    position: relative;
    background-image: url("../img/headerIMG.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 20%;
    background-position-x: 40%;
    height: 80vh;
    padding-top: 20px;
}

header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 162, 233, 0.4);
    filter: brightness(0.85) contrast(0.9) saturate(0.8);
    z-index: 1;
}

.header-text-container{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    z-index: 2;
    max-width: 90vw;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: left;
}

.video-header{
    max-width: 600px;
}

.video-header video{
    border-radius: 5px;
}

.sub-text{
    color: var(--secondary-color);
}

.sub-header-text{
    padding: 20px;
}

h6{
    font-size: calc(0.5vw + 0.4rem);
}

.main-text{
    width: 90%;
    color: var(--primary-color);
}

.main-text h1{
    font-size: calc(3.5vw + 0.6rem);
    margin: 0;
}

#learnMore-section{
    font-size: calc(3.5vw + 0.6rem);
}

#learnMore-section .row{
    max-width: 1500px;
    margin: 0 auto;
}

#learnMore-container{
    background-color: var(--primary-color);
    width: 100%;
    max-width: 800px;
    padding: 20px;
    border-radius: 20px;
}

#learnMore-header{
    text-align: center;
    padding: 40px 0;
}

#learnMore-header h1{
    font-size: calc(3.5vw + 0.6rem);
}

.learnMore-card {
    background-color: var(--secondary-color);
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    border-radius: 16px;
}

.icon img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.icon-content {
    margin-left: 16px;
}

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

.text,
.title h5{
    font-size: calc(0.5vw + 0.4rem);
}

@media (max-width: 565px){
    .reverse-wrap{
        display: flex;
        flex-wrap: wrap-reverse;
    }
}

#video-section{
    text-align: center;
}

#video-section h1{
    padding: 20px;
}

.video-header video{
    background: yellow;
    background-color: yellow;
}

/* Layout for Ultra-Secure / Ultra-Hygienic section */
.learnMore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
}

.learnMore-media {
    width: 100%;
}

.learnMore-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Make video/image nicely rounded */
.learnMore-media .video-header video,
.learnMore-media .video-header img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 10px;
}

/* Mobile: stack media over cards */
@media (max-width: 768px) {
    .learnMore-grid {
        grid-template-columns: 1fr;
    }

    #learnMore-section {
        padding: 20px 0px;
    }

    #benefits-inner{
        padding: 20px !important;
    }
}

/* ========= Highlighted Section Layout ========= */

.highlight-section {
    padding: 80px 40px;
    max-width: 100%;
    margin: 0 auto;
}

.highlight-section.alt {
    background: var(--primary-color, #A9D0E8);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.highlight-grid.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.highlight-grid.reverse > * {
    direction: ltr;
}

/* Media area */
.highlight-media img,
.highlight-media video {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
}

/* Card styling */
.highlight-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
}

.highlight-card h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.highlight-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Icons */
.highlight-icon {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .highlight-grid,
    .highlight-grid.reverse {
        grid-template-columns: 1fr;
    }

    .highlight-section {
        padding: 40px 15px;
    }

    .highlight-card {
        padding: 30px;
    }
}

/* New intro header for Ultra-Secure / Ultra-Hygienic */

#hero-strip, #benefits-section{
    background: linear-gradient(
        to bottom,
        #F7F9FA 0%,
        #ffffff 100%
    );
    padding: 60px 20px 50px;
    border-top: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.04);
}

#benefits-section{
    padding: 0 !important;
}

#learnMore-intro, #benefits-inner{
    text-align: center;
    padding: 40px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

#benefits-inner{
    padding: 20px 10px 40px !important;
}

.intro-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background-color: rgba(32, 116, 118, 0.08);
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

#learnMore-intro h1, #benefits-inner h1 {
    font-size: calc(1.6rem + 0.3vw);
    line-height: 1.1;
    margin-bottom: 14px;
    color: #111;
}

#learnMore-intro .intro-strong, #benefits-inner .intro-strong {
    display: inline-block;
    margin: 0 4px;
    position: relative;
}

#learnMore-intro .intro-strong::after, #benefits-inner .intro-strong::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 60%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    opacity: 0.25;
}

#learnMore-intro p, #benefits-inner p {
    font-size: 0.8rem;
    max-width: 650px;
    margin: 0 auto;
    color: #444;
}
