body {
  /* font-family: 'DM Sans', sans-serif; */
  scroll-behavior: smooth;
}

/* card lift */
.lift {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(26, 86, 219, 0.12);
}

.scrollbar-hide::-webkit-scrollbar{
    display: none;
}

/* Hide scrollbar for IE, Edge and FireFox */
.scrollbar-hide{
    -ms-overflow-style: none;  /*IE AND EDGE*/
    scrollbar-width: none;   /*FireFox*/
}

/* badge pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #2563EB14;
  color: #1a56db;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: 999px;
  background: #2563eb14;
  margin-bottom: 14px;
}

.pill-white {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #FFFFFF;
  color: #2563EB;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: 999px;
  background: #FFFFFF;
  margin-bottom: 14px;
}

.pill-red {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #ef444426;
  color: #ef4444;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 12px 24px;
   border-radius: 999px;
  background: #EF444426;
  margin-bottom: 14px;
}

/* problem icon circle */
.prob-icon {
  width: 64px;
  height: 64px;
  border:1.33px solid #EF44441F;
  border-radius: 18.56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 14px;
  background-color: #EF44441F;
}

/* solution card top icon */
.sol-icon {
  width: 64px;
  height: 64px;
  border-radius: 21.22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background-color: #2563EB14;
}

/* use-case card */
.uc-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 18px 20px;
}
.uc-icon {
  width: 64px;
  height: 64px;
  border-radius: 21.22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2563EB14;
}


/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Improved Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2563EB 0%, #1E3A8A 100%);
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
  padding: 24px 20px;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.sidebar::-webkit-scrollbar {
  width: 4px;
}

.sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.sidebar .sidebar-header {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
  text-align: center;
}

.sidebar .sidebar-header img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.sidebar ul {
  padding: 0;
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sidebar ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.sidebar ul li a i {
  width: 22px;
  font-size: 18px;
}

.sidebar ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.sidebar ul li a.active {
  background: rgba(255, 255, 255, 0.2);
  border-left: 3px solid white;
}

.sidebar .sidebar-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.sidebar .sidebar-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 5px 0;
}

.sidebar .menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.sidebar .menu-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.sidebar .menu-close i {
  color: white;
  font-size: 18px;
}

/* Move reCAPTCHA badge up and to the left to avoid footers and WhatsApp button */
.grecaptcha-badge {
  left: 24px !important;
  right: auto !important;
  bottom: 70px !important; /* Adjusted to 70px for perfect balance */
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}
