/**
Theme Name: Mind Ridge
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mind-ridge
Template: astra
*/


/* Sticky container */
#sticky {
  position: sticky;
  top: 30px;
  align-self: flex-start;
  z-index: 10;
}

@media (max-width: 767px) {
  #sticky {
    position: static;
  }
}

/* Remove next / previous post navigation */
.navigation.post-navigation {
  display: none !important;
}

.mr-post-nav-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin:40px 0;
  font-size:15px;
}

.mr-post-nav-bracket{
  color:#777;
}

.mr-post-nav{
  display:flex;
  align-items:center;
  gap:10px;
}

.mr-post-nav__sep{
  color:#bbb;
}

.mr-post-nav__link{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.mr-post-nav__link:hover{
  color:#000;
}

.mr-post-nav__link.is-disabled{
  color:#bdbdbd;
  cursor: default;
  pointer-events:none;
}



/* HOVER CONTAINER: service card */
.service-card {
  transition: background-color 0.3s ease;
}

/* HOVER CONTAINER BACKGROUND */
.service-card:hover {
  background-color: #0b2c3d !important;
}

/* CARD TEXT (NORMAL STATE) */
.service-card .elementor-icon-box-title,
.service-card .elementor-icon-box-description {
  color: #0b2c3d;
  transition: color 0.3s ease;
}

/* CARD TEXT ON HOVER (EXCLUDES BUTTON) */
.service-card:hover .elementor-icon-box-title,
.service-card:hover .elementor-icon-box-description {
  color: #ffffff !important;
}

/* IMAGE ICON (PNG) */
.service-card img {
  transition: filter 0.3s ease;
}

/* IMAGE ICON ON HOVER */
.service-card:hover img {
  filter: brightness(0) invert(1);
}

/* BUTTON TEXT (EXCLUDED FROM HOVER) */
.service-card .elementor-button-text,
.service-card:hover .elementor-button-text {
  color: inherit !important;
}


/* Clean minimal table with borders only */
table.tablepress.table1 {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

/* All cells */
table.tablepress.table1 td {
  padding: 14px 16px;
  border: 1px solid #d1d5db; /* light grey lines */
  font-size: 14px;
  vertical-align: top;
}

/* Remove TablePress striping + hover */
table.tablepress.table1 tbody tr {
  background: transparent !important;
}

table.tablepress.table1 tbody tr:hover {
  background: transparent !important;
}

/* Control column widths */
table.tablepress.table1 .column-1 {
  width: 20%;
}

table.tablepress.table1 .column-2 {
  width: 40%;
}

table.tablepress.table1 .column-3 {
  width: 40%;
}





.mr-popup{
  position: fixed;
  right: 16px;
  bottom: 16px;
  top: auto;
  width: min(420px, calc(100vw - 32px));
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  border-radius: 14px;
  padding: 22px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  z-index: 999999;
}

.mr-popup.active{
  transform: translateX(0);
  opacity: 1;
}

/* content */
.mr-popup-content{
  text-align: left;
}

.mr-popup h4{
  margin: 0 34px 10px 0; /* space so X doesn't overlap */
  font-size: 20px;
  line-height: 1.25;
}

.mr-popup p{
  margin: 0 0 14px 0;
  font-size: 14px;
  line-height: 1.45;
}

/* button (so it looks consistent even with theme styles) */
.mr-popup-content button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

/* close icon (small, always top-right) */
.mr-popup-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  border-radius: 10px;
  background: rgba(0,0,0,.06);
}

.mr-popup-close:hover{
  background: rgba(0,0,0,.12);
}

/* mobile: bottom sheet */
@media (max-width: 767px){
  .mr-popup{
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 16px 16px 14px;
    border-radius: 16px;
    transform: translateY(120%);
  }

  .mr-popup.active{
    transform: translateY(0);
    opacity: 1;
  }

  .mr-popup h4{
    margin: 0 36px 10px 0;
    font-size: 18px;
  }

  .mr-popup p{
    margin: 0 0 12px 0;
    font-size: 14px;
  }

  .mr-popup-content button{
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
  }
}