/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Helvetica, Arial, sans-serif;
    background: #f4f7fa;
    color: #222;
}
body, h1, h2, h3, h4, h5, h6, p, a, li, span, div, input, button, label, th, td {
    font-family: 'HelveticaCustomBold', Helvetica, Arial, sans-serif !important;
    font-weight: bold;
}

header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background 0.3s, box-shadow 0.3s;
}
header.scrolled {
    background: rgba(0, 32, 64, 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    width: 100%;
    gap: 3rem;
}
.navbar-links-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.logo {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.logo img {
    height: 56px;
    width: auto;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex: 2 1 auto;
    justify-content: center;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #1e90ff;
}
.top-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.phone-numbers {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-family: inherit;
}
.phone-numbers span {
    white-space: nowrap;
}
.get-quote-btn {
    margin-left: 1.2rem;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #001e3c;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
    margin: 3rem 0 0 3rem;
    color: #fff;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.cta-btn {
    display: inline-block;
    background: #1e90ff;
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #1565c0;
}

/* Slideshow styles */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.slides {
    position: relative;
    width: 100vw;
    height: 100vh;
}
.slide {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.8s;
    z-index: 1;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.55);
    transform: scale(0.95);
    transition: transform 4.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.slide.active img {
    transform: scale(1.08);
}
#slide1:checked ~ .s1,
#slide2:checked ~ .s2,
#slide3:checked ~ .s3,
#slide4:checked ~ .s4 {
    opacity: 1;
    z-index: 2;
}

/* Manual navigation */
.navigation-manual {
    position: absolute;
    width: 100vw;
    bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    z-index: 3;
}
.manual-btn {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    border: 2px solid #fff;
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
    display: inline-block;
}
.manual-btn.active {
    background: #fff;
    border-color: #1e90ff;
}
input[type="radio"] {
    display: none;
}
#slide1:checked ~ .navigation-manual label[for="slide1"],
#slide2:checked ~ .navigation-manual label[for="slide2"],
#slide3:checked ~ .navigation-manual label[for="slide3"],
#slide4:checked ~ .navigation-manual label[for="slide4"] {
    background: #1e90ff;
    border-color: #1e90ff;
}

/* Dropdown styles */
.services-dropdown {
    position: relative;
}
.services-dropdown .dropdown-arrow {
    font-size: 0.7em;
    margin-left: 0.3em;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 2.5rem;
    left: 0;
    min-width: 270px;
    background: #fff;
    color: #222;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1000;
    animation: dropdownIn 0.25s cubic-bezier(0.4,0.2,0.2,1);
}
@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.services-dropdown.active .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    transition: background 0.18s;
}
.dropdown-menu li:last-child {
    border-bottom: none;
}
.dropdown-menu li:hover {
    background: #f4f7fa;
}

/* Responsive styles */
@media (max-width: 900px) {
    .navbar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100vw;
        min-width: 0;
        max-width: none;
        margin: 0;
        padding: 0.5rem 1rem;
        gap: 0;
        flex-wrap: nowrap;
    }
    .logo, .top-right {
        flex: 0 0 auto !important;
        min-width: 0 !important;
        width: auto !important;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }
    .logo {
        justify-content: flex-start;
        height: 56px;
    }
    .top-right {
        justify-content: flex-end;
        gap: 0;
    }
    .hamburger-btn {
        margin-left: 0;
        margin-right: 0;
    }
    .nav-links {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
        justify-content: flex-start;
    }
    .get-quote-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    .dropdown-menu {
        left: 0;
        min-width: 200px;
    }
}
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
    }
    .logo img {
        height: 40px;
    }
    .hero-content {
        margin: 1.2rem 0 0 0.7rem;
    }
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .slide img, .slide {
        height: 60vw;
        min-height: 220px;
    }
    .slides, .slideshow {
        height: 60vw;
        min-height: 220px;
    }
    .phone-numbers {
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    .hero-center-content img[alt="RSA Segment"] {
        margin-top: 3.5rem !important;
    }
}

