/* ========== HEADER ========== */
.site-header {
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(87, 199, 133, 1) 0%, rgba(255, 255, 255, 1) 0%);
  color: #fff;
  border-radius: 0 0 50px 50px;
  width: 100%;
  box-shadow: 0 0px 0px rgba(0,0,0,0.0);
  padding: 20px 0;
  margin-bottom: 20px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #FF2D00;
  font-size: 1.7rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #1ec8ff;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #FF2D00;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #00bfff;
}

/* Toggle button (mobile) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #00bfff;
  transition: transform 0.3s ease;
}

.menu-toggle.open {
  transform: rotate(90deg);
}

/* Responsive Menu (Updated) */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* 🔹 Center toggle below logo */
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    color: #00bfff;
    margin-top: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
  }

  .menu-toggle.open {
    transform: rotate(90deg);
  }

  /* 🔹 Centered dropdown menu */
  .main-nav {
    width: 100%;
    display: none;
    margin-top: 5px;
    text-align: center;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
  }

  .main-nav a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #1700FF;
    text-decoration: none;
  }

  .main-nav a:hover {
    color: #00bfff;
  }
}


/* ========== FOOTER ========== */
.site-footer {
  background: #FFFFFF;
  color: #fff;
  border-radius: 50px 50px 0 0;
  padding: 50px 0 25px;
  margin-top: 60px;
  box-shadow: 0 -0px 0px rgba(0,0,0,0.00);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 25px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #00bfff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #1ec8ff;
}

.footer-inner p {
  color: #000000;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .site-footer {
    border-radius: 25px 25px 0 0;
    padding: 40px 0 20px;
  }
}










/* --- Faucet Page Modern Layout --- */
.faucet-layout {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1250px;
  margin: 30px auto;
  padding: 0 15px;
}

.faucet-details {
  flex: 0 0 70%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 25px;
}

.sidebar {
  flex: 0 0 28%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 15px 20px;
}

.sidebar-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 5px;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-box li {
  margin: 6px 0;
}

.sidebar-box li a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.sidebar-box li a:hover {
  text-decoration: underline;
}

/* --- ✅ Mobile Responsive Fix --- */
@media (max-width: 992px) {
  .faucet-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .faucet-details,
  .sidebar {
    flex: 0 0 100%;
    width: 100%;
  }

  .sidebar {
    margin-top: 25px;
  }
}

/* --- Small Devices --- */
@media (max-width: 600px) {
  .faucet-details {
    padding: 18px;
  }

  .sidebar-box {
    padding: 12px 15px;
  }

  .sidebar-box h3 {
    font-size: 16px;
  }
}










/* ===================== ✨ Divider Between Sections ===================== */
.review-divider {
  text-align: center;
  position: relative;
  margin: 50px auto 40px;
  width: 100%;
}

.review-divider::before,
.review-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35%;
  height: 2px;
  background: linear-gradient(90deg, #ddd, #ccc);
  transform: translateY(-50%);
}

.review-divider::before {
  left: 0;
}

.review-divider::after {
  right: 0;
}

.review-divider span {
  background: #fff;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  display: inline-block;
  position: relative;
  z-index: 2;
  letter-spacing: 0.3px;
}

/* ✅ Optional hover animation for extra style */
.review-divider span:hover {
  color: #007bff;
  transition: color 0.3s ease;
}










/* ===================== 🧾 Review Form Container ===================== */
.review-form-section {
  margin-top: 50px;
}

.review-form-wrapper {
  background: linear-gradient(135deg, #e9f2ff, #ffffff);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  padding: 30px;
  margin-bottom: 50px;
}

.review-form-wrapper h3 {
  font-size: 22px;
  color: #111;
  margin-bottom: 10px;
}

.review-note {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.review-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(90deg, #007bff, #00bcd4);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #0062cc, #00a2b3);
}

/* ==================== 💬 User Review Cards (Final Stable) ==================== */
.modern-review-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fafafa;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 25px;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.modern-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* 🔹 Review Image (Single Correct Version) */
.review-image {
  flex-shrink: 0;
  width: 180px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps perfect ratio */
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.review-image img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* 🔹 Review Content */
.review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.review-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.stars {
  color: #ffc107;
  font-size: 16px;
}

.review-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 10px 0;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.review-date {
  font-size: 13px;
  color: #999;
  text-align: right;
}

/* 🔹 Responsive Fix */
@media (max-width: 768px) {
  .modern-review-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .review-image {
    width: 100%;
    max-width: 260px;
    height: auto;
  }

  .review-image img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
  }

  .review-content {
    margin-top: 12px;
  }

  .review-header {
    flex-direction: column;
    gap: 4px;
  }
}











/* ==================== 🔹 Faucet Hero Section (Final Professional Design) ==================== */
.faucet-hero {
  background: #FFFFFF;
  text-align: center;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 0px 00px rgba(0, 0, 0, 0.00);
  border: 0px solid #eee;
  max-width: 850px;
  margin: 0 auto 45px;
}

/* 🔹 Title */
.faucet-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #007bff, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.4px;
}

/* 🔹 Faucet Image (Centered + Fixed Size) */
.faucet-image {
  width: 240px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #e6e6e6;
  display: block;
  overflow: hidden;
  text-align: center;
}

.faucet-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  display: inline-block;
  border-radius: 12px;
  transition: opacity 0.25s ease;
}

