/* PROJECT: V0ID - jay's Fitness & Nutrition
   AUTHOR: Jay (Trainer)
   THEME: Premium White / Royal Purple
   STATUS: Final Corrected & Optimized
*/

/* ===== 1. GLOBAL SETTINGS ===== */
/* Add this to your common CSS */

/* 1. Hardware Acceleration for smooth scrolling */

.card,
.section,
header,
.nutrition-modal-content {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 2. Optimize Blur on Mobile (Blur performance khayala lagto) */

@media (max-width: 768px) {
  header,
  .nutrition-modal {
    backdrop-filter: none !important;
    /* Mobile var blur kadhla ki speed waadhte */
    background: rgba(255, 255, 255, 0.98) !important;
  }

}

/* 3. Image Rendering optimization */

img {
  image-rendering: -webkit-optimize-contrast;
  display: block;
  max-width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9fb;
  color: #111;
  overflow-x: hidden;
  line-height: 1.6;
  /* Scroll smooth karnyathi */
  scroll-behavior: smooth;

}

a {
  text-decoration: none;
  transition: 0.3s;

}

/* ===== 2. HEADER & NAVIGATION ===== */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: #111;
  font-weight: 600;

}

nav {
  display: flex;
  align-items: center;

}

nav a {
  margin: 0 15px;
  color: #111;
  font-weight: 500;
  position: relative;
  font-size: 15px;

}

nav a.active,
nav a:hover {
  color: #6c63ff;

}

/* ===== 3. SECTION STYLING ===== */

.section {
  padding: 80px 5%;
  text-align: center;

}

.section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  color: #6c63ff;
  margin-bottom: 10px;

}

.hero-future {
  background: #ffffff;

}

/* ===== 4. CARDS SYSTEM (Responsive Grid) ===== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  justify-items: center;

}

.card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 1px solid transparent;

}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;

}

.card h4 {
  margin: 10px 0;
  font-size: 20px;
  color: #333;

}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
  border: 1px solid #6c63ff;

}

/* ===== 5. MODAL SYSTEM (Elite Theme) ===== */

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);

}

.modal-content {
  margin: 2% auto;
  width: 90%;
  max-width: 650px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  position: relative;

}

.modal-header {
  background: #6c63ff;
  padding: 40px 20px;
  text-align: center;
  color: white;

}

.modal-header h2 {
  color: white !important;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 5px;

}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 35px;
  cursor: pointer;
  z-index: 100;

}

/* ===== 6. FORMS & INPUTS ===== */

.future-form {
  padding: 30px;

}

.input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;

}

.input-group {
  flex: 1;
  text-align: left;

}

.future-form label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
  display: block;

}

.future-form input,
.future-form select {
  width: 100%;
  padding: 14px;
  background: #f4f6f9;
  border: 1px solid #eee;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;

}

.unit-toggle {
  display: flex;
  gap: 10px;
  font-size: 11px;
  cursor: pointer;
  margin-bottom: 5px;

}

.active-unit {
  color: #6c63ff;
  font-weight: bold;
}

.btn-glow-fixed {
  width: 100%;
  padding: 16px;
  background: #6c63ff;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Orbitron';
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;

}

.btn-glow-fixed:hover {
  background: #554edb;
  box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);

}

/* ===== 7. BMI VISUALIZER ===== */

#resultsWrapper {
  padding: 0 30px 30px;
}

#bmrResult {
  background: #f0f0ff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;

}

#bmiBarContainer {
  height: 12px;
  background: #eee;
  border-radius: 10px;
  margin: 10px 0;

}

#bmiBar {
  height: 100%;
  border-radius: 10px;
  transition: 1s ease;

}

/* ===== 8. RESPONSIVE MEDIA QUERIES ===== */

.hidden {
  display: none;
}

