/* ============================================
   NAVIGATION STYLES
   ============================================ */

/* Sticky Header */
.sticky-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  transition: all 0.3s ease;
  width: 100%;
}

.sticky-header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Ensure navbar stays white and visible */
.sticky-header .navbar {
  background-color: white !important;
  margin-bottom: 0;
}

/* Navy Blue Text Color */
.text-navy {
  color: #001f3f !important;
}

/* Custom Nav Links */
.nav-link-custom {
  color: #001f3f !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link-custom:hover {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545 !important;
}

.nav-link-custom.active {
  background-color: #dc3545 !important;
  color: white !important;
}

/* Mega Dropdown Styling */
.nav-link-custom.dropdown-toggle::after {
  margin-left: 0.5rem;
}

.mega-dropdown {
  position: static;
}

.mega-menu {
  width: 100%;
  left: 0 !important;
  right: 0;
  top: 100% !important;
  margin-top: 0 !important;
  border-radius: 0;
  background-color: #001f3f !important;
}

.mega-menu-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
}

.mega-menu-item {
  flex: 1;
  text-align: center;
  padding: 1.25rem 2rem;
  color: white !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.mega-menu-item:last-child {
  border-right: none;
}

.mega-menu-item:hover {
  background-color: #dc3545;
  color: white !important;
  transform: translateY(-2px);
}

.mega-menu-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #dc3545;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.mega-menu-item:hover::after {
  transform: scaleX(1);
}

/* Cart Button */
.btn-cart {
  background-color: transparent;
  border: 2px solid #001f3f;
  color: #001f3f;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  margin-left: 1rem;
  padding: 0;
}

.btn-cart:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: white;
  transform: scale(1.05);
}

.btn-cart .badge {
  font-size: 0.65rem;
  padding: 0.2rem 0.35rem;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .nav-link-custom {
    margin: 0.25rem 0;
  }
  
  .btn-cart {
    margin-top: 1rem;
  }
  
  .mega-dropdown {
    position: relative;
  }
  
  .mega-menu {
    position: relative !important;
    width: 100%;
    margin-top: 0.5rem !important;
    border-radius: 8px;
  }
  
  .mega-menu-content {
    flex-direction: column;
    gap: 0;
  }
  
  .mega-menu-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
  }
  
  .mega-menu-item:last-child {
    border-bottom: none;
  }
  
  .mega-menu-item:hover {
    transform: translateX(5px);
  }
}

/* Smooth Scroll Offset for Sticky Header */
html {
  scroll-padding-top: 100px;
}

/* Logo Hover Effect */
.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Mobile Hamburger Icon */
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler i {
  transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] i {
  transform: rotate(90deg);
}

/* ============================================
   FEATURE CARDS STRIP
   ============================================ */

