/* ==========================================================================
   Page Hero (Common)
   ========================================================================== */
#page-hero {
  position: relative;
  padding: 120px 0 70px 0;
  background: #f7f9fc;
  text-align: center;
  overflow: hidden;
}
#page-hero::before,
#page-hero .hero-background {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/bg-hero.jpg') no-repeat;
  background-size: cover !important;
  background-position: center top;
  opacity: 0.6;
}
#page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #0a2540;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
#page-hero .lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Header Hero Background
   ========================================================================== */
header.header-light.has-topbar {
  position: relative;
}

/* On pages with #page-hero (static pages) */
body:has(#page-hero) header.header-light.has-topbar {
  position: absolute !important;
}
body:has(#page-hero) header .hero-background {
  display: none !important;
}
body:has(#page-hero) #page-hero {
  padding-top: 140px;
  padding-bottom: 120px;
}
header .hero-background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/bg-hero.jpg') no-repeat;
  background-size: cover !important;
  background-position: center top;
  opacity: 0.9;
  pointer-events: none;
}
header .header-nav-stack {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Homepage (index.html)
   ========================================================================== */
section#hero {
  position: relative;
  min-height: auto;
  padding: 50px 0 48px !important;
}
section#hero h1 {
  font-size: clamp(28px, 5vw, 56px);
  line-height: clamp(38px, 5vw, 74px);
}
section#hero .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  section#hero {
    padding-top: 80px !important;
  }
}
.ul-style-2 {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 1.5rem 0 !important;
}
.ul-style-2 li {
  position: relative !important;
  padding-left: 2.2rem !important;
  margin-bottom: 0.75rem !important;
  display: flex !important;
  align-items: center !important;
}
.ul-style-2 li::before {
  content: "\f00c" !important;
  font-family: "FontAwesome" !important;
  position: absolute !important;
  left: 0 !important;
  color: #38b1ed !important; /* light blue checkmark */
  font-size: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.ul-style-2 li h4 {
  margin: 0 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #35404e !important;
  display: inline !important;
}
.desktop-frame {
  position: relative;
  left: 2rem;
  top: 0;
  aspect-ratio: 16/9;
  border-radius: 30px;
  padding: 24px 14px;
  background: #000000;
  border: 3px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 50px 100px -20px rgba(50,50,93,0.25),0 30px 60px -30px rgba(0,0,0,0.3),inset 0 -2px 6px 0 rgba(10,37,64,0.35);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}
.desktop-frame:hover {
  transform: scale(1.1) translateY(26px);
  z-index: 4;
}
.desktop-frame .desktop-screen {
  background: #000000;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  width: 900px;
}
.desktop-frame video {
  width: 928px;
  height: 100%;
  background-color: #fff;
}
.phone-frame {
  position: absolute;
  left: 0rem;
  top: 6rem;
  width: 320px;
  aspect-ratio: 9/17;
  border-radius: 30px;
  background: #000000;
  border: 3px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 50px 100px -20px rgba(50,50,93,0.25),0 30px 60px -30px rgba(0,0,0,0.3),inset 0 -2px 6px 0 rgba(10,37,64,0.35);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}
.phone-frame:hover {
  transform: scale(1.1) translateY(-26px);
}
.phone-frame .phone-screen {
  width: 300px;
  aspect-ratio: 9/17;
  background: #000000;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.phone-frame video {
  height: 100%;
}
@media (min-width: 992px) {
  .desktop-frame {
    left: 12rem !important;
  }
  .phone-frame {
    left: 6rem !important;
  }
}
@media (max-width: 991.98px) {
  .desktop-frame {
    left: 0 !important;
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    padding: 12px 7px !important;
    border-radius: 15px !important;
  }
  .desktop-frame .desktop-screen {
    width: 100% !important;
    border-radius: 10px !important;
  }
  .desktop-frame video {
    width: 100% !important;
    height: auto !important;
  }
  .phone-frame {
    width: 120px !important;
    left: 15px !important;
    top: 2rem !important;
    border-radius: 15px !important;
    padding: 8px 5px !important;
  }
  .phone-frame .phone-screen {
    width: 100% !important;
    border-radius: 10px !important;
  }
  .phone-frame video {
    width: 100% !important;
    height: auto !important;
  }
}
section#tech {
  padding: 50px 0 !important;
}
section#tech .box-item img {
  max-width: clamp(110px, 10vw, 300px);
  max-height: 40px;
  margin: 2.2rem 0;
}
@media (max-width: 991.98px) {
  section#tech {
    padding: 32px 0 !important;
  }
  section#tech .box-item img {
    margin: 0.75rem 0;
  }
}
section#feature {
  background-color: #f7f9fc;
  padding: 50px 0 !important;
}
@media (max-width: 991.98px) {
  section#feature {
    padding: 0 !important;
  }
}
section#feature h2 {
  font-size: clamp(44px, 5vw, 52px);
  line-height: clamp(54px, 5vw, 72px);
}
section#feature .secure-device img {
  display: block;
  max-width: 100%;
}
.performance-animation .card {
  padding: 1.5rem;
  transition: all 1s ease;
}
.performance-animation .card.active {
  background-color: #38b1ed !important;
}
.performance-animation .card.active .bi, 
.performance-animation .card.active h4, 
.performance-animation .card.active p {
  color: #fff !important;
}
.performance-animation .card .bi {
  font-size: 67px;
  color: #38b1ed;
}
.realtime-animation {
  min-width: 530px;
}
@media (max-width: 991.98px) {
  .realtime-animation {
    min-width: unset !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .realtime-animation .card-student-device {
    width: 70px !important;
    margin-bottom: 3rem !important;
  }
  .realtime-animation .card-student-device .card-body img {
    width: 35px !important;
  }
  .realtime-animation .card-student-device::after {
    bottom: -3rem !important;
    left: 33px !important;
    height: 3rem !important;
  }
  .realtime-animation .card-server-device {
    margin-bottom: 3rem !important;
  }
  .realtime-animation .card-manager-device {
    width: 70px !important;
    margin-bottom: 3rem !important;
  }
  .realtime-animation .card-manager-device::before {
    top: -3rem !important;
    left: 33px !important;
    height: 3rem !important;
  }
}
.realtime-animation .card-student-device {
  background-color: #f9f9f9;
  border: 1px solid #c3ccd8;
  border-radius: 8px;
  box-shadow: none;
  width: 100px;
  aspect-ratio: 1/1;
  transition: all 0.5s ease;
  margin-bottom: 6rem;
}
.realtime-animation .card-student-device .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.realtime-animation .card-student-device .card-body img {
  width: 50px;
  transition: all 0.5s ease;
  filter: grayscale(100%);
}
.realtime-animation .card-student-device .card-body span {
  position: absolute;
  bottom: -26px;
  transition: all 0.5s ease;
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
}
.realtime-animation .card-student-device:hover, 
.realtime-animation .card-student-device.active {
  border-color: transparent;
  background-color: #fff;
  box-shadow: 0 10px 20px 0 rgba(0,0,0,.05);
  transform: scale(1.05);
}
.realtime-animation .card-student-device:hover .card-body img, 
.realtime-animation .card-student-device.active .card-body img {
  width: 44px;
  filter: grayscale(0%);
  transform: translateY(-8px);
}
.realtime-animation .card-student-device:hover .card-body span, 
.realtime-animation .card-student-device.active .card-body span {
  opacity: 1;
  bottom: -20px;
}
.realtime-animation .card-student-device::after {
  content: "";
  position: absolute;
  bottom: -6rem;
  left: 48px;
  border-left: 2px solid #c3ccd8;
  height: 6rem;
  z-index: 2;
}
.realtime-animation .card-student-device:hover::after,
.realtime-animation .card-student-device.active::after {
  border-color: #38b1ed;
}
.realtime-animation .card-server-device {
  background-color: #f9f9f9;
  border: 1px solid #c3ccd8;
  border-radius: 8px;
  box-shadow: none;
  width: 100%;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-bottom: 6rem;
}
.realtime-animation .card-server-device .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
}
.realtime-animation .card-server-device .card-body .bi {
  opacity: 0.5;
  font-size: 48px;
  transition: all 0.5s ease;
  line-height: 1;
  display: block;
}
.realtime-animation .card-server-device .card-body .bi.active {
  opacity: 1;
  color: #20a0e0;
}
.realtime-animation .card-server-device .card-body span {
  position: absolute;
  bottom: -26px;
  transition: all 0.5s ease;
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
}
.realtime-animation .card-server-device:hover {
  border-color: transparent;
  background-color: #fff;
  box-shadow: 0 10px 20px 0 rgba(0,0,0,.05);
}
.realtime-animation .card-server-device:hover .card-body .bi {
  transform: translateY(-8px);
}
.realtime-animation .card-server-device:hover .card-body span {
  opacity: 1;
  bottom: -10px;
}
.realtime-animation .card-manager-device {
  background-color: #f9f9f9;
  border: 1px solid #c3ccd8;
  border-radius: 8px;
  box-shadow: none;
  width: 100px;
  aspect-ratio: 1/1;
  transition: all 0.5s ease;
  margin-bottom: 6rem;
}
.realtime-animation .card-manager-device .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.realtime-animation .card-manager-device .card-body .bi {
  font-size: 40px;
  transition: all 0.5s ease;
  line-height: 1;
  display: block;
}
.realtime-animation .card-manager-device .card-body .bi.active {
  color: #20a0e0;
}
.realtime-animation .card-manager-device .card-body span {
  position: absolute;
  bottom: -26px;
  transition: all 0.5s ease;
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
}
.realtime-animation .card-manager-device:hover, 
.realtime-animation .card-manager-device.active {
  border-color: transparent;
  background-color: #fff;
  box-shadow: 0 10px 20px 0 rgba(0,0,0,.05);
  transform: scale(1.05);
}
.realtime-animation .card-manager-device:hover .card-body .bi, 
.realtime-animation .card-manager-device.active .card-body .bi {
  color: #20a0e0;
  font-size: 32px;
  transform: translateY(-8px);
}
.realtime-animation .card-manager-device:hover .card-body span, 
.realtime-animation .card-manager-device.active .card-body span {
  opacity: 1;
  bottom: -20px;
}
.realtime-animation .card-manager-device::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: 48px;
  border-left: 2px solid #c3ccd8;
  height: 6rem;
  z-index: 2;
}
.realtime-animation .card-manager-device:hover::before,
.realtime-animation .card-manager-device.active::before {
  border-color: #38b1ed;
}
.answer-type-animation .card {
  padding: 0rem 0.5rem;
  transition: all 0.5s ease;
  height: 120px;
}
.answer-type-animation .card h4 {
  font-size: clamp(16px, 1.5vw, 20px);
}
.answer-type-animation .card.active, 
.answer-type-animation .card:hover {
  background-color: #38b1ed !important;
  transform: scale(1.05);
}
.answer-type-animation .card.active h4, 
.answer-type-animation .card:hover h4 {
  color: #fff !important;
}
section#client-sumarry {
  position: relative;
  background-color: #f9f9f9;
  z-index: 1;
}
section#client-sumarry .section-background {
  position: absolute;
  z-index: 1;
  background-color: #0a2540;
  width: 100%;
  height: 880px;
  transform: skewY(-6deg);
  transform-origin: -20rem 100%;
  overflow: hidden;
}
section#client-sumarry .section-background img {
  position: absolute;
  transform: skewY(+6deg);
  width: clamp(800px, 90vw, 1000px);
  right: 0;
  top: 10rem;
  opacity: 0.2;
}
section#client-sumarry .container {
  z-index: 2;
}
section#client-sumarry .text-muted {
  color: #bebebe !important;
}
section#client-sumarry .client-counter h3 {
  border-left: solid 3px #39c0ed;
  padding-left: 1rem;
}
section#client-sumarry .client-counter p {
  padding-left: calc(1rem + 3px);
  font-size: 14px;
  line-height: 24px;
}
section#access-device {
  background-color: #fff;
  position: relative;
  z-index: 2;
  top: -2rem;
  padding: 50px 0 !important;
}
section#access-device .card {
  padding: 1.5rem;
}
section#access-device .card img {
  height: 60px;
  object-fit: contain;
}
section#access-device .card a {
  font-size: 15px;
}
section#access-device .card a:hover .bi {
  transform: translateX(3px);
}
section#access-device .card a .bi {
  font-size: 15px;
  transition: all 0.2s;
}
section#ask-to-join {
  background-color: #f7f9fc;
  position: relative;
  padding: 50px 0 !important;
}
section#ask-to-join h3 {
  font-size: 26px;
  line-height: 34px;
  font-weight: bold;
}
section#ask-to-join .action a .bi {
  transition: all 0.2s;
}
section#ask-to-join .action a:hover .bi {
  transform: translateX(3px);
}
section#ask-to-join .ask-varian {
  padding-left: 0.8rem;
}
section#ask-to-join .ask-varian .bi {
  font-size: 50px;
  color: #39c0ed;
}
section#ask-to-join .ask-varian h6 {
  position: relative;
}
section#ask-to-join .ask-varian h6::before {
  content: "";
  position: absolute;
  height: 16px;
  top: 0;
  left: calc(-0.8rem - 2px);
  border-left: solid 2px #39c0ed;
}
section#ask-to-join .ask-varian p {
  font-size: 15px;
  line-height: 24px;
}
section#ask-to-join .ask-varian a {
  font-size: 15px;
}
section#ask-to-join .ask-varian a .bi {
  font-size: 15px;
}
h1:not(.text-white):not(.text-light),
h2:not(.text-white):not(.text-light),
h3:not(.text-white):not(.text-light),
h4:not(.text-white):not(.text-light),
h5:not(.text-white):not(.text-light):not(.s2):not(.text-info),
h6:not(.text-white):not(.text-light) {
  color: #0a2540 !important;
}
h5.s2 {
  color: #38b1ed !important;
  background-color: rgba(56, 177, 237, 0.12) !important;
}
.text-info {
  color: #38b1ed !important;
}
section#client-sumarry .client-counter h3 {
  border-left: solid 3px #38b1ed !important;
  color: #ffffff !important;
}
section#client-sumarry h2 {
  color: #ffffff !important;
}
section#ask-to-join .ask-varian h6::before {
  border-left: solid 2px #38b1ed !important;
}
section#ask-to-join .ask-varian h6 {
  color: #0a2540 !important;
}
section#ask-to-join .ask-varian .bi {
  color: #38b1ed !important;
}
section#ask-to-join .action a:not(.btn-main),
section#ask-to-join .action a:not(.btn-main) strong {
  color: #38b1ed !important;
}
section#ask-to-join .action a.btn-main,
section#ask-to-join .action a.btn-main span,
section#ask-to-join .action a.btn-main i {
  color: #ffffff !important;
}
#access-device .card h4 {
  color: #0a2540 !important;
}
#access-device .card a,
#access-device .card a strong {
  color: #38b1ed !important;
}
.performance-animation .card.active {
  background-color: #38b1ed !important;
}
.performance-animation .card:not(.active) h4 {
  color: #0a2540 !important;
}
.performance-animation .card .bi {
  color: #38b1ed !important;
}
#feature .performance-animation .card.active .bi,
#feature .performance-animation .card.active h4,
#feature .performance-animation .card.active p {
  color: #ffffff !important;
}
#feature .answer-type-animation .card.active h4,
#feature .answer-type-animation .card:hover h4 {
  color: #ffffff !important;
}
#client-sumarry h5.text-info {
  color: #38b1ed !important;
}
.ul-style-2 li h4 {
  color: #35404e !important;
}

