body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.main-header {
    border-top: 3px solid #b1c08b;
    border-bottom: 3px solid #b1c08b;
    background: #fff;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 100px 0 100px;
}

.logo {
    width: 95px;
    height: 95px;
}

.header-title {
    text-align: center;
    flex-grow: 1;
}

.header-title h1 {
    margin: 0;
    font-size: 2.3rem;
    font-weight: bold;
}

.subtitle {
    color: #7b7b7b;
    font-size: 1.1rem;
    margin: 5px 0 10px 0;
}

.custom-subtitle {
    color: #4E5E27;
    font-size: 16px;
    text-align: center;
    font-family: Arial, 'MS PGothic', Dotum, Helvetica, sans-serif;


}
.contact-info {
    font-size: 12px;
    font-family: Arial, 'MS PGothic', Dotum, Helvetica, sans-serif;
    text-align: center;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #000; /* Force all text inside to be black */
}

.contact-label {
    font-weight: bold;
    color: #000;
}

.separator {
    color: #000;
    padding: 0 8px;
}

.phone-link {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-decoration: underline;
}


  /* Main Nav Wrapper */
.main-nav {
    background-color: #000;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);

}

/* Menu List Styling */
.nav-menu {
    list-style: none;
    margin: 20;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Nav Items */
.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 6px 14px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.1;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s;
}

.nav-menu > li > a:hover {
    background-color: #1a1a1a;
}

/* Green Ribbon Style for Active Tab */
.active-tab {
    position: relative;
}

.active-tab a {
    background-color: #556b2f; /* Olive green */
    color: white;
    box-shadow: inset 5px 0 0 #000;
}

.active-tab::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 10px;
    background: #000;
}

/* Dropdown Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background-color: #f0f0f0;
}


 .main-section {
    background: url('../assets/image/BODY_3_4.jpg') center center/cover no-repeat;
    /* Optional: add a dark overlay for readability */
    min-height: 600px;
    padding: 30px 0 0 0;
    position: relative;
    border-top: 6px solid #b1c08b;
    border-bottom: 6px solid #b1c08b;

}

.main-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45); /* Adjust opacity as needed */
    z-index: 0;
    pointer-events: none;
}

/* Make sure the content is above the overlay */
.main-section > * {
    position: relative;
    z-index: 1;
}

.main-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding: 30px 40px 0 40px;
}

.main-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.main-logo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 6px solid #495d2e;
    background: #fff;
    object-fit: cover;
    margin-bottom: 24px;
}

.main-caption {
    background: #26320e;
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    padding: 10px 28px;
    border: 3px solid #b1c08b;
    display: inline-block;
    margin-top: 12px;
}

.main-right {
    flex: 1.5;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.officer-img {
    width: 613px;
    height: 423px;
    object-fit: cover;
    border: 6px solid #b1c08b;
    background: #fff;
    box-shadow: 0 0 12px rgba(0,0,0,0.25);
}

.main-boxes {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 36px;
    padding-bottom: 30px;
}

.box {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 3px solid #b1c08b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border-radius: 6px;
}


 .learn-more-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 0 0;
    margin-bottom: 80px;
}

.learn-more-text {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    background: transparent;
    border: 5px solid #495d2e;
    padding: 10px 38px;
    border-radius: 4px;
    letter-spacing: 2px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    background: rgba(0,0,0,0.7);
    display: inline-block;
}

.learn-more-text .highlight {
    color: #b1c08b;
    font-weight: 600;
}
   .about-section {
    background: #090909;
    padding: 60px 0 40px 0;
    border-top: 6px solid #495d2e;
}

.about-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #b1c08b;
    margin: 0;
    letter-spacing: 2px;
}

.about-main {
    color: #b1c08b;
    font-weight: 700;
}

.about-highlight {
    color: #fff;
    font-weight: 700;
}

.about-divider {
    width: 80%;
    height: 3px;
    background: #495d2e;
    margin: 16px auto 32px auto;
    border-radius: 2px;
}

.about-customers {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 8px 0;
}

