body {
    background-color: #fff;
    color: #333;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
}
/* Navbar Styles */
.navbar {
    /*border-bottom: 2px solid #156082;*/
    padding: 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}
.navbar-brand {
    padding: 0;
}
.navbar-brand img {
    height: 15vh;
    position: absolute;
    top: 0;
    left: 5vw;
    z-index: 999;
}
.horizontal-line {
    position: absolute;
    bottom: 0;
    left: calc(100px);
    right: 0;
    height: 4px;
    background-color: #156082;
}
/* Navbar Links */
.navbar-nav .nav-link {
    color: #333;
    margin-right: 15px;
}
.navbar-nav .nav-link:hover {
    color: #156082;
}
/* Section Styles */
.section {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 10vh;
}
.section-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}
.section h1, .section h2, .section h3 {
    color: #156082;
    margin-bottom: 3vh;
}
/* Slider Styles */
.swiper-slide {
    position: relative;
}
.swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.parallax-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px #000;
}
/* Thumbnail Grid */
.thumbnail-grid img {
    width: 100%;
    height: auto;
}
.thumbnail-grid .col-md-4 {
    margin-bottom: 30px;
}
/* fullPage.js Navigation Dots */
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background: #156082 !important;
}
/* Hide fullPage.js Watermark */
.fp-watermark {
    visibility: hidden !important;
}
/* Slide 6 Two-Column Layout */
.two-column {
    display: flex;
    flex-wrap: wrap;
}
.two-column > div {
    flex: 1;
    padding: 10px;
}
@media (max-width: 767px) {
    .two-column {
        flex-direction: column;
    }
}
/* Adjustments for horizontal slides */
.fp-slides {
    display: flex !important;
}
.fp-slide {
    width: 100% !important;
}

/* Fade effect on horizontal slides */
.fp-section .fp-slides .fp-slide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    width: 100%;
    left: 0;
}
.fp-section .fp-slides .fp-slide.active {
    opacity: 1;
    position: relative;
}
/* Mobile adjustments */
@media (max-width: 767px) {
    .navbar-brand img {
        height: 11vh;
    }
    .section-content {
        padding-top: 15vh; /* Adjust as needed */
    }

    #fp-nav ul li a span {
        display: none !important;
    }
}

.section-blue {
    background-color: #156082; 
    color: white
}

.section-blue h1, .section-blue h2, .section-blue h3 {
    color: white;
}

.section-blue .fp-slidesNav ul li a span {
    background: white !important;
}

/* Hide toggle button on desktop */
@media (min-width: 768px) {
    .navbar-toggler {
        display: none;
    }
}
/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #156082;
    z-index: 1001;
    overflow-y: auto;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 50%;
    text-align: center;
}
.mobile-menu ul li {
    margin: 20px 0;
}
.mobile-menu ul li a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
}

.menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.close-button {
    background-color: transparent;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Hide navbar-nav on mobile */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 15vh !important;
    }

    .navbar-nav {
        display: none;
    }
    .navbar-toggler {
        display: block;
        position: absolute;
        top: 0;
        right: 5vw;
        z-index: 999;
        height: 11vh;
        background: none;
        border: none;
    }
    .navbar-toggler-icon {
        width: 30px;
        height: 3px;
        background-color: #333;
        display: block;
        position: relative;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        width: 30px;
        height: 3px;
        background-color: #333;
        display: block;
        position: absolute;
        left: 0;
    }
    .navbar-toggler-icon::before {
        top: -10px;
    }
    .navbar-toggler-icon::after {
        top: 10px;
    }
}





/* Hero Section Styles */
.hero-section {
    background-color: #156082;
    color: white;
    padding: 50px 0;
    padding-top: 90px;
    text-align: center;
}
.hero-section h1 {
    font-size: 3rem;
    margin: 0;
    line-height: 1.2;
}
.hero-section h1 span {
    display: block;
    font-size: 4.5rem;
}