/* ==========================================================================
   Tutorial (tutorial.html)
   ========================================================================== */
#youtube-tutorial {
  padding: 60px 0;
  background-color: #fff;
}
#youtube-tutorial .card {
  transition: all 0.3s ease;
}
#youtube-tutorial .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}
#youtube-tutorial .btn-main {
  transition: all 0.2s ease;
}
#youtube-tutorial .btn-main:hover {
  background-color: #1565c0 !important;
  transform: translateY(-1px);
}
#youtube-tutorial .btn-main .bi {
  transition: transform 0.2s ease;
}
#youtube-tutorial .btn-main:hover .bi {
  transform: translateX(3px);
}

/* ==========================================================================
   Installation (instalation.html)
   ========================================================================== */
.instalation-guide {
  padding: 60px 0;
  background-color: #fff;
}
.instalation-guide h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 1rem;
}
.instalation-guide code {
  background-color: #f1f3f5;
  color: #d63384;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 90%;
}
.instalation-guide img {
  margin: 1.5rem 0;
  border: 1px solid #dee2e6;
}
.instalation-guide ul {
  list-style-type: disc;
  padding-left: 2rem;
}
.instalation-guide ul li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Demo (demo.html)
   ========================================================================== */
section#account {
  padding: 60px 0;
  background-color: #f7f9fc;
}
section#account .card {
  padding: 1.5rem;
  transition: all 0.3s ease;
}
section#account .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}
section#account .icon-wrap i {
  font-size: 56px;
  color: #38b1ed;
  line-height: 1;
  display: inline-block;
}
section#access {
  padding: 60px 0;
  background-color: #fff;
}
section#access .btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}
section#access .btn-main:hover {
  background-color: #1565c0 !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   Contact (contact.html)
   ========================================================================== */
