:root {
  --Color-Gray-Gray-600: #475467;
  --Color-Gray-Gray-900: #101828;
}
.m-top-5 {
  margin-top: 5%;
}

.input-wrapper {
  border-radius: 15px;
  border: 1px solid rgba(6, 18, 36, 0.1);
  background: var(--Color-System-White, #fff);
  box-shadow: 0px 20px 60px -6px rgba(0, 0, 0, 0.04);
  padding: 15px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.input-wrapper input {
  color: var(--Color-Gray-Gray-900, #101828);
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  outline: none;
  border: none;
  margin-left: 5px;
}
.community-comp button {
  color: var(--Color-System-White, #fff);
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: Chivo;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;

  display: inline-flex;
  height: 48px;
  padding: 0px 22px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--Color-Palette-Green-900, #006d77);
}
/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .input-wrapper {
    /* padding: 5px; */
  }
}

@media (min-width: 576px) {
  .input-wrapper {
  }
}

/* Wave component animation */
/* ::selection {
    background-color: salmon;
    color: white;
} */
.wave-background {
  background-color: #f0f6f7;
}
.location-component {
  margin-bottom: -1px !important;
}
.parallax > use {
  animation: move-forever 12s linear infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 20s;
}
.parallax > use:nth-child(2) {
  animation-delay: -2s;
  animation-duration: 12s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 12s;
}

@keyframes move-forever {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

.editorial {
  display: block;
  width: 100%;
  height: 10em;
  max-height: 100vh;
  margin: 0;
}

/* body {
    background-color: #234;
    margin: 0;
    max-height: 100vh;
    overflow: hidden;
    padding: 9em 0 0 0;
} */

.content {
  font-family: "Lato", sans-serif;
  text-align: center;
  background-color: #e2e2e2;
  min-height: 75vh;
  margin: -0.1em 0 0 0;
  padding: 1em;
  color: #eee;
  font-size: 1em;
  font-weight: 300;
}

.content h1 {
  margin-top: -1.3em;
  font-weight: 100;
  font-size: 5em;
  user-select: none;
  cursor: default;
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 50em) {
  .content h1 {
    font-size: 12vmax;
  }
  .editorial {
    height: 17vw;
  }
}

.testimonial-wrapper {
  position: relative;
  width: 100%;
  max-width: 1190px; /* or any suitable max width */
  margin: 0 auto;
}

.testimonial-svg-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.testimonial {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 40px;
  text-align: center;
}

.quote-bg {
  position: absolute;
  left: 17%;
}

.testimonial-pagination {
  position: static !important;
  display: block;
}

.sfhero-pagination {
  position: static !important;
  display: block;
}

.clipped-shape {
  width: 100%;
  aspect-ratio: 1190 / 529;
  background: white;
  clip-path: path(
    "M0 104.366C0 87.4879 13.1081 73.5119 29.951 72.4312L1155.95 0.184662C1174.39 -0.998574 1190 13.6397 1190 32.119V497C1190 514.673 1175.67 529 1158 529H32C14.3269 529 0 514.673 0 497V104.366Z"
  );
}

/* POS Gallaery image related css */

.imageWrapper {
  position: relative;
  width: 100%; /* Desktop: short height */
  overflow: hidden;
}

@media (max-width: 768px) {
  .imageWrapper {
    height: auto; /* Mobile: square */
  }
}

/* styles/globals.css or module CSS */
.pagination-line {
  width: 40px;
  height: 13px !important;
  bottom: 16px !important;
  top: auto !important;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  height: 2px;
  background: #000;
  transform: translateY(-50%);
  transition:
    left 0.3s ease,
    width 0.3s ease;
  z-index: 1;
  display: none;
}

.pagination-line.active {
  display: block;
}
.underline-hover {
  position: relative;
  display: inline-block;
}

.underline-hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: black;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

/* Trigger underline when parent is hovered */
.location-items:hover .underline-hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.search-bar-wrapper {
  max-width: 100%;
}

.search-bar {
  border-radius: 67px;
  border: 1px solid #d0d0d0;
}

.search-input {
  width: 100%;
  color: #101828;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: Chivo;
  font-size: 13.125px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 18.375px */
  padding: 4px 8px;
}

.search-input::placeholder {
  color: black;
  opacity: 1;
}

/*  Strategy Component Puzzle css */

.strategy-puzzle-1 {
  position: absolute;
  left: 0px;
}
.strategy-puzzle-1-text {
  position: absolute;
  top: 153px;
  left: 10px;
  width: 80%;
}
.strategy-puzzle-2 {
  position: absolute;
  left: 273px;
}
.strategy-puzzle-2-text {
  position: absolute;
  top: 153px;
  left: 10px;
  width: 90%;
}
.strategy-puzzle-3 {
  position: absolute;
  left: 503px;
}
.strategy-puzzle-3-text {
  position: absolute;
  top: 153px;
  left: 45px;
  width: 90%;
}
.strategy-puzzle-4 {
  position: absolute;
  left: 803px;
}
.strategy-puzzle-4-text {
  position: absolute;
  top: 153px;
  left: 35px;
  width: 80%;
}

.border-start-impact {
  border-left: 1px solid #c6c6c6;
}

.border-end-impact {
  border-right: 1px solid #c6c6c6;
}
/* Achieve component animation (gif) */
.achieve-component-display {
  position: absolute;
  right: -150px;
  top: -50px;
}
.loader-circle-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px solid transparent;
  border-top: 5px solid #348890b3;
  border-right: 5px solid #348890b3;
  border-radius: 100%;
  border-width: 3px;
}
.spinner_top {
  animation: spinnerOne 10s linear infinite;
  height: 576px;
  width: 576px;
  border-top: 10px solid #348890b3;
  border-right: 10px solid #348890b3;
  border-left: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.7;
}
.spinner_mid {
  animation: spinnerOne 10s linear infinite;
  height: 428px;
  width: 428px;
  border-top: 10px solid rgba(253, 204, 87, 0.8);
  border-right: 10px solid rgba(253, 204, 87, 0.8);
  border-left: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.7;
}
.spinner_sm {
  animation: spinnerOne 10s linear infinite;
  height: 294px;
  width: 294px;
  border-top: 10px solid #348890b3;
  border-right: 10px solid #348890b3;
  border-left: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.spinner_bot {
  animation: spinnerOne 10s linear infinite;
  height: 199px;
  width: 199px;
  border-top: 10px solid rgba(253, 204, 87, 0.8);
  border-right: 10px solid rgba(253, 204, 87, 0.8);
  border-left: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
@keyframes spinnerOne {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Tablet styles */

@media (min-width: 768px) and (max-width: 991px) {
  .achieve-component-display {
    /* display: none !important; */
  }
  .achieve-component-display {
    display: none;
  }
}
/* Mobile styles */

@media (max-width: 767px) {
  .achieve-component-display {
    display: none !important;
  }
}

.custom-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-label {
  display: block;
  font-size: 14px;
  font-family: Chivo;
  color: #475467;
  line-height: 140%; /* 19.6px */
  margin-bottom: 4px;
}

.dropdown-toggl {
  display: flex;
  align-items: center;
  justify-content: space-between; /* space between text & arrow */
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 12px;
  background: transparent;
  border: none;
  font-size: 18px;
  color: #101828;
  font-family: Chivo;
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid #333;
  min-width: 160px; /* keeps spacing consistent */
}

/* Arrow styling */
.arrow {
  border: solid #333;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 10px;
  transition: transform 0.2s ease;
  transform: rotate(45deg); /* default: down */
}

/* Rotate arrow up on hover */
.dropdown-toggl:hover .arrow {
  transform: rotate(-135deg);
}

.arrow.down {
  transform: rotate(45deg);
}
.arrow.up {
  transform: rotate(-135deg);
}

/* Hide menu initially */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  z-index: 1000;
  list-style: none;
  padding: 8px 0;
  width: 95%;
  margin-left: 10px;
}

/* When toggle is hovered → menu shows */
.dropdown-toggl:hover + .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}

/* Thicker border & accent color when menu is open */
.dropdown-menu:hover .dropdown-toggl {
  border-bottom: 4px solid #006d77;
}

.dropdown-item {
  padding: 8px 16px;
  cursor: pointer;
  font-family: Chivo;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  color: #475467;
}

.dropdown-item:hover {
  background: #e1f0f0;
}

.dropdown-item.active {
  font-weight: bold;
  color: #00796b !important;
  background-color: white !important;
}

.blog-header-hero {
  padding: 144px 242px;
}

/* Hero Section */
.event-header {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Overlapping Heading */
.overlap-heading-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -120px;
  text-align: start;
}

.overlap-heading {
  background: white;
  display: inline-block;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Chivo, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.32;
  text-transform: capitalize;
  text-align: start;
}

.overlap-heading-text {
  font-family: Chivo, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.32;
  text-align: start;
}

/* Next Section */
.next-section {
  position: relative;
  z-index: 1;
  text-align: start;
}

.events-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: sans-serif;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 64px;
}

.tabs button {
  background: none;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  color: #475467;
  border-bottom: 2px solid transparent;
}

.tabs button.active {
  color: #015c65;
  border-bottom: 2px solid #015c65;
  border-radius: 12px 12px 0 0;
}

.event-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px 32px 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  background: #fff;
  box-shadow: 2px 4px 50px 0 rgba(0, 0, 0, 0.08);
}

.event-date {
  text-align: center;
  margin-right: 80px;
  min-width: 90px;
}

.event-day {
  color: #015c65;
  text-align: right;
}

.event-details {
  flex: 1;
}

.event-logo {
  margin-left: 20px;
}

/* Remove default arrow */
details summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 28px; /* space for arrow */
}

details summary::-webkit-details-marker,
details summary::marker {
  display: none;
}

/* Add custom chevron (closed state) */
details summary h6::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%) rotate(0deg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23101828' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center center;
  background-size: 24px;
  transition: transform 0.25s ease;
}

/* Rotate when open */
details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.sf-2-pagination .swiper-pagination-bullet {
  background: #9a9997 !important;
  cursor: pointer;
}
.sf-2-pagination .swiper-pagination-bullet-active {
  background: #015c65 !important;
  cursor: pointer;
}

.sf-pagination .swiper-pagination-bullet {
  background: #feefc4 !important;
  cursor: pointer;
}

.sf-pagination .swiper-pagination-bullet-active {
  background: #ffc400 !important;
  cursor: pointer;
}

/* Wrapper for positioning */
.select-wrapper {
  position: relative;
  width: 100%;
}

/* Remove default browser arrow */
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  cursor: pointer;
  border-radius: 4px !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Focus style */
.select-wrapper select:focus {
  outline: none;
  border-color: solid #f09e00;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Position and animate SVG arrow */
.select-wrapper .dropdown-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.salesforce-comp-text {
  color: #fff;
  font-family: Chivo;
  font-size: 16px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  line-height: 132%; /* 21.12px */
}