.about-us {
    background: #fff;
    padding: 4rem 0 3rem 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
}
.about-container {
    display: flex;
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0 0;
    flex-wrap: nowrap;
}
.about-text {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
    display: block;
    margin-left: 4vw;
}
.about-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1e355e;
    letter-spacing: 1px;
}
.about-text p {
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
    color: #222;
}
.about-image {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-right: 4vw;
}
.about-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(30,53,94,0.08);
    background: #f4f7fa;
    transition: transform 0.3s;
}
.about-image img:hover {
    transform: scale(1.04);
}
/* Animation classes */
.scroll-in-left, .scroll-in-right {
    opacity: 0;
    transform: translateX(0);
    transition: opacity 0.9s cubic-bezier(0.4,0.2,0.2,1), transform 0.9s cubic-bezier(0.4,0.2,0.2,1);
}
.scroll-in-left {
    transform: translateX(-60px);
}
.scroll-in-right {
    transform: translateX(60px);
}
.scroll-in-animate {
    opacity: 1 !important;
    transform: translateX(0) !important;
}
@media (max-width: 1100px) {
    .about-text, .about-image {
        margin-left: 0;
        margin-right: 0;
    }
}
@media (max-width: 900px) {
    .about-container {
        flex-direction: column !important;
        gap: 2.2rem;
        align-items: stretch;
        padding: 0 2vw;
        flex-wrap: wrap;
    }
    .about-text, .about-image {
        flex: 1 1 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .about-image img {
        max-width: 100%;
        height: 180px;
        max-height: 180px;
    }
}
@media (max-width: 600px) {
    .about-us {
        padding: 2.2rem 0 1.2rem 0;
    }
    .about-container {
        gap: 1.2rem;
        padding: 0 1vw;
    }
    .about-text h2 {
        font-size: 1.3rem;
    }
    .about-image img {
        height: 120px;
        max-height: 120px;
    }
}

.about-hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}
.about-hero-bg {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: none;
    overflow: hidden;
}
.about-hero-bg::before {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #1e355e 0%, #31608c 60%, rgba(49,96,140,0.0) 100%);
    z-index: 1;
}
.about-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 55vw;
    background: url('images/image-three.jpg') center right/cover no-repeat;
    z-index: 0;
}
.about-hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.5rem 2vw 2rem 2vw;
    width: 100%;
    z-index: 2;
    position: relative;
}
.about-hero-text {
    flex: 0 0 60%;
    color: #fff;
    text-align: left;
    z-index: 2;
    background: none;
    padding: 0;
}
.about-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #fff;
}
.about-hero-text p {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #eaf3fa;
    line-height: 1.7;
    background: none;
}
.about-cta {
    display: inline-block;
    background: #1e90ff;
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
    border: none;
    outline: none;
    box-shadow: 0 4px 18px rgba(30,53,94,0.13);
}
.about-cta:hover {
    background: #1565c0;
    color: #fff;
    box-shadow: 0 8px 32px rgba(30,53,94,0.18);
}
.about-hero-image {
    display: none;
}
.about-hero-wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 180px;
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 1100px) {
    .about-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }
    .about-hero-text {
        width: 100%;
    }
}
@media (max-width: 700px) {
    .about-hero-content {
        padding: 2.5rem 1vw 1.5rem 1vw;
    }
    .about-hero-text h1 {
        font-size: 1.3rem;
    }
    .about-hero-text p {
        font-size: 1rem;
    }
    .about-cta {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}
@media (max-width: 900px) {
    .about-hero-bg::after {
        width: 100vw;
        min-height: 220px;
        height: 220px;
        background-size: cover;
        background-position: center;
        position: absolute;
        top: unset;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .about-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }
    .about-hero-section {
        background: #1e355e;
        padding: 0;
    }
    .about-hero-bg {
        background: none;
        min-height: unset;
        padding: 0;
    }
    .about-hero-content {
        background: rgba(30,53,94,0.97);
        border-radius: 16px;
        margin: 1.2rem 1vw 0 1vw;
        padding: 2rem 1.2rem 1.2rem 1.2rem;
        box-shadow: 0 4px 18px rgba(30,53,94,0.10);
        display: block;
        max-width: 98vw;
    }
    .about-hero-text {
        color: #fff;
        text-align: left;
        font-size: 1.05rem;
        line-height: 1.6;
        padding: 0;
    }
    .about-hero-text h1 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #fff;
    }
    .about-hero-text p {
        font-size: 1.01rem;
        color: #eaf3fa;
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }
    .about-hero-image {
        display: none;
    }
}

