@charset "UTF-8";
:root {
  --primary-bg: #050020;
  --bs-light: #ffffff;
  --primary-black: #000000;
  --primary-red: #e74c3c;
  --primary-red-hover: #c0392b;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-border-hover: rgba(255, 255, 255, 0.4);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.8);
  --text-dark: #000000;
  --gradient-primary: linear-gradient(180deg, #ffffff, #999999);
  --gradient-brand: linear-gradient(45deg, #e74c3c, #c0392b);
  --gradient-badge: linear-gradient(135deg, #b8a4c9, #dfd5e4, #c9def4);
  --gradient-accent: linear-gradient(25deg, #c9def4 20%, #f5ccd4 50%);
  --gradient-customer: linear-gradient(90deg, #c9def4 20%, #f5ccd4 50%);
  --nav-mobile-bg: rgba(26, 26, 46, 0.95);
  --footer-bg: #1a1a1a;
  --service-btn-active: rgba(48, 97, 176, 1);
  --accent-pink: #f9c8ed;
  --blur-pink: #f4a0ff;
  --shadow-light: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 0.75rem 3rem rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
}

/* Ensure Instrument Sans font is applied globally */
html,
body,
* {
  font-family: "Instrument Sans", Arial, sans-serif !important;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--primary-bg);
  background-attachment: fixed;
  color: var(--bs-light);
  font-family: "Instrument Sans", Arial, sans-serif;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
}

#page {
  flex: 1;
  display: flex;
  flex-direction: column;
}

main,
.site-main,
#main {
  flex: 1;
  overflow: visible;
}

/* Responsive adjustments for body margin */
@media (max-width: 768px) {
  body {
    margin-top: 10rem;
  }
}
@media (max-width: 480px) {
  body {
    margin-top: 9.5rem;
  }
}
h4 {
  color: #e287e4;
  /* purple heading color */
  font-weight: bold;
}

.heading-title {
  background: linear-gradient(90deg, #c9def4 20%, #f5ccd4 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.gradient-font {
  background: var(--gradient-badge);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-button.btn-primary {
  color: #000 !important;
}

.nav-cta .cta-button {
  background: var(--bs-light);
  border: 1px solid var(--glass-border);
  color: var(--primary-black) !important;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mobile-cta .cta-button {
  background: var(--primary-red);
  color: var(--bs-light);
  text-decoration: none;
  padding: 1rem;
  border-radius: 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: none;
  box-shadow: 0 0.25rem 1rem var(--primary-red-hover);
  transition: all 0.3s ease;
}

.mobile-cta .cta-button:hover {
  background: var(--primary-red-hover);
  box-shadow: 0 0.5rem 1.5rem var(--primary-red-hover);
}

.subscribe-btn {
  background: var(--primary-black);
  color: var(--bs-light);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 12px;
  font-weight: 600;
  font-family: "Instrument Sans", Arial, sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
  border-radius: 4px;
}

.subscribe-btn:hover {
  background: #333333;
}

.service-btn {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: var(--bs-light);
  text-decoration: none;
  padding: 0.75rem 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  flex: 1;
  text-align: center;
  width: 100%;
  flex-shrink: 0;
}

.service-btn:hover {
  background: var(--service-btn-active);
  border-color: var(--glass-border-hover);
  color: var(--bs-light);
}

.service-btn:focus,
.service-btn.active {
  background-color: rgba(48, 97, 176, 0.2392156863) !important;
  border-color: var(--glass-border-hover);
  color: var(--bs-light);
  box-shadow: var(--shadow-light), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.contact-submit-btn {
  background: #7c3aed;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.contact-submit-btn:hover {
  background: #6b2fd6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.view-more {
  font-size: 0.75rem;
  text-align: center;
  font-weight: 400;
  color: var(--accent-pink);
  text-decoration: none;
  display: block;
  margin-top: auto;
}

.event-read-more,
.download-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  height: 32px;
  background: #ffffff;
  border-radius: 6px;
  padding: 15px;
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.glass-card {
  -webkit-backdrop-filter: blur(1.25rem);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(1.25rem);
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  position: relative;
  overflow: hidden;
}

.compliance-content-section {
  background: var(--glass-bg);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-height: 365px;
}
.compliance-content-section .card-body {
  position: relative;
  z-index: 2;
  padding: 0;
}
.compliance-content-section .card-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.compliance-content-section .card-title {
  color: var(--bs-light);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}
.compliance-content-section .card-text {
  color: var(--bs-light);
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  flex: 1;
  height: 100%;
}

.contact-card {
  background: #422989;
  background: linear-gradient(44deg, rgb(66, 41, 137) 0%, rgba(252, 165, 254, 0.09) 25%, rgba(252, 165, 254, 0) 78%);
}

/* Foundation Cards Section Styles */
.foundation-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  position: relative;
  overflow: hidden;
  height: 22.5rem;
}

.fun-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  position: relative;
  overflow: hidden;
}

.foundation-card .card-body {
  position: relative;
  z-index: 2;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.foundation-title {
  color: var(--bs-light);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.foundation-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 0;
  flex: 1;
}

.foundation-image-container {
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 240px;
  height: 240px;
  z-index: 1;
  pointer-events: none;
}

.foundation-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transform: scale(1.3);
  position: relative;
  z-index: 2;
}

.reviews-section-pane {
  background: var(--glass-bg);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.25rem;
  padding: 0.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--bs-light);
  margin-bottom: 15px;
  min-height: 340px;
}

.reviews-section-pane .card-header {
  padding: 0.5rem 0 0 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews-section-pane .card-text {
  font-size: 0.875rem;
  line-height: 1.4;
}

.industry-card {
  padding: 24px;
  transition: all 0.3s ease;
  max-height: 330px;
  position: relative !important;
  min-height: 315px;
}

.industry-card:hover {
  background-color: #121f4d;
}

.industry-card-header {
  align-items: flex-start;
  margin-bottom: 1rem;
}

.industry-card-title h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.industry-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.event-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(17.5px);
  border-radius: 20px;
  color: white;
}

@media (max-width: 991px) {
  .reviews-section-pane {
    min-height: 340px;
  }
  .cyb-hero-about {
    min-height: 280px !important;
  }
}
/* Contact Form Styles */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  text-align: left;
}

.contact-form-wrapper h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-align: left;
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

/* Text fields with white 70% opacity background and white 24% opacity border */
.contact-form-input {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(229, 231, 235, 0.24) !important;
  border-radius: 4px;
  color: #fff !important;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
}

.contact-form-input:focus {
  background-color: rgba(255, 255, 255, 0.18) !important;
  border-color: #7c3aed !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
  color: #fff !important;
  outline: none;
}

.contact-form-input::placeholder {
  color: #ffffff !important;
  opacity: 1;
}

/* Textarea specific styling */
textarea.contact-form-input {
  resize: vertical;
  min-height: 120px;
}

.custom-select {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 6px;
  height: 44px;
  background: rgba(249, 250, 251, 0.12);
  border: 1px solid rgba(229, 231, 235, 0.24);
  border-radius: 12px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  position: relative;
}

.filter-select {
  color: var(--bs-light);
  height: 44px;
  width: 276px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
}
.filter-select option {
  color: var(--bs-dark);
}

/* Remove default select styling */
.custom-select select {
  display: none;
}

.custom-select::before {
  display: none;
}

/* Glassmorphism Custom Select Styles */
.glass-select-container {
  position: relative;
  width: 100%;
  min-width: 120px;
  z-index: 10;
}
.glass-select-container.active {
  z-index: 1000;
}

.glass-select-trigger {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 100%;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 30px;
  text-transform: capitalize;
}
.glass-select-trigger::after {
  content: "▾";
  position: absolute;
  right: 12px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.glass-select-container.active .glass-select-trigger::after {
  transform: rotate(180deg);
}

.glass-options-list {
  position: absolute;
  top: calc(100% + 5px);
  left: -16px;
  right: -16px;
  background: rgba(13, 11, 37, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  display: none;
  max-height: 250px;
  overflow-y: auto;
  padding: 8px;
  z-index: 9999;
  min-width: max-content;
}
.glass-options-list::-webkit-scrollbar {
  width: 4px;
}
.glass-options-list:hover::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
  .glass-options-list {
    left: -100px;
  }
}
.glass-option-item {
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 15px;
  text-transform: capitalize;
}
.glass-option-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.glass-option-item.selected {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 600;
}

/* Label styling */
.custom-select label {
  color: #fff;
  opacity: 0.8;
  width: auto;
  min-width: 80px;
  white-space: nowrap;
}

/* Custom Select with Images */
.custom-image-select {
  position: relative;
  min-width: 276px;
  z-index: 100;
  font-family: "Instrument Sans", sans-serif;
}
.custom-image-select .select-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.custom-image-select .select-trigger::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708"/></svg>');
  margin-left: auto;
  font-size: 14px;
  transition: transform 0.3s ease;
  filter: invert(100%);
  margin-top: auto;
}
.custom-image-select .select-trigger.active {
  border-color: rgba(255, 255, 255, 0.5);
}
.custom-image-select .select-trigger.active::after {
  transform: scaleY(-1);
  margin-top: -5px;
}
.custom-image-select .select-trigger img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.custom-image-select .options-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: rgba(13, 11, 37, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: none;
  max-height: 300px;
  overflow-y: auto;
  padding: 5px;
  z-index: 101;
}
.custom-image-select .options-list::-webkit-scrollbar {
  width: 5px;
}
.custom-image-select .options-list::-webkit-scrollbar-track {
  background: transparent;
}
.custom-image-select .options-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.custom-image-select .options-list .option-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 14px;
}
.custom-image-select .options-list .option-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.custom-image-select .options-list .option-item.selected {
  background: rgba(48, 97, 176, 0.3);
}
.custom-image-select .options-list .option-item img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.precision-security-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: var(--gradient-badge);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 8px 16px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  background-color: transparent;
}

