/* Base Styles */
:root {
  --primary: #2565b7;
  --primary-light: #3c7cce;
  --primary-dark: #1a4d8f;
  --secondary: #54b689;
  --dark: #343a40;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --animation-duration: 0.3s;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  overflow-x: hidden;
}


/* Animated Elements */
.animated-bar {
  height: 4px;
  width: 80px;
  background-color: var(--primary);
  margin-bottom: 25px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.animated-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

.feature-box {
  padding: 15px;
  border-radius: 8px;
  transition: all var(--animation-duration) ease;
  opacity: 0;
  transform: translateY(20px);
}

.feature-box.animated {
  transform: translateY(0);
  opacity: 1;
  background-color: rgba(248, 249, 250, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.image-hover-effect {
  transition: all var(--animation-duration) ease;
  opacity: 0;
  transform: translateY(20px);
}

.image-hover-effect.animated {
  transform: translateY(0);
  opacity: 1;
}

.image-hover-effect img {
  transition: all var(--animation-duration) ease;
}

.image-hover-effect:hover img {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--animation-duration) ease;
}

.section-title.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero-section {
  background-size: cover;
  color: var(--white);
  padding: 180px 0 100px;
  position: relative;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: var(--white);
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Enhanced Product Cards */
.product-card .card {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(20px);
  border: none;
  overflow: hidden;
  border-radius: 12px;
}

.product-card .card.animated {
  opacity: 1;
  transform: translateY(0);
}

.product-card-inner {
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-card-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(37, 101, 183, 0.15) !important;
}

.product-card-inner .card-img-top {
  transition: transform 0.8s ease;
  height: 220px;
  object-fit: cover;
}

.product-card-inner:hover .card-img-top {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary);
  color: white;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 20px;
  z-index: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(37, 101, 183, 0.25);
}

.product-card-inner .card-body {
  padding: 20px 25px;
}

.product-card-inner .card-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
  transition: color 0.3s ease;
}

.product-card-inner:hover .card-title {
  color: var(--primary);
}

.product-card-inner .card-text {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.product-card-inner .price {
  color: var(--primary-dark);
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.product-card-inner .card-footer {
  background-color: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 25px;
}

.open-product-modal {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--primary);
  color: white;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(37, 101, 183, 0.2);
}

.open-product-modal:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 15px rgba(37, 101, 183, 0.3);
  transform: translateY(-2px);
}

.open-product-modal::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.6s, height 0.6s, opacity 0.6s;
}