.about-stats-row {
    background: transparent;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    z-index: 3;
    position: relative;
}
.about-stats-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(30,53,94,0.10);
    max-width: 900px;
    margin: 0 auto;
    padding: 2.2rem 1.5rem;
    position: relative;
}
.about-stat {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}
.about-stat-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
.about-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e355e;
    margin-bottom: 0.2rem;
}
.about-stat-label {
    font-size: 1rem;
    color: #31608c;
    text-align: center;
}

.mission-vision-section {
    background: #f7fafd;
    padding: 3rem 0 2.5rem 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
}
.mission-vision-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2vw;
}
.mission-block, .vision-block, .goals-block {
    flex: 1 1 33%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(30,53,94,0.06);
    padding: 2.2rem 2rem 1.5rem 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.mission-block h2, .vision-block h2, .goals-block h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e355e;
    margin-bottom: 0.7rem;
    margin-top: 0;
}
.mission-block p, .vision-block p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #222;
    font-weight: 500;
}
.goals-block img.goals-image {
    width: 100%;
    max-width: 320px;
    margin: 1.2rem auto 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(30,53,94,0.06);
}
@media (max-width: 3200px) {
    .mission-vision-goals-container {
        gap: 2.5rem;
        flex-direction: row;
    }
}
@media (max-width: 3200px) and (max-width: 1100px) {
    .mission-block, .vision-block, .goals-block {
        width: 100%;
        height: auto;
        max-width: 100vw;
        max-height: none;
    }
}
@media (max-width: 900px) {
    .mission-vision-goals-container {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0 1vw;
    }
    .mission-block, .vision-block, .goals-block {
        padding: 1.2rem 1rem 1rem 1rem;
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: none;
    }
    .goals-block img.goals-image {
        max-width: 100%;
    }
}