.gradient-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: var(--gradient-badge);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 1rem;
  position: relative;
}

.precision-security-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: var(--gradient-badge);
  border-radius: 20px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  mask-composite: add, add;
  mask-composite: exclude !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude !important;
  z-index: -1;
}

.precision-security-badge:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .precision-security-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 480px) {
  .precision-security-badge {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 0.5rem;
  }
}
.timeline-badge {
  background: rgba(244, 160, 255, 0.1215686275);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  color: #F665C1;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 4;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-block;
}

.industry-card-location {
  font-size: 14px;
  font-weight: 500;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  height: 24px;
  gap: 4px;
  background: #d4e3ec;
  border-radius: 6px;
  width: max-content;
}

.event-date-location {
  /* Auto layout */
  display: flex;
  height: 27px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  font-size: 14px;
  gap: 4px;
  width: max-content;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 4px 8px;
}

.country-flag {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 100%;
}

.country-name {
  font-size: 14px;
  color: #fff;
}

.timeline-section {
  position: relative;
  padding: 0.5rem 0;
}

.timeline-section-wrapper .slick-track::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.timeline-item {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.timeline-node {
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
  z-index: 9;
}

.timeline-connector {
  display: none;
}

.timeline-content {
  color: var(--bs-light);
  margin-top: 0;
  padding: 0 0.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.timeline-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.timeline-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 0;
  color: var(--bs-light);
}

@media (max-width: 575.98px) {
  .timeline-line {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .timeline-line {
    display: none;
  }
}
.steps-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bs-light);
}

.steps-section {
  padding: 80px 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.steps-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(0deg, #540059 0%, #f75cff 50%, #fbadff 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.4);
  position: relative;
  z-index: 2;
}

.step-item:last-child .step-connector {
  display: none;
}

.step-content {
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.step-content h3 {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  background: linear-gradient(90.72deg, #f665c1 0.22%, #fa9ed8 98.53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(17.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 16px;
  color: #e91e8c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.step-description {
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.site-header {
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 1400px;
  height: initial;
  z-index: 1000;
  backdrop-filter: blur(1.25rem);
  background-color: rgba(255, 255, 255, 0.0705882353);
}

.nav-container {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  height: 100%;
  width: 100%;
  position: relative;
}

.site-branding {
  justify-self: start;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}

.site-branding .custom-logo-link {
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
}

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

.logo img,
.custom-logo-link img {
  width: 7.5rem !important;
  height: 3.5rem !important;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  height: 100%;
  align-items: center;
}

.nav-menu li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 1rem;
  border-radius: 0.9375rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  border: 1px solid transparent;
  white-space: nowrap;
  height: 100%;
}

.mobilenav-cta {
  min-width: 360px;
  text-align: center;
  margin-top: 52px;
}
.mobilenav-cta .cta-button {
  background-color: #181624;
  color: #FF0064 !important;
  font-weight: 600;
  font-size: 14px;
}

.navbar-nav a,
.nav-menu a,
#nav-menu-wrapper a {
  color: #fff !important;
}

.navbar-nav .current-menu-item > a,
.navbar-nav .current-menu-parent > a,
.navbar-nav .current-menu-ancestor > a,
.navbar-nav .current_page_item > a,
.navbar-nav .current_page_parent > a,
.navbar-nav .current_page_ancestor > a,
.navbar-nav .active > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-parent > a,
.nav-menu .current-menu-ancestor > a,
.nav-menu .current_page_parent > a,
.nav-menu .active > a {
  border-color: #e64467;
  color: #e64467 !important;
  position: relative;
}
.navbar-nav .current-menu-item > a::after,
.navbar-nav .current-menu-parent > a::after,
.navbar-nav .current-menu-ancestor > a::after,
.navbar-nav .current_page_item > a::after,
.navbar-nav .current_page_parent > a::after,
.navbar-nav .current_page_ancestor > a::after,
.navbar-nav .active > a::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current-menu-parent > a::after,
.nav-menu .current-menu-ancestor > a::after,
.nav-menu .current_page_parent > a::after,
.nav-menu .active > a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary-red, #e74c3c);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 990px) {
  .navbar-nav .current-menu-item > a,
  .navbar-nav .current-menu-parent > a,
  .navbar-nav .current-menu-ancestor > a,
  .navbar-nav .current_page_item > a,
  .navbar-nav .current_page_parent > a,
  .navbar-nav .current_page_ancestor > a,
  .navbar-nav .active > a {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-red, #e74c3c);
    padding-left: 1.5rem !important;
  }
  .navbar-nav .current-menu-item > a::after,
  .navbar-nav .current-menu-parent > a::after,
  .navbar-nav .current-menu-ancestor > a::after,
  .navbar-nav .current_page_item > a::after,
  .navbar-nav .current_page_parent > a::after,
  .navbar-nav .current_page_ancestor > a::after,
  .navbar-nav .active > a::after {
    display: none;
  }
}
.has-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.9375rem;
  min-width: 13.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.9375rem);
  transition: all 0.3s ease;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.navbar-nav {
  gap: 1rem;
}

.dropdown-menu a {
  padding: 1rem 1.25rem;
  border-radius: 0;
  display: block;
  border: none;
}

.dropdown-menu li:first-child a {
  border-radius: 0.9375rem 0.9375rem 0 0;
}

.dropdown-menu li:last-child a {
  border-radius: 0 0 0.9375rem 0.9375rem;
}

.dropdown-menu a:hover {
  background: rgba(231, 76, 60, 0.15);
  color: var(--primary-red);
  transform: none;
  box-shadow: none;
}

