
        /* Container */
#pro {
  display: flex;
  justify-content: center;
  gap: 20px;   /* space between cards */
  flex-wrap: wrap;  /* allows wrapping on smaller screens */
  padding: 20px;
}

/* Card */
#pro #item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 220px;   /* control card size */
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

#pro #item:hover {
  transform: translateY(-5px);
}

/* Image */
#pro #item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Texts */
#pro #item h5 {
  color: #ff4d4d;
  margin: 5px 0;
}

#pro #item p {
  font-size: 14px;
  margin: 5px 0 15px;
}

/* Button */
#price {
  background: #007bff;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
}

#price a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

#price:hover {
  background: #0056b3;
}
 Active {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  padding: 20px;
}

/* Every child of body is hidden initially */
Active * {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

/* When visible, animate in */
Active *.show {
  opacity: 1;
  transform: translateY(0);
}

#offers {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

#offers h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.offer-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.offer-card:hover {
  transform: translateY(-6px);
}

.offer-card .icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 10px;
}

.offer-card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}

#testimonials {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

#testimonials h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card .message {
  font-style: italic;
  margin-bottom: 15px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

.author span {
  font-size: 0.9rem;
  color: gray;
}

#footer {
  background: #222;
  color: #ddd;
  padding: 30px 20px;
  text-align: center;
}

#footer a {
  color: #0d6efd;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

.footer-content h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-message {
  margin: 20px 0;
  font-style: italic;
}

.footer-bottom {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}
/* --- Layout --- */
#price-list {
  padding: 32px 20px;
  background: #f7f7fb;
  color: #222;
  max-width: 1100px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
#price-list h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 6px;
}
#price-list .note {
  text-align: center;
  margin: 0 0 24px;
  color: #555;
}
#price-list .note a { color: #0d6efd; text-decoration: none; }
#price-list .note a:hover { text-decoration: underline; }

.brand {
  margin: 18px 0 10px;
  font-size: 1.2rem;
  color: #0d6efd;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

/* --- Card --- */
.card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid rgba(13,110,253,0.08);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.model {
  font-weight: 700;
  font-size: 1.02rem;
}

/* badges */
.badge {
  font-size: .72rem;
  padding: 4px 8px;
  border-radius: 999px;
  line-height: 1;
  border: 1px solid transparent;
}
.badge.new { background: #e7f1ff; color: #0d6efd; border-color: #bcd6ff; }
.badge.inbox { background: #e8f7ec; color: #198754; border-color: #bfe8cc; }

/* meta row */
.meta {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.storage {
  font-size: .85rem;
  padding: 6px 10px;
  background: #f1f3f5;
  border-radius: 8px;
}

/* price */
.price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a8f3c;
}

/* Small helper for currency commas (optional) */

#viewmore{
    background-color: #ff3f15;
    margin:0 auto; 
    transition: all 0.3s ease-in-out;
}
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-in-out, background 0.3s;
  z-index: 1000;
}

.whatsapp-chat:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

