/* Header Banner */
.inner-banner {
  height: 400px;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  /* background: url(https://www.satoshiangels.com/liquidpmx-v2/images/bg-main/offering-grid.png) no-repeat bottom right, linear-gradient(0deg, #0e1745 0%, #112055 12%, #132965 50%, #132359 87%, #131c4d 100%); */
  background: url(https://www.satoshiangels.com/liquidpmx-v2/images/bg-main/offering-grid.png) no-repeat bottom right, #b8fff6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.banner-text {
  position: relative;
  z-index: 2;
}

.banner-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-text h5 {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-wrapper {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  min-height: calc(100vh - 400px);
}

/* Enhanced Sidebar */
.sidebar {
  width: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
}

.sidebar.scrolled {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
}

.sidebar h4 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4a5568;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}

.sidebar h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 1px;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin-bottom: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.sidebar ul li a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sidebar ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.sidebar ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.sidebar ul li a:hover::before {
  width: 100%;
}

.sidebar ul li a.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transform: translateX(5px);
}

.sidebar ul li a.active::before {
  width: 100%;
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  z-index: 1000;
  transition: width 0.1s ease;
}

/* Content Area */
.content {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.content section {
  margin-bottom: 3rem;
  scroll-margin-top: 2rem;
}

.content section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}

.content section h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.content section h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 1rem;
}

.content p {
  margin-bottom: 1.25rem;
  color: #4a5568;
  line-height: 1.7;
}

.content ol,
.content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content ol li,
.content ul li {
  margin-bottom: 0.75rem;
  color: #4a5568;
  line-height: 1.6;
}

.content ul li {
  list-style-type: disc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: static;
    order: 2;
    margin-top: 2rem;
  }

  .content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 2rem;
  }

  .content {
    padding: 1.5rem;
  }

  .sidebar {
    padding: 1.5rem;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a67d8, #6b46c1);
}


/* Tooltip End */
/* Live Support Button Start */
/* Live Support Button */
.live-support-button {
  position: fixed;
  bottom: 20px;
  right: 40px;
  z-index: 1000;
}

.live-support-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D4AF37;
  /* Gold background */
  color: white;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.live-support-button a:hover {
  transform: scale(1.1);
  background-color: #b8962c;
  /* Slightly darker gold on hover */
  color: #fff !important;
}

.live-support-button a i {
  font-size: 20px;
  margin-right: 10px;
}

/* Live Support Button End */

/* ** 2.15 Footer ** */
footer {
  padding-bottom: 20px;
}

footer .logotype {
  display: block;
}

footer .footer-title-head {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
  color: #ffffff;
}

footer .footer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #ffffff;
}

footer ul {
  padding-top: 30px;
}

footer ul li {
  padding-bottom: 10px;
}

footer ul li a,
footer ul li span {
  color: #c5c8cc;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}

footer ul li span a {
  color: #fff;
}

footer ul li a {
  position: relative;
  color: #fff;
}

footer ul li a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  bottom: -5px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

footer ul li a:hover:before {
  width: 100%;
}

footer ul li .social-button {
  border: 1px solid #c5c8cc;
  border-radius: 50px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  color: #c5c8cc;
  float: none;
  margin-right: 5px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

footer ul li .social-button:before {
  display: none;
}

footer ul li .social-button:hover {
  color: #0998ec;
  border-color: #ffffff;
  background-color: #ffffff;
}

footer .copyright {
  text-align: center;
  color: #c5c8cc;
  font-size: 0.875rem;
  border-top: 1px solid #c5c8cc;
  margin-top: 3rem;
  padding-top: 1.25rem;
}

footer .copyright span {
  padding: 0 10px;
}

footer .copyright span a {
  color: #fff;
}

footer .copyright span:nth-child(1),
footer .copyright span:nth-child(2),
footer .copyright span:nth-child(3),
footer .copyright span:nth-child(4) {
  border-right: 1px solid #ffffff;
}

.small-footer {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#0b102d), color-stop(12%, #0c173b), color-stop(50%, #0d1d48), color-stop(87%, #0c173b), to(#0b102d));
  background-image: -o-linear-gradient(bottom, #0b102d 0%, #0c173b 12%, #0d1d48 50%, #0c173b 87%, #0b102d 100%);
  background-image: linear-gradient(0deg, #0b102d 0%, #0c173b 12%, #0d1d48 50%, #0c173b 87%, #0b102d 100%);
  padding-top: 6rem;
}

.small-footer p {
  color: #c5c8cc;
  margin-top: 2rem;
}

.big-footer {
  background: url(../images/dark-skin/bg/bg-footer.png) no-repeat left bottom, -webkit-gradient(linear, left bottom, left top, from(#0A1F44), color-stop(12%, #0A1F44), color-stop(50%, #0A1F44), color-stop(87%, #0A1F44), to(#0A1F44));
  background: url(../images/dark-skin/bg/bg-footer.png) no-repeat left bottom, -o-linear-gradient(bottom, #0A1F44 0%, #0A1F44 12%, #0A1F44 50%, #0A1F44 87%, #0A1F44 100%);
  background: url(../images/dark-skin/bg/bg-footer.png) no-repeat left bottom, linear-gradient(0deg, #0A1F44 0%, #0A1F44 12%, #0A1F44 50%, #0A1F44 87%, #0A1F44 100%);
}

.big-footer .subscribe {
  background: none;
}

.big-footer p {
  color: #c5c8cc;
  margin-top: 2rem;
}

.footer-gray {
  background: #202020;
}

#back-to-top.show {
  opacity: 1;
}

#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  background: #00a0fe;
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  opacity: 0;
}

#back-to-top:hover {
  background: #048fe0;
}

.footer-links {
  margin-top: 15px;
}

.footer-links span {
  display: inline-block;
  padding: 0 10px;
  font-size: 0.875rem;
}

footer .footer-links span:nth-child(1),
footer .footer-links span:nth-child(2) {
  border-right: 1px solid #ffffff;
}
footer .footer-links span a {
    color: #fff;
}

.footer-links a:hover {
    color: #b8962c;
    font-weight: 600;
}