.nav-cta {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.nav-cta .cta-button {
  background: var(--bs-light);
  border: 1px solid var(--glass-border);
  color: var(--primary-black) !important;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.25rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  justify-self: end;
}

.mobile-menu-toggle span {
  width: 1.5625rem;
  height: 0.1875rem;
  background: var(--bs-light);
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .site-header {
    width: 95%;
    max-width: none;
  }
}
.mobile-cta {
  display: none;
  width: 95%;
  max-width: 1400px;
  position: fixed;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  padding: 0 1.25rem;
}

.mobile-cta .cta-button {
  background: var(--primary-red);
  color: var(--bs-light);
  text-decoration: none;
  padding: 1rem;
  border-radius: 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: none;
  box-shadow: 0 0.25rem 1rem var(--primary-red-hover);
  transition: all 0.3s ease;
}

.mobile-cta .cta-button:hover {
  background: var(--primary-red-hover);
  box-shadow: 0 0.5rem 1.5rem var(--primary-red-hover);
}

@media (max-width: 990px) {
  .site-header {
    width: 95%;
    height: auto;
    min-height: 4.375rem;
    border-radius: 1.25rem;
    top: 0.625rem;
    background: var(--glass-bg);
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    border: 1px solid var(--glass-border);
  }
  .nav-container {
    display: flex;
    justify-content: space-between;
    padding: 0 1.25rem;
    flex-wrap: wrap;
  }
  .nav-menu-wrapper {
    display: none;
    position: static;
    transform: none;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    border: 1px solid var(--glass-border);
    border-radius: 0 0 1.25rem 1.25rem;
    margin-top: 0.625rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
    justify-self: stretch;
  }
  .nav-menu {
    flex-direction: column;
    gap: 0;
    padding: 1.25rem;
    height: auto;
  }
  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: auto;
  }
  .nav-menu li:last-child {
    border-bottom: none;
  }
  .nav-menu a {
    padding: 0.9375rem 0;
    justify-content: space-between;
    border-radius: 0;
    border: none;
    height: auto;
    color: rgba(255, 255, 255, 0.9);
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu-toggle span {
    background: #e74c3c;
  }
  .nav-cta {
    display: none;
  }
  .mobile-cta {
    display: block;
  }
  .nav-menu-wrapper.active {
    display: block;
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.4375rem, -0.375rem);
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--glass-bg);
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-left: 1.25rem;
    margin-top: 0.625rem;
  }
  .dropdown-menu a {
    padding: 0.75rem 0;
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .site-header {
    top: 0.3125rem;
    border-radius: 0.9375rem;
    background: rgba(26, 26, 46, 0.95);
  }
  .nav-container {
    padding: 0 0.9375rem;
  }
  .logo-icon {
    font-size: 1.25rem;
  }
  .cyber,
  .labs {
    font-size: 1rem;
  }
  .mobile-cta {
    top: 5.5rem;
  }
}
.site-header.header-on-light-bg {
  background-color: rgba(255, 255, 255, 0.68);
}
.site-header.header-on-light-bg .navbar-nav a,
.site-header.header-on-light-bg .nav-menu a,
.site-header.header-on-light-bg #nav-menu-wrapper a {
  color: #181624 !important;
}
.site-header.header-on-light-bg .navbar-nav a::after,
.site-header.header-on-light-bg .nav-menu a::after,
.site-header.header-on-light-bg #nav-menu-wrapper a::after {
  background: var(--primary-red);
}
.site-header.header-on-light-bg .navbar-nav .current-menu-item > a,
.site-header.header-on-light-bg .navbar-nav .current-menu-parent > a,
.site-header.header-on-light-bg .navbar-nav .current-menu-ancestor > a,
.site-header.header-on-light-bg .navbar-nav .current_page_item > a,
.site-header.header-on-light-bg .navbar-nav .current_page_parent > a,
.site-header.header-on-light-bg .navbar-nav .current_page_ancestor > a,
.site-header.header-on-light-bg .navbar-nav .active > a,
.site-header.header-on-light-bg .nav-menu .current-menu-item > a,
.site-header.header-on-light-bg .nav-menu .current_page_parent > a,
.site-header.header-on-light-bg .nav-menu .active > a {
  color: var(--primary-red) !important;
}
.site-header.header-on-light-bg .dropdown-arrow {
  color: #181624;
}
.site-header.header-on-light-bg .nav-cta .cta-button {
  background: var(--primary-red);
  color: var(--bs-light) !important;
  border-color: var(--primary-red);
}
.site-header.header-on-light-bg .mobile-menu-toggle span {
  background: #181624;
}
.site-header.header-on-light-bg .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.site-header.header-on-light-bg .dropdown-menu a {
  color: #181624 !important;
}
.site-header.header-on-light-bg .dropdown-menu a:hover {
  background: rgba(231, 76, 60, 0.1);
  color: var(--primary-red) !important;
}

.site-footer {
  background: #1a1a1a;
  color: var(--bs-light);
  font-family: "Instrument Sans", Arial, sans-serif;
  margin-top: 2rem;
  position: relative;
  clear: both;
}

.footer-container {
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  align-items: start;
  min-height: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 3rem;
  justify-content: end;
  justify-items: start;
}

