/*==========================================================================
 * The CK Group — Custom CSS
 * Styles for components not covered by the BuildGo theme stylesheet.
==========================================================================*/

/* -----------------------------------------------------------------------
 * Blog / Insights Meta Badge
----------------------------------------------------------------------- */
.blog__standard-item-content-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.ck-meta-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 14px 4px;
  border-radius: 4px;
  background: var(--primary-color-1);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: 0.3s;
}
.ck-meta-category i {
  color: #fff;
  font-size: 12px;
}
.ck-meta-category:hover {
  background: var(--heading-color);
  color: #fff;
}
.ck-meta-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-color);
}
.ck-meta-date i {
  color: var(--primary-color-1);
}

/* -----------------------------------------------------------------------
 * Alert Banners
----------------------------------------------------------------------- */
.ck-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.ck-alert i {
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}
.ck-alert p {
  margin: 4px 0 0;
  font-size: 15px;
}
.ck-alert--success {
  background: #e6f9f0;
  border-left: 4px solid #1db954;
  color: #0e5c2e;
}
.ck-alert--success i {
  color: #1db954;
}
.ck-alert--error {
  background: #fef0f0;
  border-left: 4px solid #e53e3e;
  color: #7b1a1a;
}
.ck-alert--error i {
  color: #e53e3e;
}

/* -----------------------------------------------------------------------
 * Drag-Drop Upload Zone
----------------------------------------------------------------------- */
.ck-upload-zone {
  border: 2px dashed var(--border-color-1);
  border-radius: 8px;
  transition:
    border-color 0.3s,
    background 0.3s;
  overflow: hidden;
}
.ck-upload-zone.drag-over {
  border-color: var(--primary-color-1);
  background: rgba(0, 204, 255, 0.04);
}
.ck-upload-zone-inner {
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
}
.ck-upload-zone-inner i {
  font-size: 32px;
  color: var(--primary-color-1);
  display: block;
  margin-bottom: 10px;
}
.ck-upload-zone-inner p {
  margin: 0 0 4px;
  font-size: 15px;
}
.ck-upload-zone-inner span {
  font-size: 13px;
  color: var(--text-color);
}
.ck-upload-list {
  list-style: none;
  padding: 0 16px;
  margin: 0;
}
.ck-upload-list li {
  padding: 7px 10px;
  border-top: 1px solid var(--border-color-1);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ck-upload-list li i {
  color: var(--primary-color-1);
}

/* -----------------------------------------------------------------------
 * Case Study Filter Tabs
----------------------------------------------------------------------- */
.ck-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
}
.ck-filter-row .ck-filter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading-color);
  margin-right: 4px;
  white-space: nowrap;
}
.ck-card-meta {
  font-size: 13px;
  color: var(--text-color);
  margin: 6px 0 0;
}
.ck-card-meta i {
  color: var(--primary-color-1);
  margin-right: 3px;
}

/* -----------------------------------------------------------------------
 * Case Study Project Facts Badge Row
----------------------------------------------------------------------- */
.ck-project-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0 35px;
}
.ck-fact-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--color-2);
  border: 1px solid var(--border-color-1);
  font-size: 14px;
}
.ck-fact-badge i {
  color: var(--primary-color-1);
  font-size: 15px;
}
.ck-fact-badge strong {
  display: block;
  font-size: 12px;
  color: var(--text-color);
  font-weight: 500;
}
.ck-fact-badge span {
  display: block;
  font-weight: 700;
  color: var(--text-heading-color);
}

