/*
Theme Name: SkyClinics
Theme URI: https://skyclinics.com
Author: Jon
Version: 1.0.0
 */
 
:root {
    --primary: #6A00F8;
    --secondary: #14081E;
    --light: rgba(106, 0, 248, 0.08);
    --lightPurple: #e4d3fe;
    --shadow: #f5eefd;
    --lightYellow: rgba(233, 165, 18, 0.12);
    --lightFont: #695D7B;
    --gradient: linear-gradient(180deg, rgba(106, 0, 248, 0.28) 0%, #6A00F8 100%);
    --playfair: "Playfair Display", serif;
    --inter: "Inter Tight", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0 15px 15px;
}
 
h1, h2, h3, h4, h5, h6 {
    font-family: var(--inter);
    margin: 0;
    letter-spacing: -1px;
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -1px;
}

p, a, li, strong, bold {
    font-family: var(--inter);
    letter-spacing: 1%;
    margin: 0;
}

.container {
    position: relative;
}

.btn {
    border-radius: 50px;
    font-size: 18px;
    padding: 15px 20px;
    text-decoration: none;
    transition: linear .1s;
}

.btn i {
    font-size: 15px;
    transform: rotate(225deg);
}

.btn-purple {
    background: var(--primary);
    color: #fff;
}
.btn-purple:hover {
    box-shadow: 0 2px 8px rgba(125, 115, 140, 0.4);
    transform: translateY(-2px);
}
.btn-white:hover {
    box-shadow: 0 2px 8px rgba(125, 115, 140, 0.15);
    transform: translateY(-2px);
}
.btn-purple i {
    color: #fff;
}

.btn-white {
    background: #fff;
    border: 1px solid rgba(125, 115, 140, 0.16);
    color: var(--secondary);
}

.btn-white i {
    color: var(--primary);
}

.label-pill {
    border: 1px solid rgba(106, 0, 248, 0.16);
    background: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
}
.center-label-pill {
    border: 1px solid rgba(106, 0, 248, 0.16);
    margin: auto auto 30px !important;
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--secondary);
    background: #fff;
    position: relative;
    width: fit-content !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.label-pill .dot, .center-label-pill .dot, h4 .dot {
    height: 5px;
    width: 5px;
    background: var(--primary);
    border-radius: 20px;
    box-shadow: 0 0 0 4px rgba(106, 0, 248, 0.12)
}
.section-greeting {
    color: var(--lightFont);
    width: 55%;
    margin: 20px auto auto;
    text-align: center;
}
.page-header {
    margin: 0 0 50px;
    padding: 60px 20px;
    border-radius: 12px;
    background: var(--light);
    text-align: center;
    color: var(--primary);
}
.page-content {
    word-wrap: break-word;
}
.page-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}
.swal2-popup {
    font-family: var(--inter);
}
#email-signup-message {
    font-family: var(--inter);
    margin: 10px;
}
.signup-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Hide spinner by default */
.btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* When loading */
.signup-btn.loading .btn-spinner {
  display: inline-block;
}

.signup-btn.loading .btn-text {
  opacity: 0.7;
}

/* Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.yellow-blur {
    position: absolute;
    background-color: rgba(248, 182, 0, 0.2);
    filter: blur(275px);
    bottom: 0;
    left: 0;
    width: 650px;
    height: 650px;
}
.purple-blur {
    position: absolute;
    background-color: rgba(106, 0, 248, 0.2);
    filter: blur(275px);
    top: 0;
    right: 0;
    width: 650px;
    height: 650px;
}
/*---------------------------------------
MODAL FORM
---------------------------------------*/
.vm-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  font-family: var(--inter);
  overflow: hidden;
}

.vm-modal.is-open {
  display: block;
}

.vm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
}

.vm-modal__dialog {
  position: relative;
  width: min(520px, calc(100% - 32px));
  margin: 8vh auto 0;
  background: var(--shadow);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(-6px);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.vm-modal.is-open .vm-modal__dialog {
  transform: translateY(0);
  opacity: 1;
}

.vm-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--primary);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}

.vm-modal__title {
  margin: 0 44px 6px 0;
  font-size: 22px;
  letter-spacing: 0;
}

.vm-modal__sub {
  margin: 0 0 14px;
  opacity: 0.8;
}

.vm-form {
  display: grid;
  gap: 12px;
}

.vm-field span {
  display: block;
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.vm-field input {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.9);
}

.vm-btn {
    height: 46px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: linear .15s;
}

.vm-btn:hover {
    background: var(--secondary);
}

.vm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.vm-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
  border-radius: 50%;
  display: none;
  animation: spin 0.6s linear infinite;
}