section#contact-sales {
  padding: 60px 0;
  background-color: #fff;
}
section#contact-sales h2 {
  font-size: clamp(24px, 3vw, 32px);
}
section#contact-sales .col-varian {
  padding-left: 0.8rem;
}
section#contact-sales .col-varian i {
  color: #39c0ed;
}
section#contact-sales .col-varian h5 {
  position: relative;
  font-weight: bold;
}
section#contact-sales .col-varian h5::before {
  content: "";
  position: absolute;
  height: 18px;
  top: 0;
  left: calc(-0.8rem - 2px);
  border-left: solid 2px #39c0ed;
}
section#contact-sales .whatsapp-btn {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: white !important;
  font-weight: 500;
  border-radius: 25px;
  padding: 10px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}
section#contact-sales .whatsapp-btn:hover {
  background-color: #128C7E !important;
  border-color: #128C7E !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}
section#community {
  padding: 60px 0;
  background-color: #f7f9fc;
}
section#community h2 {
  font-size: clamp(24px, 3vw, 32px);
}
section#community .btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}
section#community .btn-main:hover {
  background-color: #1565c0 !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   Privacy Policy (privacy_policy.html)
   ========================================================================== */
.privacy-content {
  padding: 60px 0;
  background-color: #fff;
}
.privacy-content p.lead {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 1.5rem;
}
.privacy-content p {
  font-size: 16px;
  line-height: 1.8;
}

