/* company-pro-style.css - cleaned + navbar & dropdown fixes (Bootstrap 5 + WP menus)
   Consolidated: removed duplicates, ensured right-aligned menu and reliable dropdown visibility
*/

/* ------------------------------
   Theme variables (keep existing)
   ------------------------------ */
:root {
  --company-pro-primary: #0d6efd;
  --company-pro-secondary: #6c757d;
  --company-pro-heading: #222;
  --company-pro-text: #666;
}

/* ------------------------------
   Accessibility & focus
   ------------------------------ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  z-index: 9999;
  background: #fff;
  padding: 8px;
  border-radius: 4px;
}

/* Focus outlines */
a:focus,
button:focus,
.btn:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

a:hover {
  text-decoration: underline;
}

/* Accessibility: Links in content must be underlined */
.entry-content a,
.widget-text a,
.comment-content a {
  text-decoration: underline;
}

.entry-content a:hover,
.widget-text a:hover,
.comment-content a:hover {
  text-decoration: none;
}

/* Screen-reader helpers (single definition) */
.screen-reader-text,
.screen-reader-text a {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 10px;
  padding: 8px;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 100000;
}

/* ------------------------------
   Base / layout
   ------------------------------ */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--company-pro-text);
  line-height: 1.6;
  overflow-x: hidden;
}

p,
.testimonial-text,
ul li {
  /* font-size: 16px; removed to allow body font-size inheritance */
}

/* .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
} */
ul li {
  line-height: 2rem;
}

ul,
ol {
  padding-left: 1rem !important;
}

ul.list-unstyled li a {
  text-decoration: none;
  color: var(--company-pro-text);
}

ul.list-unstyled li a:hover {
  text-decoration: underline;
  color: var(--company-pro-primary);
}

/* ------------------------------
   Header / Navbar (Bootstrap 5 compatible)
   ------------------------------ */

/* Keep the header visible and allow dropdowns to overflow */
.site-header {
  position: relative;
  z-index: 100;
  overflow: visible !important;
}

/* small navbar adjustments */
.site-header .navbar {
  padding: 1rem 0;
}

/* Brand logo sizing */
.navbar-brand img {
  /* max-height: 40px; */
  width: auto;
  display: inline-block;
}

/* Make sure WP fallback menus and normal menus don't show bullets and are horizontal by default */
.navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none !important;
  margin-left: auto !important;
  /* ensure right alignment */
}

/* Individual top-level menu items */
.navbar .navbar-nav>li,
.navbar .navbar-nav>.menu-item {
  list-style: none !important;
  position: relative;
  /* allow absolutely-positioned dropdowns */
}

/* Nav link default look */
.navbar-nav .nav-link,
.navbar-nav a {
  display: inline-flex;
  align-items: center;
  padding: .45rem .85rem;
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: background .12s ease, color .12s ease, transform .06s;
  white-space: nowrap;
}

/* Hover / focus for links */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  background: rgba(109, 40, 217, 0.06);
  color: #2b0a8a;
  text-decoration: none;
  transform: translateY(-1px);
}

/* CTA button styling (keeps your red CTA look from screenshot) */
/* .site-header .btn.btn-primary {
  background: #e44d44;
  border-color: rgba(0,0,0,0.05);
  box-shadow: none;
  padding: .45rem .95rem;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
} */

/* Keep the mobile collapse layout vertical (Bootstrap's mobile behaviour preserved) */
@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column !important;
    gap: 0;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding-left: 1rem;
  }
}

/* ------------------------------
   Dropdown & sub-menu behavior
   Targets both Bootstrap's .dropdown-menu and WP's default .sub-menu
   ------------------------------ */

/* Basic dropdown menu visual defaults */
.site-header .navbar .dropdown-menu,
.site-header .navbar .sub-menu {
  position: absolute;
  top: 33px;
  left: 0;
  min-width: 200px;
  margin-top: .4rem;
  padding: .4rem 0;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .12s ease, transform .12s ease, visibility .12s;
  z-index: 1200;
  display: none;
  /* default hidden; show on .show or hover */
  padding-left: 0px !important;
}

/* Minimum width preserved */
.site-header .dropdown-menu {
  min-width: 10rem;
}

/* Dropdown item styles */
.site-header .navbar .dropdown-menu .dropdown-item,
.site-header .navbar .sub-menu li a {
  display: block;
  padding: .45rem .85rem;
  color: #374151;
  white-space: nowrap;
  text-decoration: none;
  font-size: 14px;
}

.site-header .navbar .dropdown-menu .dropdown-item:hover,
.site-header .navbar .sub-menu li a:hover {
  background: rgba(109, 40, 217, 0.05);
  color: #2b0a8a;
}

/* Reveal rules: when Bootstrap/JS adds .show OR when hovering on desktop (walker might not add .show) */
.site-header .navbar .dropdown.show>.dropdown-menu,
.site-header .navbar .menu-item-has-children.show>.sub-menu,
.site-header .navbar .menu-item-has-children:focus-within>.sub-menu,
.site-header .navbar .menu-item-has-children:hover>.sub-menu,
.site-header .navbar .menu-item-has-children:hover>.dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: block !important;
}

/* Nested sub-menus Ã¢â‚¬â€ show to the right */
.site-header .navbar .sub-menu .sub-menu,
.site-header .navbar .dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .35rem;
}

/* Provide a right-aligned submenu helper */
.site-header .dropdown-menu.dropdown-menu-end,
.site-header .sub-menu.dropdown-menu-end {
  right: 0;
  left: auto;
}

/* Caret for dropdown-toggle (if present) */
.site-header .dropdown-toggle::after {
  margin-left: .35rem;
  vertical-align: baseline;
}

/* Ensure nested children lists have no bullets */
.site-header .navbar ul.children {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* WP fallback markup like wp_page_menu: remove bullets */
.site-header .navbar .wp_page_menu .menu,
.site-header .navbar .wp_page_menu .menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ------------------------------
   Navbar toggler icon (keeps a visible toggler)
   ------------------------------ */
.navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler-icon {
  background-image: none;
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.6)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") center center no-repeat;
}

.card-img.wp-post-image {
  display: block;
  /* remove inline inline-block quirks */
  width: 100%;
  /* fill the card width */
  height: auto;
  /* preserve aspect ratio */
  object-fit: cover;
  /* only affects when explicit height is set */
  max-width: 100%;
}


/* ------------------------------
   Tiny helpers & fallbacks to avoid header clipping
   ------------------------------ */
.site-header .navbar .dropdown,
.site-header .navbar .menu-item-has-children {
  position: relative;
}

/* ------------------------------
   Rest of original theme styles (kept, unchanged logic)
   ------------------------------ */
/* Buttons */
.btn-primary {
  background-color: var(--company-pro-primary) !important;
  border-color: var(--company-pro-primary) !important;
  color: #fff;
}

.btn-secondary {
  background-color: var(--company-pro-secondary) !important;
  border-color: var(--company-pro-secondary) !important;
  color: #fff;
}

.btn {
  padding: .65rem 1.6rem;
  border-radius: 100px;
  /* pill */
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  border: 2px solid transparent;
}

/* Featured logo scroller */
#featured-logos .d-flex {
  gap: 2rem;
  padding: 1rem 0;
}

.logo-item {
  flex: 0 0 auto;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .95;
}

.logo-item img {
  max-width: 130px;
  max-height: 75px;
  object-fit: contain;
}

/* Cards */
.card {
  border: 1px solid #eee;
  border-radius: .5rem;
  padding: 0;
  margin-bottom: 1.25rem;
}

.card .card-body {
  padding: 1rem;
}

/* Testimonials */
#testimonials .card-body {
  min-height: 160px;
}