.services-section {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2vw;
}
.services-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e355e;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: #31608c;
    border-radius: 16px;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 320px;
    box-shadow: none;
    transition: background 0.18s;
}
.service-card:hover {
    background: #417bb2;
    box-shadow: none;
    transform: none;
}
.service-card img {
    width: 54px;
    height: 54px;
    margin-bottom: 1.2rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.service-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
}
.service-card p {
    font-size: 1.01rem;
    color: #fff;
    line-height: 1.6;
}
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .services-grid {
        display: flex;
        flex-direction: row;
        gap: 1.2rem;
        overflow-x: auto;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .service-card {
        min-width: 90vw;
        max-width: 90vw;
        width: 90vw;
        height: 160px;
        margin: 0;
        border-radius: 14px;
        background: #31608c;
        box-shadow: 0 2px 10px rgba(30,53,94,0.10);
        padding: 1.2rem 1rem 1rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        scroll-snap-align: start;
    }
    .service-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.7rem;
        line-height: 1.2;
    }
    .service-card p {
        font-size: 1.08rem;
        line-height: 1.6;
        margin: 0;
        padding: 0;
        width: 100%;
        word-break: break-word;
    }
}
@media (max-width: 900px) {
    .mission-block, .vision-block, .goals-block, .mission-vision-card {
        display: none !important;
    }
    .mission-vision-goals-scroll {
        display: flex !important;
        flex-direction: row;
        gap: 1.2rem;
        overflow-x: auto;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .mission-vision-goals-scroll > div {
        min-width: 90vw;
        max-width: 90vw;
        width: 90vw;
        height: auto;
        margin: 0;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(30,53,94,0.10);
        padding: 1.2rem 1rem 1rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        scroll-snap-align: start;
    }
    .mission-vision-goals-scroll h2 {
        font-size: 1.25rem;
        margin-bottom: 0.7rem;
        line-height: 1.2;
        color: #1e355e;
    }
    .mission-vision-goals-scroll p {
        font-size: 1.08rem;
        line-height: 1.6;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #222;
        word-break: break-word;
    }
    .mission-vision-goals-scroll img.goals-image {
        width: 100%;
        max-width: 90vw;
        margin-top: 1rem;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(30,53,94,0.08);
    }
}
@media (min-width: 901px) {
    .mission-block, .vision-block, .goals-block {
        display: flex !important;
        flex-direction: column;
    }
    .mission-vision-goals-scroll {
        display: none !important;
    }
}

@font-face {
    font-family: 'HelveticaCustomBold';
    src: url('fonts/65ef468458bd3547dda6965d_Helvetica-Bold-Font.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

.hero-video-section {
    position: relative;
    width: 100vw;
    min-height: 600px;
    height: 90vh;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-video-bg {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100%;
    object-fit: cover;
    z-index: 0;
    min-height: 600px;
    filter: brightness(0.55) contrast(1.1);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100%;
    /* background: linear-gradient(90deg, rgba(30,53,94,0.85) 0%, rgba(49,96,140,0.45) 100%); */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-center-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 7rem;
}
.hero-center-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.1;
}
@media (max-width: 900px) {
    .hero-video-section {
        height: 100vh;
        min-height: 100vh;
        max-height: none;
    }
    .hero-video-bg {
        min-height: 100vh;
        height: 100vh;
        object-fit: cover;
    }
    .hero-center-content h1 {
        font-size: 1.5rem;
    }
}

.hero-video-section + .about-hero-section,
.hero-video-section + .about-us,
.hero-video-section + .about-stats-row,
.hero-video-section + section {
    margin-top: 0 !important;
}
.about-hero-section,
.about-us {
    padding-top: 0;
}

.goals-section {
    background: #fff;
    padding: 3rem 0 2.5rem 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
}
.goals-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2vw;
}
.goals-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e355e;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.goals-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}
@media (max-width: 700px) {
    .goals-section {
        padding: 1.5rem 0 1.2rem 0;
    }
    .goals-section h2 {
        font-size: 1.2rem;
    }
    .goals-image {
        max-width: 100%;
        border-radius: 10px;
    }
}

.stats-hero-section {
    position: relative;
    width: 100vw;
    min-height: 380px;
    height: 45vh;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stats-hero-bg {
    position: relative;
    width: 100vw;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stats-hero-slideshow {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100%;
    z-index: 0;
}
.stats-slide {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4,0.2,0.2,1);
    z-index: 0;
}
.stats-slide.active {
    opacity: 1;
    z-index: 1;
}
.stats-hero-gradient {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100%;
    background: linear-gradient(120deg, rgba(30,53,94,0.92) 0%, rgba(49,96,140,0.85) 100%);
    z-index: 2;
}
.stats-hero-content {
    position: relative;
    z-index: 3;
    width: 100vw;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.stats-hero-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3.5rem;
    width: 100%;
}
.stats-hero-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    color: #fff;
}
.stats-hero-icon {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
    color: #fff;
}
.stats-hero-icon img:not(.no-filter), .stats-hero-icon svg:not(.no-filter) {
    filter: brightness(0) invert(1);
}
.stats-hero-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
    text-align: center;
}
.stats-hero-label {
    font-size: 1.1rem;
    color: #eaf3fa;
    text-align: center;
    font-weight: 500;
}
@media (max-width: 900px) {
    .stats-hero-section {
        height: auto;
        min-height: 120px;
        padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    }
    .stats-hero-content {
        padding: 0.5rem 0;
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        overflow-x: auto;
    }
    .stats-hero-row {
        flex-direction: row;
        gap: 0.7rem;
        align-items: center;
        justify-content: flex-start;
        width: max-content;
        min-width: 100vw;
    }
    .stats-hero-col {
        min-width: 80px;
        width: 80px;
        max-width: 90px;
        padding: 0.2rem 0.1rem;
    }
    .stats-hero-icon {
        font-size: 0.8rem;
        margin-bottom: 0.15rem;
    }
    .stats-hero-value {
        font-size: 0.7rem;
        margin-bottom: 0.05rem;
    }
    .stats-hero-label {
        font-size: 0.65rem;
    }
}
@media (max-width: 600px) {
    .stats-hero-section {
        padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    }
    .stats-hero-col {
        max-width: 98vw;
        padding: 1rem 0.2rem;
    }
}