/* ==========================================================================
   Get App (get_app.html)
   ========================================================================== */
/* ── Timeline ── */
.container-timeline {
  margin-top: 30px;
  margin-bottom: 30px;
}
.container-timeline ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.container-timeline ul li {
  flex: 1;
  min-width: 220px;
  position: relative;
  padding-top: 48px;
}
.container-timeline ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: #38b1ed;
}
.container-timeline ul li:nth-child(1)::before { content: "1"; }
.container-timeline ul li:nth-child(2)::before { content: "2"; }
.container-timeline ul li:nth-child(3)::before { content: "3"; }
.container-timeline ul li:nth-child(4)::before { content: "4"; }

.container-timeline h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 12px;
}
.container-timeline p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}
.container-timeline p a {
  color: #38b1ed;
  text-decoration: none;
}
.container-timeline p a:hover {
  text-decoration: underline;
}

/* ── Package Self Host & Online ── */
section#package-self-host,
section#package-online {
  padding: 80px 0;
  background: #fff;
}

.de_pricing-table .d-recommend {
  padding: 4px 0;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Package Lifetime ── */
section#package-lifetime {
  padding: 80px 0;
  background: #fff;
}
section#package-lifetime .why {
  padding-left: 1.2rem;
}
section#package-lifetime .why h3 {
  position: relative;
}
section#package-lifetime .why h3::before {
  content: "";
  position: absolute;
  height: 24px;
  top: 4px;
  left: calc(-1.2rem - 2px);
  border-left: solid 2px #38b1ed;
}