.footer-column {
  min-width: 120px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.footer-map {
  position: absolute;
  left: -2rem;
  z-index: 0;
  max-width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  width: max-content;
}

.footer-logo img {
  height: 2.5rem;
  width: auto;
}

.footer-logo-text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-logo-text .cyber {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-logo-text .labs {
  color: var(--bs-light);
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-tagline {
  font-size: 14px;
  margin-top: -0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  z-index: 10;
  text-align: left;
}

.newsletter-signup {
  z-index: 10;
}

.newsletter-form .input-group {
  display: flex;
  border-radius: 0.5rem;
  overflow: visible;
  max-width: 320px;
  background-color: var(--bs-light);
  gap: 4px;
  padding: 4px;
  margin-top: -0.5rem;
  width: 21rem;
}

.newsletter-form input[type=email] {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: #000000;
  font-size: 12px;
  font-family: "Instrument Sans", Arial, sans-serif;
  outline: none;
  border-radius: 4px;
}

.newsletter-form input[type=email]::placeholder {
  color: #666667;
}

.subscribe-btn {
  background: var(--primary-black);
  color: var(--bs-light);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 12px;
  font-weight: 600;
  font-family: "Instrument Sans", Arial, sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
  border-radius: 4px;
}

.subscribe-btn:hover {
  background: #333333;
}

.footer-column h3 {
  font-size: 12px;
  font-weight: 600;
  color: var(--bs-light);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-menu li a {
  color: var(--bs-light);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.footer-menu li a:hover {
  color: var(--accent-pink);
}

.social-links {
  display: flex;
  z-index: 10;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #999999 !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-red);
  border-color: rgba(231, 76, 60, 0.3);
}

.social-link svg {
  width: 14px;
  height: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 0;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.developer-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.developer-link:hover {
  color: #c0392b;
}

@media (max-width: 992px) {
  .footer-map {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    max-width: 100%;
    right: 0;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem 1.5rem;
    width: 95%;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-content: center;
  }
  .newsletter-form .input-group {
    max-width: 100%;
  }
  .footer-brand {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer-column {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-container {
    padding: 1.5rem 1rem;
    width: 100%;
  }
  .footer-container .custom-logo {
    margin: 0 auto;
  }
  .newsletter-form .input-group {
    flex-direction: column;
    width: 100%;
  }
  .newsletter-form input[type=email] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .subscribe-btn {
    border-radius: 0;
  }
  .footer-links {
    gap: 2rem;
  }
  .footer-map {
    display: none;
  }
  html .formcraft-css .fc-form.fc-form-2 .form-element .form-element-html {
    padding: 0em 1.5em !important;
    padding-left: 0 !important;
    padding-left: inherit !important;
  }
}
/* CYB Hero Section*/
.cyb-hero,
.cyb-hero-about {
  background-image: url("../images/home-slider-bg-pattern.svg") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background: #050020;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8rem;
  min-height: 75vh;
  z-index: -1;
}

.cyb-hero-about {
  min-height: 0vh;
  margin-top: 2rem;
}

.cyb-hero-content {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.cyb-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 3.75rem;
  background: linear-gradient(180deg, #ffffff, #999999);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 100% 100%;
}

.home-hero-content h1 {
  background: unset;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: inherit;
}
.home-hero-content h1 .text-mask {
  color: #e64467;
}

.cyb-hero p {
  font-size: 1;
  line-height: 1.75rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

@media (min-width: 1441px) and (max-width: 1920px) {
  .cyb-hero {
    min-height: 83vh;
  }
  .cyb-hero-about {
    min-height: 30vh;
  }
}
@media (max-width: 1280px) {
  .cyb-hero {
    min-height: 40vh;
  }
  .navbar-nav {
    gap: 0rem;
    font-size: 14px;
  }
  .cetificate-image-wrapper img {
    max-height: 90px !important;
  }
}
@media (max-width: 1280px) and (max-height: 720px) {
  .hero-image .lock-icon-img {
    top: -50px;
    max-width: 344px !important;
  }
  .cyb-hero {
    min-height: 79vh;
  }
  .navbar-nav {
    gap: 0.6rem;
  }
}
@media (max-width: 1024px) and (max-height: 1366px) {
  .cyb-hero {
    min-height: 48vh;
  }
  .cetificate-image-wrapper img {
    max-height: 90px !important;
  }
}
@media (max-width: 1024px) and (max-height: 768px) {
  .hero-image .lock-icon-img {
    top: -50px;
    max-width: 344px !important;
  }
  .cyb-hero {
    min-height: 79vh;
  }
  .navbar-nav {
    gap: 0rem;
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .client-success-metrics-section {
    width: 25% !important;
  }
  .client-success-metrics-section:nth-child(even)::before {
    visibility: hidden;
  }
  .client-success-metrics-section:first-child::after,
  .client-success-metrics-section:nth-child(2)::after {
    visibility: hidden;
  }
}
@media (max-width: 768px) {
  .cyb-hero,
  .cyb-hero-about {
    margin-top: 0rem;
  }
  .client-success-metrics-section:nth-child(even)::before {
    visibility: visible;
  }
  .client-success-metrics-section:first-child::after,
  .client-success-metrics-section:nth-child(2)::after {
    visibility: visible;
  }
}
@media (max-width: 575.98px) {
  .cyb-hero h1 {
    font-size: 2.25rem;
  }
  .cyb-hero h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .cyb-hero-about {
    margin-top: 0rem;
    min-height: 30vh;
  }
}
.cyb-hero-content h1 {
  margin-top: 0.5rem;
}

.home-hero-content h1 {
  font-size: 4.1rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .cyb-hero, .cyb-hero-about {
    min-height: 590px;
  }
  .home-hero-content h1 {
    font-size: 3rem;
    line-height: 1;
  }
}
@media (max-width: 768px) {
  .cyb-hero, .cyb-hero-about {
    min-height: 650px;
  }
  .cyb-hero-content h1 {
    margin-top: 0.25rem;
  }
  .client-success-metrics-section {
    width: 50% !important;
    height: auto;
  }
}
@media (max-width: 480px) {
  .cyb-hero-content h1 {
    margin-top: 0.25rem;
    line-height: 1.2;
  }
}
.hero-image {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  z-index: 1;
  height: auto;
  margin-top: 3rem;
}
.hero-image .lock-icon-img {
  top: -50px;
  max-width: 400px;
}

@media (max-width: 768px) {
  .cyb-hero {
    padding: 3rem 0 0;
    overflow: visible;
  }
  .hero-image {
    top: 20rem;
  }
  .hero-image .lock-icon-img {
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .cyb-hero {
    min-height: 70vh;
    overflow: visible;
  }
  .cyb-hero-content {
    padding: 0 1rem;
  }
  .hero-image {
    top: 30rem;
    overflow: visible;
  }
  .hero-image .lock-icon-img {
    top: -30px;
    max-width: 170px !important;
  }
  .hero-img {
    max-height: none;
    min-height: 250px;
  }
  .client-success-metrics h3 {
    font-size: 1.2rem;
    font-weight: 600;
  }
}
@media (max-width: 376px) {
  .cyb-hero {
    padding: 0 0 0 0;
    min-height: 82vh;
    overflow: visible;
  }
  .client-success-metrics h3 {
    font-size: 1.2rem;
    font-weight: 600;
  }
}
@media (max-width: 320px) {
  .cyb-hero {
    padding: 2rem 0 0;
    min-height: 95vh;
    overflow: visible;
  }
  .client-success-metrics h3 {
    font-size: 1.2rem;
    font-weight: 600;
  }
}
.hero-sub-image {
  position: absolute;
  top: 12rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  height: auto;
  z-index: -1;
  object-fit: contain;
  pointer-events: none;
  overflow: hidden;
}

.hero-img-sub {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-sub-about-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Client Success Section */
.client-success-headings {
  margin-bottom: 3rem;
}

.client-success-section {
  color: var(--bs-light);
  padding: 1rem;
  position: relative;
  margin-top: 2rem;
}

.client-success-metrics h2 {
  font-size: 2.5rem;
  font-weight: 600;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.client-success-content p {
  font-size: 0.875rem;
  color: var(--bs-light);
}

.client-success-metrics h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.client-success-metrics {
  margin-top: 2rem;
}

.client-success-metrics-section {
  width: 16.5rem;
  height: auto;
}

.client-successs-headings h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bs-light);
}

/* Credentials Section */
.credentials-section {
  color: var(--bs-light);
  text-align: center;
  position: relative;
}
.credentials-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--bs-light);
}
.credentials-section p {
  font-size: 1rem;
  margin-bottom: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.credentials-list {
  background: var(--bs-light);
  margin: 1rem 0 0;
}

.credentials-list li {
  margin: 0;
  padding: 0;
}

.customers-img {
  width: auto;
  height: 125px;
  max-width: 350px;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: brightness(0.9);
  padding: 0 10px !important;
}

.customers-img:hover {
  transform: scale(1.1);
  filter: brightness(1);
}

@media (min-width: 1200px) and (max-width: 1920px) {
  .credentials-list .slick-track .logo-item {
    margin: 10px auto !important;
  }
}
@media (max-width: 991.98px) {
  .industry-card {
    min-height: 275px;
  }
  .compliance-content-section {
    min-height: 300px;
  }
  .services-content h2 {
    margin-bottom: auto;
  }
  #servicesAccordion .accordion-button {
    padding: 1.5rem 1.25rem !important;
  }
  #servicesAccordion .accordion-button {
    background-color: rgba(175, 197, 233, 0.2509803922) !important;
    margin: 5px;
    width: 98.35%;
  }
  .services-section {
    margin-bottom: unset;
  }
  #servicesAccordion .accordion-item {
    background: linear-gradient(44deg, rgb(66, 41, 137) 0%, rgba(252, 165, 254, 0.09) 25%, rgba(252, 165, 254, 0) 78%) !important;
  }
  .client-success-wrapper {
    position: relative;
  }
  .client-success-wrapper .client-success-metrics-section:nth-child(even)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: rgba(39, 80, 144, 0.4);
  }
  .client-success-wrapper .client-success-metrics-section:first-child::after,
  .client-success-wrapper .client-success-metrics-section:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 53%;
    right: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(39, 80, 144, 0.4);
  }
  .cetificate-image-wrapper img {
    max-height: 70px !important;
  }
}
@media (max-width: 768px) {
  .credentials-section {
    padding: 3rem 1.5rem;
  }
  .credentials-content h2 {
    font-size: 2rem;
  }
  .credentials-list {
    gap: 1.5rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  .customers-img {
    height: 7.5rem;
    max-width: fit-content;
    width: auto;
    object-fit: contain;
    padding: 5px !important;
    margin: auto;
  }
}
@media (max-width: 480px) {
  .credentials-section {
    padding: 2rem 1rem;
  }
  .credentials-content h2 {
    font-size: 1.75rem;
  }
  .credentials-content p {
    font-size: 1rem;
  }
  .credentials-list {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .customers-img {
    height: 7.5rem;
    max-width: fit-content;
    width: auto;
    object-fit: contain;
    padding: 5px !important;
    margin: auto;
  }
  #chartdiv {
    width: 100%;
    height: 300px;
    touch-action: pan-y !important;
    pointer-events: none;
  }
  #servicesAccordion .accordion-button {
    width: 97.25%;
  }
  .client-success-metrics h3 {
    font-size: 1.2rem;
    font-weight: 600;
  }
}
/* CTA Box */
.cta-box-container {
  margin-top: 50px;
  margin-bottom: 30px;
}

.cta-box {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(0deg, rgba(1, 1, 16, 0) -100%, rgba(20, 6, 46, 0) -37.83%, #422989 11.27%, #a951d2 57.3%, #df84e1 82.29%, #fca5fe 100%);
  border-radius: 20px;
}

@media (max-width: 575.98px) {
  .cta-box-container {
    margin-top: 0px;
  }
}
.cta-box .content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  max-width: 500px;
}

.cta-box .avatars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-box .avatars img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-right: -5px;
  outline: 1px solid white;
}

.cta-box .avatars img:nth-child(2) {
  z-index: 2;
  width: 50px;
  height: 50px;
  outline: 2px solid white;
}

.cta-box .cta-button {
  background-color: white;
  border: none;
}

/* Why Choose Us */
.choose-us-section,
.why-chose-us-section {
  padding: 0 15px;
}

.choose-us-content h2,
.why-chose-us-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bs-light);
}

.solution-wrapper {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(230, 68, 103, 0.3294117647), inset 0px 0px 1px #ffffff;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  align-content: center;
}
.solution-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  width: 80%;
  height: 5px;
  background: #e64467;
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.solution-wrapper:hover {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  background-color: #e64467;
  box-shadow: 0px 0px 10px rgba(230, 68, 103, 0.3294117647), inset 0px 0px 1px #ffffff;
}
.solution-wrapper h3 {
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.solution-wrapper p {
  font-size: 0.75rem;
  color: var(--bs-light);
}

.certificate-item-wrapper {
  background-color: var(--bs-light);
}
.certificate-item-wrapper .certificate-item-img {
  max-height: 60px;
}
.certificate-item-wrapper .certificate-item-text {
  color: var(--bs-dark);
  font-size: 11px;
}

.cetificate-image-wrapper img {
  max-height: 120px;
}
.cetificate-image-wrapper.bg-cert {
  background: var(--bs-light);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
}

.customer-review-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.customer-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  object-fit: cover;
}

.customer-review-name {
  font-size: 1.25rem;
  font-weight: 600;
  background: linear-gradient(90deg, #c9def4 20%, #f5ccd4 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.customer-review-rating {
  text-align: start;
}

.customer-review-designation {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--bs-light);
}

.customer-review-name,
.customer-review-designation {
  margin-bottom: 0;
  margin-top: 0;
}

.quotations {
  width: 3rem;
  height: auto;
  display: block;
  margin-left: 0;
  align-self: flex-start;
}

.stars {
  height: 15px;
}

.card-ellipse {
  position: absolute;
  right: -4rem;
  bottom: -2rem;
  width: 12rem;
  height: auto;
  opacity: 0.24;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  background: var(--blur-pink);
}

.reviews-section {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.reviews-section .slick-track {
  display: flex !important;
  padding: 10px 0;
}
.reviews-section .slick-slide {
  height: inherit !important; /* Ensure the slide inherits height from the track */
  display: flex !important;
  /* Optional: Align content within the slide */
  align-items: center;
  justify-content: center;
}
.reviews-section {
  /* If you have wrapper divs inside the slide (which Slick often adds), add this: */
}
.reviews-section .slick-slide > div {
  height: 100%;
  display: flex; /* Also use flex here for content inside the inner div */
  flex-direction: column; /* Optional: stack content vertically if needed */
}

@media (max-width: 768px) {
  .review-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .review-card {
    margin-bottom: 20px;
  }
}
/* Partners Marquee */
.partners-marquee {
  position: relative;
  overflow: hidden;
  max-width: 95vw;
  background: transparent;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  background-color: rgba(31, 8, 47, 0.5882352941);
}

.partners-track {
  display: flex;
  width: fit-content;
  animation: scroll-seamless 30s linear infinite;
}

.partners-list {
  display: flex;
  gap: 3rem;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
}
.partners-list.clone {
  margin-left: 3rem;
}

.partners-list li {
  margin: 0px 15px;
}

.partners-list li img {
  height: 75px;
  width: 175px;
  object-fit: contain;
  filter: grayscale(60%);
  opacity: 0.85;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1803921569);
  padding: 5px;
  border-radius: 6px;
  background-blend-mode: multiply;
  background-color: rgba(255, 255, 255, 0.768627451);
}

.partners-list li img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.25);
}

/* Smooth infinite scroll */
@keyframes scroll-seamless {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Pause on hover */
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

/* Partners Hero */
.partners-hero {
  color: #fff;
  padding: 5rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  margin-bottom: 50px;
}

@media (max-width: 575.98px) {
  .partners-hero {
    padding: 4rem 0 2rem;
  }
}
@media (max-width: 767.98px) {
  .partners-hero {
    padding: 4rem 0 2rem;
  }
  .cetificate-image-wrapper img {
    max-height: 60px;
  }
}
.partners-hero-content {
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.partners-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(180deg, #ffffff, #999999);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 100% 100%;
}

.partners-hero p {
  font-size: 1;
  line-height: 1.75rem;
  max-width: 700px;
  opacity: 0.9;
}

.partners-hero .btn-primary {
  background-color: white;
  color: black;
  border: none;
  font-weight: 500;
}

.partners-hero .hero-sub-image {
  top: -4rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .partners-hero-content h1 {
    font-size: 36px;
  }
}
@media (max-width: 575.98px) {
  .partners-hero-content h1 {
    font-size: 36px;
  }
}
.slick-slide {
  margin-left: 5px;
  margin-right: 5px;
}

.slick-dots {
  position: absolute;
  bottom: -20px;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.slick-dots li {
  margin: 0 5px;
  width: 8px;
  height: 8px;
}

.slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--bs-gray-700);
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background-color: var(--bs-light);
}

.slick-dots li button:hover {
  background-color: var(--bs-light);
}

.slick-prev-chevron,
.slick-next-chevron {
  /* Basic styling */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000; /* Ensure they are above other elements */
  cursor: pointer;
  color: var(--bs-light); /* Example color */
  font-size: 24px; /* Example size */
}

.slick-prev-chevron {
  left: -8px; /* Adjust position */
}

.slick-next-chevron {
  right: -8px; /* Adjust position */
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba(255, 0, 100, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !important;
}

.packages-list-wrapper .package-item {
  background-image: url("../images/package-bg-image.png");
  background-size: inherit;
  background-position: 71% -352px;
  background-repeat: no-repeat;
  background-color: var(--glass-bg);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border-radius: 1.25rem;
  padding: 0.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--bs-light);
  margin-bottom: 15px;
  min-height: 340px;
}
.packages-list-wrapper .package-item .package-title {
  min-height: 75px;
}
.packages-list-wrapper .package-item .package-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  line-height: normal;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.packages-list-wrapper .package-item .package-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.packages-list-wrapper .package-item .package-badge .package-title {
  font-size: 24px;
  font-weight: 600;
}
.packages-list-wrapper .package-item .package-description {
  min-height: 75px;
}
.packages-list-wrapper .package-item .package-description p {
  font-size: 14px !important;
  font-weight: 400;
}
.packages-list-wrapper .package-item .bg-badge {
  background: rgba(230, 68, 103, 0.5098039216);
  color: #fff !important;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 5px !important;
}
.packages-list-wrapper .package-item .bg-badge-retainer {
  background: rgba(164, 124, 243, 0.2823529412);
  color: #fff !important;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 5px !important;
}
.packages-list-wrapper .package-item .bg-badge-assets {
  background: rgba(255, 227, 124, 0.2941176471);
  color: #fff !important;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 5px !important;
}
.packages-list-wrapper .package-item .onetime-price-text {
  font-size: 24px;
  font-weight: 600;
}
.packages-list-wrapper .package-item .retainer-model-price-text {
  font-size: 24px;
  font-weight: 600;
}
.packages-list-wrapper .package-item .assets-based-price-text {
  font-size: 24px;
}
.packages-list-wrapper .package-item .monthly-text {
  font-size: 12px;
}
.packages-list-wrapper .package-item .package-included {
  background-color: rgba(255, 255, 255, 0.0509803922);
}
.packages-list-wrapper .package-item .package-included-content {
  font-size: 14px;
}
.packages-list-wrapper .package-item .package-included-title {
  font-size: 18px;
  font-weight: 600;
  color: #E64467;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.25);
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-next {
  right: 0px;
}

/* Services Page - List View Styles */
#services-grid.list-view .service-item .compliance-content-section {
  min-height: auto;
}
#services-grid.list-view .service-item .card-body {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
#services-grid.list-view .service-item .service-badge {
  order: 1;
  flex: 0 0 100%;
  margin-bottom: 0.5rem;
}
#services-grid.list-view .service-item .service-image-wrapper {
  order: 2;
  flex: 0 0 80px;
  text-align: center !important;
}
#services-grid.list-view .service-item .service-image-wrapper .service-illustration {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
#services-grid.list-view .service-item .service-content-wrapper {
  order: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#services-grid.list-view .service-item .service-content-wrapper .card-title {
  text-align: left !important;
  margin: 0;
  font-size: 1.25rem;
}
#services-grid.list-view .service-item .service-content-wrapper .card-text {
  text-align: left !important;
  margin: 0;
  font-size: 0.9rem;
}
#services-grid.list-view .service-item .service-content-wrapper .service-button-wrapper {
  text-align: left !important;
  margin-top: 0.5rem;
}