.mission-vision-goals-section {
    background: #f7fafd;
    padding: 3rem 0 2.5rem 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
}
.mission-vision-goals-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2vw;
}
.mission-block, .vision-block, .goals-block {
    flex: 1 1 33%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(30,53,94,0.06);
    padding: 2.2rem 2rem 1.5rem 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.mission-block h2, .vision-block h2, .goals-block h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e355e;
    margin-bottom: 0.7rem;
    margin-top: 0;
}
.mission-block p, .vision-block p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #222;
    font-weight: 500;
}
.goals-block img.goals-image {
    width: 100%;
    max-width: 320px;
    margin: 1.2rem auto 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(30,53,94,0.06);
}
@media (max-width: 3200px) {
    .mission-vision-goals-container {
        gap: 2.5rem;
        flex-direction: row;
    }
}
@media (max-width: 3200px) and (max-width: 1100px) {
    .mission-block, .vision-block, .goals-block {
        width: 100%;
        height: auto;
        max-width: 100vw;
        max-height: none;
    }
}
@media (max-width: 900px) {
    .mission-vision-goals-container {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0 1vw;
    }
    .mission-block, .vision-block, .goals-block {
        width: 98vw;
        max-width: 500px;
        margin: 0 auto;
        border-radius: 16px;
        padding: 2rem 1.2rem 1.2rem 1.2rem;
        font-size: 1.08rem;
        box-shadow: 0 2px 10px rgba(30,53,94,0.08);
        align-items: flex-start;
    }
    .mission-block h2, .vision-block h2, .goals-block h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    .mission-block p, .vision-block p {
        font-size: 1.08rem;
        line-height: 1.7;
    }
    .goals-block img.goals-image {
        max-width: 90vw;
        margin: 1.2rem auto 0 auto;
    }
}

.locations-section {
    background: #fff;
    padding: 3rem 0 2.5rem 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
}
.locations-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2vw;
}
.location-info {
    flex: 1 1 45%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(30,53,94,0.06);
    padding: 2.2rem 2rem 1.5rem 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.location-info h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #1e355e;
    margin-bottom: 0.7rem;
    margin-top: 0;
}
.location-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #31608c;
    margin-bottom: 0.7rem;
    margin-top: 0;
}
.location-info p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #222;
    font-weight: 500;
    margin-bottom: 0.7rem;
}
.location-info a {
    color: #1e90ff;
    text-decoration: underline;
    font-weight: 600;
}
.location-map {
    flex: 1 1 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
}
.location-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(30,53,94,0.06);
    border: none;
}
@media (max-width: 900px) {
    .locations-container {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0 1vw;
    }
    .location-info, .location-map {
        padding: 1.2rem 1rem 1rem 1rem;
        max-width: 100%;
    }
    .location-map iframe {
        height: 220px;
    }
}

/* Location Card Styles */
.location-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(30,53,94,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    margin-bottom: 1.5rem;
    max-width: 420px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.location-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1e355e;
}
.location-business-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #222;
}
.location-type {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 0.5rem;
}
.location-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.stars {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.rating-value {
    font-size: 1.08rem;
    font-weight: 700;
    color: #222;
}
.google-reviews {
    color: #1e90ff;
    font-size: 1.05rem;
    text-decoration: underline;
    margin-left: 0.5rem;
}
.location-details {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.location-link {
    color: #1e90ff;
    text-decoration: underline;
}
.location-hours {
    font-size: 1.01rem;
    color: #222;
}
.location-hours .open {
    color: #2ecc40;
    font-weight: 700;
}
.location-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}
.location-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-size: 1.08rem;
    font-weight: 700;
    border: none;
    outline: none;
    text-decoration: none;
    color: #fff;
    background: #1e90ff;
    box-shadow: 0 2px 8px rgba(30,53,94,0.10);
    transition: background 0.18s, box-shadow 0.18s;
    cursor: pointer;
    display: inline-block;
}
.location-btn:hover {
    background: #1565c0;
    box-shadow: 0 4px 16px rgba(30,53,94,0.13);
}
.call-btn {
    background: #222;
}
.call-btn:hover {
    background: #444;
}
.email-btn {
    background: #1e355e;
}
.email-btn:hover {
    background: #31608c;
}
.directions-btn {
    background: #1e90ff;
}
.directions-btn:hover {
    background: #1565c0;
}
.locations-container {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2.5rem 2vw;
}
.location-map {
    flex: 1 1 0;
    min-width: 320px;
    max-width: 700px;
    margin-left: 1.5rem;
}
@media (max-width: 900px) {
    .locations-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        padding: 1.2rem 1vw;
    }
    .location-map {
        margin-left: 0;
        min-width: 0;
        max-width: 100vw;
    }
    .location-card {
        max-width: 100vw;
        min-width: 0;
    }
}