.vm-btn.is-loading .btn-spinner {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
MENU
---------------------------------------*/
header .container {
    max-width: 100%;
}
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background: #fff;
    position: relative;
    transition:
    padding 400ms ease,
    background-color 400ms ease,
    box-shadow 400ms ease,
    backdrop-filter 400ms ease,
    -webkit-backdrop-filter 400ms ease;
}
.menu.is-stuck {
  position: fixed;
  top: 0;
  left: calc(50% + 12px);
  transform: translateX(-50%);
  width: 100%;
  z-index: 9999;
    padding: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

/* Slide-down animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.menu img {
    width: 175px;
}
.menu .logo {
    display: block;
    width: 175px;
    padding: 0;
    position: relative;
    z-index: 99999;
}
.main-nav {
    width: fit-content;
    display: flex;
}
.main-nav li {
    display: block;
}
.main-nav a {
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: none;
    color: var(--lightFont);
    margin: 0;
    transition: linear .15s;
    padding: 5px 10px;
    position: relative;
}
.main-nav a:hover,
.main-nav li.current-menu-item.page-item-660 a{
    color: var(--primary);
}
.main-nav a:before {
    content: "";
    width: 20px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    opacity: 0;
    border-radius: 15px;
    background: var(--primary);
    transition: linear .15s;
}
.main-nav a:hover:before,
.main-nav li.current-menu-item.page-item-660 a:before{
    bottom: -2px;
    opacity: 1;
}
.demo-button {
    width: fit-content;
    text-decoration: none;
    color: #fff;
    background: var(--secondary);
    border-radius: 50px;
    padding: 12px 20px 14px;
    border: none;
    transition: linear .15s;
}
.demo-button:hover {
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(125, 115, 140, 0.4);
    transform: translateY(-2px);
}
.demo-button i {
    font-size: 15px;
    transform: rotate(225deg);
    margin-left: 5px;
}
.main-nav .main-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .main-nav-menu > li {
  position: relative;
}

.main-nav .main-nav-menu a {
  display: block;
  text-decoration: none;
}

@media (min-width: 992px) {
  .main-nav .main-nav-menu {
    display: flex;
    gap: 24px;
    align-items: center;
  }
}

.main-nav .main-nav-menu li .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 150ms ease;

  z-index: 9999;
}

@media (min-width: 992px) {
  .main-nav .main-nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
  }
}
.main-nav .main-nav-menu li .sub-menu li a:before {
    display: none;
}
.main-nav .main-nav-menu li .sub-menu li a {
  padding: 10px 14px;
  white-space: nowrap;
  text-align: left;
}

.main-nav .main-nav-menu li .sub-menu li a:hover {
  cursor: pointer;
}

.desktop-only { display: inline-flex; }
.mobile-only { display: none; }

/* Hide hamburger on desktop */
.nav-toggle{
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* Overlay */
.nav-overlay{
  position: fixed;
  inset: 0;
  z-index: 9998;
}

.nav-close {
    display: none;
}

.menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    width: 100%;
    position: relative;
}
.mobile-menu-accent {
    display: none;
}
/* Mobile menu */
@media (max-width: 900px){
    .main-nav .mobile-menu-accent {
        display: block;
        position: absolute;
        bottom: -50px;
        left: -65px;
        width: 700px;
        transform: rotate(180deg);
    }
    .nav-toggle img {
        width: 24px;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
  .desktop-only { display: none; }
  .mobile-only { display: inline-flex; }

  .nav-toggle { 
      display: inline-flex; 
      font-size: 20px;
      width: fit-content;
      border: 1px solid #ddd;
        padding: 7px;
        border-radius: 50px;
        background: #fff;
  }

  .main-nav{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: #fff;
    z-index: 9999;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;

    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .main-nav.is-open{
    transform: translateX(0);
  }

  .nav-close{
    align-self: flex-end;
    border: 0;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 8px;
    display: block;
  }

  /* Optional: bigger tap targets */
  .main-nav a{
    font-size: 18px;
    text-decoration: none;
    padding: 12px 20px;
    background: var(--shadow);
    border-radius: 50px;
    color: var(--secondary);
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .main-nav .demo-button {
      justify-content: center;
      background: var(--secondary);
      color: #fff;
      position: relative
  }

  /* Prevent page scrolling when menu open */
  body.menu-open{
    overflow: hidden;
  }
}
/* Desktop default */
.nav-mobile { 
    display: none;
    position: relative;
}
.nav-desktop { display: block; }

@media (max-width: 991.98px) {
  .nav-desktop { display: none; }
  .nav-mobile { display: block; }
}
/*---------------------------------------
COMING SOON
---------------------------------------*/
.coming {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.coming h1 {
    font-size: 50px;
    margin: 30px 0;
}

.coming p {
    font-size: 18px;
}

.back {
    position: absolute;
    top: 0;
    right: 0;
}

/*---------------------------------------
HOME -HERO
---------------------------------------*/
.home-hero {
    padding: 60px;
    border-radius: 40px;
    background: rgba(111, 4, 254, .05);
    position: relative;
    overflow: hidden;
}
.home-hero .container {
    position: static;
}
.home-hero .label-pill {
    margin-bottom: 30px;
}
.home-hero h1 {
    font-weight: 500;
}
.home-hero h3 {
    font-size: 54px;
    color: var(--primary);
    font-family: var(--playfair);
    font-style: italic;
    font-weight: 600;
}
.home-hero p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 30px;
}
.home-hero .hero-buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.hero-image-one {
    position: absolute;
    bottom: 0;
    right: -50px;
    z-index: 1;
    max-width: 800px;
}
.hero-image-two {
    position: absolute;
    top: 100px 0;
    right: -75px;
    max-width: 600px;
    border-radius: 16px;
}
.hero-doctors {
    margin-top: 50px;
    padding: 5px 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.28);
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.48);
    gap: 10px;
}
.hero-doc-images {
    display: flex;
    align-items: center;
}
.hero-doctors p {
    margin: 0;
}
.hero-doctors img {
    width: 100px;
}

/*---------------------------------------
HOME - TILES
---------------------------------------*/
.home-tiles {
    margin-top: 30px;
}
.tile {
    border: 1px solid #eee;
    border-radius: 28px;
    padding: 15px;
    min-height: 225px;
    display: flex;
    flex-wrap: wrap;
}
.tile .label-pill {
    font-size: 16px;
    width: 100%;
    border: none;
    box-shadow: 0 4px 16px 0 rgba(20, 8, 30, 0.05);
    padding: 5px 15px;
    z-index: 2;
    position: relative;
}
.tile-one {
    background-image: url(/wp-content/uploads/2026/01/Group-2.svg);
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.tile-one-doctors {
    width: 100%;
    z-index: 2;
    position: relative;
}
.tile-one-dots {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
}

/* testing out the dots on the docs moving */
@keyframes rotate360 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.rotating-image {
  position: absolute;
  top: 50%;
  left: 50%;
  animation: rotate360 30s linear infinite;
  transform-origin: center;
  will-change: transform;
}
.tile-two {
    background: linear-gradient(55deg, rgba(255, 255, 255) 60%, var(--light) 90%);
    position: relative;
}
.tile-two .purple-header {
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 25px;
}
.patient-review-wrapper {
    display: flex;
    align-items: center;
}
.tile-two-content {
    margin-bottom: 30px;
}
.patient-review-wrapper img {
    width: 60px !important;
}
.patient-tag {
    font-size: 12px;
    color: #aaa
}
.tile-two .fa-quote-right {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 28px;
    color: var(--primary);
}
.tile-three {
    background-size: cover;
}
.tile-three .label-pill {
    align-self: end;
}
.tile-four img, .tile-four div {
    text-align: center;
    margin: auto;
}
.tile-four img {
    width: auto !important;
}
.tile-four p {
    margin: 0 auto auto;
}
.tile-four-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.home-tiles-carousel .owl-item .item {
    display: block;
}
.owl-dots {
    margin: 10px auto;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.owl-dots span {
    display: block;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 20px;
}
.owl-dots .active {
    border: 5px solid var(--light) !important;
    border-radius: 20px;
}
/*---------------------------------------
HOME - LOGOS
---------------------------------------*/
.home-logos {
    margin: 100px 0;
}
.home-logos p {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}
.home-logos p span {
    color: var(--primary);
}
.home-logos .owl-stage {
    display: flex;
    align-items: center;
}
.home-logos .owl-item img {
    display: block;
    width: 200px;
    margin: auto;
}
/*---------------------------------------
HOME - PLATFORM
---------------------------------------*/
.home-platform {
    border: 1px solid #eee;
    padding: 100px 60px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}
.home-platform h2, .home-platform p {
    text-align: center;
}
.home-platform .label-pill {
    margin: auto auto 30px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--secondary);
    width: fit-content;
    background: #fff;
    position: relative;
}
.home-platform p {
    color: var(--lightFont);
    width: 55%;
    margin: 20px auto auto;
}
.platform-items {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}
.platform-items-right p {
    text-align: left;
    margin: 0;
    width: 100%;
}
.platform-items-left .item {
    justify-content: flex-end;
}
.platform-items-left p, .platform-items-left h3 {
    text-align: right;
    margin: 0;
    width: 100%;
}
.platform-items .item {
    display: flex;
    gap: 20px;
    align-items: center;
}
.platform-items .item h3 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 2px;
    font-weight: 500;
    letter-spacing: 0px;
}
.platform-items .item p {
    font-size: 14px;
    color: var(--lightFont);
}
.platform-items .item i {
    background: linear-gradient(0deg, #6A00F8, #6A00F8), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 100%);
    border-radius: 50px;
    padding: 16px;
    font-size: 20px;
    color: #fff;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 0 5px rgba(106, 0, 248, 0.12);
}
.platform-items .item-two, .platform-items .item-five {
    margin: 75px 0;
}
.platform-items .item-two {
    transform: translateX(-30px);
}
.platform-items .item-five {
    transform: translateX(30px);
}
.platform-circle {
    width: 338px;
    height: 338px;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin: auto;
    position: relative;
}
.inner-white-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 210px;
    height: 210px;
    box-shadow: 0 0 0 25px #f5f5f5;
    border-radius: 50%;
    margin: auto;
}
.inner-icon-circle {
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 0 0 10px #f5f5f5;
}
.inner-icon-holder {
    position: relative;
    height: 100%;
}
.inner-icon-holder img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
}
.line-dot {
    background: #DEDAE2;
    height: 14px;
    width: 14px;
    border-radius: 20px;
    position: absolute;
    z-index: 2;
}
.line-dot-one {
    top: 31px;
    left: 53px;
}
.line-dot-two {
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
}
.line-dot-three {
    bottom: 28px;
    left: 58px;
}
.line-dot-four {
    top: 31px;
    right: 53px;
}
.line-dot-five {
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
}
.line-dot-six {
    bottom: 28px;
    right: 58px;
}
.line-connector {
    position: absolute;
    z-index: 1;
    width: 95px;
}
.connector-one {
    top: 23px;
    left: -38px;
}
.connector-two {
    top: 50%;
    left: -67px;
    transform: translateY(-50%);
    width: 65px;
}
.connector-three {
    bottom: 16px;
    left: -38px;
}
.connector-four {
    top: 23px;
    right: -38px;
}
.connector-five {
    top: 50%;
    right: -67px;
    width: 65px;
    transform: translateY(-50%);
}
.connector-six {
    bottom: 16px;
    right: -38px;
}
.mobile-platform-icon, .mobile-platform-content {
    display: none;
}
.mobile-platform-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    /* Smooth movement along the circle */
    transition: transform 1s cubic-bezier(.2,.8,.2,1), box-shadow 250ms ease;
    will-change: transform;
    cursor: pointer;
    touch-action: manipulation;
  }
