.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/Background.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
  }
  
  /* Navbar Styling */
  .navbar {
    background: linear-gradient(to bottom, #1a1a2e, #16213e) !important;
    box-shadow: 0 2px 10px rgba(26, 26, 46, 0.5) !important;
    padding: 1rem 0 !important;
  }
  
  .navbar-brand, .navbar-nav .nav-link {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
  }
  
  .navbar-nav .nav-link:hover {
    color: #007bff !important;
  }
  
  .navbar-nav .nav-link.active {
    color: #007bff !important;
    font-weight: 600;
  }
  
  .feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
  }
  
  .feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
  }
  
  .stats-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 80px 0;
  }
  
  .stat-item {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
  }
  
  .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  .product-showcase {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .product-card-body {
    padding: 25px;
  }
  
  .testimonial-section {
    padding: 80px 0;
    background: white;
  }
  
  .testimonial-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #007bff;
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: #007bff;
  }
  
  .cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
  }
  
  .btn-custom {
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.1rem;
    }
    
    .stat-number {
      font-size: 2.5rem;
    }
  }

/* Modern Product Page Styling */
body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Enhanced Navbar Styling */
.navbar {
  position: relative;
  z-index: 1000;
  background: linear-gradient(to bottom, #1a1a2e, #16213e) !important;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.6) !important;
  padding: 1.2rem 0 !important;
  border-bottom: 2px solid rgba(0, 123, 255, 0.3);
}

.navbar-brand {
  color: white !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: #007bff !important;
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: white !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
  font-weight: 500 !important;
  margin: 0 0.5rem !important;
  padding: 0.5rem 1rem !important;
  border-radius: 25px !important;
  transition: all 0.3s ease !important;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #007bff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  color: #007bff !important;
  font-weight: 600 !important;
  background: rgba(0, 123, 255, 0.2) !important;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
}

.navbar-toggler {
  border: none !important;
  padding: 0.5rem !important;
}

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

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Contact Us Button Styling */
.navbar-nav .btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3) !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3) !important;
  transition: all 0.3s ease !important;
}

.navbar-nav .btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4) !important;
  background: linear-gradient(135deg, #0056b3, #004085) !important;
}

/* Main Container */
.container.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 4rem !important;
}

/* Back Button */
.btn-back {
  margin-bottom: 2rem !important;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #007bff;
  color: #007bff;
  background: transparent;
}

.btn-back:hover {
  background: #007bff;
  color: white;
  transform: translateX(-5px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Product Layout */
.product-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Main Image Section */
.main-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  background: white;
}

.main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.main-img:hover {
  transform: scale(1.02);
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.9);
  transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev {
  left: 15px;
}

.nav-btn.next {
  right: 15px;
}

/* Product Info Section */
.product-info {
  padding: 0 1rem;
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product-desc {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 35px;
  font-size: 1rem;
  color: #555;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.feature-list li:last-child {
  border-bottom: none;
}

/* Buy Button */
.btn-buy {
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  margin-top: 2rem;
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
  color: white;
  text-decoration: none;
}

/* Gallery Section */
#details-gallery {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-top: 2rem;
}

.gallery-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  text-align: center;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 1.5rem;
}

.thumbnail-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.thumbnail-img:hover {
  transform: scale(1.05);
  border-color: #007bff;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.thumbnail-img.active {
  border-color: #007bff;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* Product Stats */
.product-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 0;
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #007bff;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-title {
    font-size: 2rem;
  }
  
  .main-img {
    height: 400px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .thumbnail-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  
  .product-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
    line-height: 1.1;
  }
  
  /* Mobile Navbar */
  .navbar-nav .nav-link {
    margin: 0.25rem 0 !important;
    padding: 0.75rem 1rem !important;
    text-align: center;
  }
  
  .navbar-nav .btn-primary {
    margin-top: 0.5rem;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 2rem !important;
  }
  
  .product-container {
    padding: 1rem;
  }
  
  .product-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .stat-item {
    padding: 1.25rem;
  }
  
  .stat-number {
    font-size: 1.7rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
    line-height: 1.1;
  }
  
  .navbar-brand {
    font-size: 1.5rem !important;
  }
}

/* Modern Product Cards for Products Page */
.product-category-section {
  margin-bottom: 4rem;
}

.product-card-modern {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.product-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card-modern:hover .product-image {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.product-info-modern {
  padding: 2rem;
}

.product-name-modern {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-desc-modern {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.product-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.spec-item {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for product cards */
@media (max-width: 768px) {
  .product-image-container {
    height: 250px;
  }
  
  .product-info-modern {
    padding: 1.5rem;
  }
  
  .product-name-modern {
    font-size: 1.3rem;
  }
  
  .product-specs {
    gap: 0.5rem;
  }
  
  .spec-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* Contact Page Styles */
.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-details h5 {
  color: #1a1a2e;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #0056b3;
  text-decoration: none;
}

/* Contact Form Styles */
.contact-form .form-label {
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form .form-control::placeholder {
  color: #999;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-check-label {
  color: #666;
  font-size: 0.9rem;
}

.contact-form .btn-custom {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

/* FAQ Section Styles */
.faq-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
  color: #1a1a2e;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
  .contact-info-card,
  .contact-form-card {
    padding: 2rem;
  }
  
  .contact-item {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
  }
  
  .contact-details h5 {
    font-size: 1rem;
  }
  
  .faq-item {
    padding: 1.5rem;
  }
  
  .faq-question {
    font-size: 1rem;
  }
}