/* Reset & Global */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.social-header {
  background: linear-gradient(135deg, #4084e9 0%, #1d5ec9 100%);
  color: #ffffff;
  padding: 4px 0;
  font-size: 0.85rem;
  box-shadow: 0 2px 10px rgba(29, 94, 201, 0.2);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.site-header .social-header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header .header-left-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .header-left-text p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin: 0;
  font-size: 16px;
}

.site-header .help-cover {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header .help-link {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.site-header .help-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.site-header .header-v-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.3);
}

.site-header .socialTool {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .socialTool li {
  display: inline-block;
}

.socialTool li a {
  height: 28px;
  width: 28px;
  background-color: #4084e9;
  border-radius: 50%;
  line-height: normal;
  color: #fff;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .socialTool a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.8rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.site-header .social-header .socialTool a:hover {
  /* background: #ff9334;
  color: #ffffff;
  border-color: #ff9334; */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 147, 52, 0.4);
}

.site-header .social-header .socialTool a img {
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

.site-header .social-header .socialTool a:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .site-header .social-header .header-left-text p {
    display: none;
  }

  .site-header .social-header-container {
    justify-content: space-between;
    padding: 0 16px;
  }

  .office-locations-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .contact-section.footer-contact-section .contact-information {
    padding-right: 0;
  }

  .Associations h3,
  .quickLinks h3,
  .trending h3 {
    margin: 0px 0 10px;
  }

  .Associations a,
  .Associations ul li {
    padding: 0px 5px 0px 0;
  }

  .footer-company-sec .companyImg {
    padding: 0;
  }

  .footer-company-sec .companyImg img {
    width: 100px;
    height: 40px;
    object-fit: scale-down;
  }

  .Associations h3,
  .contact h3,
  .quickLinks h3,
  .sec1 h3,
  .trending h3,
  .footer-social h3 {
    font-size: 18px !important;
  }

  .contactUs.footer-contactUs {
    padding: 50px 0 !important;
  }
}

.site-header {
  position: sticky;
  top: 38px;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(64, 132, 233, 0.08);
  width: 100%;
}

.site-header .header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.site-header .brand-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header .nav-item {
  position: static;
  padding: 18px 0;
}

.site-header .nav-item span.nav-link {
  cursor: pointer;
}

.site-header .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 6px !important;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #4084e9 0%, #1d5ec9 100%);
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .nav-item:hover .nav-link,
.site-header .nav-link:hover {
  color: #4084e9;
}

.site-header .nav-item:hover .nav-link::after,
.site-header .nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header .nav-link svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #4084e9;
}

.site-header .nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}


.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 95vw;
  max-width: 1380px;
  background: #ffffff !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 20px;
  box-shadow: 0 25px 60px -15px rgba(64, 132, 233, 0.22);
  border: 1px solid rgba(64, 132, 233, 0.18);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99999999;
  pointer-events: none;
}

.site-header .nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
  pointer-events: auto;
}

.mega-tabs-container-with-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr 260px;
  gap: 24px;
  align-items: stretch;
}

