/* PrismGlint Horizon – Geometric Structured CSS Style */
/* RESET & NORMALIZE */
html { box-sizing: border-box; font-size: 16px; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
body, html { height: 100%; }
body {
  background: #F4F6FB;
  color: #223B6E;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
main { flex: 1; display: flex; flex-direction: column; }
a { color: #223B6E; text-decoration: none; transition: color 0.2s; }
a:focus, a:hover { color: #1EC6B1; outline: none; }
ul, ol { list-style-position: inside; }

/* TYPE SCALE */
h1, .h1 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.75rem; font-weight: 700; letter-spacing: -2px; line-height: 1.15; margin-bottom: 18px; }
h2, .h2 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2rem; font-weight: 700; letter-spacing: -1px; line-height: 1.18; margin-bottom: 14px; }
h3, .h3 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.5px; margin-bottom: 10px; }
h4, .h4 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1rem; font-weight: 600; }
p, li, blockquote, label, input, button { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem; }
blockquote { font-style: italic; color: #223B6E; border-left: 4px solid #1EC6B1; padding-left: 18px; margin-bottom: 8px; }
strong { font-weight: 700; }

/* STRUCTURAL LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.content-wrapper {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-section { max-width: 760px; }

/**************************************************
  --- FLEXBOX SPECIFIC PATTERNS & GAPS (MANDATORY)
***************************************************/
.section { margin-bottom: 60px; padding: 40px 20px; background: #fff; border-radius: 20px; box-shadow: 0 2px 16px rgba(34,59,110,0.07); }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 18px; box-shadow: 0 2px 12px rgba(34,59,110,0.07); background: #fff; padding: 28px; transition: box-shadow 0.16s; }
.card:hover { box-shadow: 0 8px 32px rgba(30,198,177,0.13); }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px; margin-bottom: 24px; border-radius: 16px; background: #F4F6FB; box-shadow: 0 2px 8px rgba(34,59,110,0.08); border: 1.5px solid #E0E7F6; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/*********************************
   -- HEADER & NAVIGATION MENU
**********************************/
header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(34,59,110,0.06);
  position: sticky;
  top: 0; left: 0; right: 0; z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  justify-content: flex-start;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #223B6E;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  display: flex;
  align-items: center;
}
.main-nav > a.cta-button {
  background: #1EC6B1;
  color: #fff;
  font-weight: 700;
  border-radius: 99px;
  padding: 9px 22px;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(30,198,177,0.10);
}
.main-nav > a:hover, .main-nav > a:focus { background: #F4F6FB; color: #1EC6B1; }
.main-nav > a.cta-button:hover, .main-nav > a.cta-button:focus { background: #223B6E; color: #fff; }
.main-nav img { height: 36px; width: auto; margin-right: 18px; }

/***********************
  -- MOBILE MENU
***********************/
.mobile-menu-toggle {
  display: none;
  background: #1EC6B1;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 14px;
  margin-left: auto;
  z-index: 500;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover { background: #223B6E; }
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #223B6E;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 0 0 9999px rgba(34,59,110,0.65);
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu-close {
  background: #F4F6FB;
  color: #223B6E;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  cursor: pointer;
  margin: 22px 0 12px 22px;
  padding: 6px 14px;
  align-self: flex-start;
  z-index: 3200;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  padding: 14px 0 14px 14px;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 2px;
}
.mobile-nav a:focus, .mobile-nav a:hover { background: #1EC6B1; color: #223B6E; }

/**************************
  -- HERO & MAIN SECTION
***************************/
section { margin-bottom: 60px; padding: 40px 0; }
@media (max-width: 900px) {
  section { padding: 32px 0; margin-bottom: 38px; }
}
@media (max-width: 600px) {
  section { padding: 22px 0; margin-bottom: 24px; }
}
.subheadline {
  font-size: 1.188rem;
  color: #49548A;
  margin-bottom: 28px;
  max-width: 420px;
}
.hero-visual {
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,59,110,0.10);
  background: #E0E7F6;
}

/********************************
        -- FLEX GRIDS, CARDS
*********************************/
/* Large feature grid */
.feature-grid, .employer-feature-grid, .industry-list, .team-profiles, .service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
}
.feature-grid > div, .employer-feature-grid > div, .industry-list > div, .team-profiles > div, .service-categories > article {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,59,110,0.07);
  padding: 28px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 305px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 1.5px solid #E0E7F6;
  transition: box-shadow 0.14s, border 0.14s;
}
.feature-grid > div:hover, .employer-feature-grid > div:hover, .industry-list > div:hover, .team-profiles > div:hover, .service-categories > article:hover {
  box-shadow: 0 6px 20px rgba(30,198,177,0.09);
  border: 1.5px solid #1EC6B1;
}
.feature-grid img, .employer-feature-grid img, .industry-list img, .team-profiles img, .service-categories img {
  width: 36px; height: 36px; margin-bottom: 8px;
}

/* Case Study, Benefits, Steps */
.case-study-snippets, .candidate-benefit-list, .benefit-list, .feature-list, .steps-timeline, .employer-onboarding-steps, .client-support-highlight, .custom-solutions-highlight, .support-services-highlight, .ongoing-candidate-support, .client-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.case-study {
  background: #F4F6FB; border-radius: 14px; padding: 20px 18px; min-width: 180px; flex: 1 1 190px;
  box-shadow: 0 1px 5px rgba(34,59,110,0.05);
  margin-bottom: 10px;
}
.benefit-list li, .candidate-benefit-list li, .feature-list li { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 8px; padding: 11px 16px; margin-bottom: 8px; box-shadow: 0 1px 4px rgba(34,59,110,0.04); }
.benefit-list img, .candidate-benefit-list img, .feature-list img { width: 20px; height: 20px; }

/************************************
   -- TESTIMONIALS, SLIDERS, LOGOS
*************************************/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #F4F6FB;
  box-shadow: 0 2.5px 10px rgba(34,59,110,0.07);
  min-width: 240px; flex: 1 1 280px; max-width: 350px;
  border: 1.7px solid #E0E7F6;
  transition: box-shadow 0.14s, border 0.13s, background 0.18s;
}
.testimonial-card blockquote {
  color: #223B6E;
}
.testimonial-card:hover { background: #fff; border: 1.7px solid #1EC6B1; box-shadow: 0 8px 32px rgba(30,198,177,0.09); }
.testimonial-details strong { color: #1EC6B1; }
.client-logos {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
}
.client-logos img { max-width: 48px; }

/*************************
    -- BUTTONS & CTAs
**************************/
.cta-button, .testimonial-card button, .cookie-btn, .mobile-nav a.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  background: #1EC6B1;
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 10px 28px;
  margin-top: 18px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(30,198,177,0.10);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.1s;
  letter-spacing: 0.5px;
  text-align: center;
}
.cta-button:hover, .cookie-btn:hover, .cta-button:focus { background: #223B6E; color: #fff; transform: translateY(-1.5px) scale(1.02); }

/************************
    -- FORM ELEMENTS
*************************/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1.5px solid #E0E7F6;
  margin-bottom: 18px;
  width: 100%;
  background: #fff;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus { border: 1.5px solid #1EC6B1; outline: none; }
label { font-size: 1rem; margin-bottom: 6px; font-weight: 500; display: block; }

/***********************************
    -- FOOTER & SUPPORT SECTIONS
************************************/
footer {
  background: #223B6E;
  color: #fff;
  padding: 32px 0 16px 0;
  margin-top: 40px;
  box-shadow: 0 -2px 12px rgba(34,59,110,0.09);
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-menu a { color: #fff; opacity: 0.88; text-decoration: none; transition: opacity 0.17s; border-radius: 6px; padding: 4px 8px; }
.footer-menu a:hover, .footer-menu a:focus { opacity: 1; background: #1EC6B1; color: #223B6E; }
.footer-contact { margin-bottom: 16px; color: #F4F6FB; }
.footer-contact p { display: flex; align-items: center; gap: 9px; margin-bottom: 6px; font-size: 1rem; }
.footer-contact img { height: 20px; }
.footer-branding {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  font-size: 0.99rem;
}
.footer-branding img { height: 36px; width: auto; }
footer span { opacity: 0.85; }

/**********************************
          -- MISC CLASSES
***********************************/
.address-block,
.business-hours,
.text-section {
  margin-bottom: 28px;
  background: #fff;
  padding: 18px 18px 16px 18px;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(34,59,110,0.06);
  border: 1px solid #E0E7F6;
}
.text-section { box-shadow: none; border: none; padding: 0; background: transparent; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

/*********************************
    -- COOKIE CONSENT BANNER
**********************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #223B6E;
  color: #fff;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px 10px 18px 10px;
  font-size: 1rem;
  box-shadow: 0 2px 18px rgba(30,198,177,0.15);
  transition: transform 0.4s;
}
.cookie-banner.hide { transform: translateY(120%); pointer-events: none; opacity: 0.8; }
.cookie-banner-message { max-width: 500px; }
.cookie-btn {
  background: #1EC6B1;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 9px 22px;
  margin-left: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(30,198,177,0.10);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.10s;
  margin-bottom: 0;
}
.cookie-btn.settings-btn { background: #F4F6FB; color: #223B6E; border: 1.2px solid #1EC6B1; }
.cookie-btn.settings-btn:hover { background: #1EC6B1; color: #fff; border-color: #1EC6B1; }
.cookie-btn.reject-btn { background: #fff; color: #223B6E; border: 1.2px solid #1EC6B1; }
.cookie-btn.reject-btn:hover { background: #1EC6B1; color: #fff; }

/*********** Cookie Preferences Modal **********/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,59,110, 0.37);
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: #fff;
  color: #223B6E;
  border-radius: 18px;
  padding: 38px 26px 24px 26px;
  max-width: 410px;
  min-width: 288px;
  box-shadow: 0 8px 32px rgba(30,198,177,0.11);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
}
.cookie-modal h2 { font-size: 1.42rem; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; margin-bottom: 13px; }
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.cookie-modal input[type="checkbox"] {
  width: 24px; height: 24px; accent-color: #1EC6B1;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #223B6E;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close:hover { color: #1EC6B1; }

/************************************
         --- RESPONSIVE RULES ---
************************************/
@media (max-width: 1200px) {
  .container { max-width: 94vw; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
    
  }
  .feature-grid, .employer-feature-grid, .industry-list, .team-profiles, .service-categories {
    gap: 18px;
  }
  .testimonial-slider { gap: 18px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }

  .feature-grid,
  .employer-feature-grid,
  .industry-list,
  .team-profiles,
  .testimonial-slider,
  .service-categories {
    flex-direction: column;
    gap: 20px;
    min-width: 0;
  }
  .content-grid, .case-study-snippets {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .feature-grid > div, .industry-list > div, .service-categories > article {
    max-width: 100%; min-width: 0;
  }
  .footer-menu { gap: 16px; flex-wrap: wrap; }
  .client-logos { gap: 13px; flex-wrap: wrap; }
  .text-image-section { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .container { padding: 0 10px; }
  .content-wrapper, .card, .card-container { padding: 0; }
  .testimonial-card, .feature-grid > div, .service-categories > article, .industry-list > div, .case-study {
    padding: 18px 9px;
  }
  h1, .h1 { font-size: 1.65rem; }
  h2, .h2 { font-size: 1.18rem; }
  h3, .h3 { font-size: 1.07rem; }
  .cta-button, .cookie-btn { font-size: 1rem; padding: 9px 16px; }
}

/* Utility margin helpers */
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mt-4 { margin-top: 32px; }

/***************************************
  -- MISCELLANEOUS/GEOMETRIC DECORATIONS
****************************************/
/* Geometric accents for headings */
h1::before, h2::before, h3::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 4px;
  background: #1EC6B1;
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
h1:first-child::before, h2:first-child::before, h3:first-child::before { margin-right: 16px; }

/*******************************************
          -- MICRO-INTERACTIONS
********************************************/
.cta-button, .cookie-btn { transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.13s; }
.card, .feature-grid > div, .testimonial-card { transition: box-shadow 0.16s, border 0.14s; }
.card:hover, .feature-grid > div:hover, .testimonial-card:hover { box-shadow: 0 8px 32px rgba(30,198,177,0.10); border-color: #1EC6B1; }
input, textarea, select {
  transition: border-color 0.15s;
}

/********************************************
          -- VISITOR/ACCESSIBILITY
*********************************************/
:focus-visible { outline: 2px solid #1EC6B1; outline-offset: 2px; }

/********************************************
    --- CLASS-BASED SPACING MANDATES ---
********************************************/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/***** END STYLE.CSS FILE FOR PRISMGLINT HORIZON GEOMETRIC_STRUCTURED THEME *****/