.faucet-image img:hover {
  opacity: 0.9;
}

/* 🔹 Stats Section */
.vote-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.vote-item, .review-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 10px;
  color: #fff;
  min-width: 110px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.vote-item:hover, .review-item:hover {
  transform: scale(1.07);
}

/* 🔹 Color Styles */
.upvote {
  background: linear-gradient(135deg, #28a745, #4cd964);
}

.downvote {
  background: linear-gradient(135deg, #ff3b30, #ff6b6b);
}

.review-item {
  background: linear-gradient(135deg, #007bff, #00bcd4);
}

/* 🔹 Responsive Adjustments */
@media (max-width: 768px) {
  .faucet-hero {
    padding: 25px 20px;
  }

  .faucet-title {
    font-size: 24px;
  }

  .faucet-image {
    width: 200px;
    height: 130px;
  }

  .vote-item, .review-item {
    font-size: 14px;
    min-width: 90px;
    padding: 7px 14px;
  }
}











/* 💰 Payment Status (above info boxes) */
.faucet-status-box {
  text-align: center;
  margin: 25px auto 20px;
  cursor: pointer;
  animation: fadeIn 1s ease-in-out;
}

.status-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  animation: pulseGlow 2s infinite ease-in-out;
}

/* 🟢 Paying */
.paying {
  background: linear-gradient(90deg, #00c853, #4de680);
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.6);
}

/* 🔴 Not Paying */
.not-paying {
  background: linear-gradient(90deg, #ff1744, #ff5252);
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.6);
}

/* ✨ Glow Pulse Animation */
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
    filter: brightness(1.25);
  }
}

/* ✨ Entry Fade Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}









/* 🔹 Info Boxes (Minimum Payout & Payment Methods) */
.faucet-info-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
}

.info-box {
  flex: 1;
  min-width: 220px;
  text-align: center;
  border-radius: 40px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  animation: floatBox 3s ease-in-out infinite;
}

.info-box strong {
  font-weight: 700;
}

.payout {
  background: linear-gradient(135deg, #007bff, #00bcd4);
  box-shadow: 0 4px 14px rgba(0,123,255,0.4);
}

.methods {
  background: linear-gradient(135deg, #6f42c1, #b667f1);
  box-shadow: 0 4px 14px rgba(111,66,193,0.4);
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .faucet-info-boxes {
    flex-direction: column;
    align-items: center;
  }
  .info-box {
    width: 90%;
  }
}



















































/* --- Layout --- */
.main-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #FFFFFF;
}

/* --- Left content --- */
.left-content {
  flex: 1;
  min-width: 65%;
}

/* --- Sidebar --- */
.sidebar {
  width: 30%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 20px;
  position: sticky;
  top: 90px;
}

.sidebar-box {
  margin-bottom: 25px;
}

.sidebar-box h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-box ul li {
  margin-bottom: 8px;
}

.sidebar-box ul li a {
  color: #007bff;
  text-decoration: none;
  transition: 0.3s;
}

.sidebar-box ul li a:hover {
  color: #0056d8;
  text-decoration: underline;
}

/* --- Faucet grid --- */
.faucet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.faucet-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: 0.25s;
}

.faucet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.faucet-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.faucet-info {
  padding: 15px;
}

.faucet-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #222;
}

.faucet-info p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

.vote-section {
  font-size: 0.9rem;
  color: #777;
  display: flex;
  gap: 15px;
  justify-content: center; /* ✅ Centers horizontally */
  align-items: center;      /* ✅ Aligns icons/text vertically */
  margin-bottom: 10px;
  text-align: center;       /* ✅ Ensures even centering for all text */
}


