/* ======= PRIMARY COLOR PALETTE ======= */
/* Primary: #798634 (olive green) */
/* Accent: #fff (white), #222 (black), #f8f9fa (light), #b6bb7a (light olive) */

:root {
    --primary: #798634;
    --primary-dark: #5e6828;
    --primary-light: #b6bb7a;
    --accent: #fff;
    --text: #222;
    --muted: #f8f9fa;
}

/* ======= GENERAL ======= */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--muted);
}

/* ======= HERO SECTION ======= */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('images/vsk_hero_2.png') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(34, 34, 34, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    /*color: var(--primary);*/
    text-shadow: 0 2px 8px rgba(34,34,34,0.12);
}

.hero-section p.lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--accent);
   /* background: rgba(121,134,52,0.7);*/
    border-radius: 12px;
    padding: 0.5rem 1rem;
}

/* ======= NAVBAR ======= */
.spotn-nav {
    background-color: var(--accent) !important;
    box-shadow: 0 2px 4px rgba(121, 134, 52, 0.08);
}

.navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--primary) !important;
}

.navbar-nav .nav-link {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary);
    transition: color 0.3s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-dark);
}

/* ======= BUTTONS ======= */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: bold;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: var(--accent);
    transition: all 0.3s;
}

.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--accent) !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--accent) !important;
}

/* Style for .btn-outline-primary to match primary color palette */
.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-color: transparent !important;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: var(--accent) !important;
    background-color: var(--primary) !important;
    border-color: var(--primary-dark) !important;
}

/* ======= SECTION HEADINGS ======= */
/*.section-heading-full {
    width: 100%;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(121,134,52,0.08);
    border-radius: 30px;
    box-shadow: 0 4px 24px rgba(121, 134, 52, 0.08);
    border: 1px solid rgba(121,134,52,0.18);
    margin-bottom: 2rem;
    margin-top: 0;
    padding: 0;
    z-index: 2;
}*/

.section-heading-text {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    padding: 24px 0;
    text-align: center;
    background: transparent;
    transition: font-size 0.3s, color 0.3s;
    text-decoration-line: underline;
    text-underline-position: under;
    
}

.section-heading-text:hover {
    font-size: 2.2rem;
    color: var(--primary-dark);
}

/* ======= ABOUT SECTION ======= */
#about .card {
    border: none;
    border-radius: 15px;
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(121,134,52,0.08);
}

#about .card-title {
    color: var(--primary);
}

/* ======= SERVICES SECTION ======= */
#services {
    position: relative;
    overflow: hidden;
    background: url('images/services_BG_2.png') no-repeat center center/cover;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

#services h2 {
    color: var(--accent);
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    background: var(--accent);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(121,134,52,0.18) !important;
}

.service-icon {
    transition: color 0.3s, transform 0.3s;
    color: var(--primary);
}

.service-card:hover .service-icon {
    color: var(--primary-dark) !important;
    transform: scale(1.1);
}

/* Make Our Services card titles olive green */
#services .card-title {
    color: #798634 !important;
}

/* ======= CONTACT SECTION ======= */
#contact {
    background-color: var(--muted);
    position: relative;
    overflow: hidden;
}

#contact h6 {
    color: var(--primary-dark);
}

#contact h {
    color: var(--primary-dark);
}
#contact label {
    color: var(--primary-dark);
}
#contact h {
    color: var(--primary-dark);
}
.contact-info, .contact-form {
    border: 1px solid var(--primary-light);
    background: var(--accent);
    transition: transform 0.4s;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(121,134,52,0.15);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--primary-light) !important;
}

.contact-submit-btn {
    background: var(--primary) !important;
    color: var(--accent) !important;
    border: none !important;
}

.contact-submit-btn:hover {
    background: var(--primary-dark) !important;
    color: var(--accent) !important;
}

/* ======= CLIENTS SECTION ======= */
#clients {
    position: relative;
    background-color: var(--muted);
    overflow: hidden;
    padding: 50px 0;
}

#clients h2 {
    color: var(--primary);
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}

.client-background-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('images/our clients.png') no-repeat center center/cover;
    opacity: 0.9;
    z-index: 0;
}

.logo-slider-track {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    background-color: rgba(255,255,255,0.43);
}

.logo-slide-show {
    display: flex;
    animation: scroll-right 40s linear infinite;
}

.logo-list {
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    min-width: 100%;
}

.client-logo {
    height: 60px;
    max-width: 150px;
    margin: 0 40px;
    opacity: 1;
    transition: filter 0.3s, opacity 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Trusted by Industry Leaders - Client Cards */
.client-card {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--primary-light);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.client-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(121,134,52,0.18);
    border-color: var(--primary);
}

.client-logo {
    height: 48px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.3s;
}

.client-card:hover .client-logo {
    filter: grayscale(0) drop-shadow(0 2px 8px #79863422);
}

@keyframes scroll-right {
    0% { transform: translateX(0%);}
    100% { transform: translateX(-50%);}
}

/* ======= FOOTER ======= */
.footer-section {
    background: rgba(121,134,52,0.08);
    border-top: 1px solid var(--primary-light);
    color: var(--text);
}

.footer-section h5 {
    color: var(--primary);
    letter-spacing: 1px;
}

.footer-link {
    color: var(--text);
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-social-link {
    color: var(--primary);
    background: var(--accent);
    border-radius: 50%;
    padding: 8px;
    margin-right: 4px;
    display: inline-block;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(121,134,52,0.08);
}

.footer-social-link:hover {
    background: var(--primary);
    color: var(--accent);
    transform: scale(1.1);
}

/* ======= UTILITY ======= */
.spotn-card {
    background-color: #ffffffb5;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Remove horizontal scroll bar */
html, body {
    overflow-x: hidden;
}

/* Add to your style.css for the Career section */

.career-section {
    background: linear-gradient(120deg, #f8f9fa 60%, #b6bb7a22 100%);
}

.career-info-card, .career-form-card {
    border: 1px solid #b6bb7a;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(121,134,52,0.08);
    min-height: 350px;
}

.career-info-card h4,
.career-form-card h4 {
    color: #798634;
}

.career-form-card .form-label {
    color: #798634;
    font-weight: 500;
}

.career-submit-btn {
    background: #798634;
    border: none;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: background 0.3s, transform 0.2s;
}

.career-submit-btn:hover {
    background: #5e6828;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}

/* Make Why Join Us and Submit Your Resume cards equal height */
.career-section .row.align-items-center {
    align-items: stretch !important;
}

.career-info-card,
.career-form-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Make Why Join Us and Submit Your Resume cards equal height, but align content to top for info card */
.career-info-card {
    justify-content: flex-start;
}

.career-form-card {
    justify-content: center;
}