/* Team circle image */
.card-img-top img.rounded-circle {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

/* Responsiveness tweaks */
@media (max-width:767px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .logo-item {
    width: 120px;
  }
}

/* Featured Logos Marquee */
.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  animation: marquee 40s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  width: 200px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Footer headings color */
.site-footer .widget-title,
.site-footer h4.widget-title,
.site-footer h4 {
  color: var(--company-pro-heading);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.site-footer .widget-title a,
.site-footer h4.widget-title a,
.site-footer h4 a {
  color: var(--company-pro-heading);
  text-decoration: none;
}

.site-footer p a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.site-footer p a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer ul li {
  margin-bottom: 1rem;
  font-size: 18px;
}

.site-footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.site-footer ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer span {
  color: #fff;
}

.site-footer .bi {
  color: #fff;
}

.menu-footer-links-container ul li {
  display: inline-block;
  /* margin: 0 12px; */
}

/* -------------------------------------------------------------
   Global headings use the theme heading color variable
   ------------------------------------------------------------- */

/* Ensure the variable exists Ã¢â‚¬â€ adjust if your variable name differs */
:root {
  /* this is a safe fallback; your customizer likely writes this elsewhere */
  --company-pro-heading: var(--company-pro-heading, #222222);
}

/* Global headings and common title elements */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
.entry-title,
.page-title,
.site-title,
.post-title,
.widget-title,
.widget .widget-title,
.entry-header .entry-title,
.blog .entry-title,
.archive .entry-title {
  color: var(--company-pro-heading) !important;
}

/* Links inside headings inherit the heading color */
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.entry-title a,
.page-title a,
.post-title a,
.widget-title a {
  color: inherit !important;
  text-decoration: none;
}

/* If you use a separate site-brand/title in header */
.site-branding .site-title,
.site-branding .site-title a {
  color: var(--company-pro-heading) !important;
}

/* Minor: headings inside widgets (already footer targeted earlier) */
.widget-title,
.widget .widget-title {
  color: var(--company-pro-heading) !important;
}

/* If you prefer *not* to use !important, remove it Ã¢â‚¬â€ but keep it if other rules override */

/* WP Job Manager: hide filters & RSS only inside the homepage jobs section */
#jobs .job_filters,
#jobs .job_listing_filters,
#jobs .job-manager-advanced-search,
#jobs .job_listings .job-manager-legend,
#jobs .job_listings .job-manager-feed,
#jobs .job_listings .job_listings_nav,
#jobs .job_listings .jobs-rss,
#jobs .job_listings a.jobs_feed {
  display: none !important;
}

#jobs .job_listings {
  margin-top: 0;
  padding-top: 0;
}

.job_listing {
  padding: 25px;
}

.job_filters {
  background-color: color-mix(in srgb, var(--company-pro-primary) 10%, transparent) !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.job_filters .job_types {
  font-size: 1em;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px;
  right: 8px;
  width: 22px;
}

.job-manager-message {
  display: none !important;
}

/* -------------------------
   Contact Form 7 Ã¢â‚¬â€ minimal nice styles
   Paste into company-pro-style.css or Customize Ã¢â€ â€™ Additional CSS
   ------------------------- */
/* Contact Form 7 basic reset */
.wpcf7 form {
  margin: 0;
}

/* Form fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 15px;
  margin-top: 8px;
  transition: border-color 0.2s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: #0073aa;
  /* WP blue or your theme primary */
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(0, 115, 170, 0.25);
}

/* Labels */
.wpcf7-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

/* Submit button */
.wpcf7 input[type="submit"] {
  background: var(--company-pro-primary) !important;
  /* match theme primary */
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  width: -webkit-fill-available;
}

.wpcf7 input[type="submit"]:hover {
  background: #005f8d;
  /* darker hover */
}

/* Error & validation */
.wpcf7-not-valid {
  border-color: #dc3545 !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 14px;
}

.wpcf7 form .wpcf7-validation-errors {
  background: #fff3f3;
  border: 1px solid #dc3545;
  color: #a94442;
}

.wpcf7 form .wpcf7-mail-sent-ok {
  background: #f0fff4;
  border: 1px solid #28a745;
  color: #155724;
}



/* Form card container (wrap your CF7 shortcode in an element with .company-pro-contact-form if needed) */
.company-pro-contact-form .wpcf7-form {
  font-family: inherit;
  color: inherit;
}

/* Inputs, selects, textarea */
.company-pro-contact-form .wpcf7-form-control,
.company-pro-contact-form input[type="text"],
.company-pro-contact-form input[type="email"],
.company-pro-contact-form input[type="tel"],
.company-pro-contact-form input[type="url"],
.company-pro-contact-form textarea,
.company-pro-contact-form select {
  width: 100%;
  padding: .85rem .9rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: .5rem;
  background: #fff;
  box-shadow: none;
  transition: border-color .12s ease, box-shadow .12s ease, transform .06s;
  font-size: .95rem;
  color: #1f2937;
  resize: vertical;
  margin-top: 8px;
}

/* Focus state */
.company-pro-contact-form .wpcf7-form-control:focus,
.company-pro-contact-form input[type="text"]:focus,
.company-pro-contact-form textarea:focus {
  outline: none;
  border-color: var(--company-pro-primary);
  box-shadow: none;
  transform: translateY(-1px);
}

/* Two-column helpers (use Bootstrap .row/.col or CF7 markup). These rules assist when you structure fields in columns) */
.company-pro-contact-form .row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.company-pro-contact-form .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  box-sizing: border-box;
}

@media (max-width:767px) {
  .company-pro-contact-form .col-6 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* Labels & small description */
.company-pro-contact-form label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 600;
  color: #fff !important;
  font-size: .92rem;
}

.company-pro-contact-form .wpcf7-form .help-text {
  display: block;
  font-size: .85rem;
  color: #6b7280;
  margin-top: .25rem;
}

/* Submit button */
.company-pro-contact-form .wpcf7-submit,
.company-pro-contact-form input[type="submit"] {
  background: var(--company-pro-primary);
  /* orange CTA */
  border: none;
  color: #fff;
  padding: .6rem 1.05rem;
  border-radius: .5rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .12s ease, opacity .12s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

/* Submit hover/focus */
.company-pro-contact-form .wpcf7-submit:hover,
.company-pro-contact-form .wpcf7-submit:focus {
  transform: translateY(-2px);
  box-shadow: none;
  opacity: .98;
}

/* Make textarea taller */
.company-pro-contact-form textarea {
  min-height: 140px;
}

/* Error & success messages (CF7) */
.company-pro-contact-form .wpcf7-response-output {
  margin-top: .8rem;
  padding: .75rem 1rem;
  border-radius: .5rem;
}

.company-pro-contact-form .wpcf7-validation-errors {
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.12);
  color: #991b1b;
}

.company-pro-contact-form .wpcf7-mail-sent-ok {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.12);
  color: #065f46;
}

/* Small utility to align CTA to right (wrap the button in .form-actions if needed) */
.company-pro-contact-form .form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: .75rem;
}

.wpcf7-textarea {
  max-height: 150px !important;
}




/* End of cleaned company-pro-style.css */
.custom-padding {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.rounded-custom {
  border-radius: 5rem !important;
}

.card {
  border-color: #eee !important;
}

.sub-header h1.entry-title {
  /* text-transform: uppercase; */
  font-size: x-large;
}

.badge-custom {
  display: inline-block;
  padding: 4px 10px;
  font-size: 15px;
  font-weight: 500;
}

.btn {
  padding: .65rem 1.6rem !important;
  border-radius: 100px !important;
  /* enforce pill */
}

.wp-block-page-list {
  list-style-type: none;
  padding: 0;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 5rem !important;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 3rem !important;
}

.rounded-custom {
  border-radius: 15px !important;
}

/* WP JOb Manger CSS */
.type-job_listing {
  background: #fff;
  border: 1px solid #eee !important;
}

.location {
  font-weight: 500;
  color: #000 !important;
}

.company {
  color: #000 !important;
}

.company_logo {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain;
  top: 20%;
}

.position {
  padding: 0 0 0 60px !important;
}

.footer-about-text p {
  color: #ffffff !important;
}

.card-title {
  font-size: 22px !important;
  font-weight: 600 !important;
}

.lead {
  font-size: 1.25rem !important;
  font-weight: 400 !important;
}

.section-title {
  max-width: 750px;
  margin: 0 auto;
}

.bi-custom {
  background: rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  display: inline-block;
  text-align: center;
  font-size: 24px;
  line-height: 44px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 4px;
}

.input-text,
.postform,
#job_salary_unit {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.2s ease;
}

.job_listings h3 {
  font-size: 1.2rem !important;
}

.job_listings .tagline {
  display: block;
  margin: 0px !important;
}

li.job_listing:last-child {
  border-radius: 20px !important;
}