.hero-logo {
    display: block;
    margin: 0 auto 1.2rem auto;
    max-width: 425px;
    width: 75vw;
    height: auto;
}
.hero-main-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.1;
}
@media (max-width: 900px) {
    .hero-main-heading {
        font-size: 0.9rem;
    }
    .hero-logo {
        max-width: 225px;
        width: 75vw;
        margin-bottom: 0.7rem;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.1s cubic-bezier(0.4,0.2,0.2,1), transform 1.1s cubic-bezier(0.4,0.2,0.2,1);
    will-change: opacity, transform;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 900px) {
    .fade-in {
        transition-duration: 1.5s;
        transform: translateY(40px);
    }
    section, .about-hero-section, .services-section, .stats-hero-section, .mission-vision-goals-section, .locations-section {
        padding-left: 2vw !important;
        padding-right: 2vw !important;
    }
}
@media (max-width: 600px) {
    .fade-in {
        transition-duration: 1.7s;
        transform: translateY(50px);
    }
    section, .about-hero-section, .services-section, .stats-hero-section, .mission-vision-goals-section, .locations-section {
        padding-left: 1vw !important;
        padding-right: 1vw !important;
    }
}

/* WhatsApp Floating Widget Styles */
#whatsapp-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
}
.whatsapp-fab {
  background: #25d366;
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.2s;
}
.whatsapp-fab:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.whatsapp-fab-icon {
  width: 36px;
  height: 36px;
}
.whatsapp-fab-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  background: #ff3b3b;
  border-radius: 50%;
  border: 2px solid #fff;
  display: block;
}
.whatsapp-chatbox {
  display: none;
  flex-direction: column;
  width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: absolute;
  bottom: 80px;
  right: 0;
  overflow: hidden;
  animation: whatsapp-fade-in 0.4s;
}
.whatsapp-chatbox.open {
  display: flex;
}
@keyframes whatsapp-fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.whatsapp-header {
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 1rem 1rem 0.7rem 1rem;
  position: relative;
}
.whatsapp-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 0.8rem;
  border: 2px solid #fff;
  background: #1e355e;
  object-fit: contain;
}
.whatsapp-header-info {
  flex: 1 1 auto;
}
.whatsapp-name {
  font-weight: 700;
  font-size: 1.1rem;
}
.whatsapp-status {
  font-size: 0.95rem;
  color: #eaffea;
}
.whatsapp-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  cursor: pointer;
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  line-height: 1;
}
.whatsapp-body {
  background: #f7f7f7;
  padding: 1.2rem 1rem 1.2rem 1.2rem;
  min-height: 80px;
  display: flex;
  align-items: flex-start;
}
.whatsapp-message {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,53,94,0.06);
  padding: 0.8rem 1.1rem;
  font-size: 1.08rem;
  color: #222;
  max-width: 80%;
  margin-bottom: 0.5rem;
}
.whatsapp-action-btn {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  margin: 1.2rem auto 1.2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30,53,94,0.10);
  transition: background 0.18s;
  width: 85%;
}
.whatsapp-action-btn:hover {
  background: #1ebe57;
}
.whatsapp-icon {
  width: 28px;
  height: 28px;
  margin-right: 0.7rem;
}
@media (max-width: 600px) {
  #whatsapp-widget {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* pointer-events: none; */
  }
  .whatsapp-fab {
    margin: 0 12px 12px 0;
    pointer-events: auto;
  }
  .whatsapp-chatbox {
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 0 18px 18px;
    position: fixed;
    bottom: 76px;
    margin: 0;
    box-sizing: border-box;
    pointer-events: auto !important;
  }
  .whatsapp-chatbox * {
    pointer-events: auto !important;
  }
}

