.light-blue-bar::before {
    content: "";
    position: absolute;          /* fixed to viewport so it spans the screen */
    top: 0;
    left: 50%;                /* start at the horizontal center */
    transform: translateX(-50%); /* shift back by half its width */
    width: 100vw;             /* span entire viewport width */
    min-width: 1250px;
    height: 100%;             /* or desired height */
    z-index: -1;
    background-color: #123e69;
    clip-path: polygon(0 0px, 100% 0px, 100% 100%, 50% calc(100% - 40px), 0 100%);
}

.light-blue-bar::after {
    content: "";
    position: absolute;          /* fixed to viewport so it spans the screen */
    top: 0;
    left: 50%;                /* start at the horizontal center */
    transform: translateX(-50%); /* shift back by half its width */
    width: 100vw;             /* span entire viewport width */
    min-width: 1250px;
    height: 100%;             /* or desired height */
    z-index: -1;
    background-color: #7898b6;
    clip-path: polygon(
        0 100%,
        50% calc(100% - 80px),
        100% 100%,
        50% calc(100% - 40px),
        0 100%
    );
}

.blue-bar::before {
    clip-path: polygon(0 40px, 50% 0px, 100% 40px, 100% 100%, 50% calc(100% - 40px), 0 100%);
}

.blue-bar {
    padding-top: 110px;
    padding-bottom: 110px;
}

.no-margin-padding h1 {
    padding: 0;
    margin: 0;
}
.no-margin-padding h2 {
    padding: 0;
    margin: 0;
}
.no-margin-padding h3 {
    padding: 0;
    margin: 0;
}
.no-margin-padding h4 {
    padding: 0;
    margin: 0;
}
.no-margin-padding p {
    padding: 0;
    margin: 0;
}






h3 {
    color:#123e69; 
}

.scroller {
    --gap: 60px;     /* space between images */
    --speed: 60s;    /* lower = faster */
    --height: 120px; /* bar height */
    width: 100%;
    height: var(--height);
    overflow: hidden;
    position: relative;
    align-items: center;
}

.scroller-track {
    display: flex;
    align-items: center;
    gap: var(--gap);
    width: calc((var(--height) - 16px + var(--gap)) * 28);
    animation: marquee var(--speed) linear infinite;
    will-change: transform;
}

.scroller img {
    height: calc(var(--height) - 16px);
    width: auto;
    flex: 0 0 auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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






















.blue-bar-section {
    display: flex;
    position: absolute; 
    width: 100vw;
    z-index: 1;
    background-color: #123e69;
    clip-path: polygon(0 40px, 50% 0, 100% 40px, 100% 100%, 50% calc(100% - 40px), 0 100%);
}

a img {
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover p {
    filter: brightness(2);
}

a:hover .highlight {
    text-decoration: underline;
}

#contact-holder p {
    padding: 10px;
    padding-left: 15px;
    font-size: 23px;
    font-weight:normal; 
    color:#616161; 
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding-bottom: 20px;
    margin-top:0px;
    display: inline-block;
}

#contact-holder a:hover p {
    color:#123e69;
}

#contact-holder a:hover .underline {
    text-decoration: underline;
}

.arrows {
    transition-duration: 0.5s;
}

a:hover .arrows {
    transform: translate(10px, 0);
}

#contact-holder h3 {
    padding: 10px;
    padding-left: 15px;
    font-size:30px; 
    font-weight:bold; 
    color:#f00; 
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:3px;
    margin-top:15px;
    display: inline-block;
}

a:hover p {
    color:#123e69;
    cursor: pointer;
}








.fill-bar {
    height: 150px; 
    width: 20px; 
    background-color: #cecece;
    position: relative; 
}

.fill-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: calc(150px * var(--fill-amount, 1));
    background-color: #7898b6; /* #08294b */
}

[data-aos="expand"].aos-animate::after {
  animation: expand 2s ease-out forwards;
  transform-origin: bottom;
}

[data-aos="expand"]::after {
  transform: scaleY(0);
}

@keyframes expand {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}