 



/* Nav link hover and active styles */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background-color: Magenta ;
  color: #1e3c72 !important;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.6);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Override toggler icon color for better visibility */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
 .card-img-top {
    height: 200px;          /* or any fixed height you prefer */
    object-fit: cover;      /* this makes sure the image fills the space without stretching */
    width: 100%;            /* ensures full width inside the card */
}
.bg-custom-blue {
        background-color: #e0f7ff;
    }
    .bg-custom-gray {
        background-color: #f8f9fa;
    }
    .bg-custom-yellow {
        background-color: #fff8e1;
    }

.nav-pills .nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-pills .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #ff8c00;
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.nav-pills .nav-link:hover::after,
.nav-pills .nav-link.active::after {
    width: 60%;
}

.navbar-brand strong {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
}

.btn-warning {
    background-color: #ff8c00;
    border-color: #ff8c00;
    color: #fff;
}

.btn-warning:hover {
    background-color: #e67e00;
    border-color: #e67e00;
}
.navbar-container {
    width: 100%;
    padding-left: 1;
    padding-right: 1;
    margin: 0;
}
.bg-custom-Magenta  {
    background-color: Magenta ; /* light warm yellow */
  }
  
  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(255, 140, 0, 0.3);
  }
  
  .text-warning {
    color: #ff8c00 !important; /* Deep orange */
  }
  
  h2 {
    letter-spacing: 1.5px;
  }
  
  .card-title {
    font-size: 1.25rem;
  }
  
  .card-text {
    font-size: 1rem;
    line-height: 1.5;
  }
  .bg-secondary {
    background-color: #2e2e3e !important; /* deep slate blue/gray */
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(16, 99, 198, 0.6);
    transition: all 0.3s ease;
  }
  
  .card-title {
    font-size: 1.4rem;
    letter-spacing: 0.03em;
  }
  
  .card-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .card-img-top {
    object-fit: cover;
    height: 200px;
  }
 
.bg-light {
  background: #f8fafc;
}

/* Title styling - reduced size for professional look */
.about-title {
  color: #0d6efd; /* Bootstrap primary blue */
  text-shadow: 1px 1px 3px rgba(13, 110, 253, 0.15);
  font-weight: 600;
}

/* Text container */
.about-text-wrapper {
  border-left: 6px solid #0d6efd;
  transition: box-shadow 0.3s ease;
  background: #fff;
}
.about-text-wrapper:hover {
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
}

/* Paragraph styles */
.about-text-wrapper p.lead {
  font-weight: 500;
  font-size: 1.25rem;
}
.about-text-wrapper p.text-muted {
  line-height: 1.6;
}

/* Custom button */
.btn-custom {
  background-color: #198754; /* Bootstrap green */
  border: none;
  font-weight: 600;
  color: white;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-custom:hover, .btn-custom:focus {
  background-color: #145c32; /* Darker green */
  box-shadow: 0 6px 15px rgba(25, 135, 84, 0.5);
  color: #e0f7e9;
}

/* Image container */
.img-wrapper {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}
.img-wrapper:hover {
  transform: scale(1.07) rotate(2deg);
  box-shadow: 0 20px 40px rgba(25, 135, 84, 0.25);
}
.about-image {
  border-radius: 1rem;
  object-fit: cover;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .about-text-wrapper {
    border-left: none;
    border-top: 6px solid #0d6efd;
  }
}
 /* Hover zoom effect on cards */
   /* Section background */
   section {
    background-color: #f0f4f8;
  }

  /* Card background colors */
  .bg-light-green {
    background-color: #dff5e3; /* soft green */
  }
  .bg-light-yellow {
    background-color: #fff8e1; /* soft yellow */
  }
  .bg-light-blue {
    background-color: #e0f2ff; /* soft blue */
  }

  /* Hover zoom effect */
  .hover-zoom {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .hover-zoom:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  }

  /* Button hover */
  .hover-btn {
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  }
  .hover-btn:hover {
    background-color: #0d6efd;
    color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.4);
  }



   
  section.container {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);

   border-radius: 1rem;
    padding: 60px 30px;
}

  .service-card {
    cursor: pointer;
    position: relative;
    height: 300px;
    margin-bottom: 30px;
  }
  
  .service-image {
    object-fit: cover;
    height: 100%;
    transition: transform 0.5s ease;
    border-radius: 1rem;
  }
  
  .service-card:hover .service-image {
    transform: scale(1.1);
    filter: brightness(0.7);
  }
  
  .service-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: top 0.5s ease, opacity 0.5s ease;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .service-card.active .service-content {
    top: 0;
    opacity: 1;
  }