@media (max-width: 767.98px) {
  #services-grid.list-view .service-item .card-body {
    flex-direction: column;
    align-items: center;
  }
  #services-grid.list-view .service-item .service-badge {
    text-align: center !important;
  }
  #services-grid.list-view .service-item .service-image-wrapper {
    flex: 0 0 auto;
    margin-bottom: 1rem;
  }
  #services-grid.list-view .service-item .service-content-wrapper {
    flex: 0 0 auto;
    align-items: center;
  }
  #services-grid.list-view .service-item .service-content-wrapper .card-title {
    text-align: center !important;
  }
  #services-grid.list-view .service-item .service-content-wrapper .card-text {
    text-align: center !important;
  }
  #services-grid.list-view .service-item .service-content-wrapper .service-button-wrapper {
    text-align: center !important;
  }
}
/* New Services Section */
.services-section {
  color: #fff;
  text-align: center;
  position: relative;
  overflow: visible;
  margin-bottom: 100px;
  z-index: 100;
}

.services-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bs-light);
}

.services-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.services-btn-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  padding: 0.5rem 0.5rem;
  width: 100%;
  z-index: 10;
}

.certifications-section {
  margin-top: 1.5rem;
}

.services-buttons {
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
}

.services-buttons.nav-pills {
  margin-bottom: 0 !important;
}