.mobile-platform-icon i {
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(180deg, rgba(106, 0, 248, 0) 0%, rgba(106, 0, 248, 0.04) 100%);
    border-radius: 50px;
    padding: 10px;
    color: var(--primary);
    width: 40px;
    height: 40px;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 0 0 5px rgba(106, 0, 248, 0.05);
}
.mobile-platform-icon.is-active i {
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 0 0 5px rgba(106, 0, 248, 0.05);
}
.platform-cta {
    margin: 50px auto;
    text-align: center;
}
.platform-cta a {
    display: block;
    width: fit-content;
    margin: 15px auto;
}
.platform-cta a .footer-buttons a i {
    font-size: 15px;
    transform: rotate(225deg);
}
/*---------------------------------------
HOME - HOW IT WORKS
---------------------------------------*/
.home-hiw {
    padding: 100px 0;
}
.home-hiw h2 {
    text-align: center;
}
.home-hiw .hiw-greeting {
    color: var(--lightFont);
    width: 55%;
    margin: 20px auto auto;
    text-align: center;
}
.hiw-steps {
    display: flex;
    flex-wrap: wrap;
}
.steps-container {
    margin-top: 75px;
    align-items: center;
}
.hiw-step {
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0 20px 20px;
    margin: 10px 0;
    display: flex;
    gap: 20px;
    align-items: center;
    border-left: 2px solid #ddd;
    transition: linear .1s;
}
.hiw-step:hover {
    cursor: pointer;
    border-left: 2px solid var(--primary);
}
.hiw-step:hover i {
    color: var(--primary);
    background: var(--light);
}
.hiw-step i {
    color: #555;
    background: #eee;
    border-radius: 10px;
    font-size: 22px;
    padding: 13px;
    width: 50px;
    height: 50px;
    transition: linear .1s;
}
.hiw-step h3, .hiw-slide h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 5px;
}
.hiw-step p {
    text-align: left;
    width: 85%;
    margin: 0;
}
.hiw-step-label {
    font-family: var(--inter);
    font-size: 13px;
    letter-spacing: 0;
    color: var(--primary);
    margin-bottom: 5px;
}
.home-hiw .is-active i {
    color: #fff;
    background: var(--primary);
}
.home-hiw .is-active {
    border-left: 2px solid var(--primary);
}
.hiw-steps-carousel {
    display: none !important;
}
.hiw-media-image {
  transition: opacity 180ms ease, transform 180ms ease;
  opacity: 1;
  transform: scale(1);
}

