/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    background-color: #1e3a5f;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: #f5a623;
    border-bottom-color: #f5a623;
}

.cta-button {
    background-color: #EFC203;
    color: #1e3a5f;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d4a803;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 194, 3, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 0; /* Remove white space between menu and hero */
}

.hero-text-section {
    background-color: #1e3a5f;
    padding: 8rem 0 4rem 0; /* Top padding to clear fixed header without white space */
    order: 1;
    min-height: 60vh;
}

.hero-background {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    order: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-content h1 {
    font-family: Verdana, Arial, sans-serif !important;
    font-size: 45px !important;
    font-weight: 700 !important;
    margin-bottom: 2rem;
    color: #FFFFFF !important;
    line-height: 1.2;
    text-align: center;
}

.hero-content h2 {
    font-family: Verdana, Arial, sans-serif !important;
    font-size: 29px !important;
    font-weight: 700 !important;
    color: #EFC203 !important;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: center;
}

.hero-intro {
    font-family: Verdana, Arial, sans-serif !important;
    font-size: 22.5px !important;
    font-weight: 400 !important;
    color: #FFFFFF !important;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bullets li {
    font-family: Verdana, Arial, sans-serif !important;
    font-size: 22.5px !important;
    font-weight: 400 !important;
    color: #FFFFFF !important;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.hero-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00BFA6;
    font-weight: 700;
    font-size: 24px;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-primary {
    background-color: #EFC203;
    color: #001F3F;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Verdana', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #EFC203;
}

.cta-primary:hover {
    background-color: #d4a803;
    border-color: #d4a803;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 194, 3, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Verdana', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #EFC203;
}

.cta-secondary:hover {
    background-color: #EFC203;
    color: #001F3F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 194, 3, 0.3);
}



/* Trusted Specialists Section */
.trusted-specialists {
    background-color: #a8d5d1;
    padding: 4rem 0;
    text-align: center;
}

.trusted-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.trusted-content h3 {
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 2rem;
    font-weight: 500;
}

.trusted-content p {
    font-size: 1.1rem;
    color: #1e3a5f;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #f5a623;
    color: #1e3a5f;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #e6951f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
}

.phone-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #1e3a5f;
    font-size: 1.2rem;
    font-weight: 600;
}

.phone-contact a {
    color: #1e3a5f;
}

.phone-contact a:hover {
    color: #f5a623;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    color: #1e3a5f;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team-image {
    text-align: center;
    margin: 2rem 0;
}

.team-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.services h3 {
    text-align: center;
    color: #f5a623;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #a8d5d1;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f5a623;
}

.service-card h4 {
    color: #1e3a5f;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    margin-bottom: 1rem;
    color: #1e3a5f;
    line-height: 1.6;
}

.service-card li strong {
    font-weight: 600;
}

/* Regional Coverage Section */
.regional-coverage {
    background-color: #a8d5d1;
    padding: 4rem 0;
    text-align: center;
}

.regional-coverage h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.regional-coverage > p {
    color: #1e3a5f;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.regional-coverage h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.region-card {
    background-color: #1e3a5f;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.region-card h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.region-card p {
    color: #a8d5d1;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Solutions Section */
.solutions {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.solutions h2 {
    text-align: center;
    color: #1e3a5f;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.building-image {
    text-align: center;
    margin: 2rem 0 3rem;
}

.building-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.solution-card {
    background-color: #a8d5d1;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f5a623;
}

.solution-card h3 {
    color: #f5a623;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.solution-card ul {
    list-style: none;
}

.solution-card li {
    margin-bottom: 1rem;
    color: #1e3a5f;
    line-height: 1.6;
}

.solution-card li strong {
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background-color: #a8d5d1;
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background-color: #1e3a5f;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.contact-card h4 {
    color: #f5a623;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card a:hover {
    color: #f5a623;
}

.contact-card p {
    color: #a8d5d1;
    font-size: 0.9rem;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

/* Key Benefits Section */
.key-benefits {
    background-color: #1e3a5f;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.key-benefits h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit-item h3 {
    color: #f5a623;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #1e3a5f;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-nav {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: white;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #f5a623;
}

.footer-nav span {
    color: #a8d5d1;
    margin: 0 0.5rem;
}

.copyright {
    color: #a8d5d1;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .hero-text-section {
        padding: 4rem 0 3rem 0;
        min-height: 50vh;
    }
    
    .hero-background {
        height: 35vh;
        min-height: 250px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 22px;
    }
    
    .hero-intro {
        font-size: 18px;
    }
    
    .hero-bullets li {
        font-size: 18px;
    }
    
    .cta-primary, .cta-secondary {
        font-size: 16px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .trusted-content h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        margin-top: 60px;
    }
    
    .hero-text-section {
        padding: 3rem 0 2rem 0;
        min-height: 45vh;
    }
    
    .hero-background {
        height: 30vh;
        min-height: 200px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-intro {
        font-size: 16px;
    }
    
    .hero-bullets li {
        font-size: 16px;
    }
    
    .cta-primary, .cta-secondary {
        font-size: 16px;
    }
    
    .trusted-content h2 {
        font-size: 1.8rem;
    }
    
    .services h2,
    .regional-coverage h2,
    .solutions h2,
    .key-benefits h2 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .solution-card {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}
/* Header Styles */
        .site-header {
            background: #001F3F;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            min-height: 80px;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: auto;
        }

        .site-logo {
            max-width: 110px;
            flex-shrink: 0;
        }

        .site-logo a {
            display: block;
        }

        .site-logo img {
            max-width: 100%;
            height: auto;
            display: block;
        }

  .main-navigation {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-start;
}



        .main-navigation > a,
        .main-navigation .dropdown {
            position: relative;
        }

.main-navigation > a,
.main-navigation .dropdown > a {
    color: #fff;
    text-decoration: none;
    padding: 8px 8px;      /* reduced spacing */
    font-size: 13px;      /* slightly smaller text */
    font-weight: 600;
    display: block;
    transition: color 0.3s ease;
    white-space: nowrap;
}

}


        .main-navigation > a:hover,
        .main-navigation .dropdown > a:hover {
            color: #EFC203;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown > a::after {
            content: " ▼";
            font-size: 10px;
            margin-left: 5px;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #002a4d;
            min-width: 220px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            border-top: 2px solid #EFC203;
            z-index: 1000;
        }

        .dropdown-menu a {
            color: #fff;
            text-decoration: none;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 500;
            display: block;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: background 0.3s ease, padding-left 0.3s ease;
        }

        .dropdown-menu a:last-child {
            border-bottom: none;
        }

        .dropdown-menu a:hover {
            background: #003a5d;
            padding-left: 25px;
            color: #EFC203;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 5px 10px;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .mobile-menu-toggle {
                display: block;
            }

            .main-navigation {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #001F3F;
                flex-direction: column;
                gap: 0;
                padding: 10px 0;
                box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            }

            .main-navigation.active {
                display: flex;
            }

            .main-navigation > a,
            .main-navigation .dropdown > a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                width: 100%;
            }

            .dropdown-menu {
                position: static;
                display: none;
                box-shadow: none;
                border-top: none;
                background: #002a4d;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .site-logo {
                max-width: 100px;
            }
        }

        @media (max-width: 480px) {
            .site-logo {
                max-width: 90px;
            }

            .site-header {
                padding: 10px 0;
                min-height: 70px;
            }
        }
        
        /* Mobile fix for hero CTA buttons */
        @media (max-width: 768px) {
            .cta-buttons {
              display: flex;
              flex-direction: column;
              gap: 12px;
            }

            .cta-buttons a {
              width: 100%;
              text-align: center;
            }
        }

        /* Global navigation search box – Employers & Job Seekers */
.nav-search input {
  width: 300px;
  background-color: #ffffff;
  border: 3px solid #EFC203;
  border-radius: 5px;
  padding: 10px 18px;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  box-sizing: border-box;
}
.nav-search input::placeholder {
  color: #7a7a7a;
  opacity: 1;
}
.header-container {
  padding: 0 10px 0 5px;
}

.header-logo {
  margin-right: 8px;
}

/* --- Navigation & Search Box – Match Home Page (Jan 2026) --- */

/* Search box styling (global – all pages) */
.nav-search input {
  width: 300px;
  background-color: #ffffff;
  border: 3px solid #EFC203;
  border-radius: 5px;
  padding: 10px 18px;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  box-sizing: border-box;
}

/* Placeholder text */
.nav-search input::placeholder {
  color: #7a7a7a;
  opacity: 1;
}

/* Header spacing */
.header-container {
  padding: 0 10px 0 5px;
}

/* Logo spacing from search box */
.header-logo {
  margin-right: 8px;
}
/* =====================================================
   FIX: Employers header fixed height issue
   ===================================================== */

/* Override fixed header height */
header.site-header .header-container {
  height: auto !important;
  min-height: 110px;
  align-items: center;
}

/* Ensure navigation items can breathe */
header.site-header {
  height: auto !important;
}

/* Search box – Home page standard */
.search-input {
  width: 300px;
  background-color: #ffffff;
  border: 3px solid #EFC203;
  border-radius: 5px;
  padding: 10px 18px;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  box-sizing: border-box;
}

/* Ensure search box wrapper does not constrain height */
.header-search-box {
  display: flex;
  align-items: center;
  height: auto;
}

/* Placeholder visibility */
.search-input::placeholder {
  color: #7a7a7a;
  opacity: 1;
}

/* =====================================================
   FIX: Prevent header container from clipping content
   ===================================================== */

.site-header .header-container {
  height: auto !important;
  min-height: 80px;
}
h1 {
  border-bottom: none !important;
}
/* Match body font and size for What SHDF Delivers section */
.visual-content p {
    font-family: inherit;
    font-size: 18px;
    line-height: 1.7;
    color: #001F3F;
}
.visual-content h2 {
    font-size: 28px;
    font-weight: 700;
}
/* FORCE visual section body text to match site body text */
.content-section .visual-section .visual-content p {
    font-family: Verdana, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    color: #001F3F !important;
}
/* Match intro text to What SHDF Delivers typography */
.match-visual-text p {
    font-family: inherit;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: #001F3F;
}
/* --- LOCK typography for SHDF visual text --- */
.visual-section .standard-body-text p {
    font-family: Verdana, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    color: #001F3F;
}

/* --- LOCK layout so text starts further left and runs wider --- */
.visual-section {
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    justify-content: flex-start;
}
/* FIX HOME PAGE NAVIGATION WRAPPING */
.main-navigation {
    flex-wrap: wrap;
    justify-content: center;
}

.main-navigation > a,
.main-navigation .dropdown > a {
    white-space: normal; /* overrides Manus nowrap */
}