.divider {
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

/* Footer */

footer {
  background: #fff;
  padding: 50px 5%;
  border-top: 1px solid #eee;

}

.footer-logo {
  font-family: 'Orbitron';
  font-size: 22px;
  background: linear-gradient(90deg, #6c63ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: left;

}

.copy {
  margin-top: 30px;
  color: #888;
  font-size: 13px;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;

}



.footer-nav a {
  color: #444;
  font-size: 14px;
  position: relative;
  transition: 0.3s;

}

/* Desktop var separator add karnyathi (Last link sodun) */

@media (min-width: 769px) {
  .footer-nav a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -10px;
    color: #ccc;
    pointer-events: none;

  }

}

.footer-nav a:hover {
  color: #6c63ff;

}

/* Mobile sathi vertical list kraychi asel tar */

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;

  }

}

/* ===== 6. MEDIA QUERIES (Mobile Fixes) ===== */

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
    backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  nav {
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Modal Mobile Optimization */

  .nutrition-modal-content {
    width: 95% !important;
    margin: 10% auto !important;
    max-height: 90vh;
    overflow-y: auto;
  }

  .nutrition-input-row {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .nutrition-future-form input {
    padding: 16px !important;
    font-size: 16px !important;
  }

  /* .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  } */

}

/* Hidden elements helper */
/* nutrition section */
/* Specific to Nutrition Page Hero Section */

.nutrition-hero-premium {
  position: relative;
  padding: 140px 20px !important;
  /* 'src=' kadhun 'url()' vapra */
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),

    url("../assets/images/Nutrition.webp");
  /* Path check kara */

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff !important;

}

.nutrition-hero-premium h2 {
  color: #ffffff !important;
  /* White color dark image var mast disto */
  font-size: 45px !important;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;

}

.nutrition-hero-premium p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 18px;
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto;

}

/* Mobile Responsive adjustment for this section */
/* Specific to Nutrition Cards */
/* ===== NUTRITION SPECIFIC MODAL (Safe Classes) ===== */

/* .nutrition-modal {
  display: none; 
  position: fixed;
  z-index: 3000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);

}

.nutrition-modal-content {
  margin: 2% auto;
  width: 90%;
  max-width: 650px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  position: relative;

}

.nutrition-modal-header {
  background: linear-gradient(rgba(108, 99, 255, 0.85), rgba(108, 99, 255, 0.85)), 
              url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=800&q=80');
  background-size: cover;
  background-position: center;
  padding: 50px 30px;
  text-align: center;
  color: white;
  border-bottom: 4px solid #00e5ff;

} */

.nutrition-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);

}

.nutrition-modal-content {
  margin: 5% auto; /* Mobile var varti thodi kami jaaga */
  width: 95%;
  max-width: 650px;
  background: #fff;
  border-radius: 30px;
  position: relative;
  max-height: 90vh; /* Screen chya 90% height paryant limit */
  overflow-y: auto; /* Jar results mothe jhale tar modal madhe scroll hoil */
  display: flex;
  flex-direction: column;
  
}

.nutrition-modal-header {
  background: #6c63ff;
  padding: 40px 20px;
  text-align: center;
  color: white;

}

.nutrition-modal-header h2 {
  font-family: 'Orbitron', sans-serif;
  color: white !important;
  letter-spacing: 2px;
  text-transform: uppercase;

}

.nutrition-future-form {
  padding: 30px;

}

.nutrition-input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;

}

.nutrition-input-group {
  flex: 1;
  text-align: left;

}

.nutrition-input-group label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;

}

.nutrition-input-group input,
.nutrition-input-group select {
  width: 100%;
  padding: 14px;
  background: #f4f6f9;
  border: 1px solid #eee;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;

}


.nutrition-btn-glow {
  width: 100%;
  padding: 16px;
  background: #6c63ff;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Orbitron';
  cursor: pointer;
  transition: 0.3s;

}

.nutrition-btn-glow:hover {
  background: #554edb;
  box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);

}