.phone-link {
  color: #fff;
  text-decoration: underline;
  margin-right: 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s;
}
.phone-link:hover {
  color: #1e90ff;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
}
.instagram-icon {
  width: 28px;
  height: 28px;
  filter: none;
  transition: opacity 0.2s;
}
.instagram-link:hover .instagram-icon {
  opacity: 0.7;
  filter: none;
}
.site-footer {
  background: #1e355e;
  color: #fff;
  padding: 2.5rem 0 1.2rem 0;
  margin-top: 2rem;
  width: 100vw;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0 2vw;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.7rem;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.98rem;
  color: #eaf3fa;
}
.footer-credit {
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  color: #fff;
  margin-top: 0.7rem;
}
.footer-credit a {
  color: #1e90ff;
  text-decoration: underline;
  font-weight: 700;
}
.footer-credit a:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0 1vw;
  }
  .footer-social {
    margin-top: 1.2rem;
  }
}

/* Hamburger Menu Styles */
.hamburger-btn {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 13000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 901px) {
  .hamburger-btn {
    position: static;
    z-index: auto;
  }
}
.hamburger-bar {
  width: 28px;
  height: 4px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .nav-links, .phone-numbers, .instagram-link {
    display: none !important;
  }
  .hamburger-btn {
    display: flex;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 60px;
  right: 16px;
  width: 120px;
  height: auto;
  background: #1e355e;
  color: #fff;
  z-index: 12000;
  box-shadow: 0 4px 24px rgba(30,53,94,0.18);
  border-radius: 12px;
  transform: scale(0.8) translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  padding: 1rem 0.7rem;
  margin: 0;
}
.mobile-menu.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.mobile-menu-close {
  display: none;
}
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mobile-nav-links li a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-links li a:hover {
  color: #1e90ff;
}
.mobile-phone-numbers, .mobile-instagram {
  display: none;
}
@media (max-width: 400px) {
  .mobile-menu {
    width: 95vw;
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

@media (max-width: 900px) {
  .mission-block, .vision-block {
    display: none !important;
  }
  .mission-vision-card {
    display: block !important;
  }
  .hamburger-btn {
    display: flex !important;
  }
}
@media (min-width: 901px) {
  .mission-vision-card {
    display: none !important;
  }
  .mission-block, .vision-block {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(30,53,94,0.06);
    padding: 2.2rem 2rem 1.5rem 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .mission-block h2, .vision-block h2, .goals-block h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e355e;
    margin-bottom: 0.7rem;
    margin-top: 0;
  }
  .mission-block p, .vision-block p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #222;
    font-weight: 500;
  }
  .goals-block img.goals-image {
    width: 100%;
    max-width: 320px;
    margin: 1.2rem auto 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(30,53,94,0.06);
  }
}

@media (max-width: 900px) {
  .mission-vision-card {
    font-size: 0.6rem;
  }
  .mission-vision-card h2 {
    font-size: 0.7rem;
  }
  .goals-block {
    border: none !important;
  }
}

.footer-copy a {
  color: #eaf3fa;
  text-decoration: none;
  font-weight: 700;
}
.footer-copy a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  margin-left: 0;
  margin-right: 0.7rem;
  vertical-align: middle;
}
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0 1vw;
  }
  .site-footer {
    padding: 0.7rem 0 0.7rem 0;
  }
  .footer-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.mobile-header-instagram {
  display: none;
}
@media (max-width: 900px) {
  .mobile-header-instagram {
    display: inline-flex !important;
    align-items: center;
    margin-left: 0.7rem;
    margin-right: 0;
  }
  .mobile-header-instagram .instagram-icon {
    filter: brightness(0) invert(1) !important;
  }
  .top-right > .instagram-link:not(.mobile-header-instagram) {
    display: none !important;
  }
} 