.view-details {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #00bfff);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
  text-align: center;
  margin: 0 auto;         /* ✅ Centers the button horizontally */
  display: block;         /* ✅ Makes margin:auto work properly */
  width: fit-content;     /* ✅ Keeps button only as wide as text */
}

.view-details:hover {
  background: linear-gradient(90deg, #0056d8, #0088d8);
}


/* --- Title --- */
.page-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #111;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .main-container {
    flex-direction: column;
  }
  .left-content,
  .sidebar {
    width: 100%;
  }
  .sidebar {
    position: static;
  }
}






















/* ===========================
   🧩 FINAL RESPONSIVE FIX
   =========================== */

/* Base layout control */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  background-color: #fff;
}

/* Faucet page wrapper (desktop layout restore) */
.faucet-layout {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1250px;       /* ✅ back to original width */
  margin: 30px auto;       /* ✅ centered again */
  padding: 0 15px;
  box-sizing: border-box;
}

/* Fix mobile overflow issue only under 992px */
@media (max-width: 992px) {
  .faucet-layout {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }

  .faucet-details,
  .sidebar {
    width: 100%;
    box-sizing: border-box;
  }

  .sidebar {
    margin-top: 25px;
    position: relative !important;
    top: auto !important;
  }
}
































/* ================================
   💎 SIDEBAR STYLING UPGRADE
   ================================ */

/* 🔹 Base Sidebar */
.sidebar {
  flex: 0 0 28%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* 🔹 Box Styling */
.sidebar-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  padding: 18px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ================================
   💎 High Paying Faucets Section
   ================================ */
.highlight-box {
  background: linear-gradient(135deg, #007bff15, #00c3ff15);
  border: 2px solid #00bfff30;
}

.animated-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #007bff, #00bcd4, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineTitle 4s linear infinite;
  margin-bottom: 10px;
}

@keyframes shineTitle {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.slot-text {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  font-style: italic;
}

.high-paying-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.high-paying-list li {
  margin-bottom: 10px;
  background: #f9fbff;
  border-radius: 10px;
  padding: 10px 12px;
  border-left: 4px solid #00bfff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.high-paying-list li:hover {
  background: #e9f6ff;
  transform: scale(1.02);
}

.high-paying-list li a {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
}

.high-paying-list li span {
  display: block;
  font-size: 13px;
  color: #555;
  margin-top: 3px;
}

/* ================================
   🔝 Top Faucets + Recent Reviews
   ================================ */
.top-faucets-box h3,
.recent-reviews-box h3 {
  text-align: center;
  font-size: 18px;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.top-faucets-box ul,
.recent-reviews-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-faucets-box li,
.recent-reviews-box li {
  padding: 8px 10px;
  background: #fafafa;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: 0.3s;
}

.top-faucets-box li:hover,
.recent-reviews-box li:hover {
  background: #f1f9ff;
  transform: translateX(3px);
}

.top-faucets-box a {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
}

/* Responsive Sidebar */
@media (max-width: 992px) {
  .sidebar {
    width: 100%;
    flex: 0 0 100%;
  }
}







/* 🔴 Join Now Button Section */
.join-now-container {
  text-align: center;
  margin: 25px 0 20px;
}

.join-now-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff4b2b, #ff0000);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.join-now-btn:hover {
  background: linear-gradient(90deg, #ff0000, #cc0000);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.5);
  transform: translateY(-3px);
}

.join-now-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}




.top-faucet-list li {
  background: #f9fbff;
  border: 1px solid #e0ecff;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 8px 12px;
  transition: 0.3s;
}

.top-faucet-list li:hover {
  background: #eaf6ff;
}

.faucet-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faucet-inline a {
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.vote-inline {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
}

.vote-inline .up {
  color: #00b36b;
}

.vote-inline .down {
  color: #e63946;
}




























/* ====== Homepage Stats Boxes ====== */
.site-stats {
  width: 100%;
  padding: 20px 0;
  background: #f9fbff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 1100px;
  padding: 0 15px;
}
.stat-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  text-align: center;
  padding: 18px 25px;
  min-width: 160px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}
.stat-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #333;
}
.stat-card p {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 5px;
  color: #000;
}
@media (max-width: 768px) {
  .stat-card { min-width: 45%; }
}
@media (max-width: 480px) {
  .stat-card { min-width: 90%; }
}