.hiw-media-image.is-swapping {
  opacity: 0;
  transform: scale(0.98);
}
/*---------------------------------------
HOME - AUDIENCE
---------------------------------------*/
.home-audience {
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    padding: 100px 60px;
    border-radius: 40px;
}
.home-audience h2 {
    text-align: center;
}
.home-audience .audience-card {
    position: relative;
    border-radius: 30px;
    box-shadow: 0px 8px 28px 0px rgba(125, 115, 140, 0.03);
    border: 1px solid rgba(105, 93, 123, 0.12);
}
.home-audience .audience-card img {
    width: 100%;
    margin-bottom: -3px;
    border-radius: 30px 30px 0 0;
}

.home-audience .audience-card p {
    padding: 35px 20px 20px;
    border-radius: 0 0 30px 30px;
    background: #fff;
}
.audience-icon {
    position: absolute;
    left: 20px;
    bottom: 70px;
    background: #fff;
    z-index: 2;
    border-radius: 50px;
    font-size: 26px;
    color: var(--primary);
    padding: 8px;
    box-shadow: 0px 8px 28px 0px rgba(125, 115, 140, 0.12);
    border: 1px solid rgba(105, 93, 123, 0.12);
}
.audience-card-wrapper {
    margin-top: 75px;
}
/*---------------------------------------
HOME - USE CASES
---------------------------------------*/
.home-case {
    padding: 100px 0;
}
.home-case h2 {
    text-align: center;
}
.case-nav {
    margin: 35px auto;
    text-align: center;
    width: fit-content;
    background: #eee;
    padding: 5px;
    border-radius: 50px;
}
.case-nav button {
    font-size: 16px;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    background: none;
    transition: linear .1s;
    color: #555;
}
.case-nav button:hover {
    cursor: pointer;
}
.case-nav .is-active {
    background: var(--secondary);
    color: #fff;
}
.cases-wrapper {
    padding: 25px;
    border-radius: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 0 0 5px #f2f2f2;
    position: relative;
}
.case-wrapper-bottom-one {
    position: absolute;
    bottom: -41px;
    left: 50%;
    transform: translateX(-50%);
    height: 35px;
    background: #fff;
    border-radius: 0 0 50px 50px;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    box-shadow: 0 0 0 5px #f2f2f2;
    width: 95%;
    z-index: 1;
    opacity: .6;
}
.case-wrapper-bottom-two {
    position: absolute;
    bottom: -81px;
    left: 50%;
    transform: translateX(-50%);
    height: 35px;
    background: #fff;
    border-radius: 0 0 50px 50px;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    box-shadow: 0 0 0 5px #f2f2f2;
    width: 90%;
    z-index: 0;
    opacity: .3;
}
.case-card-header {
    display: flex;
    gap: 10px;
}
.case-card-header i {
    color: var(--primary);
    font-size: 32px;
}
.case-card-header h3 {
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 28px;
}
.case-label {
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
}
.case-subheader {
    font-size: 24px;
    font-weight: 400;
    margin: 20px 0;
}
.case-divider {
    background: #eee;
    margin: 25px 0;
    height: 2px;
    width: 100%;
}
.case-results {
    margin-top: 30px;
}
.case-image {
    text-align: right;
    margin: auto 0 auto auto;
    width: 90%;
    display: block;
    border-radius: 22px;
}
.case-results ul {
    background: #f5f5f5;
    border-radius: 15px;
    padding-left: 15px;
    list-style: none;
}
.case-results li {
    position: relative;
}
.case-results li::before {
  content: "";
  background-image: url('/wp-content/uploads/2026/01/Frame-2.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; 
  position: absolute; 
  left: 0;
  top: 50%;
  transform: translateY(-50%); 
  height: 20px;
  width: 20px;
}
.case-results ul li {
    padding: 15px 15px 15px 25px;
}
.case-results ul li:nth-child(2) {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
/*---------------------------------------
HOME - WHAT YOU GET
---------------------------------------*/
.home-gain {
    padding: 100px 0;
}
.home-gain h2 {
    text-align: center;
}
.gain-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 75px;
}
.gain-card {
    border-left: 2px dashed #ddd;
    padding: 20px;
}
.gain-card i {
    font-size: 26px;
    color: var(--primary);
}
.gain-card h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    margin: 10px 0;
}
.gain-card p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--lightFont);
}
/*---------------------------------------
HOME - PRICING
---------------------------------------*/
.home-pricing {
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    padding: 100px 60px;
    border-radius: 40px;
}
.home-pricing h2 {
    text-align: center;
}
.pricing-card {
    background: #fff;
    border-radius: 20px;
    position: relative;
    border: 1px solid #ddd;
    height: 100%;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}