li.job_listing:first-child {
  border-radius: 20px !important;
}

.job_position_featured a:first-child {
  border-radius: 20px !important;
}


.accordion-button:not(.collapsed) {
  background-color: color-mix(in srgb, var(--company-pro-primary) 10%, transparent) !important;
}

.job_filters .showing_jobs {
  background: #fff;
  border-top: 0px solid #e5e5e5;
  display: none;
  font-size: .83em;
  padding: .5em 1em;
}

.job_filters .showing_jobs a {
  margin: -35px 0 0 0;
}

.showing_jobs {
  height: 20px;
}

.rp4wp-related-job_listing>ul,
ul.job_listings {
  border-top: 0px solid #eee;
}

/* WP Job Manager */

.rp4wp-related-job_listing>ul li.job_listing.job_position_featured a,
.rp4wp-related-job_listing>ul li.no_job_listings_found.job_position_featured a,
ul.job_listings li.job_listing.job_position_featured a,
ul.job_listings li.no_job_listings_found.job_position_featured a {
  background-color: color-mix(in srgb, var(--company-pro-secondary) 10%, transparent) !important;
}

.job-manager-application-wrapper .application .application_button,
.single_job_listing .application .application_button {
  background-color: var(--company-pro-primary) !important;
  border-color: var(--company-pro-primary) !important;
  border-width: 2px !important;
  color: #ffffff;
  border-radius: 4px !important;
}

.button {
  background-color: var(--company-pro-primary) !important;
  border-color: var(--company-pro-primary) !important;
  border-width: 2px !important;
  color: #ffffff;
  border-radius: 4px !important;
  padding: 10px 25px;
  width: 100%;
}

.single-job-listing .job-meta li {
  margin-right: 12px;
}

.single-job-listing .job-company .company-logo img {
  max-width: 120px;
  border-radius: 8px;
}

.job-manager-form {
  padding: 25px;
  border: 3px solid #eee;
  border-radius: .5rem;
  max-width: 960px;
  margin: auto;
}

.alert-info {
  font-size: 15px;
  text-align: center;
  padding: 10px 10px !important;
}

.fieldset-login_required {
  display: none;
}

.job-manager-form fieldset label {
  text-align: right;
  font-weight: 700;
  padding-right: 25px;
}

.job-manager .freelance,
.job-types .freelance,
.job_listing .freelance {
  color: #fff;
  border: 1px solid #9B2226;
  display: inline-block !important;
  padding: 0px 10px;
  border-radius: 100px;
  font-size: 14px;
  background: #9B2226;
  font-weight: 400 !important;
}

.job-manager .part-time,
.job-types .part-time,
.job_listing .part-time {
  color: #fff;
  border: 1px solid oklch(47.3% 0.137 46.201);
  display: inline-block !important;
  padding: 0px 10px;
  border-radius: 100px;
  font-size: 14px;
  background: oklch(47.3% 0.137 46.201);
  font-weight: 400 !important;
}

.job-manager .full-time,
.job-types .full-time,
.job_listing .full-time {
  color: #fff;
  border: 1px solid oklch(43.2% 0.095 166.913);
  display: inline-block !important;
  padding: 0px 10px;
  border-radius: 100px;
  font-size: 14px;
  background: oklch(43.2% 0.095 166.913);
  font-weight: 400 !important;
}

.job-manager .internship,
.job-types .internship,
.job_listing .internship {
  color: #fff;
  border: 1px solid oklch(45.5% 0.188 13.697);
  display: inline-block !important;
  padding: 0px 10px;
  border-radius: 100px;
  font-size: 14px;
  background: oklch(45.5% 0.188 13.697);
  font-weight: 400 !important;
}

.job-manager .temporary,
.job-types .temporary,
.job_listing .temporary {
  color: #fff;
  border: 1px solid oklch(43.2% 0.232 292.759);
  display: inline-block !important;
  padding: 0px 10px;
  border-radius: 100px;
  font-size: 14px;
  background: oklch(43.2% 0.232 292.759);
  font-weight: 400 !important;
}

a.load_more_jobs {
  color: var(--company-pro-secondary) !important;
  text-align: center;
  display: block;
  margin: 20px 0 0 0;
}

.job_types input[type="checkbox"] {
  accent-color: var(--company-pro-primary) !important;
}

/* Target the input inside the div with class search_submit */
.search_submit input {
  width: 100%;
  /* Makes input full width of parent */
  padding: 10px 15px;
  background-color: var(--company-pro-primary) !important;
  /* Adds space inside input */
  border: 1px solid var(--company-pro-primary) !important;
  /* Border color */
  border-radius: 5px;
  /* Rounded corners */
  font-size: 16px;
  /* Font size */
  outline: none;
  /* Removes default outline on focus */
  box-sizing: border-box;
  /* Ensures padding doesn't overflow */
  color: white;
  font-weight: 500 !important;
}

/* Optional: Change border color on focus */
.search_submit input:focus {
  border-color: #1e0a27;
  /* Example focus color */
  box-shadow: 0 0 5px rgba(30, 10, 39, 0.3);
}

/* Apply same styles to inputs inside .search_keywords and .search_location */
.search_keywords input,
.search_location input,
.select2-container--default {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  /* Bootstrap default padding */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  /* Rounded corners like Bootstrap */
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 0px solid #aaa;
  border-radius: 0px;
}

/* Focus state for both inputs */
.search_keywords input:focus,
.search_location input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .25);
}




/* Ensure buttons can have a distinct font */
button,
input[type="button"],
input[type="submit"],
.btn {
  font-family: inherit;
  /* overridden by inline Customizer CSS */
}

/* ===============================
   WordPress Comments Form Styling
   Minimal Bootstrap-like Look
   =============================== */

.comment-respond {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background: #fafafa;
}

.comment-respond h3,
#reply-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.comment-form label {
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease-in-out;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--company-pro-primary) !important;
  outline: none;
}

.comment-form-cookies-consent {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.comment-form input[type="submit"] {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--company-pro-primary) !important;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.comment-form input[type="submit"]:hover {
  background: var(--company-pro-primary) !important;
}

/* Stronger replacement for Bootstrap accordion chevron with +/- */

/* remove default Bootstrap chevron (SVG) and force our own text icon */
.accordion .accordion-button::after,
.accordion-button::after {
  background-image: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;

  /* place the icon on the right same as original chevron */
  position: absolute !important;
  right: 1.1rem !important;
  /* adjust horizontal placement */
  top: 36% !important;
  transform: translateY(-50%) !important;
  display: inline-block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;

  /* visual styling */
  font-size: 30px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #0b2d3b !important;
  /* dark color - change to match your design */
  text-align: center !important;
  z-index: 2 !important;
  content: "+";
  /* default (collapsed) content - safe fallback */
}

/* When collapsed (closed) show plus */
.accordion-button.collapsed::after {
  content: "+" !important;
}

/* When NOT collapsed (open) show minus symbol */
.accordion-button:not(.collapsed)::after {
  content: "\2212" !important;
  /* Unicode minus U+2212 (looks nicer) */
}

/* optional: widen button padding so icon doesn't overlap text */
.accordion-button {
  padding-right: 3rem !important;
  /* ensure space for icon on the right */
}

/* Optional style: change minus/plus color when active (open) */
.accordion-button:not(.collapsed) {
  color: #083147 !important;
  /* heading color when active Ã¢â‚¬â€ change as needed */
}

/* Sidebar Search styling */
.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  padding: 10px;
  background-color: #f4f4f4;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #ddd;
}