.site-header .mega-tabs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.site-header .tabs-sidebar-title {

  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-header .sidebar-title-accent {
  display: flex;
  gap: 4px;
}

.site-header .title-blue-bar {
  width: 24px;
  height: 3px;
  background: #1677ff;
  border-radius: 2px;
}

.site-header .title-orange-bar {
  width: 14px;
  height: 3px;
  background: #ff9334;
  border-radius: 2px;
}

.site-header .mega-tab-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-header .mega-tab-btn {
  position: relative;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #334155;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f2f5;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .mega-tab-btn .tab-btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .tab-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e6f4ff;
  color: #1677ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-header .tab-icon-box svg {
  width: 18px;
  height: 18px;
  stroke: #1677ff;
  fill: none;
  stroke-width: 2;
}

.site-header .mega-tab-btn:hover:not(.active) {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.site-header .mega-tab-btn.active {
  background: #1677ff;
  color: #ffffff;
  font-weight: 700;
  border-color: #1677ff;
  box-shadow: 0 6px 18px rgba(22, 119, 255, 0.3);
  padding-left: 18px;
}

.site-header .mega-tab-btn.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 40px;
  background: #ff9334;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.site-header .mega-tab-btn.active .tab-icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.site-header .mega-tab-btn.active .tab-icon-box svg {
  stroke: #ffffff;
}

.site-header .mega-tab-btn svg.tab-arrow {
  color: #4084e9;
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.site-header .mega-tab-btn.active svg.tab-arrow {
  color: #ffffff;
}

.site-header .mega-tabs-content {
  padding: 0 10px;
  min-height: 320px;
}

.site-header .tab-pane {
  display: none;
  animation: fadeInPane 0.25s ease forwards;
}

.site-header .tab-pane.active {
  display: block;
}

@keyframes fadeInPane {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.our-work-dual-tabs {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

.site-header .work-tab-group {
  flex: 1;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 16px;
  align-items: stretch;
}

.site-header .work-tabs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 12px;
  border-right: 1px solid #f1f5f9;
}

.site-header .work-tabs-content {
  padding: 0 10px;
  min-height: 280px;
}

.site-header .tab-pane-header {
  margin-bottom: 20px;
}

.site-header .tab-pane-title {

  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 15px;
}

.site-header .work-tabs-content .tab-pane-title {
  margin-top: 0px;
}

.site-header .work-tabs-content .tab-pane-grid {
  margin-top: 14px;
  grid-template-columns: 1fr;
}

.site-header .title-accent-lines {
  display: flex;
  gap: 4px;
}

.site-header .line-blue {
  width: 24px;
  height: 3px;
  background: #1677ff;
  border-radius: 2px;
}

.site-header .line-orange {
  width: 14px;
  height: 3px;
  background: #ff9334;
  border-radius: 2px;
}

.site-header .tab-pane-subtitle {
  font-size: 0.88rem;
  color: #64748b;
  max-width: 520px;
  line-height: 1.45;
}

.site-header .tab-pane-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  margin-top: 18px;
}

.site-header .mega-card-item {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  text-decoration: none;
}

.solutions-col-cards .site-header .solution-feature-card {
  padding: 8px;
}

.site-header .mega-menu.resources-menu .mega-card-item {
  padding: 8px 15px;
}

.site-header .mega-card-item.soon {
  padding: 8px 15px;
  pointer-events: none;
}

.site-header .mega-card-item.soon .card-icon-box {
  width: 35px;
  height: 35px;
}

.site-header .mega-card-item.soon .card-icon-box img {
  height: 18px !important;
  width: 18px !important;
}

.site-header .mega-card-item:hover {
  border-color: #ff9334;
  box-shadow: 0 10px 25px rgba(22, 119, 255, 0.12);
  transform: translateY(-2px);
}

.site-header .card-item-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.site-header #tab-ai-tools .card-item-left,
.site-header #tab-tech-ai-tools .card-item-left {
  align-items: center;
}

.site-header .card-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-header .mega-menu.resources-menu .card-icon-box {
  width: 35px;
  height: 35px;
}

.site-header .mega-menu.resources-menu .card-icon-box img {
  height: 18px !important;
  width: 18px !important;
}

.site-header .card-icon-box.blue {
  background: #e6f4ff;
  color: #1677ff;
}

.site-header .card-icon-box.orange {
  background: #fff7e6;
  color: #ff9334;
}

.site-header .card-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header .card-icon-box img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-header .card-item-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.site-header .card-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 19px;
}

.site-header .card-item-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.site-header .mega-card-item:hover .card-item-title {
  color: #ff9334;
}

.site-header .card-item-arrow {
  color: #ff9334;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.site-header .mega-card-item:hover .card-item-arrow {
  transform: translateX(4px);
}

.solutions-card-mega {
  max-width: 1180px;
}

.site-header .solutions-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 15px;
}

.site-header .solutions-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.site-header .solutions-col {
  display: flex;
  flex-direction: column;
}