.open-product-modal:hover::after {
  width: 300px;
  height: 300px;
  opacity: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.product-rating .stars {
  color: #ffc107;
  margin-right: 8px;
}

.product-rating .rating-count {
  color: var(--gray);
  font-size: 0.85rem;
}

.product-card-inner .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card-inner:hover .product-overlay {
  opacity: 1;
}

.product-quick-actions {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.product-card-inner:hover .product-quick-actions {
  opacity: 1;
  transform: translateX(0);
}

.quick-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.quick-action-btn:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Product Modal Styles */
#productModal .modal-content {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#productModal .modal-header {
  border-bottom: 3px solid var(--primary);
}

.product-info-card {
  background-color: var(--light);
  padding: 15px;
  border-radius: 8px;
  height: 100%;
}

.benefits-list, .ingredient-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li, .ingredient-list li {
  margin-bottom: 8px;
}

.ingredient-list li {
  position: relative;
  padding-left: 15px;
}

.ingredient-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Testimonial Carousel */
.testimonial-item {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-avatar img {
  width: 80px;
  height: 80px;
  border: 5px solid var(--light-gray);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
}

/* Contact Form */
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(37, 101, 183, 0.25);
}

/* Footer */
.social-icons {
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-right: 10px;
  transition: all var(--animation-duration) ease;
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links a {
  position: relative;
  transition: all var(--animation-duration) ease;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width var(--animation-duration) ease;
}

.footer-links a:hover {
  padding-left: 5px;
}

.footer-links a:hover::before {
  width: 100%;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--animation-duration) ease;
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 120px 0 80px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .testimonial-avatar img {
    width: 60px;
    height: 60px;
  }
}

/* Animation for form buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all var(--animation-duration) ease;
}

.btn-primary::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.7s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Toast styling */
.toast {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Product filter buttons */
.product-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.product-filter .filter-btn {
  border-radius: 25px;
  padding: 8px 22px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: var(--light);
  color: var(--dark);
  border: none;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.product-filter .filter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.product-filter .filter-btn.active {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 5px 15px rgba(37, 101, 183, 0.25);
}

/* Enhanced Navigation Bar Styles */
.navbar {
  padding: 15px 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

/* Scrolled navbar state */
.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Brand/logo */
.navbar-brand {
  font-weight: 700;
  color: var(--primary);
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.navbar-brand:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.navbar-brand:hover::after {
  width: 100%;
}

/* Navigation links */
.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 600;
  padding: 10px 18px;
  position: relative;
  transition: all 0.4s ease;
  border-radius: 22px;
  margin: 0 2px;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(-50%);
  opacity: 0;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
  background-color: rgba(37, 101, 183, 0.05);
  transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
  width: 70%;
  opacity: 1;
}

/* Active nav item */
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary);
  font-weight: 700;
  background-color: rgba(37, 101, 183, 0.1);
}

.navbar-nav .nav-item.active .nav-link::before {
  width: 70%;
  opacity: 1;
}

/* Mega menu styling */
.navbar .mega-menu {
  position: static;
}

.navbar .mega-menu .dropdown-menu {
  width: 100%;
  padding: 20px;
  left: 0;
  right: 0;
  border-radius: 0 0 12px 12px;
}

.mega-menu-column h5 {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

/* Dropdown menu styling */
.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 15px;
  margin-top: 12px;
  animation: fadeInDown 0.4s ease;
  border-top: 3px solid var(--primary);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  padding: 10px 20px;
  color: var(--dark);
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: rgba(37, 101, 183, 0.08);
  color: var(--primary);
  transform: translateX(5px);
}

.dropdown-item::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 20px;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.dropdown-item:hover::after {
  width: 30px;
}

/* Toggler button for mobile */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
  transition: all 0.4s ease;
  outline: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  display: inline-block;
  transition: all 0.4s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.4s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

/* Animated toggler */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navbar CTA button */
.navbar .nav-cta {
  background-color: var(--primary);
  color: white;
  border-radius: 25px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(37, 101, 183, 0.25);
  margin-left: 10px;
  border: 2px solid transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.navbar .nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: white;
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 25px;
}

.navbar .nav-cta:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 101, 183, 0.3);
}

.navbar .nav-cta:hover::before {
  width: 100%;
}

/* Search form in navbar */
.navbar .search-form {
  position: relative;
  margin-right: 15px;
}

.navbar .search-form .form-control {
  border-radius: 25px;
  padding: 10px 20px 10px 45px;
  background-color: var(--light);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  width: 200px;
}

.navbar .search-form .form-control:focus {
  width: 250px;
  background-color: white;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(37, 101, 183, 0.15);
}

.navbar .search-form .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 18px;
  transition: all 0.3s ease;
}

.navbar .search-form .form-control:focus + .search-icon {
  color: var(--primary);
}

/* Enhanced Navigation Bar Styles */
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Scrolled navbar state */
.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Brand/logo */
.navbar-brand {
  font-weight: 600;
  color: var(--primary);
  transition: all var(--animation-duration) ease;
}

.navbar-brand:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Navigation links */
.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 8px 16px;
  position: relative;
  transition: all var(--animation-duration) ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all var(--animation-duration) ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}

/* Active nav item */
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary);
  font-weight: 600;
}

.navbar-nav .nav-item.active .nav-link::after {
  width: 70%;
}

/* Dropdown menu styling */
.dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-top: 10px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  padding: 8px 20px;
  color: var(--dark);
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: rgba(37, 101, 183, 0.08);
  color: var(--primary);
  transform: translateX(5px);
}

