/* 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;
}

.kenburns-gallery {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.kenburns-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease;
}

.kenburns-slide.active {
  opacity: 1;
}

.kenburns-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 10s ease;
}

.kenburns-slide.active img {
  transform: scale(1);
}

/* ✅ Caption Styling */
.kenburns-caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}

.kenburns-caption h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeUp 2s ease forwards;
}

.kenburns-caption p {
  font-size: 1.1rem;
  color: #eee;
  animation: fadeUp 2.5s ease forwards;
}

video {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
video:hover {
  transform: scale(1.02);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}





/* Global Styling */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}
/* ✅ Product Category Cards */
.category-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 0.8s ease forwards;
    transform-style: preserve-3d;
  }
  
  /* Image with subtle zoom */
  .category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  /* Overlay text with slide-up reveal */
  .category-card .card-body {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 15px;
    text-align: center;
    transition: bottom 0.5s ease;
  }
  
  .category-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  /* Hover Effects */
  .category-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }
  
  .category-card:hover img {
    transform: scale(1.08);
  }
  
  .category-card:hover .card-body {
    bottom: 0;
  }
  
  .category-card:hover h5 {
    opacity: 1;
    transform: translateY(0);
  }


  
  /* ✅ Entry Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ✅ Responsive Adjustments */
  @media (max-width: 992px) {
    .category-card img { height: 200px; }
  }
  @media (max-width: 768px) {
    .category-card img { height: 180px; }
    .category-card h5 { font-size: 1.05rem; }
  }
  @media (max-width: 576px) {
    .category-card img { height: 160px; }
    .category-card .card-body { padding: 10px; }
    .category-card h5 { font-size: 1rem; }
  }
/* Footer Styling (unchanged) */
.footer {
  background: #111;
  color: #eee;
}

.footer-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.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; }

.small.text-muted {
  color: #aaa !important;
  font-size: 0.9rem;
}

.footer-credit {
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 8px;
}

/* JV Developers Mark */
.jvdev-mark {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #0d6efd;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 2px solid #0d6efd;
  border-radius: 20px;
  background: rgba(13,110,253,0.1);
  transition: all 0.3s ease;
}

.dev-highlight {
  color: #ffd700;
}

.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;
}

.jvdev-logo img.jv-logo {
  width: 100px;
  height: auto;
  border-radius: 100%;
  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);
}

/* ✅ Responsive Grid */
@media (min-width: 992px) {
  .category-card img { height: 240px; }
}
@media (max-width: 992px) {
  .category-card img { height: 200px; }
}
@media (max-width: 768px) {
  .category-card img { height: 180px; }
  .category-card h5 { font-size: 1.05rem; }
}
@media (max-width: 576px) {
  .category-card img { height: 160px; }
  .category-card .card-body { padding: 10px; }
  .category-card h5 { font-size: 1rem; }
}