.site-header .solutions-col-title {

  font-size: 20px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-header .solutions-col-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-header .solution-feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.site-header .solution-feature-card:hover {
  background: #ffffff;
  border-color: #ff9334;
  box-shadow: 0 10px 25px rgba(64, 132, 233, 0.16);
  transform: translateY(-2px);
}

.site-header .solution-card-icon {
  width: 35px;
  height: 35px;
  color: #ff9334;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ff933424;
  border-radius: 8px;
  border: 1px solid #ff933440;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .solution-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ff9334;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .solution-card-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.site-header .solution-feature-card:hover .solution-card-icon {
  /* background: #ff9334; */
  color: #ffffff;
  border-color: #ff9334;
}

.site-header .solution-card-title {

  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .solution-feature-card:hover .solution-card-title {
  color: #ff9334;
}

.site-header .solution-cta-card {
  background: rgba(64, 132, 233, 0.04);
  border: 2px dashed #ff93345e;
}

.site-header .solution-cta-card:hover {
  border-color: #ff9334;
  border-style: solid;
}

.mega-menu-inner {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.site-header .mega-menu-main {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-header .mega-header-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.site-header .mega-menu.solutions-card-mega .mega-header-bar {
  padding-bottom: 0px;
}

.site-header .mega-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4084e9 0%, #1d5ec9 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .mega-header-icon svg {
  width: 20px;
  height: 20px;
}

.site-header .mega-header-title {

  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.site-header .mega-header-badge {
  background: #f0f6ff;
  color: #4084e9;
  border: 1px solid rgba(64, 132, 233, 0.25);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.site-header .mega-columns-grid {
  display: grid;
  gap: 20px;
}

.site-header .grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.site-header .grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.site-header .grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.site-header .mega-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-header .mega-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-heading {
  font-size: 0.92rem;
  font-weight: 800;
  color: #4084e9;
  border-bottom: 2px solid #4084e9;
  display: inline-block;
  padding-bottom: 4px;
  width: fit-content;
  text-transform: capitalize;
  letter-spacing: 0.2px;
}

.site-header .category-heading small {
  font-weight: 600;
  color: #64748b;
  font-size: 0.78rem;
}

.mega-links-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-header .tag-coming-soon {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  margin-left: 4px;
}

.mega-sidebar-card {
  background: linear-gradient(165deg, #1677ff 0%, #0050b3 100%);
  border-radius: 20px;
  padding: 26px 22px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(22, 119, 255, 0.35);
  width: 260px;
  flex-shrink: 0;
  align-self: stretch;
  height: auto;
}

.site-header .mega-sidebar-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #ffa657f0 0%, #e97f48d9 100%);
  border-radius: 50%;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
}

.sidebar-top-badge {
  background: #ff9334;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 147, 52, 0.3);
}

.site-header .sidebar-heading {

  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}

.site-header .sidebar-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.site-header .sidebar-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.site-header .sidebar-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  font-size: 0.86rem;
  font-weight: 600;
  color: #ffffff;
}

.site-header .sidebar-feature-item:last-child {
  border-bottom: none;
}

.site-header .sidebar-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #1677ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-header .sidebar-feature-icon svg {
  width: 15px;
  height: 15px;
  stroke: #1677ff;
  fill: none;
  stroke-width: 2;
}

.site-header .sidebar-cta-btn,
.site-header .sidebar-footer-link {
  background: #ffffff;
  color: #ff9334;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
  position: relative;
  z-index: 2;
}

.site-header .sidebar-cta-btn:hover,
.site-header .sidebar-footer-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  color: #d97706;
}

.site-header .sidebar-cta-btn svg,
.site-header .sidebar-footer-link svg {
  width: 16px;
  height: 16px;
  stroke: #ff9334;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Contact Us Button (#4084e9 Theme Color Pill) */
.btn {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 28px;
  border-radius: 20px 4px 20px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2px;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
  border-color: transparent;
  /* background: unset; */
  z-index: 9;
  transition: all 0.3s ease;
}

.btn:hover::before {
  background: #fff;
  transition: all 0.3s ease;
}

.btn::before {
  background: linear-gradient(135deg, #4084e9 0%, #1d5ec9 100%);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-hero-secondary::before {
  content: none !important;
}

.btn.btn-hero-primary:hover {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

.btn.btn-hero-primary:hover::before {
  content: none !important;
}

.btn:hover {
  /* transform: translateY(-2px); */
  /* box-shadow: 0 8px 24px rgba(64, 132, 233, 0.45); */
  /* background: #fff; */
  color: #4084e9;
  border: 1px solid #4084e9;
  transition: all 0.3s ease;
}

.header-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0f172a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .header-icon-btn:hover {
  background: #f0f6ff;
  color: #4084e9;
}

.mobile-toggle {
  display: none;
}

.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 150px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.search-box {
  background: #ffffff;
  width: 90%;
  max-width: 600px;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.search-modal.active .search-box {
  transform: translateY(0);
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid #4084e9;
  padding-bottom: 8px;
}

.search-input-group input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-family: inherit;
  color: #0f172a;
}

.close-modal-btn {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #64748b;
  font-size: 22px;
  font-weight: 900;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  will-change: opacity, visibility;
  display: none;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* .mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 99999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
} */

.mobile-nav-drawer.active {
  transform: translateX(0);
}

html:has(.search-modal.active) {
  overflow: unset;
}

/* .mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
} */

.mobile-drawer-header .close-modal-btn {
  position: static;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4084e918;
  border: 1px solid #4084e933;
  color: #4084e9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.mobile-drawer-header .close-modal-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  display: block;
}

.mobile-drawer-header .close-modal-btn:hover {
  background: #ff9334;
  color: #ffffff;
  border-color: #ff9334;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 99999;
  /* box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15); */
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  display: none;
}

/* .mobile-nav-drawer.active {
  right: 0;
} */

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.mobile-accordion-item {
  border-bottom: 1px solid #70c4ff4d;
  background: #ffffff;
}

.mobile-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  cursor: pointer;
  user-select: none;
}

.mobile-accordion-title {

  font-size: 1.05rem;
  font-weight: 700;
  color: #0084ff;
  transition: color 0.2s ease;
}

.mobile-accordion-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0084ff;
  flex-shrink: 0;
  border-radius: 50%;
  background: #4084e918;
  border: 1px solid #4084e933;
  transition: all 0.2s ease;

}

.mobile-accordion-toggle svg,
.mobile-sub-accordion-toggle svg {
  width: 16px;
  height: 16px;
  stroke: #0084ff;
  stroke-width: 2.5;
  display: block;
  transition: transform 0.25s ease;
}

.mobile-accordion-toggle .icon-cross,
.mobile-sub-accordion-toggle .icon-cross {
  display: none;
}

.mobile-accordion-item.active>.mobile-accordion-header .icon-plus {
  display: none;
}

.mobile-accordion-item.active>.mobile-accordion-header .icon-cross {
  display: block;
}

.mobile-accordion-body {
  max-height: 0px;

  overflow-y: auto;
  transition: 0.3s ease;

}

.mobile-accordion-item.active>.mobile-accordion-body {
  max-height: 400px;
  transition: 0.3s ease;
  /* padding: 4px 0 12px 0; */
}

.mobile-sub-accordion-item {
  border-bottom: 1px solid #70c4ff55;
  margin-left: 8px;
}

.mobile-sub-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  cursor: pointer;
  user-select: none;
}

.mobile-sub-accordion-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1e293b;
}

.mobile-sub-accordion-toggle {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0084ff;
  flex-shrink: 0;
}

.mobile-sub-accordion-item.active>.mobile-sub-accordion-header .icon-plus {
  display: none;
}

.mobile-sub-accordion-item.active>.mobile-sub-accordion-header .icon-cross {
  display: block;
}

.mobile-sub-accordion-body {
  max-height: 0;
  /* opacity: 0; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, padding 0.35s ease; */
  padding: 0 0 0 8px;
  transition: max-height 0.3s ease;
}

.mobile-sub-accordion-item.active>.mobile-sub-accordion-body {
  max-height: 500px;
  /* opacity: 1; */
  /* padding: 6px 0 10px 8px; */
  transition: max-height 0.3s ease;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 6px;
  font-size: 0.93rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-bottom: 1px solid #e2e8f077;
  /* transition: all 0.2s ease; */
}

.mobile-sub-link:last-child {
  border-bottom: none;
}

.mobile-sub-link:hover,
.mobile-sub-link:active {
  color: #0084ff;
  background: #f0f7ff;
  padding-left: 10px;
}

.mobile-sub-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Responsive Media Queries */
@media (max-width: 1199px) {
  .site-header .main-nav {
    gap: 16px;
  }

  .site-header .nav-link {
    font-size: 0.88rem;
  }

  .site-header .mega-menu {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 10px 0;
    display: none;
  }

  .site-header .mega-tabs-container-with-sidebar {
    grid-template-columns: 1fr;
  }

  .site-header .mega-menu-inner {
    grid-template-columns: 1fr;
  }

  .site-header .mega-sidebar-card {
    display: none;
  }

  .site-header #contact-us-btn {
    display: none;
  }

  .site-header #search-trigger {
    display: none;
  }

  .site-header .social-header {
    display: none;
  }

  .site-header .header-container {
    padding: 10px 16px;
  }
}

