body {
    font-family: 'Helvetica Neue', sans-serif;
}
.bg-brand {
    background-color: #154C49;
}
.text-brand {
    color: #154C49;
}
.bg-brand-grey {
    background-color: #F1F1F2;
}
.bg-brand-blue {
    background-color: #F1FAF8;
}
.border-brand {
    border-color: #154C49;
}
.btn-brand {
    background-color: #154C49;
    color: #FFFFFF;
    --bs-btn-hover-border-color: #154C49;
}
.btn {
    --bs-btn-font-size: 1rem;
}
.btn-outline-brand {
    --bs-btn-color: #154C49;
    --bs-btn-border-color: #154C49;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #154C49;
    --bs-btn-hover-border-color: #154C49;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #154C49;
    --bs-btn-active-border-color: #154C49;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #154C49;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #154C49;
    --bs-gradient: none;
}
.btn-brand-yellow {
    background-color: #DCC251;
    color: #000000;
    --bs-btn-hover-border-color: #DCC251;
}
.bg-brand-yellow {
    background-color: #F8F5EC;
}
.lh-xl {
    line-height: 3;
}

.row.g-0.position-absolute > .col-md-6 {
  min-height: 400px; /* Match your content height */
}

/*
 *
 *
 * slider styles 
 *
 *
 */

/* allow individual button interaction */
.slider-controls .ms-1,
.slider-controls .me-1 { pointer-events: all; }

/* nudge buttons outside the slider track */
.slider-btn.slider-prev { transform: translateX(calc(-100% - 0.75rem)); }
.slider-btn.slider-next { transform: translateX(calc(100% + 0.75rem)); }

/* a bit smaller offset on narrow screens */
@media (max-width: 767px) {
    .slider-btn.slider-prev { transform: translateX(calc(-100% - 0.375rem)); }
    .slider-btn.slider-next { transform: translateX(calc(100% + 0.375rem)); }
}
.slider-wrapper { 
    position: relative;
    overflow: visible;
}
.slider-viewport { overflow: hidden; }
.slider-track { display: flex; gap: 1.5rem; transition: transform .45s cubic-bezier(.22,.9,.32,1); will-change: transform; }
.slide {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(4,20,23,0.08);
    color: #01434B;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.slide .quote { font-size:16px; line-height: 28px; color:#01434B; }
.slide .meta { display:flex; align-items:center; gap:0.75rem; margin-top: 0.5rem; }
.slide .meta img { border-radius:50%; object-fit:cover; flex-shrink:0; }
.slide .meta .name { font-weight:700; }
.slide .meta .role { font-size:13px; color:#6B7A79; }
.slider-controls { 
    position:absolute; 
    top:50%; 
    transform:translateY(-50%); 
    width:100%; 
    display:flex; 
    justify-content:space-between; 
    pointer-events:none; 
    left: 0; 
    right: 0; 
}
.slider-controls button { pointer-events:all; }
.slider-btn { font-weight: 100; background: transparent; color: #087380; border:0; display:inline-flex; align-items:center; justify-content:center; font-size:68px;}
@media (max-width: 767px) {
    .slide { padding:1rem; }
}

/*
 *
 *
 * Hero signup styles 
 *
 *
 */
.signup-section {
    width: 100%;
    max-width: 800px;
}

.signup-container {
    background: #1B4F47;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(27, 79, 71, 0.3);
    padding: 20px 50px;
    text-align: center;
}

.highlight-text {
    color: #D4AF37;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.signup-header {
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 500;
}

.signup-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #999;
}

.email-input:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.subscribe-btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #D4AF37;
    color: #1B4F47;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #E5C748;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.subscribe-btn:active {
    transform: scale(1.02);
}

/* Success message styling */
.success-indicator {
    display: none;
    color: #D4AF37;
    font-weight: 600;
    margin-top: 20px;
    font-size: 14px;
}

.show-success .success-indicator {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Tablet responsive */
@media (max-width: 768px) {
    .signup-container {
        padding: 40px 30px;
    }
}

/* Mobile responsive - stack vertically */
@media (max-width: 480px) {
    .signup-container {
        padding: 30px 20px;
    }
    
    .signup-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .email-input,
    .subscribe-btn {
        width: 100%;
    }

    .subscribe-btn {
        padding: 16px 35px;
    }
}

/* Additional visual enhancement */
.signup-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #D4AF37, #1B4F47);
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.signup-container:hover::before {
    opacity: 0.3;
}