.pricing-card-heading {
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.pricing-card-heading p {
    color: var(--lightFont);
    font-size: 14px;
}
.included {
    color: var(--lightFont);
    font-size: 14px;
    padding-left: 20px;
}
.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 5px;
}
.pricing-card-features li {
    font-size: 14px;
    margin: 10px 0;
}
.pricing-card-wrapper {
    margin: 75px auto;
    align-items: flex-start;
    width: 90%;
}
.pricing-card-wrapper .col-lg-4 {
    align-self: stretch;
    position: relative;
}
.pricing-card ul {
    padding-left: 40px;
    list-style: none;
    width: 100%;
    min-height: 280px;
}
.pricing-card-features li {
    position: relative;
}
.pricing-card-features li::before {
  content: "";
  background-image: url('/wp-content/uploads/2026/01/check-solid-full-1.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; 
  position: absolute; 
  left: -22px;
  top: 50%;
  transform: translateY(-50%); 
  height: 20px;
  width: 20px;
  align-self: flex-end;
}
.pricing-card-features ul li {
    padding: 15px 15px 15px 25px;
}
.pricing-card-button {
    margin: auto;
    width: calc(100% - 40px);
    display: block;
    color: var(--secondary);
    padding: 10px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    border: 1px solid rgba(106, 0, 248, 0.16);
    background: rgba(106, 0, 248, 0.04);
}
.pricing-featured {
    position: absolute;
    left: 0px;
    top: -35px;
    text-align: center;
    width: 100%;
    background: rgba(106, 0, 248, 0.05);
    height: calc(100% + 48px);
    border-radius: 20px;
}
.pricing-featured p {
    margin: 10px auto;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}
.pricing-featured i {
    color: var(--primary);
    margin-right: 5px;
}
.pricing-purple-button {
    background: var(--primary);
    color: #fff;
}
.mobile-pricing {
    display: none;
}
/*---------------------------------------
HOME - SCALE
---------------------------------------*/
.home-scale {
    padding: 100px 0;
}
.home-scale h2 {
    text-align: center;
}
.scale-wrapper {
    margin-top: 50px;
    gap: 30px;
    flex-wrap: wrap;
}
.scale-card {
    background-image: url(/wp-content/uploads/2026/01/Modern-1.svg);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--lightPurple);
    box-shadow: 0px 0px 0px 4px var(--shadow);
    background-position-x: right;
    background-repeat: no-repeat;
}
.scale-wrapper .col-lg-3 {
    width: calc(25% - 30px);
}
.scale-wrapper {
    display: flex;
}
.scale-number {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 25px;
}
.scale-title {
    font-size: 20px;
}
.scale-number span {
    opacity: .25;
}
.scale-number p {
    opacity: .25;
    font-size: 24px;
    display: inline-block;
}
.scale-card-2 .scale-number:after {
    content: "/mo";
    opacity: .25;
    font-size: 20px;
}
/*---------------------------------------
HOME - TESTIMONIALS
---------------------------------------*/
.home-reviews {
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    padding: 100px 60px;
    border-radius: 40px;
    display: none;
}
.home-reviews h2 {
    text-align: center;
}
.review-card {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #eee;
    background: #fff;
}
.review-content {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0;
    min-height: 120px;
}
.review-content-bottom {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.review-name {
    font-size: 14px;
}
.review-position {
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
}
.testimonials-carousel:hover {
    cursor: grab;
}
/*---------------------------------------
HOME - FAQ
---------------------------------------*/
.home-faq {
    padding: 100px;
}
.home-faq h2 {
    text-align: center;
}
.faq-item {
  margin: 15px 0;
  border: 1px solid #f5f5f5;
  padding: 20px;
  border-radius: 20px;
  background: #f5f5f5;
}
.faq-wrapper {
    margin: 50px auto;
    max-width: 850px;
}
.faq-question {
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
	margin-left: auto;
	transition: transform 0.25s ease;
	background: #fff;
    border-radius: 50%;
    padding: 8px;
    border: 1px solid #ddd;
}

.faq-item[open] .faq-chevron {
	transform: rotate(180deg);
}
.faq-q {
    font-family: var(--inter);
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    letter-spacing: -1%;
}
.faq-answer {
    margin-top: 10px;
    opacity: 0;
	transform: translateY(-6px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	will-change: opacity, transform;
    color: var(--lightFont);
}
.faq-answer p {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}
/* When open */
.faq-item[open] .faq-answer {
	opacity: 1;
	transform: translateY(0);
}
/*---------------------------------------
FOOTER
---------------------------------------*/
.footer-top {
    padding: 100px 0;
    background: var(--secondary);
    border-radius: 30px;
    text-align: center;
    color: #fff;
    position: relative;
    margin-bottom: 30px;
}
.footer-top-image-one {
    position: absolute;
    left: 0;
    top: 0;
}
.footer-top-image-two {
    position: absolute;
    right: 0;
    top: 0;
}
.footer-pill {
    background: rgba(255, 255, 255, 0.08);
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: fit-content;
    margin: auto auto 20px;
}
.footer-top-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin: 20px auto;
    width: 35%;
}
.footer-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.footer-buttons a {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(125, 115, 140, 0.16);
    text-align: center;
    width: fit-content;
    text-decoration: none;
    background: #fff;
    color: var(--secondary);
}
footer .footer-purple-button {
    background: var(--primary);
    color: #fff;
}
.footer-buttons a i {
    font-size: 15px;
    transform: rotate(225deg);
}
.footer-social {
    background: linear-gradient(140.6deg, #6A00F8 0%, #C599FF 100%);
    padding: 20px;
    border-radius: 20px;
}
.footer-social img {
    margin-bottom: 200px;
}
.footer-social-content p {
    color: #fff;
    font-size: 20px;
}
.footer-social-content p span {
    opacity: .5;
}
footer .footer-social-tagline {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 30px;
}
.footer-main {
    background: rgba(105, 93, 123, 0.06);
    border-radius: 20px;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
}
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.footer-menu a {
  display: block;
}
.footer-menu h4 {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--lightFont);
}
.footer-menu a {
    width: 100%;
    color: var(--secondary);
    font-size: 14px;
    text-decoration: none;
    position: relative;
}
.footer-menu a:before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: var(--primary);
    transition: linear .125s;
}
.footer-menu a:hover:before {
    width: 20px;
}
.footer-main-bottom {
    align-self: flex-end;
    width: 100%;
    justify-content: space-between;
}
.footer-main-bottom p, .footer-main-bottom a {
    font-family: Inter Tight;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--lightFont);
    text-decoration: none;
}
.footer-legal {
    text-align: right;
}
.email-header {
    color: var(--secondary);
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -3%;
}
.email-header span {
    opacity: .25;
}
.email-signup {
    margin-top: 15px;
    position: relative;
}
.email-signup input {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--secondary);
    width: 100%;
}
.email-signup button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 10px;
}
.email-signup button:hover {
    cursor: pointer;
}
.small-dot {
    height: 3px;
    width: 3px;
    background: var(--lightFont);
    border-radius: 10px;
    display: inline-block;
    margin: 0 5px;
    transform: translateY(-2px);
}
.footer-legal a:hover {
    text-decoration: underline;
}
.bottom-footer-image {
    width: 100%;
}
/*---------------------------------------
MOBILE
---------------------------------------*/
@media(max-width: 1440px) and (min-width: 768px) {
    .home-hero h1 {
        font-size: 42px;
    }
    .home-hero h3 {
        font-size: 40px;
    }
}
@media(max-width:767px) {
    .coming h1 {
        font-size: 32px;
    }
    .coming {
        width: 100%;
    }
    h1, .home-hero h3 {
        font-size: 28px;
        text-align: center;
    }
    h2 {
        font-size: 28px;
    }
    .home-hero {
        padding: 10px;
    }
    .hero-image-one {
        max-width: 400px;
        position: relative;
        right: 0;
        right: 85px;
        bottom: -25px;
    }
    .hero-image-two {
        max-width: 300px;
        right: 0;
        border-radius: 5px;
        bottom: 20px;
    }
    .home-hero .hero-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    .home-hero .btn {
        width: 100%;
        text-align: center;
    }
    .hero-doctors {
        width: 100%;
    }
    .home-hero p {
        text-align: center;
    }
    .home-hero .label-pill {
        margin: 30px auto;
    }
    .home-logos {
        margin: 50px 0;
    }
    .home-logos .owl-item img {
        width: 125px;
    }
    .home-platform {
        padding: 50px 15px;
    }
    .home-platform p {
        width: 100%;
    }
    .line-dot, .line-connector, .platform-items-desktop {
        display: none;
    }
    .platform-circle {
        width: 300px;
        height: 300px;
        --orbit: 150px;      /* radius from center to icon */
        --base-rot: 0deg;
    }
    .inner-white-circle {
        width: 165px;
        height: 165px;
        box-shadow: 0 0 0 15px #f5f5f5;
    }
    .inner-icon-circle.inner-icon-circle {
        width: 65px;
        height: 65px;
    }
    .inner-icon-holder img {
        width: 35px;
    }
    .mobile-platform-icon {
        display: block;
        position: absolute;
        margin-left:-25px;
        margin-top:-25px; 
    }
    .m-platform-icon-one   { --angle: 0deg; }
    .m-platform-icon-two   { --angle: 60deg; }
    .m-platform-icon-three { --angle: 120deg; }
    .m-platform-icon-four  { --angle: 180deg; }
    .m-platform-icon-five  { --angle: 240deg; }
    .m-platform-icon-six   { --angle: 300deg; }
    
    /* Orbit transform:
         rotate around center -> push out -> rotate back so icon stays upright
      */
      .mobile-platform-icon {
        transform:
          rotate(calc(var(--base-rot) + var(--angle)))
          translateY(calc(-1 * var(--orbit)))
          rotate(calc(-1 * (var(--base-rot) + var(--angle))));
      }
    
      /* Active styling */
      .mobile-platform-icon.is-active {
        transform:
          rotate(calc(var(--base-rot) + var(--angle)))
          translateY(calc(-1 * var(--orbit)))
          rotate(calc(-1 * (var(--base-rot) + var(--angle))))
          scale(1.06);
    }
     /*------------------------------------------------------
     old mobile platform icon positions
     leave just in case animation method gets cut 
     -------------------------------------------------------*/
    /*
    .m-platform-icon-one {
        top: -19px;
        left: 50%;
        transform: translateX(-50%);
    }
    .m-platform-icon-two {
        right: 0px;
        top: 55px;
    }
    .m-platform-icon-three {
        bottom: 50px;
        right: 5px;
    }
    .m-platform-icon-four {
        bottom: -19px;
        left: 50%;
        transform: translateX(-50%);
    }
    .m-platform-icon-five {
        bottom: 50px;
        left: 5px;
    }
    .m-platform-icon-six {
        top: 55px;
        left: 0px;
    }
    */
    .platform-items {
        flex-wrap: wrap;
        margin-top: 45px;
    }
    .mobile-platform-content {
        display: block;
        text-align: center;
        margin-top: 35px;
    }
    .mobile-platform-content h3 {
        font-weight: 500;
    }
    .mobile-platform-content p {
        margin-top: 5px;
        font-size: 14px;
        min-height: 35px;
    }
    .hiw-desktop {
        display: none;
    }
    .hiw-steps-carousel {
        display: block !important;
    }
    .home-hiw .hiw-greeting {
        width: 100%;
        line-height: 1.6;
    }
    .hiw-step-desc {
        text-align: left;
        width: 100%;
        color: var(--lightFont);
        height: 58px;
        font-size: 15px;
    }
    .hiw-slide-icon i {
        color: #fff;
        background: var(--primary);
        width: 45px;
        height: 45px;
        padding: 11px;
        font-size: 22px;
        border-radius: 8px;
    }
    .hiw-slide-header {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }
    .hiw-step-label {
        letter-spacing: 0px;
    }
    .home-hiw {
        padding: 50px 0;
    }
    .steps-container {
        margin-top: 50px;
    }
    .home-audience {
        padding: 50px 15px;
    }
    .section-greeting {
        width: 100%;
        line-height: 1.6;
    }
    .home-audience .audience-card {
        margin-bottom: 20px;
        border-radius: 20px 20px 20px 20px;
    }
    .home-audience .audience-card img {
        height: 100px;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
    }
    .home-audience .audience-card p {
        font-size: 14px;
        border-radius: 0 0 20px 20px;
    }
    .audience-card-wrapper {
        margin-top: 50px;
    }
    .case-image {
        width: 100%;
    }
    .home-case {
        padding: 50px 0;
    }
    .case-results ul li {
        font-size: 14px;
    }
    .case-subheader {
        font-size: 18px;
        margin-top: 0;
    }
    .case-card-header h3 {
        font-size: 20px;
    }
    .case-nav {
        display: flex;
        overflow-x: scroll;
        width: 100%;
    }
    .case-nav button {
        min-width: fit-content;
    }
    .gain-wrapper {
        grid-template-columns: repeat(2, 1fr);
        margin: 50px auto;
    }
    .gain-wrapper .col {
        padding: 10px 0;
    }
    .home-gain {
        padding: 50px 0;
    }
    .desktop-pricing {
        display: none;
    }
    .mobile-pricing {
        display: block;
    }
    .home-pricing {
        padding: 50px 0;
    }
    .pricing-card ul {
        padding-left: 35px;
    }
    .section-greeting {
        font-size: 14px;
    }
    .mobile-pricing {
        margin-top: 30px;
    }
    .pricing-featured {
        height: calc(100% - 10px);
        top: -2px;
    }
    .pricing-slide {
        padding: 30px 15px;
    }
    .scale-wrapper {
        gap: 20px;
    }
    .scale-card {
        min-height: 132px;
    }
    .scale-wrapper .col-lg-3 {
        width: calc(50% - 10px);
    }
    .scale-number {
        font-size: 28px;
    }
    .scale-card-2 .scale-number:after {
        font-size: 12px;
    }
    .scale-title {
        font-size: 12px;
    }
    .home-scale, .home-reviews {
        padding: 50px 0;
    }
    .home-faq {
        padding: 50px 0;
    }
    .faq-q {
        font-size: 16px;
    }
    .faq-answer p {
        font-size: 14px;
    }
    .footer-top {
        padding: 20px;
    }
    .footer-top-content {
        width: 100%;
    }
    .footer-buttons {
        flex-wrap: wrap;
    }
    .footer-buttons a {
        width: 100%;
    }
    .footer-social img {
        margin-bottom: 50px;
    }
    .footer-main-bottom {
        flex-wrap: wrap-reverse;
        text-align: center;
    }
    .footer-legal {
        text-align: center;
    }
    .email-header {
        margin-top: 20px;
        font-size: 18px;
    }
    .email-signup {
        margin-bottom: 20px;
    }
    .copyright {
        margin-top: 10px;
    }
    .footer-main {
        padding: 20px;
        margin-top: 20px;
    }
    .footer-main .col-lg-3 {
        width: 48%;
    }
    .bottom-footer-image {
        margin-top: 30px;
    }
    .case-wrapper-bottom-one, .case-wrapper-bottom-two {
        display: none;
    }
}
.without-bottom-boxes .content-top-row{
    border: 0px;
    margin-bottom: 0px;
}


