 :root {
        --primary-gradient: #673de6;
        --secondary-gradient: #8c85ff;
        --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        --primary-color: #667eea;
        --secondary-color: #2c3e50;
        --success-color: #2ecc71;
        --info-color: #3498db;
        --warning-color: #f39c12;
        --danger-color: #e74c3c;
        --light-color: #ecf0f1;
        --dark-color: #2c3e50;
        --glass-bg: #fafbff;
        --glass-border: rgba(255, 255, 255, 0.2);
      }
      
      body {
        font-family: 'Open Sans', sans-serif;
        padding-top: 90px; /* Account for taller header */
        background: #fff;
        min-height: 100vh;
      }
      
      h1, h2, h3, h4, h5, h6 {
        font-family: 'Roboto', sans-serif;
      }

      .bg-primary {
    --bs-bg-opacity: 1;
    background-color: #8c85ff!important;
}
      
      /* Enhanced Navbar Styling */
      .navbar {
        background: var(--glass-bg) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        /* box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15); */
        transition: all 0.3s ease;
        padding: 1rem 0;
      }
      
      .navbar-brand {
        font-weight: 800;
        font-size: 1.8rem;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: none;
        transition: all 0.3s ease;
      }
      
      /* .navbar-brand:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
      } */
      
      .navbar-brand i {
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2rem;
        animation: pulse 2s infinite;
      }
      
      @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
      }
      
      .nav-link {
        font-weight: 600;
        color: #4a5568 !important;
        transition: all 0.3s ease;
        position: relative;
        margin: 0 0.5rem;
        padding: 0.75rem 1rem !important;
        border-radius: 25px;
      }
      
      .nav-link:hover {
        color: var(--primary-color) !important;
       
        transform: translateY(-2px);
      }
      
      .nav-link.active {
        /* background: var(--primary-gradient);
        color: white !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); */
        /*  color: var(--primary-color) !important; */
        color: #fff !important; 
    transform: translateY(-2px);
      }
      
      .nav-link::before {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background: var(--primary-gradient);
        transition: all 0.3s ease;
        transform: translateX(-50%);
      }
      
      .nav-link:hover::before {
        width: 80%;
      }
      
      .nav-link.active::before {
        width: 0;
      }
      
      /* Dropdown Styling */
      .dropdown-menu {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        border-radius: 15px;
        padding: 0.5rem 0;
      }
      
      .dropdown-item {
        padding: 0.75rem 1.5rem;
        transition: all 0.3s ease;
        border-radius: 10px;
        margin: 0.2rem 0.5rem;
      }
      
      .dropdown-item:hover {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
        color: var(--primary-color);
        transform: translateX(5px);
      }
      
      .dropdown-item.text-danger:hover {
        background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
        color: #e74c3c;
      }
      
      /* Navbar Toggler */
      .navbar-toggler {
        border: none;
        padding: 0.5rem;
        border-radius: 10px;
        background: var(--primary-gradient);
      }
      
      .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
      }
      
      .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      }
      
      /* Card Enhancements */
      .card {
        border: none;
        transition: all 0.4s ease;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
      }
      
      .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(31, 38, 135, 0.2);
      }
      
      /* Button Enhancements */
      .btn-primary {
        background: var(--primary-gradient)!important;
        border: none;
        border-radius: 8px;
        padding: 0.75rem 2rem;
        font-weight: 600;
        transition: all 0.3s ease;
       
      }
      
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
        background: var(--primary-gradient);
        filter: brightness(1.1);
      }
      
      /* Scrollbar Styling */
      ::-webkit-scrollbar {
        width: 8px;
      }
      
      ::-webkit-scrollbar-track {
        background: #f1f1f1;
      }
      
      ::-webkit-scrollbar-thumb {
        background: var(--primary-gradient);
        border-radius: 10px;
      }
      
      ::-webkit-scrollbar-thumb:hover {
        background: var(--secondary-gradient);
      }
      
      /* Glass morphism effect for main content */
      main {
        padding-top: 0px;
      }
      
      footer {
        background: #f4f5ff!important;
      }

      footer .text-white
      {
        color:#000!important;
      }

     footer .text-light
     {
         color:#000!important;
             font-size: 14px;
    line-height: 30px;
     }
     

      /* Responsive Design */
      @media (max-width: 991.98px) {
        .navbar-brand {
          font-size: 1.5rem;
        }
        
        .nav-link {
          margin: 0.2rem 0;
          text-align: center;
        }
        
        body {
          padding-top: 70px;
        }
      }
      
      /* Admin Avatar Styling */
      .admin-avatar {
        width: 32px;
        height: 32px;
        background: var(--primary-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
      }
      
      .admin-name {
        font-weight: 600;
        color: #4a5568;
      }
      
      .btn-outline-primary {
        border: 2px solid transparent;
        background: linear-gradient(white, white), var(--primary-gradient);
        background-clip: padding-box, border-box;
        color: var(--primary-color);
        font-weight: 600;
        border-radius: 25px;
        padding: 0.5rem 1.5rem;
        transition: all 0.3s ease;
      }
      
      .btn-outline-primary:hover {
        background: var(--primary-gradient);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
      }
      
      /* Loading Animation */
      .navbar-brand i {
        animation: heartbeat 1.5s ease-in-out infinite;
      }
      
      @keyframes heartbeat {
        0% { transform: scale(1); }
        14% { transform: scale(1.2); }
        28% { transform: scale(1); }
        42% { transform: scale(1.2); }
        70% { transform: scale(1); }
      }


      html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.container, .container-fluid {
    max-width: 100%;
    /* overflow-x: hidden; */
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.hero-section {
    /* background: linear-gradient(135deg, #3498db, #1a5276);
    padding: 40px 0;
    color: white;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: -10px; */
        padding: 60px 50px 20px 50px;
    background: linear-gradient(to right, #e5d2fd, #fffafa, #c3d0ec);
    color: white;
    /* border-radius: 15px; */
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
    margin-top: -10px;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    background: rgba(255,255,255,0.1);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    z-index: 0;
    display: none;
}

.hero-section:after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    background: rgba(255,255,255,0.08);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    /* font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    background: linear-gradient(90deg, #ffffff, #f3f4f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;*/
    font-size: 3rem;
    text-align: center;
    font-weight: 800;
    color: #1d1e20;
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    margin-bottom: 0.1rem;
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    line-height: 1.2;
} 
 

.hero-subtitle {
    /* font-size: 1.4rem;
    margin-top: 1rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 1.5rem; */
    font-size: 1.4rem;
    margin-top: 1rem;
    font-weight: 300;
    margin: 0 auto 1rem;
    color: #1d1e20;
    text-align: center;
}

.hero-btn {
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: none;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.bmi-calculator {
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    border: none;
    transition: all 0.3s ease;
}

.bmi-calculator:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bmi-calculator .card-header {
    padding: 1.5rem;
    border-bottom: none;
}

.bmi-calculator .card-body {
    padding: 2rem;
}

.bmi-form-control {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 1px solid #e0e6ed;
    transition: all 0.3s ease;
}

.bmi-form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.section-title {
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 1;
    text-align: left;
}

.section-title h2 {
    /* font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #3498db, #1a5276);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; */
    font-weight: 700;
    margin-bottom: 1rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    background: #1d1e20;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.section-title p {
    color: #0e0e0e;
    font-size: 1rem;
}

.pricing-card {
    transition: all 0.4s ease;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: none;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.pricing-header {
    padding: 30px;
    text-align: center;
}

.pricing-features {
    padding: 0 30px 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-action {
    padding: 20px 30px 30px;
    text-align: center;
}

.testimonial-card {
    border-radius: 20px;
    overflow: visible;
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    background: #fff;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 40px 30px 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
    line-height: 1.8;
    color: #444;
}

.testimonial-content:before {
    content: '\\201C';
    font-size: 100px;
    font-family: Georgia, serif;
    color: rgba(52, 152, 219, 0.1);
    position: absolute;
    top: -10px;
    left: 20px;
    z-index: -1;
}

.testimonial-author {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #f8f9fa;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: #1f1346;
    padding: 100px 0;
    color: white;
    text-align: center;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    
}

/* .cta-section:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-section:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
} */

.feature-box {
    /* padding: 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    text-align: center;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
    height: 100%;
    position: relative;
    overflow: hidden; */
        padding: 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    text-align: left;
    background: #673de6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
    height: 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 5px;
    display: inline-block;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.feature-icon:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.feature-text {
    color: #6c757d;
    margin-bottom: 0;
}

.bmi-result-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: none;
}

.bmi-value-display {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#bmiDescription {
       font-size: 1rem;
    text-align: center;
    font-weight: bold;
}

#weightChangeContainer
{
     padding: 5px 5px 5px 5px;   
     text-align: center;
}

#weightChange
{
  text-align: center;
    font-size: 0.9rem;
    color: #0069cd;
}

#toggle-features {
    text-align: center;
}


.mw-ftr-pm_logo {
    height: 30px;
    margin: 0;
}

.mw-ftr-pm_logo img {
    object-fit: contain;
}


.mw-ftr-pm_logo img {
    height: 100%;
}

.mw-ftr-wrapr {
    max-width: unset;
    display: flex;
    flex-flow: row wrap;
    justify-content: end;
    align-items: center;
    width: 100%;
}

.plans-head
{
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.bmi-category-indicator {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bmi-result-section {
    display: none;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .bmi-info {
        margin-top: 30px;
    }
}


/* Hide on desktop screens (≥ 992px) */
@media (min-width: 992px) {
  .plans-container {
    display: none !important;
  }
}

/* Optional: ensure it's visible on smaller screens */
@media (max-width: 991px) {
  .plans-container {
    display: block !important;
  }
}


.badge
{
        background: #e2dbfc;
    color: black;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


.rup-symbol {
    font-size: 20px;
    color: #1d1e20;
    font-weight: normal;
    padding-right: 5px;
}

.price-text {
    color: #1d1e20;
    font-weight: bolder;
    font-size: 2.6rem;
    font-family: sans-serif;
}

.rup-bot
{
  margin-bottom: 15px;
}

.features-gap
{
  margin-bottom: 0.4rem !important;
}

.diet-card
{
  padding: 2.5rem 1rem 1rem 1rem !important;
}

.diet-features
{
   padding: 0rem 1rem 1rem 1rem !important;
}

.slider-section {
  background-color: #f4f5ff;
  color: black;
  padding: 110px 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(to right, #e5d2fd, #fffafa, #c3d0ec);
}

.background-shapes-left {
  position: absolute;
    top: 120px;
    left: -275px;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  /* background-size: 300px, 300px; */
  background-position: left center;
  background-image: url('../images/testi_img1.png');
  /* opacity: 0.2; */
}

.background-shapes-right {
  position: absolute;
    top: 14px;
    left: 320px;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  /* background-size: 300px, 300px; */
  background-position: right center;
  background-image: url('../images/testi_img2.png');
  /* opacity: 0.2; */
}

.carousel-inner {
  position: relative;
  z-index: 1;
  
}

.slider-title {
    font-size: 3.4rem;
    font-weight: 700;
    text-align: center;
}

.slider-text {
  font-size: 1.4rem; /* Bigger subtitle text */
  margin-top: 15px;
      text-align: center;
}

.slider-img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  margin-top: 25px;
}

.high-light
{
color: #673de6!important;
}

.inner-block
{
 background-color: #673de6;
    color: #fff;
    border-radius: 20px;
    padding-bottom: 20px;
    margin: 20px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}

.form-control {
    border:1px solid #DADCE0 !important;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background: #ffffff;
    transform: translateY(-1px);
}

  .payment-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: #fff;
        }
        .payment-card {
                padding: 48px 40px;
    background-color: white;
    border: 1px solid #D8DAE0;
    border-radius: 16px;
        }
        .loading-spinner {
            display: none;
        }

        .get-start
        {
          background: #673de6;
    color: #fff !important;
    border-radius: 8px;
}
        
.order-alert {
    /* position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    font-size: 15px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
    max-width: 90%;
    text-align: center; */
    position: fixed;
    bottom: 14px;
    left: 170px;
    transform: translateX(-50%) translateY(20px);
    background: #ffffff;
    color: #000000;
    border-top: 5px solid #673de6;
    width: 317px;
    padding: 12px 24px;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    font-size: 15px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
    max-width: 90%;
    text-align: left;
}
.order-alert.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.footer-inline
{
  color: #000 !important;
    font-size: 14px;
}

.top-br-inline
{
  border-top: 1px solid #000;
}

.rest-gap-box
{
  padding-left: 40px; 
  padding-right: 40px;
}

.bmi-top
{
    margin-top: 3rem !important;
}


/* ---------- Extra Responsive Tweaks ---------- */

/* Small laptops / tablets (<=1200px) */
@media (max-width: 1200px) {
  .hero-title { font-size: 2.8rem; }
  .slider-title { font-size: 2.8rem; }
  .slider-text { font-size: 1.2rem; }
  .section-title h2 { font-size: 2rem; }
  .price-text { font-size: 40px; }
}

/* Tablets (<=992px) */
@media (max-width: 992px) {
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .slider-title { font-size: 2.4rem; }
  .slider-text { font-size: 1.1rem; }
  .pricing-card, .feature-box, .testimonial-card {
    margin-bottom: 20px;
  }
  .navbar-brand { font-size: 1.6rem; }
  .slider-section { padding: 80px 15px; }
}

/* Large mobiles (<=768px) */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .slider-title { font-size: 2rem; }
  .slider-text { font-size: 1rem; }
  .pricing-features { padding: 0 20px; }
  .hero-section, .slider-section, .cta-section { padding: 60px 15px; }
  .order-alert { left: 50%; width: 90%; }
  .rest-gap-box { padding-left: 20px; padding-right: 20px; }
  .navbar-toggler { padding: 0.3rem; }
  .navbar { padding: 0.5rem 0; }
  .bmi-top{margin-top: 1rem !important;}
  .background-shapes-left{display: none;}
  .background-shapes-right{display: none;}
}

/* Small mobiles (<=576px) */
@media (max-width: 576px) {
  .hero-title { font-size: 1.6rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .slider-title { font-size: 1.6rem; }
  .slider-text { font-size: 0.95rem; }
  .price-text { font-size: 32px; }
  .btn-primary, .btn-outline-primary, .hero-btn { padding: 0.6rem 1.2rem; font-size: 0.95rem; }
  .testimonial-author img { width: 50px; height: 50px; }
  .order-alert { left: 50%; width: 95%; font-size: 14px; }
  .bmi-top{margin-top: 1rem !important;}
  .background-shapes-left{display: none;}
  .background-shapes-right{display: none;}

  .header-p-r-l
   {padding: 0px 20px 0px 15px!important;}

   .p-r-l
   {
    padding: 0px 10px 0px 10px!important;}

    .container, .container-fluid {
    padding-left: 10px!important;
    padding-right: 10px!important;
}

.inner-block
{
    margin: 0px;
}

.step-indicator{
    display: none!important;
}

.pad-remove {
    padding: 0;
}

.p-5 {
    padding: 2.8rem  1rem 1rem 1rem !important;
}
.mb-5 {
    margin-bottom: 1rem !important;
}
}

/* General fix for images and containers */
img, .slider-img, .feature-icon {
  max-width: 100%;
  height: auto;
}

.container, .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

/* Hover Dropdown Support */
.hover-dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0; /* optional: removes weird gap */
}
.hover-dropdown > .nav-link::after {
  display: none; /* hides the arrow if unwanted */
}

.header-p-r-l
{
        padding: 0px 60px 0px 60px;
}

.p-r-l
{
      padding: 0px 40px 0px 40px;
}

.footer-p-r-l
{
padding: 0px 40px 0px 40px;
}

/* .img-inner-page
{
  width: 372px;
} */

.ul-li-list li {
  position: relative;
  padding-right: 40px; /* extra space for circle */
  list-style: none;
  line-height: 40px;
  color: #0e0e0e;
}

.ul-li-list li::after {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background-color: #673de6;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 24px;
    text-align: center;
    line-height: 24px;
}

/* All-inline-css */



.z-10
{
z-index: 10;
}

.color-wht
{
color: white;
}

.bmi-calc-b
{
  background: #1d1e20;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-bmi
{
  color: #2c3e50; 
  font-weight: 700;
}

.quick-ass
{
  color: #2c3e50;
  font-weight: 600;
}


.dot-i-1
{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none; 
  background: #10b981;
  transition: all 0.3s ease;
}


.dot-i-2
{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #d1d5db; 
  transition: all 0.3s ease;
}




.onesignal-reset img {
  border: 0;
  width: 50px !important;
  height: 50px !important;
}


.slidedown-body-icon
{
    width: 50px !important;
  height: 65px !important;
}

.onesignal-slidedown-dialog
{
    padding: 1em 1em 1em 1em!important;
}

#onesignal-slidedown-allow-button
{
    padding: 0.15em 1em .25em 1em !important;
    background: #673de6!important;
}

#onesignal-slidedown-cancel-button
{
       padding: 0.15em 1em .25em 1em !important;
}