/* -----------------------------------------------------------------------
 * Before / After Image Compare
----------------------------------------------------------------------- */
.ck-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}
.ck-before-after-item {
  position: relative;
}
.ck-before-after-item img {
  width: 100%;
  display: block;
  border-radius: 6px;
}
.ck-before-after-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ck-before-after-label--before {
  background: #333;
  color: #fff;
}
.ck-before-after-label--after {
  background: var(--primary-color-1);
  color: #fff;
}
@media (max-width: 576px) {
  .ck-before-after {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------------------------
 * Compliance Download Cards
----------------------------------------------------------------------- */
.ck-download-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color-1);
  background: var(--color-2);
  margin-bottom: 15px;
  transition: border-color 0.3s;
}
.ck-download-card:hover {
  border-color: var(--primary-color-1);
}
.ck-download-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 204, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ck-download-card-icon i {
  font-size: 20px;
  color: var(--primary-color-1);
}
.ck-download-card-body {
  flex: 1;
}
.ck-download-card-body h6 {
  margin: 0 0 3px;
  font-size: 15px;
}
.ck-download-card-body span {
  font-size: 13px;
  color: var(--text-color);
}
.ck-download-card-action {
  flex-shrink: 0;
}
.ck-download-card-action a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  background: var(--primary-color-1);
  color: #fff;
  transition: 0.3s;
}
.ck-download-card-action a:hover {
  background: var(--heading-color);
  color: #fff;
}

/* -----------------------------------------------------------------------
 * PAS91 Compliance Badge
----------------------------------------------------------------------- */
.ck-pas91-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(0, 204, 255, 0.1);
  border: 1px solid var(--primary-color-1);
  color: var(--primary-color-1);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* -----------------------------------------------------------------------
 * Capability Statement Print
----------------------------------------------------------------------- */
@media print {
  .breadcrumb__area,
  .header__area,
  .footer__area,
  .all__sidebar,
  .scroll-up,
  .theme-loader,
  .build_button,
  .more_btn,
  .ck-no-print {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
  }
  .services__details-content {
    width: 100% !important;
    max-width: 100% !important;
  }
  .col-lg-8 {
    width: 100% !important;
    flex: none !important;
    max-width: 100% !important;
  }
  a {
    color: #000 !important;
    text-decoration: none !important;
  }
  h2,
  h3,
  h4,
  h5 {
    color: #000 !important;
  }
  .section-padding {
    padding: 20pt 0 !important;
  }
  .ck-print-header {
    display: flex !important;
    align-items: center;
    gap: 15pt;
    padding-bottom: 10pt;
    border-bottom: 2pt solid #00ccff;
    margin-bottom: 20pt;
  }
}
.ck-print-header {
  display: none;
}