/* Hover zoom effect on product images */
.transition-scale {
transition: transform 0.3s ease;
}
.product-card:hover .transition-scale {
transform: scale(1.05);
}
/* Smooth badge icon alignment */
.card-title i {
vertical-align: middle;
margin-right: 6px;
}

  /* Section Base */
  .shop-category-section {
    padding: 60px 0;
    background: #f5f8fa; /* light pastel background */
    font-family: 'Poppins', sans-serif;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 0.25em;
  }
  .section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 2.5em;
  }

  /* Carousel container */
  .category-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .category-carousel::-webkit-scrollbar {
    height: 8px;
  }
  .category-carousel::-webkit-scrollbar-thumb {
    background: #bdc3c7;
    border-radius: 10px;
  }
  .category-carousel::-webkit-scrollbar-track {
    background: #ecf0f1;
  }

  /* Card styling */
  .category-card {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow:
      0 6px 15px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition:
      transform 0.45s cubic-bezier(0.68, -0.55, 0.27, 1.55),
      box-shadow 0.4s ease;
    opacity: 0;
    animation: fadeSlideUp 0.8s forwards;
  }
  /* Stagger animations */
  .category-card:nth-child(1) { animation-delay: 0.1s; }
  .category-card:nth-child(2) { animation-delay: 0.3s; }
  .category-card:nth-child(3) { animation-delay: 0.5s; }
  .category-card:nth-child(4) { animation-delay: 0.7s; }
  .category-card:nth-child(5) { animation-delay: 0.9s; }
  .category-card:nth-child(6) { animation-delay: 1.1s; }

  /* Hover & Focus effects */
  .category-card:focus,
  .category-card:hover {
    transform: rotate(-3deg) scale(1.07);
    box-shadow:
      0 20px 30px rgba(44, 62, 80, 0.25);
    outline: none;
  }

  /* Card image */
  .category-card img {
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 180px;
    object-fit: cover;
    animation: floatUpDown 6s ease-in-out infinite;
    transition: transform 0.5s ease, filter 0.5s ease;
  }
  .category-card:hover img,
  .category-card:focus img {
    transform: scale(1.12);
    filter: brightness(1.05);
  }

  /* Card content */
  .card-content {
    padding: 1.3rem 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    color: #2c3e50;
  }
  .card-content h3 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 1.3rem;
  }

  /* Button styles */
  .btn-primary {
    background: #3498db;
    border: none;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    transition: all 0.35s ease;
    user-select: none;
    text-decoration: none;
    box-shadow: 0 0 15px #3498dbaa;
  }
  .btn-primary:hover,
  .btn-primary:focus {
    background: #2980b9;
    box-shadow:
      0 0 25px #2980b9,
      0 0 40px #3498dbcc;
    transform: scale(1.12);
    outline: none;
  }

  /* Pulsing glow effect for button */
  .btn-pulse {
    animation: pulseGlow 2.5s infinite ease-in-out;
  }

  /* Animations */
  @keyframes fadeSlideUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pulseGlow {
    0%, 100% {
      box-shadow: 0 0 8px #3498dbaa;
    }
    50% {
      box-shadow: 0 0 20px #2980b9cc;
    }
  }

  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  /* Responsive */
  @media (max-width: 991px) {
    .category-carousel {
      gap: 1rem;
    }
    .category-card {
      flex: 0 0 240px;
    }
  }
  @media (max-width: 576px) {
    .category-card {
      flex: 0 0 85vw;
    }
  }

  /* Section title animation */
  .fade-in {
    animation: fadeInUp 1s ease-in-out;
  }
  
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Trending card styles */
  .trending-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .trending-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
  
  .trending-card img {
    border-radius: 20px 20px 0 0;
  }
  
  .trending-card .card-title {
    font-weight: 600;
    color: #333;
  }
  
  .trending-card .price {
    font-size: 1.1rem;
    color: #e63946;
    font-weight: 700;
  }
  
  /* Buy button styles */
  .btn-buy {
    background: linear-gradient(90deg, #ffba08, #faa307);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  
  .btn-buy:hover {
    background: linear-gradient(90deg, #faa307, #ffba08);
    box-shadow: 0 0 15px rgba(250, 163, 7, 0.6);
  }
  
  /* Custom carousel controls */
  .custom-control {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
  
  .custom-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  