/* Color and font corrections to override global overrides */
h1:not(.text-white):not(.text-light),
h2:not(.text-white):not(.text-light),
h3:not(.text-white):not(.text-light),
h4:not(.text-white):not(.text-light),
h5:not(.text-white):not(.text-light):not(.s2),
h6:not(.text-white):not(.text-light) {
  color: #0a2540 !important;
}

h5.s2 {
  color: #38b1ed !important;
  background-color: rgba(56, 177, 237, 0.12) !important;
}

.de_pricing-table {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(0, 19, 87, 0.05) !important;
  border-radius: 12px !important;
  overflow: hidden;
}
@media (min-width: 992px) {
  .de_pricing-table {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }
  .de_pricing-table .d-head {
    min-height: 95px !important;
  }
  .de_pricing-table .d-price {
    min-height: 75px !important;
  }
}
.de_pricing-table .d-head h3 {
  font-weight: 700 !important;
  color: #0a2540 !important;
}
.de_pricing-table .d-price h3 {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #0a2540 !important;
}
.de_pricing-table .d-group h4 {
  font-weight: 700 !important;
  color: #0a2540 !important;
}
.de_pricing-table .d-recommend.bg-info {
  background-color: #38b1ed !important;
  color: #ffffff !important;
}
.de_pricing-table .d-recommend.bg-danger {
  background-color: #e74c3c !important;
  color: #ffffff !important;
}

/* Pricing buttons override */
.btn-main,
.btn-main:link,
.btn-main:visited,
.btn-main:hover,
.btn-main:active,
.btn-main:focus {
  background-color: #38b1ed !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: none !important;
}
.btn-main:hover {
  background-color: #2598d0 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(56, 177, 237, 0.25) !important;
}

/* Lifetime Pricing Card tweaks */
.pricing-table {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(0, 19, 87, 0.05) !important;
}
.pricing-table .top h3 {
  color: #0a2540 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}
.pricing-table .mid .price {
  color: #0a2540 !important;
  font-weight: 800 !important;
}