/* -----------------------------------------------------------------------
 * Services / Sectors Overview Page Card (with description text)
 * Used on services.php listing & sectors.php listing where a <p> is needed.
 * (Class not present in BuildGo theme CSS — defined here)
----------------------------------------------------------------------- */
.services__page-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color-1);
  border-radius: 8px;
  padding: 40px 30px;
  transition:
    background 0.5s,
    box-shadow 0.3s;
}
.services__page-item > i {
  font-size: 52px;
  color: var(--text-heading-color);
  display: inline-block;
  transition: color 0.4s;
}
.services__page-item h4 {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 22px;
}
.services__page-item h4 a {
  color: var(--text-heading-color);
  transition: color 0.3s;
}
.services__page-item p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.services__page-item .more_btn {
  margin-top: 0;
}
.services__page-item:hover {
  background: var(--color-1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}
.services__page-item:hover > i,
.services__page-item:hover .more_btn {
  color: var(--primary-color-1);
}
.services__page-item:hover h4,
.services__page-item:hover h4 a,
.services__page-item:hover p {
  color: var(--text-white);
}

/* -----------------------------------------------------------------------
 * CTA Area — all text white (background-image overlay pages)
----------------------------------------------------------------------- */
.cta__area h2,
.cta__area p,
.cta__area .subtitle {
  color: var(--text-white);
}

/* -----------------------------------------------------------------------
 * Layout Utilities
----------------------------------------------------------------------- */
.p-30 {
  padding: 30px;
}
.pt-0 {
  padding-top: 0;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-35 {
  margin-top: 35px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-10 {
  margin-top: 10px;
}
.pl-50 {
  padding-left: 50px;
}
.gap-15 {
  gap: 15px;
}
.jc-center {
  justify-content: center;
}
.jc-end {
  justify-content: flex-end;
}
.al-center {
  align-items: center;
}
.al-end {
  align-items: flex-end;
}

@media (max-width: 1199px) {
  .xl-mr-0 {
    margin-right: 0 !important;
  }
  .xl-ml-0 {
    margin-left: 0 !important;
  }
  .xl-pl-10 {
    padding-left: 10px !important;
  }
}
@media (max-width: 991px) {
  .mt-30-lg {
    margin-top: 30px;
  }
  .lg-mb-40 {
    margin-bottom: 40px;
  }
  .lg-mb-25 {
    margin-bottom: 25px;
  }
  .lg-mb-20 {
    margin-bottom: 20px;
  }
  .lg-t-center {
    text-align: center !important;
  }
  .lg-jc-center {
    justify-content: center !important;
  }
  .lg-ml-0 {
    margin-left: 0 !important;
  }
  .ml-40,
  .ml-30 {
    margin-left: 0;
  }
  .pl-50 {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .md-t-center {
    text-align: center !important;
  }
  .md-mb-10 {
    margin-bottom: 10px;
  }
  .md-mb-25 {
    margin-bottom: 25px;
  }
  .sm-mt-30 {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .sm-mt-30 {
    margin-top: 30px;
  }
}

/* -----------------------------------------------------------------------
 * Services Details — layout + content cards
----------------------------------------------------------------------- */
.services__details-content {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .services__details-content {
    padding-left: 0;
  }
}

.services__details-content-image img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 35px;
}

/* Feature card: icon + h5 + p */
.services__details-content-item {
  background: var(--color-2);
  border: 1px solid var(--border-color-1);
  border-radius: 10px;
  padding: 30px 25px;
  height: 100%;
  transition: 0.35s;
}
.services__details-content-item > i {
  font-size: 54px;
  color: var(--primary-color-1);
  display: block;
  margin-bottom: 18px;
  transition: 0.3s;
}
.services__details-content-item h5 {
  margin-bottom: 10px;
}
.services__details-content-item > i + h5 {
  /* icon then heading */
}
.services__details-content-item:hover {
  background: var(--color-1);
  border-color: var(--color-1);
  color: #fff;
}
.services__details-content-item:hover h5,
.services__details-content-item:hover p {
  color: var(--text-white);
}
.services__details-content-item:hover > i {
  color: var(--primary-color-1);
}

/* FAQ inside service detail pages */
.services__details-content-faq h4 {
  margin-bottom: 25px;
}

/* -----------------------------------------------------------------------
 * Sidebar: Help CTA box  (.all__sidebar-item-help)
----------------------------------------------------------------------- */
.all__sidebar-item.all__sidebar-item-help {
  background: var(--primary-color-1);
  border-color: var(--primary-color-1);
}
.all__sidebar-item.all__sidebar-item-help > h4 {
  color: var(--color-1);
  border-bottom-color: rgba(0, 0, 0, 0.15);
}
.all__sidebar-item.all__sidebar-item-help > h4::before {
  background: var(--color-1);
}
.all__sidebar-item.all__sidebar-item-help p {
  color: var(--color-7);
  margin-bottom: 0;
}
.all__sidebar-item.all__sidebar-item-help .build_button {
  background: var(--color-1);
  color: var(--text-white);
  margin-top: 20px;
}
.all__sidebar-item.all__sidebar-item-help .build_button i {
  background: var(--color-5);
  color: var(--text-white);
}
.all__sidebar-item.all__sidebar-item-help .build_button:hover {
  color: var(--color-1);
}

/* -----------------------------------------------------------------------
 * Sidebar: Download link box  (.all__sidebar-item-download)
----------------------------------------------------------------------- */
.all__sidebar-item.all__sidebar-item-download {
  background: var(--color-1);
  border-color: var(--color-1);
}
.all__sidebar-item.all__sidebar-item-download a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--text-white);
  transition: 0.3s;
  line-height: 1.4;
}
.all__sidebar-item.all__sidebar-item-download a:hover {
  color: var(--primary-color-1);
}
.all__sidebar-item.all__sidebar-item-download a i,
.all__sidebar-item.all__sidebar-item-download a .fas,
.all__sidebar-item.all__sidebar-item-download a .fa-file-pdf {
  font-size: 32px;
  color: var(--primary-color-1);
  min-width: 32px;
}

/* Active state in category sidebar list */
.all__sidebar-item-category ul li a strong {
  color: var(--color-1);
}
.all__sidebar-item-category ul li a:has(strong) {
  background: var(--primary-color-1);
}

/* -----------------------------------------------------------------------
 * Contact page — left info items
----------------------------------------------------------------------- */
.contact__area-left-info {
  margin-top: 40px;
}
.contact__area-left-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}
.contact__area-left-info-item:last-child {
  margin-bottom: 0;
}
.contact__area-left-info-item > i {
  font-size: 28px;
  color: var(--primary-color-1);
  margin-top: 4px;
  min-width: 28px;
  text-align: center;
}
.contact__area-left-info-item h5 {
  margin-bottom: 4px;
}
.contact__area-left-info-item p,
.contact__area-left-info-item a {
  font-size: 16px;
  line-height: 26px;
}
.contact__area-left-info-item a:hover {
  color: var(--primary-color-1);
}

/* Map iframe wrapper */
.contact__area-left-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color-1);
}
.contact__area-left-map iframe {
  display: block;
  width: 100%;
}