@media (max-width: 992px) {
  .site-header .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .site-header {
    top: 0;
  }

  .mobile-nav-drawer,
  .mobile-nav-overlay {
    display: block;
  }
}

@media (max-width: 640px) {
  .site-header .header-container {
    padding: 10px 16px;
  }

  .footer-copy {
    flex-direction: column;
    gap: 5px;
  }

  .footer .footerContent {
    flex-direction: column;
  }

  .step-item {
    flex-direction: column;
    gap: 10px
  }

  .steps-container::before {
    content: none !important;
  }

  .step-number-badge {
    display: none !important;
  }

  .contactUs.footer-contactUs .formrWrapBox .contactMeForm .contactFormGroup-wrapper .contactFormGroup,
  .contactUs.footer-contactUs .formrWrapBox .contactMeForm .contactFormGroup-wrapper .form-item {
    width: 100% !important;
  }

  .contactUs.footer-contactUs .formrWrapBox {
    padding: 20px !important;
  }

  .contactUs.footer-contactUs .formrWrapBox .form-submit {
    width: 100% !important;
  }
}

.mobile-media-card {
  display: block;
  width: 100%;
  margin: 6px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-media-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.mobile-media-thumb {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.social-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

#mobile-nav ul ul li a,
.contact p,
.contact-details,
.help-cover {
  gap: 10px;
}

.header-left-text p {
  color: #fff;
  margin-bottom: 0 !important;
  font-size: 16px !important;
}

.hero-banner-modern,
.home-banner,
.banner,
.salesforce-banner,
.salesforce-new-banner,
.suitecrm_plugin_page,
.casestudy-banner,
.portfolio-section,
.thanks {
  margin-top: 0 !important;
}

.breadcrumbs {
  position: unset !important;
}

.imp_contact_info {
  margin-top: 25px;
}

.search-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  z-index: 9999;
}

.search-suggestion-item {
  display: block;
  padding: 14px 18px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-suggestion-item:hover {
  background: #f5f7fa;
  color: #4084e9;
}

.search-no-result {
  padding: 14px 18px;
  color: #777;
  font-size: 14px;
}

/* FOOTER CSS */

.footer-company-sec.company-sec {
  padding: 40px 0;
  background: #fff;
}

.contact-section.footer-contact-section {
  margin-top: 0;
  align-items: flex-start;
}

.contactUs.footer-contactUs {
  /* background: #fafafc; */
  background: linear-gradient(180deg, rgba(64, 132, 233, 0.08) 0%, rgb(255 255 255 / 58%) 45%, #ffffff96 100%);
  padding: 80px 0;
}

.container {
  max-width: 1440px;
}

.contactUs.footer-contactUs .formrWrapBox {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  padding: 30px;
  border: 1px solid #e2e8f0;
  max-width: unset;
  width: 45%;
}

.contactUs.footer-contactUs .formrWrapBox .contactMeForm .contactFormGroup {
  max-width: unset;
  margin-bottom: 0;
}

.contact-section.footer-contact-section .contact-information {
  width: 55%;
  padding: 0;
  padding-right: 50px;
  max-width: unset;
  max-height: unset;
  background: unset;
  margin: 0;
}

.contact-section.footer-contact-section .contact-information h3 {
  color: #000;
}

.contact-section.footer-contact-section .contact-information h3 {
  color: #000;
  font-size: 36px;
  line-height: normal;
  text-align: left;
  font-weight: 500;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 72px;
  left: 17px;
  width: 2px;
  background: #CBD5E1;
  z-index: 1;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.step-number-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4083e9;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid #ffffff;
  margin-top: 12px;
}

.step-content {
  background: #ffffff;
  padding: 18px 24px;
  border-radius: 14px;
  border: 1px solid #f1f5f9;
  width: 100%;
  transition: all 0.25s ease;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0 0 6px 0;
}

.step-content p {
  font-size: 16px !important;
  color: #475569;
  margin: 0;
  line-height: 1.25;
}

.step-item:hover .step-content {
  transform: translateY(-2px);
  border-color: #4083e9;
}

.contactMeForm .contactFormGroup .form-radio label {
  background: #fff;
  border: 1px solid #4084e9;
}

.contactFormGroup-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 12px;
}

.contactUs.footer-contactUs .formrWrapBox .contactMeForm .contactFormGroup-wrapper .contactFormGroup,
.contactUs.footer-contactUs .formrWrapBox .contactMeForm .contactFormGroup-wrapper .form-item {
  width: calc(50% - 6px);
}

.contactUs.footer-contactUs .formrWrapBox .contactMeForm .contactFormGroup-wrapper .contactFormGroup input {
  padding: 10px;
  height: auto;
  margin: 0;
  border-radius: 6px;
}

.contactUs.footer-contactUs .formrWrapBox .contactMeForm .contactFormGroup-wrapper #country_selector {
  padding: 10px 35px 10px 50px !important;
  height: auto;
  border-radius: 6px;
}

.contactFormGroup-wrapper+.contactFormGroup-wrapper {
  margin-top: 12px;
}

.contactUs.footer-contactUs .formrWrapBox .contactMeForm .contactFormGroup textarea {
  margin: 12px 0;
  padding: 10px;
  border-radius: 6px;
}

.contactUs.footer-contactUs .formrWrapBox .privacy-text {
  text-align: left;
  font-size: 14px;
  color: #000 !important;
  opacity: 1;
}

.contactUs.footer-contactUs .formrWrapBox .form-submit {
  width: 30%;
}

.contactUs.footer-contactUs .formrWrapBox .form-submit:hover {
  box-shadow: none;
}

.office-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.office-card {
  flex-direction: column;
  background: #ffffff;
  padding: 18px 24px;
  border-radius: 14px;
  border: 1px solid #f1f5f9;
  width: 100%;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.office-card:hover {
  transform: translateY(-2px);
  border-color: #4083e9;
}

.office-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.office-title {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-flag-svg {
  width: 24px;
  height: 17px;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  vertical-align: middle;
}

.office-company {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.office-detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.office-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.25;
  color: #475569;
}

.office-icon {
  color: #4084e9;
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.office-detail-item a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.office-detail-item a:hover {
  color: #4084e9;
  text-decoration: underline;
}

.office-detail-item i.fa.fa-location-arrow.office-icon {
  font-size: 20px;
}

.footer {
  background: #000;
  margin: 0;
  padding: 60px 0 20px;
  /* border-bottom: 1px solid #000; */
}

.footerContent {
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 50px;
}

.copyRight {
  margin-bottom: 0;
  color: #fff;
}

.quickLinks li a,
.trending li a,
.Associations h3,
.contact h3,
.quickLinks h3,
.sec1 h3,
.trending h3 {
  color: #fff;
}

.Associations h3,
.contact h3,
.quickLinks h3,
.sec1 h3,
.trending h3,
.footer-social h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  color: #fff;
}

.quickLinks li,
.suite-help-content>*,
.trending li {
  margin-bottom: 5px;
}

.quickLinks li a:hover,
.trending li a:hover {
  color: #4084e9;
}

.quickLinks li a,
.trending li a,
.copyRight {
  font-size: 16px !important;
}

.footer-logo {
  width: 190px;
}

.footer hr {
  border: 1px solid #3a3a3a;
}

.Associations {
  margin: 15px 0;
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  padding: 15px 0;
}

.Associations ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 3px;
  max-width: 355px;
}

.Associations ul li {
  margin: 0;
}

.footer-copy a {
  font-size: 16px;
  color: #fff;
}

.footer-copy a:hover {
  color: #4084e9;
}

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec3 {
  margin-bottom: 0;
}

.footer-terms {
  display: flex;
  gap: 14px;
}

.footer-social ul.socialTool {
  margin-top: 20px;
}

.security-block img {
  max-width: 80px;
}

.security-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-company-sec.company-sec h2,
.contactUs.footer-contactUs .formrWrapBox h3 {
  color: #000;
  font-weight: 500 !important;
}

.footer-company-sec.company-sec .companyImg {
  padding: 0;
  gap: 20px;
}

.footer-company-sec.company-sec .companyImg a {
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.footer-company-sec.company-sec .companyImg a img {
  margin: 0 auto;
  max-width: 90%;
}

.copy-text {
  max-width: 570px;
}

.copy-text p {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

/* Variance Infotech Branded Full-Width Cookie Consent Banner (Pure CSS - No HTML Changes Required) */
/* Variance Infotech Branded Full-Width Cookie Consent Banner (Pure CSS - No HTML Changes Required) */
#cookies-banner {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999999;
  background: #ffffff;
  box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.1), 0 -2px 6px rgba(15, 23, 42, 0.04);
  font-family: inherit;
  animation: viCookieSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 18px 110px 18px 36px;
  box-sizing: border-box;
  text-align: left !important;
}

.cookie-submitted {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

@keyframes viCookieSlideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Variance Theme Dual Gradient Top Border */
#cookies-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1d5ec9 0%, #4084e9 20%, #ff9334 100%);
  box-shadow: 0 1px 10px rgba(64, 132, 233, 0.3);
  z-index: 2;
}

/* Layout: Flex Row when displayed */
/* #cookies-banner:not([style*="display: none"]) {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
} */

/* Paragraph with Shield Icon */
#cookies-banner p {
  display: flex !important;
  align-items: center;
  color: #475569 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  flex: 1;
  max-width: 1100px;
  font-weight: 500;
}

/* Shield Icon Badge via CSS */
#cookies-banner p::before {
  content: '';
  display: inline-block;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background-color: #f0f6ff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231d5ec9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'%3E%3C/path%3E%3Cpath d='m9 12 2 2 4-4'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(64, 132, 233, 0.28);
  box-shadow: 0 2px 10px rgba(64, 132, 233, 0.12);
  margin-right: 18px;
  flex-shrink: 0;
}