/* Search input */
.search-field {
  flex: 1;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.search-field:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* Submit button */
.search-submit {
  padding: 12px 20px;
  font-size: 16px;
  background-color: var(--company-pro-primary) !important;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-submit:hover {
  background-color: #0056b3;
}

.search-submit:active {
  background-color: #003f80;
}

/* Optional: Hide screen-reader-only label text visually */
.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.menu-footer-links-container {
  border-top: none;
}

/* Card hover effect */
.card {
  transition: border-color 0.3s ease;
  overflow: hidden;
  /* ensures image zoom stays inside */
}

.card:hover,
.job_listings li a:hover {
  border-color: var(--company-pro-primary) !important;
  /* highlight border on hover */
  box-shadow: none;
}

/* Smooth zoom on image */
.card img {
  transition: transform 0.5s ease;

}

.card:hover img {
  transform: none;
}

.company-pro-hero {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}

/* Yotube Video Embed Responsive */
.company-video iframe {
  border-radius: 15px;
  /* rounded corners */
  box-shadow: none;
  /* subtle shadow */
}

.menu-footer-links-container ul.menu {
  padding-left: 0px !important;
  margin-bottom: 0px;
}

/* Go to Top Button */
#goTopBtn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  border: 2px solid var(--company-pro-primary) !important;
  /* Recruitment Company Blue */
  color: var(--company-pro-primary) !important;
  border: none;
  outline: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

#goTopBtn span {
  color: var(--company-pro-primary) !important;
}

#goTopBtn span:hover {
  color: #fff !important;
}

#goTopBtn:hover {
  background: var(--company-pro-primary) !important;
  /* Darker blue */
  transform: translateY(-3px);
}

#goTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 3%;
  /* adjust above your scroll-to-top button */
  right: 30px;
  background-color: #0c9383;
  color: #fff !important;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: none;
  box-shadow: none;
  text-decoration: none;
  color: #fff;
}

/* Top Header Section CSS */
.company-pro-top-header {
  /* base layout */
  position: relative;
  z-index: 100;
  padding: 8px 0;
  /* fallback color if variable missing */
  color: var(--hg-top-color, #ffffff) !important;
}

/* Force the chosen font color for all content inside the top header */
.company-pro-top-header,
.company-pro-top-header * {
  color: var(--hg-top-color, #ffffff) !important;
  fill: var(--hg-top-color, #ffffff) !important;
  /* for SVG icons */
}

/* Force links to inherit the color (including hover/active/focus states) */
.company-pro-top-header a {
  color: var(--hg-top-color, #ffffff) !important;
  text-decoration: none !important;
}

.company-pro-top-header a:hover,
.company-pro-top-header a:active,
.company-pro-top-header a:focus {
  color: var(--hg-top-color, #ffffff) !important;
  opacity: .95;
}

/* Ensure icon fonts and SVGs follow the color */
.company-pro-top-header .bi,
.company-pro-top-header svg {
  color: var(--hg-top-color, #ffffff) !important;
  fill: var(--hg-top-color, #ffffff) !important;
}

/* Extra specificity for common link wrappers */
.company-pro-top-header .top-header-left span,
.company-pro-top-header .top-header-left li,
.company-pro-top-header .company-pro-top-socials a {
  color: var(--hg-top-color, #ffffff);
}

.company-pro-top-header .company-pro-top-socials a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  font-size: 0.78rem !important;
  text-decoration: none !important;
  transition: background .2s ease, border-color .2s ease !important;
  margin-right: 6px !important;
}

.company-pro-top-header .company-pro-top-socials a:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

.company-pro-top-header .company-pro-top-socials a:last-child {
  margin-right: 0 !important;
}

.top-header-address,
.top-header-email,
.top-header-phone,
.top-header-right {
  font-size: 14px;
}

/* Override global ul li 18px rule for top header */
.company-pro-top-header li,
.company-pro-top-header li a,
.company-pro-top-header li span,
.company-pro-top-header .top-header-address,
.company-pro-top-header .top-header-email,
.company-pro-top-header .top-header-phone,
.company-pro-top-header .company-pro-top-socials a {
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.bi-top-header {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 28px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  border-radius: 5px;
}

/* RESPONSIVE MEDIA QUERY */
@media (max-width: 991.98px) {

  .g-5,
  .gx-5 {
    --bs-gutter-x: 0rem !important;
  }

  .g-4,
  .gx-4 {
    --bs-gutter-x: 0rem !important;
  }

  .g-3,
  .gx-3 {
    --bs-gutter-x: 0rem !important;
  }

  .navbar-collapse a.btn-primary {
    width: auto !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-top: .5rem !important;
  }

  /* Hide top sub-header on mobile — too cramped */
  .company-pro-top-header {
    display: none !important;
  }

  .navbar-collapse {
    background: #fff;
    border-radius: 7px;
    padding: 0 20px 20px 20px;
    margin-top: 10px;
  }

  .custom-padding {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .hero-buttons a.btn-primary {
    width: -webkit-fill-available !important;
    margin: 0 0px 15px 0 !important;
  }

  .hero-buttons a.btn-outline-secondary {
    width: -webkit-fill-available !important;
    margin-left: 0px !important;
  }

  #why p a.btn-primary {
    width: -webkit-fill-available !important;
  }

  #featured-logos {
    padding: 25px 0 !important
  }

  .logo-item {
    width: auto;
  }

  .logo-item img {
    max-width: 95px;
  }

  .job_listings {
    padding-left: 0px !important;
  }

  ul.job_listings li.job_listing a img.company_logo,
  ul.job_listings li.no_job_listings_found a img.company_logo {
    visibility: visible !important;
  }

  .text-center.mt-5 {
    margin-top: 0 !important;
  }

  #team .g-4,
  .gy-4 {
    --bs-gutter-y: 0rem;
  }

  #blog .g-4,
  .gx-4 {
    --bs-gutter-y: 0rem;
  }

  .g-4 {
    --bs-gutter-y: 0rem !important;
    --bs-gutter-x: 0rem !important;
  }

  #testimonials .d-flex {
    display: block !important;
  }

  #testimonials .d-flex img {
    margin-top: 15px;
  }

  * {
    overflow-wrap: anywhere;
  }

  #why img {
    margin-bottom: 25px;
  }

  #services .mb-5,
  #products .mb-5,
  #projects .mb-5,
  #testimonials .mb-5,
  #team .mb-5,
  #blog .mb-5,
  #faqs .mb-5 {
    margin-bottom: 1rem !important;
  }

  ul.wp-block-page-list,
  ul.footer-contact-list {
    padding-left: 0rem !important;
  }

  .footer-logo a img {
    /* filter: brightness(0) invert(1); */
  }

  .site-footer {
    padding-top: 1rem !important;
  }

  #contact .px-5 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  #contact .py-4 {
    padding-bottom: 0rem !important;
  }

  .company-pro-hero {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }

  .whatsapp-float {
    bottom: 30px;
    left: 30px;
  }

  #goTopBtn {
    bottom: 30px;
  }

  .custom-logo {
    width: 200px !important;
  }

  .cc-yv368[data-full-view=true] .cc-1kr6o .cc-18ov6 {
    bottom: 98px !important;
    right: 35px !important;
  }

  .menu-footer-links-container ul.menu {
    padding-top: 2rem;
    padding-bottom: 7rem;
  }
}

/* ============================================================
   Blog Post: Table Styles (for ChatGPT / pasted content)
   ============================================================ */
.entry-content table,
.single .entry-content table,
article .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  display: table !important;
}