/* -----------------------------------------------------------------------
 * Contact page — right form wrapper
----------------------------------------------------------------------- */
.contact__area-right {
  background: var(--color-2);
  padding: 50px 60px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .contact__area-right {
    padding: 30px 25px;
  }
}

/* -----------------------------------------------------------------------
 * Form field wrapper (.input_field)
----------------------------------------------------------------------- */
.input_field {
  margin-bottom: 20px;
}
.input_field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-heading-color);
  font-family: var(--heading-font);
  line-height: 1.4;
}
.input_field select {
  width: 100%;
  height: 60px;
  padding: 0 15px;
  border-radius: 6px;
  background: var(--bg-white);
  border: 1px solid var(--border-color-1);
  color: var(--body-color);
  font-size: 16px;
  font-family: var(--body-font);
  appearance: auto;
  cursor: pointer;
}
.input_field select:focus {
  outline: none;
  border-color: var(--primary-color-1);
  box-shadow: none;
}
.input_field input[type="file"] {
  padding: 15px;
  cursor: pointer;
  font-size: 15px;
  height: auto;
}
/* Checkbox variant */
.input_field.input_check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}
.input_field.input_check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  margin-top: 5px;
  accent-color: var(--primary-color-1);
  border: 1px solid var(--border-color-1);
}
.input_field.input_check label {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  color: var(--body-color);
  font-family: var(--body-font);
}

/* -----------------------------------------------------------------------
 * Blog Items (.blog__item) — mirrors .blog__one-item
----------------------------------------------------------------------- */
.blog__item {
  border: 1px solid var(--border-color-2);
  border-top: 0;
  border-radius: 10px;
  margin-bottom: 25px;
  overflow: hidden;
  background: var(--bg-white);
  transition: 0.3s;
}
.blog__item-image {
  display: block;
  overflow: hidden;
}
.blog__item-image a {
  display: block;
  overflow: hidden;
}
.blog__item-image img {
  border-radius: 10px 10px 0 0;
  height: 270px;
  object-fit: cover;
  width: 100%;
  transition: 0.4s;
}
.blog__item-image a:hover img {
  transform: scale(1.06);
}
.blog__item-content {
  padding: 20px 30px 30px;
}
.blog__item-content h4 a:hover {
  color: var(--primary-color-1);
}
.blog__item-content p {
  margin-top: 10px;
}
.blog__item-content .meta {
  display: inline-block;
  padding: 0 20px;
  margin-bottom: 15px;
  border-radius: 50px;
  border: 1px solid var(--border-color-2);
}
.blog__item-content .meta ul {
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 5px;
}
.blog__item-content .meta ul li {
  list-style: none;
  font-size: 14px;
  line-height: 24px;
}
.blog__item-content .meta ul li i {
  margin-right: 6px;
  color: var(--primary-color-1);
}
.blog__item-content .read_more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--text-heading-color);
  margin-top: 15px;
  transition: 0.3s;
}
.blog__item-content .read_more i {
  font-size: 20px;
  color: var(--primary-color-1);
  transition: 0.3s;
}
.blog__item-content .read_more:hover {
  color: var(--primary-color-1);
}
.blog__item-content .read_more:hover i {
  transform: rotate(45deg);
}