/* 2. Media Query madhe he check kar */
@media (max-width: 768px) {
  .nutrition-modal-content {
    width: 95% !important;
    margin: 5% auto !important;
  }
  
  /* Buttons ani results mobile var नीट दिसावेत म्हणून */
  #resultsWrapper {
    padding: 20px 15px !important;
    display: block !important; /* Force show */
  }

  /* BMI bar mobile var neat disto ka te check kara */
  .bmi-labels {
    font-size: 10px !important;
    gap: 5px;
  }
}

/* ===== MODERN TRAINING HERO ===== */
/* Dark Overlay jyamule text white disel */

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;

}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;

}

.hero-copy {
  max-width: 600px;
  text-align: left;

}

.badge {
  background: rgba(108, 99, 255, 0.2);
  color: #00e5ff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  display: inline-block;
  margin-bottom: 20px;

}

.hero-copy h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(40px, 8vw, 70px);
  /* Responsive font size */
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;

}

.hero-copy h1 span {
  background: linear-gradient(90deg, #6c63ff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.hero-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.6;

}

/* Buttons Styling */

.hero-btns {
  display: flex;
  gap: 20px;

}

.btn-primary {
  background: #6c63ff;
  color: #fff;
  padding: 15px 35px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);

}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 13px 35px;
  border-radius: 12px;

}

.btn:hover {
  transform: translateY(-3px);
  background: #00e5ff;
  color: #111;
  border-color: #00e5ff;

}

/* Stats Styling */

.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  display: flex;
  padding: 30px 60px;
  border-top-left-radius: 50px;
  z-index: 3;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);

}

.stat-item {
  margin: 0 25px;
  text-align: center;
  color: #fff;

}

.stat-item b {
  display: block;
  font-size: 24px;
  font-family: 'Orbitron';
  color: #00e5ff;

}

.stat-item p {
  font-size: 12px;
  color: #ccc;
  text-transform: uppercase;

}

.training-hub-white {
  background: #ffffff;
  /* Pure White Theme */
  padding: 100px 5%;
  color: #333;

}

.hub-container {
  max-width: 1200px;
  margin: 0 auto;

}

.hub-header {
  text-align: center;
  margin-bottom: 70px;

}

.hub-badge {
  background: #f0efff;
  color: #6c63ff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;

}

.hub-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 38px;
  color: #111;
  margin-top: 15px;

}

.hub-header p {
  color: #777;
  font-size: 18px;
  margin-top: 10px;

}

.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

}

.hub-card {
  background: #ffffff;
  border: 1px solid #eee;
  padding: 50px;
  border-radius: 20px;
  display: flex;
  gap: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);

}

.hub-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.08);
  border-color: #6c63ff;

}

.hub-icon {
  font-size: 40px;
  background: #f8f8ff;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  flex-shrink: 0;

}

.hub-text h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;

}

.hub-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;

}

.hub-list {
  list-style: none;
  margin-bottom: 30px;

}

.hub-list li {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;

}

.hub-list li::before {
  content: "●";
  color: #6c63ff;
  margin-right: 12px;
  font-size: 10px;
  margin-top: 4px;

}

.hub-list li span {
  font-weight: 600;
  color: #111;
  margin-right: 5px;

}

.hub-link {
  color: #6c63ff;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;

}

.hub-link:hover {
  letter-spacing: 1px;

}

/* ===== 9. UNIFIED RESPONSIVE SYSTEM (All-in-One) ===== */
/* --- Table & Small Laptop (1024px) --- */

@media (max-width: 1024px) {
  header {
    padding: 15px 4%;
  }

  nav a {
    margin: 0 10px;
    font-size: 14px;
  }

  .hub-grid {
    gap: 20px;
  }

  .hub-card {
    padding: 30px;
  }

}

/* --- Tablets & Large Phones (768px) --- */

