/* Custom Attractive Styling for Leeuwenhoek Biocorporation */

/* Smooth transitions for all elements */
* {
  transition: all 0.3s ease;
}

/* Enhanced card hover effects */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Gradient backgrounds for sections */
.bg-gradient-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.bg-gradient-info {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Enhanced buttons */
.btn {
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

/* Icon styling */
.fas, .fab {
  transition: all 0.3s ease;
}

.card:hover .fas,
.card:hover .fab {
  transform: scale(1.2) rotate(5deg);
}

/* Section headers */
section h2, section h3 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* Navbar enhancement - keeping original colors */
.navbar-nav .nav-link {
  position: relative;
  margin: 0 5px;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active-home::after {
  width: 100%;
}

/* Feature boxes with gradient borders */
.feature-box {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  margin: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Animated icons */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Stats counter styling */
.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Timeline styling */
.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

/* Pricing cards */
.pricing-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card .card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border: none;
}

/* Image overlays */
.img-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.img-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.img-overlay:hover::after {
  opacity: 1;
}

/* Testimonial cards */
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 60px;
  position: absolute;
  top: 20px;
  left: 30px;
  color: rgba(102, 126, 234, 0.1);
}

/* Progress bars */
.progress {
  height: 10px;
  border-radius: 10px;
  background: #f0f0f0;
  overflow: visible;
}

.progress-bar {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  position: relative;
  overflow: visible;
}

/* Badge styling */
.badge {
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.badge-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.badge-success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

/* Form inputs */
.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Footer enhancement */
footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 40px 0 20px;
}

footer a {
  color: #ecf0f1;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #667eea;
  text-decoration: none;
}

/* Force desktop layout - Mobile gets desktop site view */
body {
  min-width: 1200px;
}

/* Keep navbar responsive on mobile */
@media (max-width: 991px) {
  body {
    min-width: auto;
  }
  
  #nav-bar .navbar {
    width: 100%;
  }
  
  .navbar-brand {
    font-size: 14px !important;
  }
  
  .navbar-brand img {
    width: 40px !important;
    height: 50px !important;
  }
}

/* Responsive adjustments - Disabled for desktop-only mode */
/* @media (max-width: 768px) {
  .stat-number {
    font-size: 36px;
  }
  
  section h2::after {
    width: 60px;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 14px;
  }
} */

/* Loading animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Social media icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