/* Toggler button for mobile */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
  transition: all var(--animation-duration) ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  display: inline-block;
  transition: all var(--animation-duration) ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: all var(--animation-duration) ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

/* Animated toggler */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navbar CTA button */
.navbar .nav-cta {
  background-color: var(--primary);
  color: white;
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all var(--animation-duration) ease;
  box-shadow: 0 4px 10px rgba(37, 101, 183, 0.2);
}

.navbar .nav-cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 101, 183, 0.3);
}

/* Search form in navbar */
.navbar .search-form {
  position: relative;
  margin-right: 15px;
}

.navbar .search-form .form-control {
  border-radius: 20px;
  padding-left: 40px;
  background-color: var(--light);
  border: 1px solid transparent;
  transition: all var(--animation-duration) ease;
}

.navbar .search-form .form-control:focus {
  background-color: white;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(37, 101, 183, 0.15);
}

.navbar .search-form .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 15px;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 20px;
    border-radius: 5px;
  }
  
  .navbar-nav .nav-link:hover {
    background-color: rgba(37, 101, 183, 0.08);
  }
  
  .navbar-nav .nav-item.active .nav-link {
    background-color: rgba(37, 101, 183, 0.1);
  }
  
  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 20px;
  }
  
  .navbar .nav-cta {
    margin-top: 10px;
    text-align: center;
  }
}

  :root {
    --primary-color: #0d6efd;
    --primary-light: rgba(13, 110, 253, 0.1);
    --text-dark: #212529;
    --transition-speed: 0.3s;
  }

  /* Modern Glass Effect Navbar */
  .bg-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  }

  /* Logo and Brand Styling */
  .brand-logo-container {
    width: 50px;
    height: 50px;
    overflow: hidden;
    margin-right: 15px;
    transition: transform 0.5s ease;
  }

  .brand-logo {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
  }

  .navbar-brand:hover .brand-logo-container {
    transform: rotate(5deg);
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .text-gradient {
    background: linear-gradient(90deg, var(--primary-color), #8c68cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .tagline {
    font-size: 0.75rem;
    color: #6c757d;
    letter-spacing: 0.05em;
  }

  /* Modern Hamburger Icon */
  .hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
  }

  .hamburger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
  }

  .hamburger-icon span:nth-child(1) {
    top: 0px;
  }

  .hamburger-icon span:nth-child(2) {
    top: 9px;
    width: 75%;
  }

  .hamburger-icon span:nth-child(3) {
    top: 18px;
  }

  .navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
  }

  .navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }

  .navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
  }

  /* Nav Items Styling */
  .navbar-nav {
    align-items: center;
  }

  .nav-item {
    margin: 0 5px;
    position: relative;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    position: relative;
    transition: all var(--transition-speed) ease;
  }

  .nav-icon {
    margin-right: 8px;
    font-size: 14px;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
  }

  /* Hover Effect with Line Animation */
  .nav-hover-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: var(--primary-color);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
  }

  .nav-hover-effect:hover::after,
  .nav-hover-effect.active::after {
    width: 80%;
  }

  .nav-hover-effect:hover,
  .nav-hover-effect.active {
    color: var(--primary-color);
  }

  .nav-hover-effect:hover .nav-icon,
  .nav-hover-effect.active .nav-icon {
    transform: translateY(-3px);
  }

  /* Modern Dropdown Menu */
  .dropdown-modern {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    min-width: 220px;
    animation: fadeInUp 0.3s ease forwards;
    border-top: 3px solid var(--primary-color);
  }

  .dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .dropdown-item {
    color: var(--text-dark);
    padding: 0.7rem 1rem;
    margin: 2px 0;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
  }

  .dropdown-item:hover {
    background-color: var(--primary-light);
    transform: translateX(5px);
    color: var(--primary-color);
  }

  .view-all {
    font-weight: 500;
    color: var(--primary-color);
  }

  /* CTA Button */
  .btn-pill {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
  }

  .btn-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
  }

  /* Navbar Scroll Effect */
  .navbar.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 991.98px) {
    .navbar-collapse {
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 1rem;
      margin-top: 1rem;
    }
    
    .nav-item {
      margin: 5px 0;
    }
    
    .dropdown-menu {
      border: none;
      box-shadow: none;
      padding: 0.5rem 1rem;
      background: rgba(13, 110, 253, 0.05);
      border-radius: 10px;
      margin-top: 5px;
    }
    
    .btn-pill {
      width: 100%;
      margin-top: 15px;
      text-align: center;
    }
  }

  :root {
        --primary-color: #3a86ff;
        --text-color: #212529;
        --background-color: #ffffff;
        --shadow-color: rgba(0, 0, 0, 0.12);
        --transition-time: 0.5s;
      }
      
      body {
        margin: 0;
        padding: 0;
        font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      }
      
      .slideshow-wrapper {
        position: relative;
        margin: 2rem auto;
        max-width: 1200px;
        padding: 0 1rem;
      }
      
      .slideshow-container {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 10px 30px var(--shadow-color);
        background-color: var(--background-color);
        height: 500px;
      }
      
      .slideshow-inner {
        position: relative;
        height: 100%;
        width: 100%;
      }
      
      .mySlides {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: opacity var(--transition-time) ease-in-out;
        background: linear-gradient(180deg, #b6b6b8 0%, #f8f9fa 100%);
        z-index: 1;
      }
      
      .mySlides.active {
        opacity: 1;
        z-index: 2;
      }
      
      .slide-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        padding: 2rem;
        box-sizing: border-box;
      }
      
      .mySlides img {
        max-width: 90%;
        max-height: 360px;
        object-fit: contain;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
        transform: translateY(50px);
        opacity: 0;
        transition: transform 0.8s ease, opacity 0.8s ease;
      }
      
      .mySlides.active img {
        transform: translateY(0);
        opacity: 1;
      }
      
      .slide-caption {
        margin-top: 1.5rem;
        color: var(--text-color);
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        transform: translateY(30px);
        opacity: 0;
        transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
      }
      
      .mySlides.active .slide-caption {
        transform: translateY(0);
        opacity: 1;
      }
      
      /* Navigation Controls */
      .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--text-color);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        transition: all 0.3s ease;
        font-size: 1.2rem;
        border: none;
      }
      
      .nav-btn:hover {
        background-color: var(--primary-color);
        color: rgb(238, 241, 243);
      }
      
      .prev {
        left: 20px;
      }
      
      .next {
        right: 20px;
      }
      
      /* Progress Indicator */
      .progress-container {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        z-index: 10;
      }
      
      .progress-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(150, 150, 150, 0.5);
        transition: all 0.3s ease;
        cursor: pointer;
      }
      
      .progress-dot.active {
        width: 30px;
        border-radius: 4px;
        background-color: var(--primary-color);
      }
      
      /* Animation effects */
      @keyframes fadeZoomIn {
        from {
          opacity: 0;
          transform: scale(0.95);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }
      
      /* Mobile responsive */
      @media (max-width: 768px) {
        .slideshow-container {
          height: 400px;
        }
        
        .mySlides img {
          max-height: 280px;
        }
        
        .nav-btn {
          width: 40px;
          height: 40px;
        }
      }


  :root {
    --primary-color: #3a86ff;
    --text-color: #212529;
    --background-color: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.12);
    --transition-time: 0.5s;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  }
  
  .slideshow-wrapper {
    position: relative;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
  }
  
  .slideshow-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-color);
    background-color: var(--background-color);
    height: 500px;
  }
  
  .slideshow-inner {
    position: relative;
    height: 100%;
    width: 100%;
  }
  
  .mySlides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-time) ease-in-out;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 1;
  }
  
  .mySlides.active {
    opacity: 1;
    z-index: 2;
  }
  
  .slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
  }
  
  .mySlides img {
    max-width: 90%;
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
  }
  
  .mySlides.active img {
    transform: translateY(0);
    opacity: 1;
  }
  
  .slide-caption {
    margin-top: 1.5rem;
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
  }
  
  .mySlides.active .slide-caption {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* Navigation Controls */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: none;
  }
  
  .nav-btn:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .prev {
    left: 20px;
  }
  
  .next {
    right: 20px;
  }
  
  /* Progress Indicator */
  .progress-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
  }
  
  .progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(150, 150, 150, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .progress-dot.active {
    width: 30px;
    border-radius: 4px;
    background-color: var(--primary-color);
  }
  
  /* Animation effects */
  @keyframes fadeZoomIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .slideshow-container {
      height: 400px;
    }
    
    .mySlides img {
      max-height: 280px;
    }
    
    .nav-btn {
      width: 40px;
      height: 40px;
    }
  }
  :root {
    --primary-color: #3a86ff;
    --secondary-color: #ff006e;
    --text-color: #212529;
    --background-color: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.12);
    --transition-time: 0.5s;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #f8f9fa;
  }
  
  .slideshow-wrapper {
    position: relative;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
  }
  
  .slideshow-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px var(--shadow-color);
    background-color: var(--background-color);
    height: 500px;
    transition: box-shadow 0.4s ease;
  }
  
  .slideshow-container:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  }
  
  .slideshow-inner {
    position: relative;
    height: 100%;
    width: 100%;
  }
  
  .mySlides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-time) ease-in-out, transform 0.8s ease;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 1;
    transform: translateX(50px);
  }
  
  /* Different transition effects for different slides */
  .mySlides:nth-child(3n+1) {
    transform: translateX(50px);
  }
  
  .mySlides:nth-child(3n+2) {
    transform: translateY(50px);
  }
  
  .mySlides:nth-child(3n+3) {
    transform: scale(0.9);
  }
  
  .mySlides.active {
    opacity: 1;
    z-index: 2;
    transform: translateX(0) translateY(0) scale(1);
  }
  
  .mySlides.fade-out {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
  
  .slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
  }
  
  .mySlides img {
    max-width: 90%;
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease, filter 0.6s ease;
  }
  
  .mySlides.active img {
    transform: translateY(0);
    opacity: 1;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
  }
  
  .mySlides.active:hover img {
    transform: translateY(-5px) scale(1.02);
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.2));
  }
  
  .slide-caption {
    margin-top: 1.5rem;
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s, background-color 0.3s ease;
  }
  
  .mySlides.active .slide-caption {
    transform: translateY(0);
    opacity: 1;
  }
  
  .mySlides.active:hover .slide-caption {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 6px 15px rgba(58, 134, 255, 0.3);
  }
  
  /* Navigation Controls */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: none;
    opacity: 0.7;
  }
  
  .nav-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  
  .prev {
    left: 20px;
  }
  
  .next {
    right: 20px;
  }
  
  /* Progress Indicator */
  .progress-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
  }
  
  .progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(150, 150, 150, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
  }
  
  .progress-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .progress-dot:hover {
    background-color: rgba(58, 134, 255, 0.7);
  }
  
  .progress-dot.active {
    width: 30px;
    border-radius: 4px;
    background-color: var(--primary-color);
  }
  
  .progress-dot.active::after {
    border-color: rgba(58, 134, 255, 0.3);
    border-radius: 16px;
  }
  
  /* Animated progress bar */
  .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 11;
    transition: width 0.1s linear;
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .slideshow-container {
      height: 500px;
    }
    
    .mySlides img {
      max-height: 280px;
    }
    
    .nav-btn {
      width: 40px;
      height: 40px;
    }
  }
  
  /* Dark mode support */
  @media (prefers-color-scheme: dark) {
    :root {
      --text-color: #e9ecef;
      --background-color: #212529;
    }
    
    body {
      background-color: #121212;
    }
    
    .mySlides {
      background: linear-gradient(180deg, #2a2d3a 0%, #1a1c24 100%);
    }
    
    .slide-caption {
      background-color: rgba(42, 45, 58, 0.9);
    }
  }
  