/* Table header */
.entry-content table thead th,
.entry-content table th {
  background-color: var(--company-pro-primary, #6f42c1);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border: none;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

/* Table cells */
.entry-content table td {
  padding: 9px 14px;
  border-bottom: 1px solid #e9ecef;
  border-right: 1px solid #e9ecef;
  vertical-align: middle;
  color: #374151;
  line-height: 1.5;
}

.entry-content table td:last-child {
  border-right: none;
}

/* Striped rows */
.entry-content table tbody tr:nth-child(even) td {
  background-color: #f8f9fc;
}

.entry-content table tbody tr:last-child td {
  border-bottom: none;
}

/* Hover row highlight */
.entry-content table tbody tr:hover td {
  background-color: rgba(111, 66, 193, 0.04);
}

/* First column bold (feature name column) */
.entry-content table td:first-child,
.entry-content table th:first-child {
  font-weight: 600;
}

/* Responsive table wrapper â€” scroll on mobile */
.entry-content .wp-block-table,
.entry-content table {
  overflow-x: auto;
  display: block;
  max-width: 100%;
}

/* Keep thead/tbody/tr as table elements even inside block display */
.entry-content table thead,
.entry-content table tbody,
.entry-content table tfoot,
.entry-content table tr {
  display: table-row-group;
}

.entry-content table tr {
  display: table-row !important;
}

.entry-content table thead {
  display: table-header-group !important;
}

.entry-content table th,
.entry-content table td {
  display: table-cell !important;
}

/* Restore table display for proper rendering */
.entry-content table {
  display: table !important;
}

/* ============================================================
   Blog Post: Emoji / Icon Size Fix â€” Universal
   Covers: li, td, p, headings, blockquote (âœ… âŒ ðŸ”¥ etc.)
   ============================================================ */

/* Target ALL img.emoji anywhere inside post content */
.entry-content img.emoji,
.entry-content img[src*="wp-includes/images/smilies"],
.entry-content img[src*="twemoji"],
.entry-content img[src*="s.w.org"] {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  min-width: unset !important;
  min-height: unset !important;
  vertical-align: -3px !important;
  display: inline !important;
  margin: 0 2px !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

/* Target any small inline img inside td and li
   (ChatGPT pastes these as regular images sometimes) */
.entry-content td img:not(.wp-post-image),
.entry-content li img:not(.wp-post-image) {
  max-width: 20px !important;
  max-height: 20px !important;
  width: auto !important;
  height: auto !important;
  display: inline !important;
  vertical-align: middle !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

/* Heading anchor fix (#at-a-glance shown as plain text) */
.entry-content h1 .heading-anchor,
.entry-content h2 .heading-anchor,
.entry-content h3 .heading-anchor {
  display: none;
}

/* WP Block Table wrapper */
.wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}

.wp-block-table table {
  min-width: 480px;
}

.navbar-brand img {
  /* width: 200px; */
  /* filter: brightness(0) invert(1) !important; */
}

.rp4wp-related-job_listing>ul li.job_listing,
.rp4wp-related-job_listing>ul li.no_job_listings_found,
ul.job_listings li.job_listing,
ul.job_listings li.no_job_listings_found {
  margin: 0 0 8px 0;
  border-radius: 20px;
}


/* ===============================     WooCommerce Archive & Grid Updates     =============================== */
/* Grid container layout fix: remove default floats and use flex/grid */
.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;

}

/* Individual Product Card Styling */
.woocommerce ul.products li.product {
  float: none !important;
  width: calc(33.33% - 14px) !important;
  /* ~3 columns */
  margin: 0 !important;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* very light border like standard cards */
  border-radius: 12px;
  /* Match theme .card radius */
  padding: 20px;
  box-shadow: none;
  /* Bootstrap shadow-sm */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  /* Or center if you prefer */
}

/* Hover effect for cards */
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: none;
  /* shadow-lg on hover */
  border-color: var(--company-pro-primary) !important;

}

/* Responsiveness */
@media (max-width: 991px) {
  .woocommerce ul.products li.product {
    width: calc(50% - 10px) !important;
    /* 2 columns */
  }


}

@media (max-width: 576px) {
  .woocommerce ul.products li.product {
    width: 100% !important;
    /* 1 column */
  }


}

/* Product Image styling */
.woocommerce ul.products li.product a img {
  margin: 0 0 15px 0 !important;
  width: 100%;
  height: 250px;
  /* Fixed height for uniformity */
  object-fit: cover;
  /* Crop to fit */
  border-radius: 8px;
  /* Rounded internal image */
  box-shadow: none !important;
  /* Reset default WC shadow if any */
}

/* Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.3;
  color: #333;
  padding: 0;

}

/* Price */
.woocommerce ul.products li.product .price {
  color: #444;
  /* Darker text */
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px !important;
  display: block;

}

.woocommerce ul.products li.product .price del {
  opacity: 0.6;
  font-weight: 400;
  margin-right: 5px;
  font-size: 0.9em;

}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: var(--company-pro-primary);

}

/* Add to Cart Button - Style as Theme Button */
.woocommerce ul.products li.product .button {
  margin-top: auto;
  /* Push to bottom */
  width: 100%;
  text-align: center;
  background-color: transparent !important;
  /* Outline style initially or fill? Let's match theme primary fill or outline */
  border: 1px solid var(--company-pro-primary) !important;
  color: var(--company-pro-primary) !important;
  border-radius: 5px !important;
  padding: 10px 15px !important;
  font-weight: 500;
  transition: all 0.2s ease-in-out;

}

/* Hover state for button */
.woocommerce ul.products li.product .button:hover {
  background-color: var(--company-pro-primary) !important;
  color: #fff !important;
  text-decoration: none;

}

/* Sale Flash Badge */
.woocommerce span.onsale {
  background-color: #ffd700;
  /* Yellow/Gold pop */
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0px 10px;
  /* pill shape */
  border-radius: 20px;
  top: 10px;
  right: 10px;
  /* Position top-right inside local relative container (li.product is usually relative) */
  left: auto;
  line-height: 25px;
  min-height: auto;
  min-width: auto;
  position: absolute;
  box-shadow: none;

}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
  border: none;

}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;

}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 10px 15px;
  background: #fff;
  color: #333;
  border-radius: 5px;
  font-weight: 600;

}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--company-pro-primary);
  color: #fff;

}

/* Re-apply WooCommerce Button Styles to match Theme Standard (Filled) */
.woocommerce ul.products li.product .button {
  margin-top: auto;
  width: 100%;
  text-align: center;
  background-color: var(--company-pro-primary) !important;
  border: 2px solid var(--company-pro-primary) !important;
  color: #ffffff !important;
  border-radius: 100px !important;
  padding: 10px 15px !important;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-in-out;

}

.woocommerce ul.products li.product .button:hover {
  background-color: transparent !important;
  color: var(--company-pro-primary) !important;
  text-decoration: none;

}

/* Ensure Search & Footer Widgets are hidden if they accidentally pop up in main area due to other plugins */
/* But main fix was removing the sidebar action */
/* Clean up some previous overrides that might conflict with new HTML structure */
.woocommerce ul.products li.product {
  background: transparent !important;
  /* Let card handle bg */
  border: none !important;
  /* Let card handle border */
  box-shadow: none !important;
  /* Let card handle shadow */
  padding: 0 !important;
  /* Let card and column handle padding */
}

/* Ensure the card has the white bg and standard card styling */
.woocommerce ul.products li.product .card {
  background: #fff;
  /* border:  1px solid rgba(0, 0, 0, 0.1);
   */
  /* Optional if shadow-sm is enough */
  transition: transform 0.2s, box-shadow 0.2s;

}

.woocommerce ul.products li.product .card:hover {
  box-shadow: none !important;

}

/* Fix Price spacing inside card */
.woocommerce ul.products li.product .price {
  margin-bottom: 0.5rem !important;
  font-weight: bold;
  color: #333;

}

/* Fix Rating alignment if present */
.star-rating {
  margin: 5px 0;
  font-size: 0.85em;

}

/* Button overrides (ensure it sticks to bottom and looks good) */
.woocommerce ul.products li.product .button {
  margin-top: 0 !important;
  /* Handled by mt-auto container */
}

/* Update WooCommerce Button Text Color from Customizer */
.woocommerce ul.products li.product .button {
  color: var(--company-pro-primary-text, #ffffff) !important;

}



/* Hide standard Add to Cart button and Quantity on Single Product page to show only PayPal */
.single-product .quantity,
.single-product .single_add_to_cart_button {
  display: none !important;
}


/* ------------------------------
   Paragraph & List Typography
   ------------------------------ */
p,
ul li,
ol li {
  font-size: 18px !important;
  font-weight: 500 !important;
}

/* Nav items must not inherit the 18px body list rule */
.navbar-nav li,
.navbar-nav li a,
.navbar-nav .nav-link,
.site-header .navbar-nav>li {
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: normal !important;
}

/* Header CTA button — match nav font size */
.site-header .btn {
  font-size: 15px !important;
}

/* ------------------------------
   Services & Projects — equal card height + uniform image height
   ------------------------------ */
#services .col,
#projects .col {
  display: flex;
}

#services .card,
#projects .card {
  width: 100%;
}

.company-pro-card-img-wrap {
  overflow: hidden;
  border-radius: .375rem;
  height: 220px;
}

.company-pro-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------------------------------
   Testimonial Slider
   ------------------------------ */
.ht-slider-wrap {
  position: relative;
  padding: 0 60px 60px;
}

.ht-slide {
  display: none;
}

.ht-slide.ht-active {
  display: block;
  animation: htFadeIn .5s ease;
}

