/* Menu Toggle and Menu List */
body.menu-open {
  overflow: hidden;
}

.custom-menu {
  position: relative;
  z-index: 1000;
}

.menu-toggle {
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle div {
  width: 30px;
  height: 4px;
  background-color: #fff;
  transition: 0.4s;
}

.menu-toggle.open .bar1 {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.menu-toggle.open .bar2 {
  transform: rotate(45deg) translate(-5px, -5px);
}

.menu-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  transition: right 0.5s ease, background-color 0.5s ease;
  z-index: 999;
}

.menu-list.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8); /* Ensure the background color with blur */
}

.menu-item {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.menu-item a {
  text-decoration: none;
  display: block;
  padding: 15px;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.3s;
}

.menu-item a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Additional Styles */
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
button.learn-more {
  width: 12rem;
  height: auto;
}
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}
button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
button:hover .circle {
  width: 100%;
}
button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
button:hover .button-text {
  color: #fff;
}

/* Animate Get in Touch Button */
.wp-block-button__link.get-in-touch {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: #007cba;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s, padding 0.3s;
}

.wp-block-button__link.get-in-touch:hover {
    transform: scale(1.1);
    background-color: #005f8b;
    padding: 12px 24px; /* Increase padding for size effect */
}

/* Animate Learn More Button */
.wp-block-button__link.learn-more {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: #28a745;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
}

.wp-block-button__link.learn-more:hover {
    transform: scale(1.1);
    background-color: #1c7c31;
}

.no-background {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.search-icon {
    fill: #FFFFFF; /* Change this to match your theme's color scheme */
    transition: fill 0.3s ease;
}

.wp-block-search__button {
    background: none;
    border: none;
    padding: 0;
    margin-left: 15px; /* Adjust as needed */
}

.no-background:hover {
    background: none; /* Ensure no background on hover */
}

body.menu-open {
  overflow: hidden;
}

.custom-menu {
  position: relative;
  z-index: 1000;
}

.menu-toggle {
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle div {
  width: 30px;
  height: 4px;
  background-color: #fff;
  transition: 0.4s;
}

.menu-toggle.open .bar1 {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.menu-toggle.open .bar2 {
  transform: rotate(45deg) translate(-5px, -5px);
}

.menu-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  transition: right 0.5s ease, background-color 0.5s ease;
  z-index: 999;
}

.menu-list.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8); /* Ensure the background color with blur */
}

.menu-item {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.menu-item a {
  text-decoration: none;
  display: block;
  padding: 15px;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.3s;
}

.menu-item a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.apple-blur {
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
}

.scrolling-wrapper::-webkit-scrollbar {
  background: transparent;
}

.scrolling-wrapper .stk-row {
  flex-wrap: nowrap;
}

.scrolling-wrapper .stk-block {
  min-width: 75%!important;
  display: inline-flex;
}

.sf-sub-indicator {
  display: none;
}

.apps-tile {
  border-radius: 10px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 
		
body.menu-open {
  overflow: hidden;

.apps-tile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 20px auto;
}

.apps-tile h2 {
  width: 100%;
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.apps-tile p {
  width: 100%;
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.app-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.app-item:hover {
  transform: scale(1.05);
}

.app-item img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.app-details {
  flex-grow: 1;
}

.app-details h3 {
  margin: 0;
  font-size: 18px;
}

.app-details p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

.app-action {
  display: flex;
  align-items: center;
}

.app-action button {
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #007aff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.app-action button:hover {
  background-color: #005f8b;
}