/* -----------------------------------------------------------------------
 * Blog Details page (.blog__details)
----------------------------------------------------------------------- */
.blog__details-content-image img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}
.blog__details-content h2 {
  margin-bottom: 20px;
}
.blog__details-content h4 {
  margin-top: 35px;
  margin-bottom: 15px;
}
.blog__details-content ul {
  padding-left: 20px;
}
.blog__details-content ul li {
  margin-bottom: 6px;
}
.blog__details-content .meta {
  display: inline-block;
  padding: 0 20px;
  margin-bottom: 20px;
  border-radius: 50px;
  border: 1px solid var(--border-color-2);
}
.blog__details-content .meta ul {
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 5px;
}
.blog__details-content .meta ul li {
  list-style: none;
  font-size: 14px;
  line-height: 24px;
}
.blog__details-content .meta ul li i {
  margin-right: 6px;
  color: var(--primary-color-1);
}
.blog__details-content-cta {
  border-radius: 10px;
  padding: 30px;
  background: var(--color-2) !important;
}
.blog__details-content-cta .build_button {
  display: inline-flex;
  margin-top: 20px;
}

/* -----------------------------------------------------------------------
 * Gallery / Case Studies — isotope grid
----------------------------------------------------------------------- */
.gallery__area-filter ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gallery__area-filter ul li {
  cursor: pointer;
  padding: 8px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--heading-font);
  border: 1px solid var(--border-color-1);
  background: var(--bg-white);
  color: var(--text-heading-color);
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  user-select: none;
}
.gallery__area-filter ul li.active,
.gallery__area-filter ul li:hover {
  background: var(--primary-color-1);
  border-color: var(--primary-color-1);
}
.gallery__area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.gallery__area-item {
  width: calc(33.333% - 17px);
}
@media (max-width: 991px) {
  .gallery__area-item {
    width: calc(50% - 13px);
  }
}
@media (max-width: 575px) {
  .gallery__area-item {
    width: 100%;
  }
}

/* four__columns used on case-studies.php wraps portfolio__four-item */
.four__columns .portfolio__four-item img {
  width: 100%;
}

/* -----------------------------------------------------------------------
 * Portfolio area (homepage case studies section)
----------------------------------------------------------------------- */
.portfolio__area {
  overflow: hidden;
}
.portfolio__four-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.portfolio__four-item-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.portfolio__four-item-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.4s;
  display: block;
}
.portfolio__four-item:hover .portfolio__four-item-image img {
  transform: scale(1.06);
  filter: brightness(0.5);
}
.portfolio__four-item-image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  opacity: 0;
  transition: 0.3s;
}
.portfolio__four-item:hover .portfolio__four-item-image-overlay {
  opacity: 1;
}
.portfolio__four-item-image-overlay a i {
  width: 54px;
  height: 54px;
  background: var(--primary-color-1);
  color: var(--color-1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: 0.3s;
}
.portfolio__four-item-image-overlay a i:hover {
  transform: rotate(45deg);
  background: var(--color-1);
  color: var(--text-white);
}
.portfolio__four-item-content {
  padding: 18px 5px 5px;
}
.portfolio__four-item-content span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--primary-color-1);
  font-family: var(--heading-font);
  display: block;
  margin-bottom: 5px;
}
.portfolio__four-item-content h4 a:hover,
.portfolio__four-item-content h5 a:hover {
  color: var(--primary-color-1);
}

/* -----------------------------------------------------------------------
 * Breadcrumb fix — text visibility
----------------------------------------------------------------------- */
.breadcrumb__area-content h2,
.breadcrumb__area-content ul,
.breadcrumb__area-content ul li,
.breadcrumb__area-content ul li a {
  color: var(--text-white);
}
.breadcrumb__area-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}
.breadcrumb__area-content ul li i {
  font-size: 12px;
  color: var(--primary-color-1);
}
.breadcrumb__area-content ul li a:hover {
  color: var(--primary-color-1);
}

/* -----------------------------------------------------------------------
 * Scroll slider (text marquee) — ensure proper overflow
----------------------------------------------------------------------- */
.scroll__slider {
  overflow: hidden;
}
.text-slide {
  overflow: hidden;
  white-space: nowrap;
}