@keyframes htFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ht-slide-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.company-pro-testi-stars {
  display: flex;
  gap: .3rem;
  justify-content: center;
  font-size: 1.4rem;
  color: #f5a623;
  margin-bottom: 1.2rem;
}

.company-pro-testi-stars .bi-star {
  color: #d1d5db;
}

.ht-quote {
  margin: 0 0 1.5rem;
  border: none;
  padding: 0;
}

.ht-quote p {
  font-size: 1.05rem !important;
  font-style: italic;
  line-height: 1.85;
  color: #374151;
  font-weight: 400 !important;
}

.ht-avatar-ring {
  display: inline-block;
  padding: 3px;
  border-radius: 50%;
  border: 3px solid var(--company-pro-primary, #6f42c1);
  box-shadow: none;
  line-height: 0;
  margin-bottom: .75rem;
}

.ht-avatar-ring img {
  border-radius: 50%;
  display: block;
}

.company-pro-testi-initials {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--company-pro-primary, #6f42c1);
  color: var(--company-pro-primary-text, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.ht-author strong {
  display: block;
  font-size: 1rem;
  color: #111827;
}

.ht-desig {
  font-size: .85rem;
  color: #6b7280;
}

.ht-prev,
.ht-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--company-pro-primary, #6f42c1);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
  z-index: 2;
}

.ht-prev {
  left: 0;
}

.ht-next {
  right: 0;
}

.ht-prev:hover,
.ht-next:hover {
  opacity: .8;
}

.ht-dots {
  text-align: center;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.ht-dot {
  width: 28px;
  height: 5px;
  border-radius: 3px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background .3s, width .3s;
}

.ht-dot.ht-dot-active {
  background: var(--company-pro-primary, #6f42c1);
  width: 38px;
}

/* ── Sub-footer: menu left + social icons right ─────────────────── */
.hg-subfooter-menu ul,
.hg-subfooter-menu .menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem 1.25rem;
  padding: 0;
  margin: 0;
}

.hg-subfooter-menu ul li,
.hg-subfooter-menu .menu li {
  margin: 0;
  padding: 0;
  font-size: .875rem;
}

.hg-subfooter-menu ul li a,
.hg-subfooter-menu .menu li a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: color .2s ease;
  font-size: .875rem;
}

.hg-subfooter-menu ul li a:hover,
.hg-subfooter-menu .menu li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Social icons */
.hg-sf-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.hg-sf-social-icon:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

.hg-sf-social-icon .bi {
  color: inherit;
  line-height: 1;
}

@media (max-width: 575px) {

  .hg-subfooter-menu ul,
  .hg-subfooter-menu .menu {
    justify-content: center;
  }

  .site-footer .d-flex.justify-content-between {
    justify-content: center !important;
  }
}

/* ── Footer Bottom Links: 2-column menu layout ─────────────────── */
.footer-bottom-widget ul,
.footer-bottom-widget .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 2rem;
}

.footer-bottom-widget ul li,
.footer-bottom-widget .menu li {
  display: block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: .6rem;
}

.footer-bottom-widget ul li a,
.footer-bottom-widget .menu li a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s ease;
}

.footer-bottom-widget ul li a:hover,
.footer-bottom-widget .menu li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ── Get in touch: match Info column font size ──────────────────── */
.footer-contact-list li,
.footer-contact-list li a,
.footer-contact-list li span {
  font-size: .9rem !important;
  color: rgba(255, 255, 255, .75) !important;
}

.footer-contact-list li a:hover {
  color: #fff !important;
}

/* ── Footer equal top/bottom padding ───────────────────────────── */
#colophon.site-footer {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

#colophon.site-footer .row>[class*="col-"]>*:last-child {
  margin-bottom: 0 !important;
}

/* ── Get in touch: professional icon style ──────────────────────── */
.hg-contact-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .85);
  flex-shrink: 0;
}

.hg-contact-icon-wrap .bi {
  color: rgba(255, 255, 255, .85);
}


/* =====================================================================
   WORLD-CLASS UI/UX POLISH — Recruitment Company / Recruitment Company Theme
   Corporate-grade design system upgrade
   ===================================================================== */

/* ── Design Tokens ──────────────────────────────────────────────────── */
:root {
  --hg-radius-xs: 6px;
  --hg-radius-sm: 10px;
  --hg-radius: 16px;
  --hg-radius-lg: 24px;
  --hg-radius-pill: 100px;

  --hg-shadow-xs: none;
  --hg-shadow-sm: none;
  --hg-shadow-md: none;
  --hg-shadow-lg: none;
  --hg-shadow-xl: none;

  --hg-ease: cubic-bezier(.4, 0, .2, 1);
  --hg-t: all .22s var(--hg-ease);
  --hg-t-slow: all .4s var(--hg-ease);

  --hg-gradient: linear-gradient(135deg, var(--company-pro-primary) 0%, color-mix(in srgb, var(--company-pro-primary) 65%, #7c3aed) 100%);
  --hg-gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --hg-surface: #f8fafc;
}

/* ── Global Smoothing ───────────────────────────────────────────────── */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #fff;
}

/* ── Badge / Pill Label ─────────────────────────────────────────────── */
.badge-custom {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: color-mix(in srgb, var(--company-pro-primary) 9%, transparent);
  color: var(--company-pro-primary);
  border: 1px solid color-mix(in srgb, var(--company-pro-primary) 22%, transparent);
  border-radius: var(--hg-radius-pill) !important;
  padding: .38rem 1.05rem !important;
  font-size: .73rem !important;
  font-weight: 800 !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  border-width: 0px !important;
}

/* ── Section Title Accent Bar ───────────────────────────────────────── */
.hg-section-heading {
  position: relative;
  letter-spacing: -.028em;
  line-height: 1.15;
}

.hg-section-heading::after {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: var(--hg-gradient);
  border-radius: 2px;
  margin: .9rem auto 0;
}

.text-start .hg-section-heading::after,
.col-md-7 .hg-section-heading::after {
  margin-left: 0;
}

/* ── Cards ──────────────────────────────────────────────────────────── */
.card {
  border-radius: var(--hg-radius) !important;
  border: 1px solid rgba(0, 0, 0, .065) !important;
  box-shadow: var(--hg-shadow-sm) !important;
  transition: var(--hg-t) !important;
  background: #fff !important;
  overflow: hidden;
}

.card:hover {
  box-shadow: none !important;
  transform: none !important;
  border-color: var(--company-pro-primary) !important;
}

.card .card-body {
  padding: 1.4rem !important;
}

/* Uniform card image height */
.company-pro-card-img-wrap {
  height: 210px;
  border-radius: 0.5rem !important;
  overflow: hidden;
}

.company-pro-card-img-wrap img {
  transition: transform .55s var(--hg-ease);
}

.card:hover .company-pro-card-img-wrap img {
  transform: none;
}

/* Card number accent — service/project index */
.hg-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--hg-radius-xs);
  background: var(--hg-gradient);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: .85rem;
  flex-shrink: 0;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  border-radius: var(--hg-radius-pill) !important;
  /* pill shape */
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: .01em;
  padding: .65rem 1.6rem !important;
  transition: var(--hg-t) !important;
  border-width: 2px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .4rem !important;
}

/* Primary — filled pill */
.btn-primary {
  background: var(--company-pro-primary) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px) !important;
  box-shadow: none;
  filter: brightness(1.07);
  color: #fff !important;
}

.btn-primary:active {
  transform: translateY(0) !important;
}

/* Secondary / Outline — white pill with dark border */
.btn-outline-secondary {
  border-color: rgba(15, 23, 42, .25) !important;
  color: #111827 !important;
  background: #fff !important;
}

.btn-outline-secondary:hover {
  background: #f1f5f9 !important;
  border-color: rgba(15, 23, 42, .45) !important;
  color: #000 !important;
  transform: translateY(-2px) !important;
  box-shadow: none;
}

/* Header CTA button — pill style consistent */
.site-header .btn.btn-primary {
  padding: .55rem 1.4rem !important;
  font-size: 14px !important;
}

/* ── Navbar Polish ──────────────────────────────────────────────────── */
.site-header {
  transition: background .3s var(--hg-ease), box-shadow .3s var(--hg-ease);
}