/* Mobile Responsiveness */
@media (max-width: 1280px) {
  .services-section {
    margin-top: -8rem;
  }
}
@media (max-width: 768px) {
  .services-section {
    padding: 3rem 1.5rem;
    margin-bottom: 50px;
  }
  .services-content h2 {
    font-size: 2rem;
  }
  .services-buttons {
    flex-direction: column;
    align-items: center;
  }
  .certifications-logos {
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .services-section {
    padding: 0 1rem;
    margin-top: 2rem;
    margin-bottom: 50px;
  }
  .services-content h2 {
    font-size: 1.75rem;
  }
  .services-content p {
    font-size: 1rem;
  }
  .certifications-logos {
    gap: 1rem;
  }
}
/* Tab Content Styling */
.tab-content {
  margin-top: 1rem;
}

.service-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-pane {
  transition: opacity 0.3s ease-in-out;
  display: none;
}

.tab-pane.active {
  display: block;
  opacity: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .tab-content {
    margin-top: 10px;
  }
  .services-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.service-illustration {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.3));
}

.service-illustration:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px rgba(0, 150, 255, 0.5));
}

/* Third box image positioning - top right */
.compliance-content-section:nth-child(3) .service-illustration-container {
  top: 1rem;
  right: -40px;
  transform: none;
}

/* Service Hero Section*/
.service-hero {
  color: #fff;
  padding: 4rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

@media (max-width: 575.98px) {
  .service-hero {
    padding: 0rem 0 2rem;
    margin-top: -3rem;
  }
}
@media (max-width: 767.98px) {
  .service-hero {
    padding: 0rem 0 2rem;
    margin-top: -3rem;
  }
}
.service-hero-content {
  padding: 0 1.5rem;
}

.service-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.75rem;
  background: linear-gradient(180deg, #ffffff, #999999);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 100% 100%;
}

.service-hero p {
  font-size: 1;
  line-height: 1.75rem;
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

.service-hero .btn-primary {
  background-color: white;
  color: black;
  border: none;
  font-weight: 500;
}

.info-box {
  background: var(--glass-bg);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.25rem;
  padding: 1rem;
  margin: 2rem auto;
  max-width: 1000px;
}

.info-box .divider {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.info-box .divider.text-center ul, .info-box .divider.text-center ol {
  text-align: start !important;
}

@media (max-width: 575.98px) {
  .info-box .divider {
    border-left: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
  }
}
@media (max-width: 767.98px) {
  .info-box .divider {
    border-left: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
  }
}
/* Benefit Section */
.benefits-container {
  margin-top: 100px;
}

.benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefits-grid {
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  border-radius: 1.25rem;
  clip-path: stroke-box;
  overflow: hidden;
}

.benefit-item {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefit-item:last-child {
  flex: 1;
}

@media (max-width: 575.98px) {
  .benefits-grid {
    border: none;
    clip-path: unset;
    overflow: unset;
  }
}
.benefit-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e64467;
  color: white;
  box-shadow: 0px 0px 30px #e64467, inset 0px 0px 4px #ffffff;
}

.benefit-item h3 {
  font-weight: 600;
  font-size: 20px !important;
  margin-bottom: 15px;
  background: linear-gradient(266.84deg, #c9def4 23.48%, #f5ccd4 50.86%, #b8a4c9 96.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Service Accordion Styling (Mobile/Tablet) */
#servicesAccordion .accordion-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  border-radius: 1rem !important;
  overflow: hidden;
}
#servicesAccordion .accordion-button {
  background: transparent;
  color: #fff !important;
  padding: 1rem 1.25rem;
  box-shadow: none !important;
}
#servicesAccordion .accordion-button::after {
  filter: brightness(0) invert(1);
  background-size: 1rem;
}
#servicesAccordion .accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#servicesAccordion .accordion-body {
  padding: 1rem 0.5rem;
}
#servicesAccordion .accordion-body .services-container {
  margin: 0;
  padding: 0;
}

/* Industry Exposure Hero */
.ie-hero {
  color: #fff;
  padding: 4rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

@media (max-width: 575.98px) {
  .ie-hero {
    padding: 0rem 0 2rem;
  }
  .filters {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .ie-hero {
    padding: 0rem 0 2rem;
  }
  .filters {
    flex-direction: column;
    width: 100%;
  }
}
.ie-hero-content {
  padding: 0 1.5rem;
}

.ie-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.75rem;
  background: linear-gradient(180deg, #ffffff, #999999);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 100% 100%;
}

.ie-hero p {
  font-size: 1;
  line-height: 1.75rem;
  max-width: 700px;
  opacity: 0.9;
}

.ie-hero .btn-primary {
  background-color: white;
  color: black;
  border: none;
  font-weight: 500;
}

.ie-hero .hero-sub-image {
  top: -4rem;
  opacity: 0.8;
}

.ie-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e64467;
  color: white;
  box-shadow: 0px 0px 30px #e64467, inset 0px 0px 4px #ffffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Industry Cards */
.industries-section {
  padding: 0 0 4rem 0;
}

.industry-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.industry-header:hover {
  background-color: rgba(64, 0, 214, 0.05);
}

.industry-info {
  flex: 1;
}

.industry-title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  color: #e287e4;
  background: linear-gradient(266.84deg, #c9def4 23.48%, #f5ccd4 50.86%, #b8a4c9 96.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.industry-description {
  color: white;
  margin: 0;
}

.collapse-icon {
  font-size: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.collapsed .collapse-icon {
  transform: rotate(0deg);
}

.industry-content {
  padding: 0 1.5rem 1.5rem;
}

.projects-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e64467;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.project-item {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.062745098);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.project-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.project-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5019607843);
  margin: 0;
}

.our-industry-exposure {
  color: white;
  padding-top: 80px;
  padding-bottom: 80px;
}

.our-industry-exposure h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bs-light);
}

.our-industry-exposure .section-description {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Layout */
.our-industry-exposure-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 35px;
  margin-top: 35px;
}

/* Cards carousel wrapper */
.our-industry-exposure-cards-wrapper {
  position: relative;
  overflow: hidden;
}

.our-industry-exposure-cards .industry-slide {
  padding: 0 10px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .our-industry-exposure-cards .slick-track {
    display: flex !important;
  }
}
.our-industry-exposure-cards .slick-slide {
  height: inherit !important;
}
.our-industry-exposure-cards .slick-slide > div {
  height: 100%;
}
.our-industry-exposure-cards .slick-list {
  overflow: hidden;
}
.our-industry-exposure-cards .slick-dots {
  bottom: -30px;
}

.industry-exposure-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e64467;
  color: white;
  box-shadow: 0px 0px 30px #e64467, inset 0px 0px 4px #ffffff;
}

/* Right map section */
.industry-map-section {
  text-align: center;
}

.country-selector {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  color: white;
  padding: 10px;
  font-weight: 600;
}

.country-selector-current {
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-selector-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgb(175, 193, 255);
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  border-radius: 8px;
  z-index: 100;
}

.country-selector-dropdown li {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.country-selector-dropdown li:hover {
  background: rgb(49, 97, 176);
}

.country-selector-dropdown img,
.country-selector-current img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.industry-map {
  width: 100%;
  border-radius: 12px;
  transition: opacity 0.18s ease;
}

#chartdiv {
  width: 100%;
  height: 400px;
  touch-action: pan-y !important;
}
@media (max-width: 1024px) {
  #chartdiv {
    pointer-events: none;
  }
}
#chartdiv a[title*="JavaScript charts"],
#chartdiv a[title*=amCharts],
#chartdiv .am5-logo,
#chartdiv div[class*=am5-layer-30] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

a[title*="JavaScript charts"],
a[title*=amCharts],
.am5-logo,
canvas[class*=am5-layer-30] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

canvas.am5-layer-30 {
  display: none !important;
  visibility: hidden !important;
}