/* -----------------------------------------------------------------------
 * Misc helper — inline-block lists inside compliance / about pages
----------------------------------------------------------------------- */
.services__details-content ul {
  padding-left: 20px;
}
.services__details-content ul li {
  margin-bottom: 6px;
}

/* -----------------------------------------------------------------------
 * Footer extra columns responsive
----------------------------------------------------------------------- */
@media (max-width: 991px) {
  .footer__one-widget {
    margin-bottom: 30px;
  }
}

/* -----------------------------------------------------------------------
 * Banner One — Swiper Hero Slider
----------------------------------------------------------------------- */
.banner__one {
  position: relative;
  overflow: hidden;
  background: #111;
}

/* Swiper wrapper fills viewport */
.banner__one .banner_hero_swiper {
  width: 100%;
  height: 100vh;
  min-height: 580px;
  max-height: 100vh;
}

/* Each slide is full-height flex container */
.banner__hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Background layer (video or img) */
.banner__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.banner__hero-bg video,
.banner__hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Dark overlay */
.banner__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.58);
}

/* Content sits above overlay */
.banner__hero-slide .container {
  position: relative;
  z-index: 2;
  max-width: 1460px;
  padding-top: 100px;
}

/* Tag / label */
.banner__hero-tag {
  display: inline-block;
  background: var(--primary-color-1);
  color: #111;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 26px;
}

/* Main heading */
.banner__hero-title {
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 24px;
  font-family: var(--heading-font);
  font-weight: 700;
}

/* Subtitle paragraph */
.banner__hero-text {
  font-size: 17px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin-bottom: 40px;
}

/* CTA row */
.banner__hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Ghost secondary link */
.banner__hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  transition: 0.3s;
}
.banner__hero-link:hover {
  color: var(--primary-color-1);
  border-bottom-color: var(--primary-color-1);
}

/* Slide-in animation for active slide content */
.swiper-slide-active .banner__hero-tag {
  animation: heroBounceIn 0.6s 0.1s both;
}
.swiper-slide-active .banner__hero-title {
  animation: heroSlideUp 0.7s 0.2s both;
}
.swiper-slide-active .banner__hero-text {
  animation: heroSlideUp 0.7s 0.35s both;
}
.swiper-slide-active .banner__hero-cta {
  animation: heroSlideUp 0.7s 0.5s both;
}
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroBounceIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Prev / Next arrows */
.banner-swiper-prev,
.banner-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}
.banner-swiper-prev {
  left: 30px;
}
.banner-swiper-next {
  right: 30px;
}
.banner-swiper-prev:hover,
.banner-swiper-next:hover {
  background: var(--primary-color-1);
  border-color: var(--primary-color-1);
  color: #111;
}
.banner-swiper-prev.swiper-button-disabled,
.banner-swiper-next.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Pagination dots */
.banner-swiper-pagination {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.banner-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}
.banner-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color-1);
  width: 28px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 991px) {
  .banner-swiper-prev {
    left: 15px;
  }
  .banner-swiper-next {
    right: 15px;
  }
  .banner__hero-title {
    font-size: clamp(30px, 6vw, 52px);
  }
  .banner__hero-text {
    font-size: 16px;
  }
  .banner__hero-slide .container {
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  .banner-swiper-prev,
  .banner-swiper-next {
    display: none;
  }
  .banner__hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.header__area-menubar-left-logo a img {
  filter: brightness(0) invert(1);
}
ul,
ol {
  list-style: none !important;
}

/* -----------------------------------------------------------------------
 * Mobile Menu — body scroll lock
----------------------------------------------------------------------- */
body.menu-open {
  overflow: hidden;
}

/* -----------------------------------------------------------------------
 * Certification Counter Area — white text on background-image
----------------------------------------------------------------------- */
.certification__area h2,
.certification__area p {
  color: var(--text-white);
}

/* -----------------------------------------------------------------------
 * Sticky Header — white nav links on dark background
----------------------------------------------------------------------- */
.header__sticky-sticky-menu .header__area-menubar-center-menu ul li a,
.header__sticky-sticky-menu .header__area-menubar-center-menu ul li.menu-item-has-children > a::before {
  color: var(--text-white);
}
.header__sticky-sticky-menu .header__area-menubar-center-menu ul li a:hover {
  color: var(--primary-color-1);
}