@media (max-width: 768px) {
  /* Navigation Fix */
  header {
    flex-direction: column;
    padding: 15px 0;

  }

  .logo {
    margin-bottom: 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;

  }

  nav a {
    font-size: 13px;
    margin: 5px;
  }

  /* Hero Section */

  
  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-btns {
    justify-content: center;
  }

  /* Training Hub - Articles */

  .hub-grid {
    grid-template-columns: 1fr;
  }

  /* Stack cards in 1 column */

  .hub-card {
    flex-direction: column;
    padding: 25px;
    text-align: center;

  }

  .hub-icon {
    margin: 0 auto;
  }

  /* Center the emoji/icon */

  .hub-list li {
    justify-content: center;
  }

  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;

  }

}

/* --- Extra Small Phones (480px) --- */

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 34px;
  }

  .btn-primary {
    width: 100%;
    display: block;
  }

  .hub-badge {
    font-size: 11px;
  }

}

/* Srv code tuza dila aahe tech aahe, fakt Responsive block madhe he 2 badal kar: */

@media (max-width: 768px) {
  /* ... (baki code same) ... */
  /* Training Hub - Articles */

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .hub-card {
    flex-direction: column;
    padding: 30px 20px;
    text-align: left;
    /* Text left la thevne vachayla soppe jate */

  }

  .hub-icon {
    margin-bottom: 20px;
    /* Center la dyaivaji varti space dya */
    width: 60px;
    height: 60px;
    font-size: 30px;

  }

  /* Bullet points left la align theva jyamule te messy nahi disnar */

  .hub-list li {
    justify-content: flex-start;
  }

}

/* ===== GALLERY SPECIFIC STYLES ===== */

.gallery-section {
  background: #ffffff;
  padding: 80px 5%;

}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Laptop: 3 columns */
  gap: 20px;
  margin-top: 40px;

}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  height: 300px;
  /* Fixed height for consistency */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);

}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Images stretch honar nahit */
  transition: transform 0.5s ease;
  cursor: pointer;

}

.gallery-item:hover img {
  transform: scale(1.1);
  /* Zoom effect on hover */

}

/* RESPONSIVE GALLERY */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Tablets: 2 columns */

  }

}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    /* Mobile: 1 column */

  }

  .gallery-item {
    height: 250px;

  }
}

/* ===== TESTIMONIAL SPECIFIC ===== */

.user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  /* Center alignment */
  object-fit: cover;
  border: 3px solid #6c63ff;

}

/* .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #6c63ff;

} */

.stars {
  color: #ffb400;
  /* Gold Color */
  font-size: 18px;
  margin-bottom: 10px;

}

.testimonial-text {
  font-style: italic;
  font-size: 14px;
  color: #555;
  line-height: 1.6;

}

/* Transformation Cards */

.trans-card .img-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 15px;

}

.trans-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.trans-card .hub-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;

}

/* Add this in your <style> tag or style.css */

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 1px solid #eee;
  text-align: left !important;
  /* Left align for professional look */
  text-align: center;
  padding: 40px 25px;

}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #6c63ff;

}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;

}

/* Session Card Specific Styles */
.session-card {
  text-align: center;
  position: relative;
  padding-top: 50px !important;
  border: 1px solid #eee;
}

.session-type-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.offline-badge { background: #f0efff; color: #6c63ff; }
.online-badge { background: #e0faff; color: #00b8d4; }

.time-slots {
  background: #f8f9ff;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 20px;
  text-align: left;
}

.slot {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  color: #444;
}

.slot b { color: #111; }

.action-text {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
  font-style: italic;
}

.session-card:hover {
  border-color: #6c63ff;
}

.bmi-scanner-card {
  border: 2px solid #6c63ff !important;
  background: linear-gradient(145deg, #ffffff, #f0efff) !important;
  text-align: center;
  transition: 0.4s ease;
}

.scanner-icon-wrap {
  position: relative;
  width: 80px;
  margin: 0 auto;
}

.bmi-scanner-card img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain !important;
  position: relative;
  z-index: 2;
}

/* Pulsing Effect for the Scanner Card */
.pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(108, 99, 255, 0.2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.bmi-scanner-card:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
}