.about-customers-highlight {
    color: #b1c08b;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-description {
    max-width: 800px;
    margin: 0 auto;
    background: #26320e;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 26px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.about-description a {
    color: #b1c08b;
    text-decoration: underline;
    font-weight: bold;
}

 .vision-values-section {
    background: url('large-logo-bg.png') center center/contain no-repeat, #000;
    padding: 60px 0 60px 0;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vision-block,
.values-block {
    width: 700px;
    max-width: 95vw;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vision-title,
.values-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.vision-highlight,
.values-highlight {
    color: #b1c08b;
    font-weight: 700;
}

.vision-description,
.values-description {
    width: 100%;
    background: #5d6c2f;
    color: #fff;
    font-size: 1.13rem;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 18px 32px;
    text-align: left;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
}

@media (max-width: 800px) {
    .vision-block,
    .values-block {
        width: 98vw;
    }
    .vision-description,
    .values-description {
        padding: 12px 4vw;
    }
}

/* For the green box style used in all blocks */
.about-box,
.box-style {
    width: 700px;
    max-width: 95vw;
    background: #5d6c2f;
    color: #fff;
    font-size: 1.13rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 8px auto 8px auto; /* Reduced vertical margins */
    padding: 18px 32px;
    border-radius: 0;
    box-shadow: none;
    text-align: left;

}

.about-box p {
    margin: 0;
}

.vision-block,
.values-block,
.mission-block {
    width: 764px;
    max-width: 95vw;
    margin-bottom: 12px; /* Reduced from 36px to 12px */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.vision-title,
.values-title,
.mission-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.vision-highlight,
.values-highlight,
.mission-highlight {
    color: #b1c08b;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .about-box,
    .box-style,
    .vision-block,
    .values-block,
    .mission-block {
        width: 95vw;
        padding: 12px 4vw;

    }
}
.oath-frame {
    width: 710px;
    max-width: 95vw;
    margin: 32px auto 32px auto;
    padding: 0;
    border: 5px solid #5d6c2f;
    background: transparent;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
}

.oath-underline {
    color: #b1c08b;
    font-size: 1.7rem;
    font-weight: 700;
    border-bottom: 4px solid #b1c08b;
    padding-bottom: 3px;
    display: inline-block;
}

.contact-section {
    margin-top: 36px;
    background: transparent;
    padding-bottom: 36px;
}

.contact-title {
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1;
}

.contact-title-olive {
    color: #5d6c2f;
    text-shadow: 2px 2px 0 #222;
}

.contact-title-white {
    color: #fff;
}

.contact-divider {
    width: 100%;
    height: 6px;
    background: #5d6c2f;
    margin: 18px 0 24px 0;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 18px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 270px;
    max-width: 270px;
}

.contact-map {
    width: 270px;
    height: 220px;
    background: #fff;
    margin-bottom: 16px;
}

.contact-address {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 8px;
}

.contact-form {
    width: 700px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-form-row {
    width: 100%;
    display: flex;
    gap: 12px;
}

.contact-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.contact-form input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: none;
    background: #fff;
    color: #000;
    font-weight: 500;
    box-sizing: border-box;
}

.contact-form textarea {
    width: 340px;
    min-height: 120px;
    background: #5d6c2f;
    color: #fff;
    font-size: 1.1rem;
    font-family: inherit;
    padding: 10px;
    border: none;
    font-weight: 500;
    resize: vertical;
    box-sizing: border-box;
}

.contact-form-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.contact-form button {
    width: 120px;
    padding: 10px 0;
    background: #5d6c2f;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #3e471f;
}

.contact-footer {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.05rem;
    margin-top: 24px;
    letter-spacing: 0.5px;
}

.contact-footer a {
    color: #b1c08b;
    font-weight: bold;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .contact-form {
        width: 98vw;
        max-width: 98vw;
    }
    .contact-form-row {
        flex-direction: column;
        gap: 10px;
    }
    .contact-form textarea {
        width: 100%;
        min-width: 0;
    }
    .contact-left {
        min-width: 0;
        max-width: 98vw;
        align-items: center;
    }
    .contact-map {
        width: 90vw;
        max-width: 270px;
        height: 40vw;
        max-height: 220px;
    }
}

 /* Partner Banner */
.partner-banner {
    background: #fff;
    padding: 30px 70px 30px 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 900px;
    max-width: 98vw;
    background: linear-gradient(to right, #fff 80%, #fff 100%);
    border-radius: 8px;
    padding: 20px 40px;
    box-sizing: border-box;
}

.partner-logo {
    max-height: 80px;
    max-width: 240px;
    background: #fff;
    border-radius: 4px;
    object-fit: contain;
}

.partner-logo.left {
    margin-right: auto;
}

.partner-logo.right {
    margin-left: auto;
}


/* Footer */
.site-footer {
    background: #5d6c2f;
    padding: 32px 0 16px 0;
    color: #fff;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-social {
    margin-bottom: 8px;
}

.footer-social a {
    color: #fff;
    font-size: 2rem;
    margin: 0 10px;
    transition: color 0.2s;
    display: inline-block;
}

.footer-social a:hover {
    color: #b1c08b;
}

.footer-copy {
    font-size: 1.1rem;
    margin-top: 8px;
}

@media (max-width: 1000px) {
    .partner-banner-content {
        width: 98vw;
        padding: 10px 2vw;
    }
    .partner-logo {
        max-width: 40vw;
        max-height: 60px;
    }
}

html {
    scroll-behavior: smooth;
}
a, button {
    transition: all 0.3s ease;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image {
    width: 613px;
    height: 423px;
    margin-bottom: 24px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnails {
    display: flex;
    gap: 18px;
}

.thumb {
    width: 80px;
    height: 60px;
    border: 4px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb.loading {
    border-color: #5d6c2f;
    animation: loading-border 3.5s linear forwards;
}

@keyframes loading-border {
    0% {
        border-color: #5d6c2f transparent transparent transparent;
        border-width: 4px;
    }
    25% {
        border-color: #5d6c2f #5d6c2f transparent transparent;
    }
    50% {
        border-color: #5d6c2f #5d6c2f #5d6c2f transparent;
    }
    75% {
        border-color: #5d6c2f #5d6c2f #5d6c2f #5d6c2f;
    }
    100% {
        border-color: #5d6c2f;
    }
}


 .gss-intro-section {
    background: #000;
    position: relative;
    padding-top: 40px;
    padding-bottom: 70px; /* Space for the heading overlap */
    overflow: hidden;
    text-align: center;
}

.gss-intro-box {
    background: #4b5632;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 32px 24px 32px;
    border-radius: 0;
    box-shadow: none;
}

.gss-intro-title {
    margin: 0 0 18px 0;
    font-size: 2.2em;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.gss-intro-desc {
    background: #111;
    color: #fff;
    padding: 16px 18px;
    margin: 0 auto;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.5);
    font-size: 1.08em;
    font-weight: 400;
    text-align: left;
    max-width: 95%;
}

.gss-services-heading-wrapper {
    position: relative;
    width: 100%;
    margin-top: -40px; /* Negative margin for overlap effect */
    z-index: 2;
}

.services-heading {
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    margin: 60px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.services-our {
    color: #6b7537; /* Olive-green */
}

.services-services {
    color: #fff;
}


.services-cards-section {
    background: transparent;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 40px;
}

.services-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #4b5632;
    width: 340px;
    min-height: 480px;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0;
    background: #222;
}

.service-card-title {
    color: #111;
    font-size: 1.35em;
    font-weight: bold;
    margin: 20px 0 16px 0;
    text-align: center;
}

.service-card-desc {
    background: #111;
    color: #fff;
    padding: 18px 12px;
    margin: 0 0px 20px 0px;
    border-radius: 0;
    font-size: 1em;
    text-align: left;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
    width: calc(100% - 24px);
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (max-width: 1100px) {
    .services-cards-container {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        width: 90%;
        min-width: 260px;
    }
}


 .technology-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; /* Let watermark or dark bg show through */
    padding: 60px 0;
}

.technology-box {
    background: #4b5632;
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    padding: 40px 30px 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.technology-title {
    color: #fff;
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px #222;
}

.technology-cards-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    width: 100%;
}

.technology-card {
    background: #111;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
    padding: 32px 26px 24px 26px;
    flex: 1 1 0;
    min-width: 340px;
    max-width: 480px;
    font-size: 1.08em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.technology-card h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.technology-card ul {
    margin: 10px 0 16px 24px;
    padding: 0;
    color: #fff;
    font-size: 1em;
}

.technology-card ul li {
    margin-bottom: 4px;
    list-style-type: disc;
}

.technology-card a {
    color: #b7d36b;
    text-decoration: underline;
    word-break: break-all;
}

.technology-card a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 1000px) {
    .technology-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .technology-card {
        max-width: 95%;
        min-width: 0;
    }
}



  .careers-hero {
    background: #111 url('static.wixstatic.com/media/99ebc9_245c41da95184c11ac8bd1a949df742a_mv2.png') center center no-repeat;
    background-size: 70vw auto;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0 60px 0;
}

.careers-hero-inner {
    background: #181c16;
    border: 4px solid #b7d36b;
    max-width: 540px;
    width: 95%;
    margin: 0 auto;
    padding: 36px 28px 32px 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.careers-hero-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 18px;
    border-radius: 50%;
    object-fit: contain;
    background: #222;
    border: 2px solid #b7d36b;
}

.careers-hero-title-bar {
    background: #111;
    border: 2px solid #b7d36b;
    color: #b7d36b;
    font-weight: bold;
    font-size: 1.15em;
    padding: 6px 28px;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: 2px;
    border-radius: 2px;
    display: inline-block;
}

.careers-hero-text {
    color: #fff;
    font-size: 1.08em;
    text-align: center;
    margin-bottom: 28px;
}

.careers-hero-text p {
    margin-bottom: 16px;
}

.careers-hero-email {
    color: #b7d36b;
    font-weight: bold;
    text-decoration: underline;
    word-break: break-all;
}

.careers-hero-email:hover {
    color: #fff;
}

.careers-hero-phone {
    color: #b7d36b;
    font-weight: bold;
    text-decoration: underline;
}

.careers-hero-phone:hover {
    color: #fff;
}

.careers-hero-eeo {
    color: #aaa;
    font-size: 0.95em;
    display: block;
    margin-top: 8px;
}

.careers-hero-apply-btn {
    display: block;
    background: #b7d36b;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    padding: 18px 0;
    width: 80%;
    margin: 32px auto 0 auto;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.careers-hero-apply-btn:hover {
    background: #222;
    color: #b7d36b;
}

@media (max-width: 600px) {
    .careers-hero-inner {
        padding: 18px 6vw 24px 6vw;
    }
    .careers-hero-apply-btn {
        font-size: 1.3em;
        padding: 12px 0;
        width: 100%;
    }
    .careers-hero-logo {
        width: 70px;
        height: 70px;
    }
}


.k9unit-overlay-bg {
    background: #222 url('your-watermark-image.png') center center no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 0;
    padding: 0;
}

.k9unit-content {
    background: rgba(0,0,0,0.75); /* The dark transparent overlay */
    min-height: 100vh;
    width: 100%;
    padding-bottom: 0;
    z-index: 1;
    position: relative;
}

.k9unit-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 10px 10px 10px;
    text-align: center;
}

.k9unit-title {
    font-size: 3em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: 1px;
}

.k9unit-k {
    color: #b7d36b;
}

.k9unit-box {
    background: #4b5632;
    color: #fff;
    padding: 16px 18px;
    margin-bottom: 15px;
    font-size: 1.1em;
    border: none;
    text-align: left;
}

.k9unit-dogs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 10px 40px 10px;
    text-align: center;
}

.k9unit-our {
    font-size: 2.5em;
    color: #6b7537;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: center;
}

.k9unit-doggrid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.k9unit-dogcard {
    background: #4b5632;
    border: none;
    width: 240px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
    box-shadow: none;
}

.k9unit-imgbox {
    width: 100%;
    height: 140px;
    background: #000;
    /* background-image: url('dog-image.jpg'); */
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
}

.k9unit-name {
    font-size: 1.3em;
    font-weight: bold;
    color: #111;
    margin-bottom: 8px;
}

.k9unit-details {
    color: #fff;
    font-size: 1em;
    padding: 0 10px 10px 10px;
    text-align: center;
}

@media (max-width: 900px) {
    .k9unit-doggrid {
        flex-direction: column;
        align-items: center;
    }
    .k9unit-dogcard {
        width: 90vw;
        max-width: 340px;
    }
}

/* Footer styling to match overlay background */
.site-footer {
    background: #4b5632;
    color: #fff;
    padding: 24px 0 8px 0;
    text-align: center;
    width: 100%;
    border: none;
}
.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-social {
    margin-bottom: 8px;
}
.footer-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.2s;
    display: inline-block;
}
.footer-social a:hover {
    color: #b7d36b;
}
.footer-copy {
    font-size: 1em;
    color: #fff;
}
  .olive-green-text {
    color: #b7d36b; /* Olive green */
}

.white-text {
    color: #ffffff; /* White */
}
  .k9unit-dog-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-bottom: 3px solid #111;
    display: block;
}


.blog-bg {
    background: url('static.wixstatic.com/media/99ebc9_245c41da95184c11ac8bd1a949df742a_mv2.png') center center no-repeat;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    padding-bottom: 0;
}

.blog-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0 0 0;
}

.blog-card {
    display: flex;
    background: #4b5632;
    border: 6px solid #111;
    margin-bottom: 32px;
    min-height: 220px;
    box-shadow: none;
}

.blog-img {
    flex: 1 1 48%;
    min-width: 200px;
    max-width: 350px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-content {
    flex: 1 1 52%;
    padding: 22px 18px 18px 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta {
    font-size: 1em;
    color: #eaeaea;
    margin-bottom: 12px;
}

.blog-author {
    font-weight: bold;
    color: #fff;
}

.blog-date,
.blog-read {
    color: #eaeaea;
}

.blog-footer {
    display: flex;
    gap: 18px;
    font-size: 1em;
    color: #fff;
    align-items: center;
    margin-top: 18px;
}

.blog-like {
    color: #b7d36b;
    font-weight: bold;
}

@media (max-width: 800px) {
    .blog-card {
        flex-direction: column;
        min-height: 0;
    }
    .blog-img, .blog-content {
        max-width: 100%;
        min-width: 0;
    }
    .blog-content {
        padding: 14px 10px 14px 10px;
    }
}

/* Footer styling */
.site-footer {
    background: #4b5632;
    color: #fff;
    padding: 24px 0 8px 0;
    text-align: center;
    width: 100%;
    border: none;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-social {
    margin-bottom: 8px;
}

.footer-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.2s;
    display: inline-block;
}

.footer-social a:hover {
    color: #b7d36b;
}

.footer-copy {
    font-size: 1em;
    color: #fff;
}




.contact-map {
    width: 100%;
    height: 200px; /* adjust as needed */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