/* Responsive */
@media (max-width: 992px) {
  .our-industry-exposure-content {
    grid-template-columns: 1fr;
  }
  .our-industry-exposure-cards .industry-slide {
    padding: 0 5px;
  }
  .industry-map-section {
    order: -1;
  }
}
.industry-map.fade {
  opacity: 0.35;
}

.ie-full-content {
  padding: 24px;
}

.ie-full-content p {
  color: white;
}

.ie-projects-container {
  margin-top: 100px;
}

.ie-projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ie-project-item {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 15px;
}

.ie-project-item:last-child {
  flex: 1;
}

@media (max-width: 575.98px) {
  .ie-projects-grid {
    border: none;
    clip-path: unset;
    overflow: unset;
  }
}
.ie-project-logo {
  max-width: 135px;
  max-height: 100px;
  border-radius: 10px;
}

.ie-project-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e64467;
  color: white;
  box-shadow: 0px 0px 30px #e64467, inset 0px 0px 4px #ffffff;
}

.ie-project-item h3 {
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  background: linear-gradient(266.84deg, #c9def4 23.48%, #f5ccd4 50.86%, #b8a4c9 96.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ie-project-description {
  text-align: left;
  width: 100%;
}

.project-countries {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.project-countries strong {
  margin-right: 6px;
}

.industry-hero-sub-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  height: auto;
  z-index: -1;
  object-fit: contain;
  pointer-events: none;
  overflow: hidden;
}

.industry-hero-img-sub {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .ie-projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 575.98px) {
  .ie-projects-grid {
    grid-template-columns: 1fr;
  }
}
/* Upcoming Events Hero Section*/
.events-hero {
  color: #fff;
  padding: 4rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
}

@media (max-width: 575.98px) {
  .events-hero {
    padding: 0rem 0 2rem;
  }
  .filters {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .events-hero {
    padding: 0rem 0 2rem;
  }
  .filters {
    flex-direction: column;
    width: 100%;
  }
}
.events-hero-content {
  padding: 0 1.5rem;
}

.events-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.75rem;
  background: linear-gradient(180deg, #ffffff, #999999);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 100% 100%;
}

.events-hero p {
  font-size: 1;
  line-height: 1.75rem;
  max-width: 700px;
  opacity: 0.9;
}

.events-hero .btn-primary {
  background-color: white;
  color: black;
  border: none;
  font-weight: 500;
}

.events-hero .hero-sub-image {
  top: -4rem;
  opacity: 0.8;
}

.event-row {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 767.98px) {
  .event-row {
    grid-template-columns: 1fr;
  }
}
.event-title {
  font-weight: 600;
  font-size: 24px;
  background: linear-gradient(266.84deg, #c9def4 23.48%, #f5ccd4 50.86%, #b8a4c9 96.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-image {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
}

.event-excerpt {
  flex: 1;
}

.event-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.filters {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  width: max-content;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 100;
  overflow: visible !important;
}
.filters.grid-list {
  z-index: 8;
}
.filters .view-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}
.filters .view-switcher .view-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}
.filters .view-switcher .view-btn:hover {
  color: var(--bs-light);
  background: rgba(255, 255, 255, 0.1);
}
.filters .view-switcher .view-btn.active {
  background: rgba(249, 250, 251, 0.12);
  border: 1px solid rgba(229, 231, 235, 0.24);
  color: var(--bs-light);
}

/* List View Styles */
.filter-container-wrapper.list-view-active .col-12.col-lg-4.col-md-6 {
  flex: 0 0 100%;
  max-width: 100%;
}
.filter-container-wrapper.list-view-active .event-card {
  flex-direction: row;
  align-items: flex-start;
  gap: 25px;
  padding: 1.5rem;
}
.filter-container-wrapper.list-view-active .event-card .event-image {
  width: 350px;
  height: 220px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.filter-container-wrapper.list-view-active .event-card .event-content {
  padding: 0;
  text-align: left;
  justify-content: center;
  height: 100%;
}
.filter-container-wrapper.list-view-active .event-card .event-content .event-title {
  margin-bottom: 0.5rem;
}
.filter-container-wrapper.list-view-active .event-card .event-content .event-excerpt {
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single.wp-singular.single-post *,
.single.wp-singular.single-news-alert *,
.single.wp-singular.single-upcoming-events *,
.single.wp-singular.single-downloads * {
  line-height: 2;
}

.single.wp-singular.single-post h2,
.single.wp-singular.single-news-alert h2,
.single.wp-singular.single-upcoming-events h2,
.single.wp-singular.single-downloads h2 {
  font-size: 2.25rem;
  margin-top: 2rem;
  margin-bottom: 0px;
}
.single.wp-singular.single-post h3,
.single.wp-singular.single-news-alert h3,
.single.wp-singular.single-upcoming-events h3,
.single.wp-singular.single-downloads h3 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 0px;
}
.single.wp-singular.single-post h4,
.single.wp-singular.single-news-alert h4,
.single.wp-singular.single-upcoming-events h4,
.single.wp-singular.single-downloads h4 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 0px;
}
.single.wp-singular.single-post h5,
.single.wp-singular.single-news-alert h5,
.single.wp-singular.single-upcoming-events h5,
.single.wp-singular.single-downloads h5 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0px;
}
.single.wp-singular.single-post h6,
.single.wp-singular.single-news-alert h6,
.single.wp-singular.single-upcoming-events h6,
.single.wp-singular.single-downloads h6 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0px;
}
.single.wp-singular.single-post footer *,
.single.wp-singular.single-news-alert footer *,
.single.wp-singular.single-upcoming-events footer *,
.single.wp-singular.single-downloads footer * {
  line-height: 1.5;
}
.single.wp-singular.single-post footer * h3,
.single.wp-singular.single-news-alert footer * h3,
.single.wp-singular.single-upcoming-events footer * h3,
.single.wp-singular.single-downloads footer * h3 {
  font-size: 12px;
  font-weight: 600;
  color: var(--bs-light);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single.wp-singular.single-post p:has(img), .single.wp-singular.single-post figure, .single.wp-singular.single-post .aligncenter,
.single.wp-singular.single-news-alert p:has(img), .single.wp-singular.single-news-alert figure, .single.wp-singular.single-news-alert .aligncenter,
.single.wp-singular.single-upcoming-events p:has(img), .single.wp-singular.single-upcoming-events figure, .single.wp-singular.single-upcoming-events .aligncenter,
.single.wp-singular.single-downloads p:has(img), .single.wp-singular.single-downloads figure, .single.wp-singular.single-downloads .aligncenter {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.single.wp-singular.single-post p:has(img) img, .single.wp-singular.single-post figure img, .single.wp-singular.single-post .aligncenter img,
.single.wp-singular.single-news-alert p:has(img) img, .single.wp-singular.single-news-alert figure img, .single.wp-singular.single-news-alert .aligncenter img,
.single.wp-singular.single-upcoming-events p:has(img) img, .single.wp-singular.single-upcoming-events figure img, .single.wp-singular.single-upcoming-events .aligncenter img,
.single.wp-singular.single-downloads p:has(img) img, .single.wp-singular.single-downloads figure img, .single.wp-singular.single-downloads .aligncenter img {
  margin: 0 auto !important;
  display: inline-block !important;
  float: none !important;
  max-width: 100%;
}
.single.wp-singular.single-post p:has(img) a, .single.wp-singular.single-post figure a, .single.wp-singular.single-post .aligncenter a,
.single.wp-singular.single-news-alert p:has(img) a, .single.wp-singular.single-news-alert figure a, .single.wp-singular.single-news-alert .aligncenter a,
.single.wp-singular.single-upcoming-events p:has(img) a, .single.wp-singular.single-upcoming-events figure a, .single.wp-singular.single-upcoming-events .aligncenter a,
.single.wp-singular.single-downloads p:has(img) a, .single.wp-singular.single-downloads figure a, .single.wp-singular.single-downloads .aligncenter a {
  display: inline-block !important;
  margin: 0 auto !important;
}

.wp-caption {
  border: 1px solid var(--bs-light);
  margin: 12px;
  padding: 5px;
  font-size: 12px;
}

.single.wp-singular.single-post td,
.single.wp-singular.single-news-alert td,
.single.wp-singular.single-upcoming-events td,
.single.wp-singular.single-downloads td {
  padding: 5px;
  border: 1px solid var(--bs-light);
  border-collapse: collapse;
}

@media (max-width: 991.98px) {
  .filter-container-wrapper.list-view-active .event-card .event-image {
    width: 280px;
    height: 180px;
  }
  .news-hero-content h1 {
    font-size: 1.6rem !important;
  }
  .single.wp-singular.single-post *,
  .single.wp-singular.single-news-alert *,
  .single.wp-singular.single-upcoming-events *,
  .single.wp-singular.single-downloads * {
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
  .single.wp-singular.single-post h2,
  .single.wp-singular.single-news-alert h2,
  .single.wp-singular.single-upcoming-events h2,
  .single.wp-singular.single-downloads h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 0px;
  }
  .single.wp-singular.single-post h3,
  .single.wp-singular.single-news-alert h3,
  .single.wp-singular.single-upcoming-events h3,
  .single.wp-singular.single-downloads h3 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 0px;
  }
  .single.wp-singular.single-post h4,
  .single.wp-singular.single-news-alert h4,
  .single.wp-singular.single-upcoming-events h4,
  .single.wp-singular.single-downloads h4 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0px;
  }
  .single.wp-singular.single-post h5,
  .single.wp-singular.single-news-alert h5,
  .single.wp-singular.single-upcoming-events h5,
  .single.wp-singular.single-downloads h5 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0px;
  }
  .single.wp-singular.single-post h6,
  .single.wp-singular.single-news-alert h6,
  .single.wp-singular.single-upcoming-events h6,
  .single.wp-singular.single-downloads h6 {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 0px;
  }
  .single.wp-singular.single-post footer *,
  .single.wp-singular.single-news-alert footer *,
  .single.wp-singular.single-upcoming-events footer *,
  .single.wp-singular.single-downloads footer * {
    line-height: 1.5;
  }
  .single.wp-singular.single-post footer * h3,
  .single.wp-singular.single-news-alert footer * h3,
  .single.wp-singular.single-upcoming-events footer * h3,
  .single.wp-singular.single-downloads footer * h3 {
    font-size: 12px;
    font-weight: 600;
    color: var(--bs-light);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .single.wp-singular.single-post p:has(img) img, .single.wp-singular.single-post figure img, .single.wp-singular.single-post .aligncenter img, .single.wp-singular.single-news-alert p:has(img) img, .single.wp-singular.single-news-alert figure img, .single.wp-singular.single-news-alert .aligncenter img, .single.wp-singular.single-upcoming-events p:has(img) img, .single.wp-singular.single-upcoming-events figure img, .single.wp-singular.single-upcoming-events .aligncenter img, .single.wp-singular.single-downloads p:has(img) img, .single.wp-singular.single-downloads figure img, .single.wp-singular.single-downloads .aligncenter img {
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .filter-container-wrapper.list-view-active .event-card {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 12px;
    min-height: auto;
  }
  .filter-container-wrapper.list-view-active .event-card .event-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 12px;
    margin-bottom: 0;
  }
  .filter-container-wrapper.list-view-active .event-card .event-content .event-title {
    font-size: 1.1rem;
    margin-bottom: 2px;
    line-height: 1.3;
  }
  .filter-container-wrapper.list-view-active .event-card .event-content .event-date-location {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
  .filter-container-wrapper.list-view-active .event-card .event-content .event-excerpt {
    font-size: 12px;
  }
  .filter-container-wrapper.list-view-active .event-card .event-content .event-read-more {
    padding: 4px 6px;
    margin-top: 0;
    font-size: 0.85rem;
  }
}
/* Ensure filters are responsive with view switcher */
@media (max-width: 767.98px) {
  .filters {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 15px;
  }
  .filters .view-switcher {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .news-hero {
    margin-top: 0px !important;
  }
}
iframe {
  max-width: 100%;
}

iframe.wp-embedded-content {
  max-width: 100%;
}

li {
  overflow-wrap: anywhere;
}

/* SINGLE NEWS ALERTS PAGE */
.single a {
  color: #d9534f;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.news-hero-img {
  text-align: center;
}
.news-hero-img .news-alert-featured-img {
  max-width: 100%;
  max-height: 350px;
  height: auto;
  text-align: center;
  margin: auto;
  width: 100%;
  object-fit: cover;
}

.news-hero {
  margin-top: 48px;
}

.news-hero-content h1 {
  font-size: 2.5rem;
  color: white;
}

.news-hero .short-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #333;
}

.page-item {
  border-top: 1px solid rgba(255, 255, 255, 0.3098039216);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3098039216);
}
.page-item.next-item {
  background-color: var(--bs-primary);
}
.page-item.next-item .page-link {
  color: white;
}
.page-item.prev-item {
  background-color: var(--bs-primary);
}
.page-item.prev-item .page-link {
  color: white;
}
.page-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.3098039216);
  border-radius: 8px 0 0 8px;
}
.page-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3098039216);
  border-radius: 0 8px 8px 0;
}
.page-item .page-link {
  width: 40px;
  height: 40px;
  background-color: transparent;
  text-align: center;
  border: none;
  line-height: 2;
  color: var(--bs-light);
  padding: 5px;
}
.page-item.active .page-link {
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.1803921569);
  color: white;
  width: 35px;
  height: 35px;
  margin: 5px;
  line-height: 1.5;
  padding: 5px;
}