@media (max-width: 767px) {
    .footer-buttons a {
     z-index: 9997;
    }
}

.grecaptcha-badge{
    visibility: hidden;
}


.error404 .site-main,
.error404 main {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background: #f8f9fc;
}
.error404 .hero-banner {
    width: 100%;
}
.error404 .hero-banner-wrapper {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}
.error404 .page-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}
.error404 .hero-banner-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 2rem;
}
.error404 .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    background: #5b3df5;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.error404 .secondary-button:hover {
    background: #4328d7;
    color: #fff;
    transform: translateY(-2px);
}
.error404 .search-form {
    margin-top: 2.5rem;
}
.error404 .search-form label {
    width: 100%;
}
.error404 .search-field {
    width: 100%;
    height: 3.5rem;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0 1.5rem;
    font-size: 1rem;
    outline: none;
}
.error404 .search-submit {
    margin-top: 1rem;
    height: 3.2rem;
    padding: 0 2rem;
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}
.error404 .search-submit:hover {
    background: #000;
}
@media (max-width: 768px) {
    .error404 main {
        padding: 4rem 0;
    }
    .error404 .hero-banner-wrapper {
        padding: 3rem 1.5rem;
    }
    .error404 .page-title {
        font-size: 3rem;
    }
    .error404 .hero-banner-content {
        font-size: 1rem;
    }
}







