
/* Headings & Navigation */
h1, h2, h3, h4, h5, h6,
.nav-link-custom {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.nav-link-custom {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 6px;
}

.nav-link-custom:hover {
  color: #0d6efd !important;
  background-color: rgba(13,110,253,0.08); /* soft blue highlight */
}

.nav-link-custom.active {
  color: #0d6efd !important;
  font-weight: 600;
  border-bottom: 2px solid #0d6efd;
}



.products-featured {
  position: relative;
  background: url('/rohanrubber/Image/background/product_back_2.jpg') no-repeat center center/cover; /* only image */
}

/* Dark overlay for readability */
.products-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.products-featured .container {
  position: relative;
  z-index: 2; /* content above overlay */
}



.featured-card {
  background: #0d6dfdb1; /* subtle transparency */
  backdrop-filter: blur(6px); /* glassmorphism effect */
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Product grid wrapper */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Product card (desktop default: 3 per row) */
.product-card {
  flex: 1 1 calc(33.333% - 24px); /* 3 cards per row */
  max-width: 400px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  padding: 1.5rem;
  gap:30px;

}

.products-featured-header {
  padding-top: 5rem; 
  padding-bottom: 5rem; 
}

.products-featured-header .featured-card {
  /* Set your FORK BOOTS image path here */
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/rohanrubber/Image/background/product_back_2.jpg') no-repeat center center; 
  background-size: cover;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Hover effect */
.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Product image */
.product-img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

/* Product image */
.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

/* Fade-in-up animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title animation */
.animate-title {
  opacity: 0;
  transform: scale(0.95) translateY(-10px);
  animation: zoomIn 0.8s ease forwards 0.2s;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Text animation */
.animate-text {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

/* Typography */
.product-card h4 {
  color: #222; /* dark title */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card p {
  color: #0d0b0b; /* medium gray for description */
}

.product-card .rating {
  font-size: 0.9rem;
}

.product-card .availability {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Hover effect ONLY for View More button */
.product-card .btn-primary {
  background-color: #0d6efd; /* Bootstrap primary blue */
  border-color: #0d6efd;
  transition: all 0.3s ease;
}

.product-card .btn-primary:hover {
  background-color: #0b5ed7; /* darker blue on hover */
  border-color: #0a58ca;
  color: #fff; /* keep text white */
  transform: scale(1.05); /* subtle zoom */
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4); /* glowing blue shadow */
}






/* Footer Styling */
.footer {
  width: 100% !important;   /* force full width */
  max-width: 100% !important;
  background: #111;
  color: #eee;
  padding: 40px 0;
  margin: 0;   

}


/* Footer Logo Styling */
.footer-logo {
  width: 100px;        /* adjust size */
  height: 100px;       /* make it square for perfect circle */
  object-fit: cover;   /* crop nicely inside circle */
  border-radius: 50%;  /* makes it round */
  box-shadow: 0 0 12px rgba(0,0,0,0.2); /* subtle glow */
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0d6efd;
}

/* Social Icons */
.social-icon {
  font-size: 1.4rem;
  margin: 0 8px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Individual Colors */
.social-icon.whatsapp { color: #25D366; }
.social-icon.facebook { color: #1877f2; }
.social-icon.tiktok { color: #000; }
.social-icon.instagram { color: #e1306c; }
.social-icon.linkedin { color: #0a66c2; }

.social-icon.whatsapp:hover { color: #1ebe5d; }
.social-icon.facebook:hover { color: #0a58ca; }
.social-icon.tiktok:hover { color: #444; }
.social-icon.instagram:hover { color: #c13584; }
.social-icon.linkedin:hover { color: #004182; }

.footer-link {
  color: #ccc;
  text-decoration: none;
}

.footer-link:hover {
  color: #0d6efd;
}

.small.text-muted {
  color: #aaa !important; /* ensure visibility */
  font-size: 0.9rem;
}

/* Footer Credit Styling */
.footer-credit {
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 8px;
}

.jvdev {
  font-family: 'Poppins', sans-serif; /* modern font */
  font-weight: 600;
  color: #0d6efd; /* primary blue */
  letter-spacing: 1px;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.jvdev:hover {
  color: #ffd700; /* gold accent on hover */
  text-shadow: 0 0 10px rgba(255,215,0,0.6);
  transform: scale(1.05);
  cursor: pointer;
}



/* Footer Credit Styling */
.footer-credit {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* JV Developers Mark */
.jvdev-mark {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #0d6efd; /* primary blue */
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 2px solid #0d6efd;
  border-radius: 20px; /* pill shape badge */
  background: rgba(13,110,253,0.1);
  transition: all 0.3s ease;
}

/* Highlight Developers word */
.dev-highlight {
  color: #ffd700; /* gold accent */
}

/* Hover Effect */
.jvdev-mark:hover {
  background: rgba(13,110,253,0.2);
  color: #ffd700;
  border-color: #ffd700;
  text-shadow: 0 0 10px rgba(255,215,0,0.6);
  transform: scale(1.05);
  cursor: pointer;
}

/* Footer Credit Styling */
.footer-credit {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* JVDevelopers Logo */
.jvdev-logo img.jv-logo {
  width: 100px;
  height: auto;
  border-radius: 100%; /* makes it round */
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.jvdev-logo img.jv-logo:hover {
  transform: scale(1.05);
}




.product-card-colored {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-card-colored:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.product-img-colored {
  max-height: 120px;
  transition: transform 0.4s ease;
}
.product-card-colored:hover .product-img-colored {
  transform: scale(1.05);
}

.price-tag {
  background: rgba(255,255,255,0.2);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 12px;
}
/* Rest of the page stays white */
body {
  background-color: #fff !important;
}


.container_php{
  gap: 30px !important; /* adds space between cards */
  
 


}
.card_php{
  margin-bottom: 60px !important;
}



/* Tablet: 2 cards per row */
@media (max-width: 992px) {
  .product-card {
    flex: 1 1 calc(50% - 24px);
    max-width: 100%;
  }
}

/* Mobile: 1 card per row */
@media (max-width: 576px) {
  .product-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .product-card h4 {
    font-size: 1rem;
  }
  .product-card p {
    font-size: 0.85rem;
  }
}

/* Product image scaling for smaller screens */
@media (max-width: 768px) {
  .product-img {
    height: 190px;
  }
}

@media (max-width: 480px) {
  .product-img {
    height: 170px;
  }
}