/* Privacy Policy Link */
#cookies-banner p a {
  color: #1d5ec9 !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  transition: color 0.2s ease !important;
  margin-left: 5px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

#cookies-banner p a::after {
  content: ' \2197';
  font-size: 13px;
  margin-left: 2px;
}

#cookies-banner p a:hover {
  color: #ff9334 !important;
}

/* Theme Button (.btn-contact style pill with 20px 4px 20px 20px curve) */
#cookies-banner .cooki-btn-accept {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 11px 34px !important;
  border-radius: 20px 4px 20px 20px !important;
  background: linear-gradient(135deg, #4084e9 0%, #1d5ec9 100%) !important;
  border: 1px solid #1d5ec9 !important;
  box-shadow: 0 4px 14px rgba(29, 94, 201, 0.28) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  letter-spacing: 0.2px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  flex-shrink: 0;
}

#cookies-banner .cooki-btn-accept:hover {
  background: #ffffff !important;
  color: #4084e9 !important;
  border: 1px solid #4084e9 !important;
  box-shadow: 0 6px 20px rgba(64, 132, 233, 0.38) !important;
  transform: translateY(-1px) !important;
}

/* Cross Icon to Close Cookie Modal (Position Absolute Center) */
#cookies-banner .cooki-btn-close {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b !important;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none !important;
  z-index: 10;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(-50%) scale(0.95);
}