.feature-cards-strip {
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.feature-cards-strip .card {
  transition: all 0.3s ease;
  min-height: 180px;
  display: flex;
  align-items: center;
}

.feature-cards-strip .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-cards-strip i {
  transition: all 0.3s ease;
}

.feature-cards-strip .card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.feature-cards-strip .card-body {
  flex: 1;
}

/* Responsive adjustments for feature cards */
@media (max-width: 768px) {
  .feature-cards-strip .card {
    margin-bottom: 1rem;
  }
  
  .feature-cards-strip i {
    font-size: 2.5rem !important;
    margin-bottom: 1rem;
  }
}

/* ============================================
   HERO BACKGROUND ANIMATIONS
   ============================================ */

/* Hero Background Animations */
.hero-chicken-slide {
  background-image: url('../WC-Images/Breeder-farm-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-feeds-slide {
  background-image: url('../WC-Images/Wisdom-feeds-Bags-and-logos/broiler-finisher-front.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-nursery-slide {
  background-image: url('../WC-Images/Wisdom-nursery/Environment/Nursery-environment-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-honey-slide {
  background-image: url('../WC-Images/Honey-production/Farm-Honey-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* Subtle background animations */
.hero-chicken-slide::before,
.hero-feeds-slide::before,
.hero-nursery-slide::before,
.hero-honey-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  animation: heroBackgroundFloat 20s ease-in-out infinite;
  z-index: -1;
}

/* Background floating animation */
@keyframes heroBackgroundFloat {
  0%, 100% {
    transform: scale(1.1) translateY(0px) rotate(0deg);
  }
  25% {
    transform: scale(1.15) translateY(-10px) rotate(0.5deg);
  }
  50% {
    transform: scale(1.1) translateY(-5px) rotate(0deg);
  }
  75% {
    transform: scale(1.15) translateY(-15px) rotate(-0.5deg);
  }
}

/* Hero overlay with subtle animation */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  animation: heroOverlayPulse 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes heroOverlayPulse {
  0%, 100% {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  }
  50% {
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
  }
}

/* Hero content animations */
.hero-slider .swiper-slide .container-lg .row .col-lg-6 {
  animation: heroContentSlideIn 1.2s ease-out;
}

@keyframes heroContentSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sector card hover animations */
.sector-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.sector-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.sector-overlay {
  transition: transform 0.5s ease;
}

.sector-card:hover .sector-overlay {
  transform: scale(1.05);
}

/* Feature cards strip animation */
.feature-cards-strip .card {
  transition: all 0.3s ease;
}

.feature-cards-strip .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Testimonial card animations */
.testimonials-carousel .card {
  transition: all 0.3s ease;
}

.testimonials-carousel .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Contact info hover animations */
.contact-info {
  transition: all 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
}

.contact-icon i {
  transition: all 0.3s ease;
}

.contact-info:hover .contact-icon i {
  transform: scale(1.1);
  color: var(--bs-primary) !important;
}

/* Button hover animations */
.btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Star rating animation */
.star-rating label {
  transition: all 0.2s ease;
  cursor: pointer;
}

.star-rating label:hover,
.star-rating input:checked ~ label {
  color: #ffc107;
  transform: scale(1.1);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

img[data-aos] {
  opacity: 0;
}

img[data-aos].aos-animate {
  opacity: 1;
}

/* Custom AOS animations */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* Newsletter section animation */
.newsletter-bg {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: grainMove 20s linear infinite;
  z-index: 0;
}

@keyframes grainMove {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-100px) translateY(-100px); }
}

.newsletter-bg .container {
  position: relative;
  z-index: 1;
}

/* Gallery Carousel Styles */
.gallery-carousel-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.gallerySwiper {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.gallery-slide:hover {
  transform: scale(1.02);
}

/* Gallery Background Images */
.wisdom-chicken-gallery {
  background-image: url('../WC-Images/Breeder-farm-1.jpg');
}

.wisdom-feeds-gallery {
  background-image: url('../WC-Images/Wisdom-feeds-Bags-and-logos/broiler-finisher-front.png');
}

.wisdom-nursery-gallery {
  background-image: url('../WC-Images/Wisdom-nursery/Environment/Nursery-environment-1.jpg');
}

.uki-honey-gallery {
  background-image: url('../WC-Images/Honey-production/Farm-Honey-1.jpg');
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-slide:hover .gallery-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.gallery-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.gallery-slide:hover .gallery-content {
  transform: translateY(0);
}

.gallery-icon {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.gallery-slide:hover .gallery-icon {
  opacity: 1;
  transform: scale(1.1);
}

.gallery-icon svg {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.gallery-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.2s;
}

.gallery-slide:hover .gallery-title {
  opacity: 1;
  transform: translateY(0);
}

.gallery-description {
  font-size: 1.25rem;
  font-weight: 300;
  max-width: 400px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.4s;
}

.gallery-slide:hover .gallery-description {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery Navigation */
.gallery-next,
.gallery-prev {
  color: white !important;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  transition: all 0.3s ease;
}

.gallery-next:hover,
.gallery-prev:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.gallery-next:after,
.gallery-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.gallery-pagination {
  bottom: 20px !important;
}

.gallery-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}

/* Thumbnail Gallery - Artistic Layout */
.thumbnail-gallery {
  margin-top: 2rem;
}

.thumbnail-gallery .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.thumbnail-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f8f9fa;
  flex: 1;
  min-width: 200px;
  height: 150px;
}

/* Artistic Sizing Variations */
.thumbnail-item:nth-child(1) {
  flex: 1.2;
  height: 180px;
  border-radius: 20px;
}

.thumbnail-item:nth-child(2) {
  flex: 0.8;
  height: 120px;
  border-radius: 10px;
}

.thumbnail-item:nth-child(3) {
  flex: 1.1;
  height: 160px;
  border-radius: 25px;
}

.thumbnail-item:nth-child(4) {
  flex: 0.9;
  height: 140px;
  border-radius: 12px;
}

.thumbnail-item:nth-child(5) {
  flex: 1.3;
  height: 200px;
  border-radius: 18px;
}

.thumbnail-item:nth-child(6) {
  flex: 0.7;
  height: 110px;
  border-radius: 8px;
}

.thumbnail-item:nth-child(7) {
  flex: 1.0;
  height: 150px;
  border-radius: 15px;
}

.thumbnail-item:nth-child(8) {
  flex: 1.1;
  height: 170px;
  border-radius: 22px;
}

.thumbnail-item:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.thumbnail-item.active {
  transform: translateY(-5px) rotate(0deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border: 3px solid var(--bs-primary);
}

/* Random Rotation for Artistic Effect */
.thumbnail-item:nth-child(odd) {
  transform: rotate(-1deg);
}

.thumbnail-item:nth-child(even) {
  transform: rotate(1deg);
}

.thumbnail-item:nth-child(3n) {
  transform: rotate(0.5deg);
}

.thumbnail-item:nth-child(5n) {
  transform: rotate(-0.5deg);
}

/* Smooth transitions for random changes */
.thumbnail-item {
  transition: all 0.5s ease;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
  transform: scale(1.1);
}

.thumbnail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
  transform: translateY(0);
}

.thumbnail-item.active .thumbnail-overlay {
  transform: translateY(0);
  background: linear-gradient(transparent, rgba(var(--bs-primary-rgb), 0.8));
}

/* Dynamic Image Transitions */
.thumbnail-item img {
  transition: all 0.5s ease;
}

.thumbnail-item:hover img {
  transform: scale(1.1) rotate(1deg);
}

.gallery-slide {
  transition: background-image 0.8s ease;
}

/* Artistic Grid Layout */
.thumbnail-gallery .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 0;
}

/* Random positioning for artistic effect */
.thumbnail-item:nth-child(1) { grid-column: span 1; }
.thumbnail-item:nth-child(2) { grid-column: span 1; }
.thumbnail-item:nth-child(3) { grid-column: span 1; }
.thumbnail-item:nth-child(4) { grid-column: span 1; }
.thumbnail-item:nth-child(5) { grid-column: span 2; }
.thumbnail-item:nth-child(6) { grid-column: span 1; }
.thumbnail-item:nth-child(7) { grid-column: span 1; }
.thumbnail-item:nth-child(8) { grid-column: span 1; }
.thumbnail-item:nth-child(9) { grid-column: span 1; }
.thumbnail-item:nth-child(10) { grid-column: span 1; }
.thumbnail-item:nth-child(11) { grid-column: span 1; }
.thumbnail-item:nth-child(12) { grid-column: span 2; }

/* Smooth random rotation transitions */
.thumbnail-item {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects with artistic flair */
.thumbnail-item:hover {
  transform: translateY(-8px) rotate(2deg) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Active state with artistic styling */
.thumbnail-item.active {
  transform: translateY(-5px) rotate(0deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(var(--bs-primary-rgb), 0.3);
  border: 3px solid var(--bs-primary);
  z-index: 5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallerySwiper {
    height: 400px;
  }
  
  .gallery-title {
    font-size: 2rem;
  }
  
  .gallery-description {
    font-size: 1rem;
  }
  
  .thumbnail-item {
    height: 120px;
    min-width: 150px;
  }
  
  .thumbnail-gallery .row {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 576px) {
  .gallerySwiper {
    height: 300px;
  }
  
  .gallery-title {
    font-size: 1.5rem;
  }
  
  .gallery-description {
    font-size: 0.9rem;
  }
  
  .thumbnail-item {
    height: 100px;
    min-width: 120px;
  }
  
  .thumbnail-gallery .row {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

/* ============================================
   PRODUCT PAGE HERO SECTIONS
   ============================================ */

/* Product Hero Background with Gradient Overlay */
.product-hero-bg {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.product-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, 
    rgba(0, 0, 0, 0.6) 0%, 
    rgba(0, 0, 0, 0.4) 30%, 
    rgba(220, 38, 38, 0.4) 70%, 
    rgba(220, 38, 38, 0.6) 100%
  );
  z-index: 1;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
}

.product-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.product-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-hero-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.product-hero-buttons .btn-light {
  background-color: rgba(255, 255, 255, 0.9);
  color: #001f3f;
  border: none;
}

.product-hero-buttons .btn-light:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-hero-buttons .btn-outline-light {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
}

.product-hero-buttons .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-2px);
}

/* Product Hero Background Images */
.hero-wisdom-chicken {
  background-image: url('../WC-Images/Wisdom-chicken/Hatchery/Hatchery-1.jpg');
}

.hero-wisdom-feeds {
  background-image: url('../WC-Images/Wisdom-feeds-Bags-and-logos/Logo-and-banner/Feeds-Banner.png');
}

.hero-wisdom-nursery {
  background-image: url('../WC-Images/Wisdom-nursery/Environment/nursery-environment-1.jpg');
}

.hero-uki-honey {
  background-image: url('../WC-Images/Honey-production/Farm-Honey-2.jpg');
}
/* Responsive Design */
@media (max-width: 768px) {
  .product-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .product-hero-content .lead {
    font-size: 1.1rem;
  }
  
  .product-hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .product-hero-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* ============================================
   SECTOR BUTTONS STYLES
   ============================================ */

/* Unique sector button class to avoid CSS conflicts */
.btn-sector-red {
  background-color: transparent !important;
  border-color: white !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  border: 2px solid #ffffff !important;
}

.btn-sector-red:hover {
  background-color: #b91c1c !important;
  border-color: #b91c1c !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4) !important;
}

/* ============================================
   BUSINESS SECTORS TAB SYSTEM STYLES
   ============================================ */

/* Tab Navigation Styles */
.business-sectors-tabs .nav-pills {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.business-sectors-tabs .nav-pills .nav-link {
  border-radius: 10px;
  font-weight: 600;
  color: #6c757d;
  background: transparent;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  padding: 12px 20px;
  margin: 0 4px;
  position: relative;
  overflow: hidden;
}

.business-sectors-tabs .nav-pills .nav-link:hover {
  color: #495057;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

.business-sectors-tabs .nav-pills .nav-link.active {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border-color: #007bff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

.business-sectors-tabs .nav-pills .nav-link i {
  font-size: 1.1em;
}

/* Tab Content Styles */
.business-sectors-tabs .tab-content {
  margin-top: 30px;
}

.business-sectors-tabs .tab-pane {
  animation: fadeInUp 0.5s ease-out;
}

.business-sectors-tabs .tab-pane .banner-blocks {
  display: block; /* Ensure elements stack vertically */
  width: 100%;
  margin-bottom: 30px;
}

.business-sectors-tabs .tab-pane .banner-ad {
  margin-bottom: 20px;
  height: 350px; /* Adjust height for better display in tabs */
}

.business-sectors-tabs .tab-pane .row.mt-4 {
  margin-top: 20px !important;
}

.business-sectors-tabs .tab-pane .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.business-sectors-tabs .tab-pane .product-item {
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-color: white;
}

/* Statistics Cards */
.stat-card {
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.stat-text {
  font-size: 1rem;
  font-weight: 500;
  color: #6c757d;
  margin: 0;
}

/* Product Items */
.products-grid {
  display: grid;
  gap: 12px;
}

.product-item {
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.product-item:hover {
  background: #f8f9fa !important;
  border-color: #007bff;
  transform: translateX(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-item i {
  font-size: 1.2em;
}

/* Banner Backgrounds for Honey */
.banner-honey-bg {
  background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
  position: relative;
  overflow: hidden;
}

.banner-honey-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url('../WC-Images/Honey-products/honey-jar-1.jpg') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.banner-honey-bg .banner-content {
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .business-sectors-tabs .nav-pills {
    flex-direction: column;
    gap: 8px;
  }
  
  .business-sectors-tabs .nav-pills .nav-link {
    margin: 0;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-card {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .business-sectors-tabs .nav-pills .nav-link {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .business-sectors-tabs .nav-pills .nav-link i {
    display: block;
    margin-bottom: 5px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}