[class*=tableContainer] {
  overflow-x: auto;
}

figure {
  max-width: 100%;
}

/* Contact Form Styles */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  text-align: left;
}

.contact-sub-about-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-img-sub {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.contact-form-wrapper h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-align: left;
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

/* Text fields with white 70% opacity background and white 24% opacity border */
.contact-form-input {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(229, 231, 235, 0.24) !important;
  border-radius: 4px;
  color: #fff !important;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
}

.contact-form-input:focus {
  background-color: rgba(255, 255, 255, 0.18) !important;
  border-color: #7c3aed !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
  color: #fff !important;
  outline: none;
}

.contact-form-input::placeholder {
  color: #ffffff !important;
  opacity: 1;
}

/* Textarea specific styling */
textarea.contact-form-input {
  resize: vertical;
  min-height: 120px;
}

/* Submit button */
.contact-submit-btn {
  background: #7c3aed;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.contact-submit-btn:hover {
  background: #6b2fd6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

/* Custom spacing */
.mt-8 {
  margin-top: 4rem !important;
}

/* Lucide icon styling */
[data-lucide] {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}

.client-success-section .contact-form-wrapper * {
  text-align: left;
}

.contact-cyb-hero {
  background: #050020;
  color: #fff;
  padding: 4rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 90vh;
}

.contact-cyb-hero-content {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.featured-img {
  width: 250px;
  margin-top: 70px;
  margin-bottom: 40px;
  mix-blend-mode: lighten;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .contact-cyb-hero {
    padding: 3rem 0 1rem;
    min-height: auto;
  }
  .contact-card {
    margin-top: -2rem;
  }
}
@media (max-width: 767.98px) {
  .contact-cyb-hero {
    padding: 2rem 0 1rem;
  }
  .contact-cyb-hero-content {
    padding: 0 1rem;
    margin-bottom: 1rem;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  .contact-form-wrapper h2 {
    font-size: 1.25rem;
  }
  .featured-img {
    width: 180px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .mt-8 {
    margin-top: 2rem !important;
  }
}
@media (max-width: 575.98px) {
  .contact-form-wrapper {
    padding: 1rem;
  }
  .contact-submit-btn {
    width: 100%;
  }
}
.solution-description p {
  font-size: 16px;
}
.solution-description p a {
  text-decoration: none !important;
  color: #e64467;
}
.solution-description p a:hover {
  color: var(--bs-light);
}

.client-success-section-wrapper {
  background-color: var(--glass-bg);
}

.page-template-about-us-page .reviews-section-pane {
  min-height: 240px;
}

.privacy-policy {
  background-image: url("../images/blog-grid.png");
  background-size: 100% 250px;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.privacy-policy p {
  font-size: 16px;
  line-height: 1.5;
}
.privacy-policy h2 {
  font-weight: 600 !important;
  color: var(--gradient-accent);
  padding-bottom: 20px;
}
.privacy-policy a {
  color: #d9534f;
  text-decoration: none;
}
.privacy-policy ol, .privacy-policy ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.privacy-policy table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  overflow-y: auto;
}
.privacy-policy th,
.privacy-policy td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.privacy-policy th {
  background-color: #f2f2f2;
  color: #333;
}

.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
  word-break: inherit !important;
}

.wp-block-table .has-fixed-layout {
  table-layout: auto !important;
  width: 100%;
}

/*# sourceMappingURL=custom.css.map */