#cookies-banner:hover .cooki-btn-close {
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
}

#cookies-banner .cooki-btn-close:hover {
  background: #edf2f7;
  color: #0f172a !important;
  border-color: #cbd5e1;
  transform: translateY(-50%) scale(1.06);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  backdrop-filter: blur(4px);
}

body:has(.site-header .nav-item:hover .mega-menu)::before {
  opacity: 1;
  visibility: visible;
}

.mobile-sub-link[href="https://www.varianceinfotech.com//#"] {
  pointer-events: none;
}

.mega-menu.resources-menu .card-item-left {
    align-items: center;
}

.mega-menu.resources-menu .mega-group p {
    line-height: 18px;
}


@media (max-width: 1200px) {
  .office-locations-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  #cookies-banner {
    padding: 16px 20px;
  }

  #cookies-banner:not([style*="display: none"]) {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  #cookies-banner p {
    max-width: 100%;
    padding-right: 32px !important;
  }

  #cookies-banner .cooki-btn-accept {
    align-self: flex-end;
  }

  #cookies-banner .cooki-btn-close {
    top: 14px;
    right: 14px;
    transform: none;
  }

  #cookies-banner .cooki-btn-close:hover {
    transform: scale(1.06);
  }
}

@media (max-width: 576px) {
  #cookies-banner p::before {
    display: none;
  }

  #cookies-banner .cooki-btn-accept {
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 991px) {
  .contact-section.footer-contact-section .contact-information {
    width: 100%;
    padding: 0;
    max-width: unset !important;
  }

  .contactUs.footer-contactUs .formrWrapBox {
    width: 100% !important;
  }

  .contact-section.footer-contact-section {
    gap: 16px;
  }

  .contact-section.footer-contact-section .contactMeForm {
    width: 100%;
  }

  .section-title,
  .contact-section.footer-contact-section .contact-information h3 {
    font-size: 32px;
    margin-bottom: 10px;
  }
}