.site-header .navbar {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Sticky / scrolled state — toggled by JS */
.site-header.hg-scrolled {
  background: rgba(255, 255, 255, .92) !important;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: none;
}

/* Active nav link */
.navbar-nav .current-menu-item>.nav-link,
.navbar-nav .current_page_item>.nav-link,
.navbar-nav .current-menu-parent>.nav-link {
  color: var(--company-pro-primary) !important;
  background: color-mix(in srgb, var(--company-pro-primary) 8%, transparent) !important;
}

/* Nav link hover */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  background: rgba(15, 23, 42, .05) !important;
  color: #0f172a !important;
  transform: none !important;
}

/* Dropdown polish */
.site-header .navbar .dropdown-menu,
.site-header .navbar .sub-menu {
  border-radius: var(--hg-radius-sm) !important;
  box-shadow: var(--hg-shadow-lg) !important;
  border: 1px solid rgba(15, 23, 42, .07) !important;
  padding: .5rem !important;
}

.site-header .navbar .dropdown-menu .dropdown-item,
.site-header .navbar .sub-menu li a {
  border-radius: var(--hg-radius-xs) !important;
  padding: .5rem .85rem !important;
  font-size: .875rem;
  font-weight: 500;
  transition: var(--hg-t);
}

.site-header .navbar .dropdown-menu .dropdown-item:hover,
.site-header .navbar .sub-menu li a:hover {
  background: color-mix(in srgb, var(--company-pro-primary) 7%, transparent) !important;
  color: var(--company-pro-primary) !important;
}

/* ── Hero Section ───────────────────────────────────────────────────── */
.company-pro-hero {
  position: relative;
  overflow: hidden;
}

/* Robust Split Video Container (16:9 Aspect Ratio) */
.company-pro-split-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--hg-radius);
  background-color: #000;
}
.company-pro-split-video iframe,
.company-pro-split-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* Decorative radial glow — hidden in full-bg mode */
.company-pro-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55vw;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, color-mix(in srgb, var(--company-pro-primary) 11%, transparent), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hg-hero-fullbg::after {
  display: none;
}

.company-pro-hero .container {
  position: relative;
  z-index: 1;
}

/* ── Full-background hero ── */
.hg-hero-fullbg {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* YouTube iframe covers entire section */
.hg-yt-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hg-yt-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Scale to cover at 16:9 */
  width: 100vw;
  height: 56.25vw;
  /* 100 / 1.7778 */
  min-height: 100%;
  min-width: 177.78vh;
  /* 100 * 1.7778 */
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* Self-hosted video covers full section */
.hg-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Overlay for readability */
.hg-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.55);
  z-index: 1;
}

/* Text / button colours in fullbg mode */
.hg-hero-fullbg .hero-title,
.hg-hero-fullbg .lead,
.hg-hero-fullbg p,
.hg-hero-fullbg .badge-custom {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.hg-hero-fullbg .btn-outline-light {
  border-color: rgba(255, 255, 255, .7) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, .08) !important;
  backdrop-filter: blur(6px);
}

.hg-hero-fullbg .btn-outline-light:hover {
  background: rgba(255, 255, 255, .2) !important;
}

.hero-title {
  line-height: 1.07 !important;
  letter-spacing: -.03em !important;
  font-weight: 900 !important;
}

/* Remove decorative underline bar from hero heading only */
.company-pro-hero .hg-section-heading::after {
  display: none !important;
}

.hero-buttons {
  margin-top: 2rem !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .75rem !important;
  align-items: center !important;
}

.hero-buttons .btn {
  padding: .75rem 1.75rem !important;
}

/* Hero image floating effect (right-col layout) */
.header-image img {
  border-radius: var(--hg-radius-lg) !important;
  box-shadow: var(--hg-shadow-xl) !important;
  animation: hg-float 6s ease-in-out infinite;
}

@keyframes hg-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-image img {
    animation: none;
  }
}

/* ── Sub-header / Inner Page Banner ────────────────────────────────── */
.sub-header {
  /* background: var(--hg-gradient-dark) !important; */
  padding: 2.5rem 3rem !important;
  position: relative;
  overflow: hidden;
}

/* Radial glow and dot grid removed as per user preference for a completely solid background */

.sub-header>.container {
  position: relative;
  z-index: 1;
}

.sub-header h1.entry-title {
  color: #fff !important;
  font-size: 2.25rem !important;
  letter-spacing: -.03em !important;
  margin-bottom: .6rem !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .2);
}

.sub-header .breadcrumb {
  font-size: .82rem;
  opacity: .75;
  color: rgba(255, 255, 255, .9);
}

.sub-header .breadcrumb a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: var(--hg-t);
}

.sub-header .breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.sub-header .breadcrumb-sep {
  color: rgba(255, 255, 255, .4);
}

/* ── Why Section List Items ─────────────────────────────────────────── */
#why .hg-why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  margin-top: 1.75rem;
}

#why .hg-why-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .9rem;
  border-radius: var(--hg-radius-sm);
  border: 1px solid color-mix(in srgb, var(--company-pro-primary) 12%, transparent);
  background: color-mix(in srgb, var(--company-pro-primary) 4%, #fff);
  font-size: .9rem !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  line-height: 1.4;
  transition: var(--hg-t);
}

#why .hg-why-item:hover {
  background: color-mix(in srgb, var(--company-pro-primary) 8%, #fff);
  border-color: color-mix(in srgb, var(--company-pro-primary) 24%, transparent);
  box-shadow: var(--hg-shadow-sm);
}

#why .hg-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hg-gradient);
  color: #fff;
  font-size: .85rem;
  flex-shrink: 0;
}

/* Responsive: single column on mobile */
@media (max-width: 575px) {
  #why .hg-why-list {
    grid-template-columns: 1fr;
  }
}

/* ── Contact Section ────────────────────────────────────────────────── */
#contact .card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* ── Testimonials ───────────────────────────────────────────────────── */
.ht-slider-wrap {
  background: var(--hg-surface);
  border-radius: var(--hg-radius-lg) !important;
  padding: 2.75rem 4.5rem 3.75rem !important;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: var(--hg-shadow-md);
}

.ht-quote {
  position: relative;
  padding-top: 1rem;
}

.ht-quote::before {
  content: '\201C';
  position: absolute;
  top: -.75rem;
  left: -.5rem;
  font-size: 6rem;
  line-height: 1;
  color: color-mix(in srgb, var(--company-pro-primary) 14%, transparent);
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  z-index: 0;
}

.ht-quote p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem !important;
  color: #374151 !important;
  font-style: italic;
  line-height: 1.9;
  font-weight: 400 !important;
}

.ht-prev,
.ht-next {
  border-radius: var(--hg-radius-sm) !important;
  width: 42px !important;
  height: 42px !important;
  box-shadow: var(--hg-shadow-sm);
  transition: var(--hg-t) !important;
}

.ht-prev:hover,
.ht-next:hover {
  transform: none;
  box-shadow: var(--hg-shadow-md) !important;
}

/* ── FAQ Accordion ──────────────────────────────────────────────────── */
.accordion {
  --bs-accordion-border-radius: var(--hg-radius-sm) !important;
}

.accordion-item {
  border-radius: var(--hg-radius-sm) !important;
  overflow: hidden;
  margin-bottom: .5rem !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  box-shadow: var(--hg-shadow-xs);
  transition: var(--hg-t);
}

.accordion-item:hover {
  box-shadow: var(--hg-shadow-sm) !important;
}

.accordion-button {
  font-size: .98rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  padding: 1.1rem 3.5rem 1.1rem 1.35rem !important;
  border-radius: var(--hg-radius-sm) !important;
}

.accordion-button:not(.collapsed) {
  background: color-mix(in srgb, var(--company-pro-primary) 6%, #fff) !important;
  color: var(--company-pro-primary) !important;
}

.accordion-body {
  padding: .9rem 1.35rem 1.25rem !important;
  color: #4b5563;
  font-size: .925rem;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

/* ── Job Listings ───────────────────────────────────────────────────── */
ul.job_listings li.job_listing {
  border-radius: var(--hg-radius) !important;
  box-shadow: var(--hg-shadow-xs) !important;
  transition: var(--hg-t) !important;
  border: 1px solid rgba(0, 0, 0, .07) !important;
  margin-bottom: .6rem !important;
}

ul.job_listings li.job_listing:hover {
  box-shadow: var(--hg-shadow-md) !important;
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--company-pro-primary) 28%, transparent) !important;
}

/* ── Section backgrounds ────────────────────────────────────────────── */
/* Alternate section bg for visual rhythm */
.custom-padding {
  position: relative;
}

/* ── Form Inputs ────────────────────────────────────────────────────── */
.company-pro-contact-form input[type="text"],
.company-pro-contact-form input[type="email"],
.company-pro-contact-form input[type="tel"],
.company-pro-contact-form input[type="url"],
.company-pro-contact-form textarea {
  border-radius: var(--hg-radius-sm) !important;
  padding: .85rem 1rem !important;
  border: 1.5px solid rgba(15, 23, 42, .12) !important;
  background: #fff !important;
  color: #111827 !important;
  font-size: .95rem !important;
  transition: var(--hg-t) !important;
}

.company-pro-contact-form input:focus,
.company-pro-contact-form textarea:focus {
  border-color: var(--company-pro-primary) !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--company-pro-primary) 12%, transparent) !important;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

/* Divider between main footer and sub-footer */
.hg-footer-divider {
  border-color: rgba(255, 255, 255, .1) !important;
  margin: 2rem 0 !important;
}

/* ── Scroll animations (opt-in, respects prefers-reduced-motion) ────── */
@media (prefers-reduced-motion: no-preference) {
  .hg-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s var(--hg-ease), transform .55s var(--hg-ease);
  }

  .hg-fade-up.hg-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hg-fade-up:nth-child(2) {
    transition-delay: .1s;
  }

  .hg-fade-up:nth-child(3) {
    transition-delay: .18s;
  }

  .hg-fade-up:nth-child(4) {
    transition-delay: .26s;
  }

  .hg-fade-up:nth-child(5) {
    transition-delay: .34s;
  }

  .hg-fade-up:nth-child(6) {
    transition-delay: .42s;
  }
}

/* ── Focus Visible (a11y keyboard users) ────────────────────────────── */
*:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--company-pro-primary) 70%, transparent);
  outline-offset: 3px;
  border-radius: 4px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/* ── Scroll-to-top Button ───────────────────────────────────────────── */
#goTopBtn {
  border-radius: var(--hg-radius-sm) !important;
  background: rgba(255, 255, 255, .95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--hg-shadow-md) !important;
  border: 1.5px solid rgba(0, 0, 0, .08) !important;
  transition: var(--hg-t) !important;
}

#goTopBtn:hover {
  background: var(--company-pro-primary) !important;
  border-color: transparent !important;
  box-shadow: var(--hg-shadow-lg) !important;
  transform: translateY(-3px);
}

#goTopBtn:hover span,
#goTopBtn:hover svg {
  color: #fff !important;
  fill: #fff !important;
}

/* ── WhatsApp Float ─────────────────────────────────────────────────── */
.whatsapp-float {
  border-radius: var(--hg-radius-sm) !important;
  box-shadow: var(--hg-shadow-md) !important;
  transition: var(--hg-t) !important;
}

.whatsapp-float:hover {
  box-shadow: var(--hg-shadow-lg) !important;
  transform: translateY(-3px) scale(1.04) !important;
}

/* ── Logo Marquee ───────────────────────────────────────────────────── */
#featured-logos {
  border-top: 1px solid rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.logo-track {
  animation-duration: 50s;
}

.logo-item img {
  filter: grayscale(100%) opacity(.55);
  transition: filter .3s var(--hg-ease);
}

.logo-item img:hover {
  filter: grayscale(0%) opacity(1);
}

/* ── Team Cards ─────────────────────────────────────────────────────── */
.card-img-top img.rounded-circle {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--company-pro-primary) 25%, transparent);
  box-shadow: none;
  transition: var(--hg-t);
}

.card:hover .card-img-top img.rounded-circle {
  border-color: var(--company-pro-primary);
  transform: none;
}

/* ── Cookie Bar ─────────────────────────────────────────────────────── */
#company-pro-cookie-bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.company-pro-cookie-btn {
  border-radius: var(--hg-radius-sm) !important;
  font-size: .875rem !important;
}

/* ── WooCommerce Product Cards ──────────────────────────────────────── */
.woocommerce ul.products li.product .card {
  border-radius: var(--hg-radius) !important;
}

/* ── Typography Refinements ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  letter-spacing: -.025em;
}

.display-3 {
  line-height: 1.08 !important;
}

.lead {
  line-height: 1.75 !important;
}

/* Section description text */
.section-desc {
  color: #4b5563;
  line-height: 1.75;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
}

/* ── Inner page content area ────────────────────────────────────────── */
.site-main .card.card-body {
  border-radius: var(--hg-radius) !important;
  border: 1px solid rgba(0, 0, 0, .065) !important;
  box-shadow: var(--hg-shadow-sm) !important;
  padding: 2.5rem !important;
}

/* ── Responsive polish ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .sub-header {
    padding: 2.5rem 0 2rem !important;
  }

  .sub-header h1.entry-title {
    font-size: 1.75rem !important;
  }

  .ht-slider-wrap {
    padding: 2rem 2rem 3rem !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    justify-content: center;
  }

  #why .hg-why-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .site-main .card.card-body {
    padding: 1.25rem !important;
  }

  .ht-quote::before {
    font-size: 4rem;
  }
}

/* ── End World-Class Polish ─────────────────────────────────────────── */

/* ── Comment Card ────────────────────────────────────────────────────── */
.comment-card {
  border-left: 4px solid var(--company-pro-primary) !important;
  background-color: #f9fafb !important;
}

.comment-card .comments-area {
  padding: 0;
}

/* Comment form heading */
.comment-card #reply-title,
.comment-card .comments-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--company-pro-heading);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid #e5e7eb;
}

/* Comment form fields */
.comment-card .comment-form input[type="text"],
.comment-card .comment-form input[type="email"],
.comment-card .comment-form input[type="url"],
.comment-card .comment-form textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid #d1d5db;
  border-radius: .45rem;
  font-size: .95rem;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  margin-top: 4px;
}

.comment-card .comment-form input[type="text"]:focus,
.comment-card .comment-form input[type="email"]:focus,
.comment-card .comment-form input[type="url"]:focus,
.comment-card .comment-form textarea:focus {
  border-color: var(--company-pro-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

/* Submit button */
.comment-card .comment-form input[type="submit"],
.comment-card #submit {
  background: var(--company-pro-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  padding: .6rem 1.6rem !important;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s ease, transform .1s ease;
}

.comment-card .comment-form input[type="submit"]:hover,
.comment-card #submit:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* Comment list items */
.comment-card .comment-list {
  padding-left: 0 !important;
  list-style: none !important;
}

.comment-card .comment-body {
  padding: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  margin-bottom: 1rem;
}

/* Name + Email — same row via 2-column grid on the form itself */
.comment-card .comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

/* Full-width rows */
.comment-card p.comment-notes,
.comment-card p.comment-form-comment,
.comment-card p.comment-form-url,
.comment-card p.comment-form-cookies-consent,
.comment-card p.form-submit {
  grid-column: 1 / -1;
}

/* Name (col 1) and Email (col 2) sit naturally side by side — no extra rule needed */
.comment-card p.comment-form-author,
.comment-card p.comment-form-email {
  margin-bottom: .75rem;
}

/* Mobile: revert to single column */
@media (max-width: 575.98px) {
  .comment-card .comment-form {
    grid-template-columns: 1fr;
  }

  .comment-card p.comment-form-author,
  .comment-card p.comment-form-email {
    grid-column: 1 / -1;
  }
}

/* ── End Comment Card ────────────────────────────────────────────────── */

/* ── Language Switcher Button ────────────────────────────────────────── */
.company-pro-lang-btn {
  border: 2px solid var(--company-pro-primary) !important;
  border-radius: 100px !important;
  padding: .35rem .85rem !important;
  color: #333 !important;
  background: transparent !important;
  font-size: .88rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: background .15s ease, color .15s ease;
}

.company-pro-lang-btn:hover,
.company-pro-lang-btn:focus {
  background: var(--company-pro-primary) !important;
  color: #fff !important;
}

/* ── End Language Switcher Button ────────────────────────────────────── */
