/* Algoremi Brand Colors & Modern Design System */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --accent-color: #ffd23f;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --text-color: #2c3e50;
  --text-light: #6c757d;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --algo-orange: #FF6B35;
  --algo-orange-light: #FF8A65;
  --algo-orange-dark: #E55A2B;
  --algo-dark: #2C3E50;
  --algo-light: #FFFFFF;
  --algo-light-gray: #F8FAFC;
  --algo-medium-gray: #64748B;
  --algo-border: #E2E8F0;
  --algo-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
  --algo-gradient-dark: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  --algo-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --algo-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --bs-secondary-color: #64748B;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--algo-dark);
  padding-top: 80px;
  margin-bottom: 0;
}

/* Chocolate Footer Styles */
.footer-chocolate {
  background: linear-gradient(135deg, #3c2415 0%, #5d3a1a 50%, #8b4513 100%);
  position: relative;
  padding: 60px 0 30px;
  overflow: hidden;
}

.footer-chocolate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(160, 82, 45, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(210, 180, 140, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-wave {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, 
    rgba(139, 69, 19, 0.8) 0%, 
    rgba(160, 82, 45, 0.6) 25%, 
    rgba(210, 180, 140, 0.4) 50%, 
    rgba(160, 82, 45, 0.6) 75%, 
    rgba(139, 69, 19, 0.8) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 85% 100%, 70% 70%, 55% 100%, 40% 70%, 25% 100%, 10% 70%, 0 100%);
}

.logo-shape-footer-chocolate {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
  transform: rotate(45deg);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.logo-shape-footer-chocolate::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 20px;
  height: 20px;
  background: #f4f1de;
  border-radius: 4px;
}

.brand-text-footer-chocolate {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none !important;
}

.brand-algo-footer-chocolate {
  color: #ff6b35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-remi-footer-chocolate {
  color: #f4f1de;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
  color: #d2b48c;
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
}

.footer-description {
  color: #deb887;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-heading {
  color: #f4f1de;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ff8a65);
  border-radius: 1px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-link {
  color: #deb887;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-link:hover {
  color: #ff8a65;
  transform: translateX(5px);
}

.footer-link i {
  width: 16px;
  opacity: 0.7;
}

.contact-info {
  margin-top: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(222, 184, 135, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 138, 101, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon i {
  color: #ff8a65;
  font-size: 1rem;
}

.contact-details {
  flex: 1;
}

.contact-label {
  display: block;
  color: #d2b48c;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-value {
  color: #f4f1de;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #ff8a65;
}

.social-links-chocolate {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 138, 101, 0.1));
  border: 2px solid rgba(255, 138, 101, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #deb887;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  border-color: #ff8a65;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(222, 184, 135, 0.2);
}

.footer-copyright {
  color: #d2b48c;
  font-size: 0.9rem;
}

.footer-legal-link {
  color: #deb887;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #ff8a65;
}

/* Logo Styles */
.logo-container {
  width: 40px;
  height: 40px;
  position: relative;
}

.logo-shape {
  width: 100%;
  height: 100%;
  background: var(--algo-gradient);
  transform: rotate(45deg);
  border-radius: 8px;
  position: relative;
}

.logo-shape::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 4px;
}

.logo-shape-footer {
  width: 100%;
  height: 100%;
  background: var(--algo-gradient);
  transform: rotate(45deg);
  border-radius: 8px;
  position: relative;
}

.logo-shape-footer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 20px;
  height: 20px;
  background: #343a40;
  border-radius: 4px;
}

/* Brand Text */
.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none !important;
}

.brand-algo {
  color: var(--algo-orange);
}

.brand-remi {
  color: var(--algo-dark);
}

.brand-text-footer {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-algo-footer {
  color: var(--algo-orange);
}

.brand-remi-footer {
  color: white;
}

/* Navigation */
.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--algo-dark) !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--algo-orange) !important;
}

.navbar-nav .nav-link.active {
  color: var(--algo-orange) !important;
}

/* Buttons */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn-primary {
  background: var(--algo-gradient);
  border: none;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-outline-primary {
  color: var(--algo-orange);
  border-color: var(--algo-orange);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--algo-gradient);
  border-color: var(--algo-orange);
  transform: translateY(-1px);
}

/* Hero Section - Modern Design */
.hero-section {
  background: linear-gradient(135deg, var(--algo-light-gray) 0%, #E2E8F0 50%, var(--algo-light-gray) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: var(--algo-gradient);
  opacity: 0.05;
  transform: rotate(15deg);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 120%;
  background: var(--algo-gradient-dark);
  opacity: 0.03;
  transform: rotate(-10deg);
  border-radius: 50%;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--algo-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--algo-dark) 0%, var(--algo-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--algo-medium-gray);
  margin-bottom: 2rem;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--algo-shadow-lg);
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--algo-gradient);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--algo-orange);
  display: block;
}

.stat-label {
  color: var(--algo-medium-gray);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--algo-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--algo-medium-gray);
  margin-bottom: 3rem;
}

/* Service Cards - Enhanced */
.service-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--algo-border);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--algo-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--algo-shadow-lg);
  border-color: var(--algo-orange);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--algo-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--algo-dark);
  margin-bottom: 1rem;
}

/* Portfolio Cards */
.portfolio-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.portfolio-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--algo-gradient);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 0.9;
}

.portfolio-content {
  padding: 1.5rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--algo-orange);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-control:focus {
  border-color: var(--algo-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Utilities */
.text-orange {
  color: var(--algo-orange) !important;
}

.bg-light-gray {
  background-color: var(--algo-light-gray) !important;
}

.gradient-text {
  background: var(--algo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-stats {
    margin-top: 2rem;
    padding: 2rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .hero-subtitle {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .portfolio-card {
    margin-bottom: 1.5rem;
  }
  
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-stats {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .service-card, .portfolio-card, .team-card {
    padding: 1.5rem;
  }
  
  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* Modern Animations & Effects */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

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

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

/* Glass Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern Gradient Backgrounds */
.bg-gradient-primary {
  background: var(--algo-gradient) !important;
}

.bg-gradient-dark {
  background: var(--algo-gradient-dark) !important;
}

/* Enhanced Navigation */
.navbar {
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  box-shadow: var(--algo-shadow);
}

/* Modern Cards */
.modern-card {
  background: var(--algo-light);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--algo-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--algo-shadow-lg);
}

/* Feature Highlights */
.feature-highlight {
  position: relative;
  padding: 3rem 0;
}

.feature-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--algo-gradient);
  border-radius: 2px;
}

/* Hero Slider Styles */
.hero-slider-section {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.05;
  transform: rotate(15deg);
  border-radius: 50%;
}

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  transition: var(--transition);
}

.carousel-indicators .active {
  background-color: var(--algo-orange);
  border-color: var(--algo-orange);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 107, 53, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Portfolio Filter Styles */
.portfolio-filters {
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--algo-border);
  color: var(--algo-medium-gray);
  padding: 12px 24px;
  margin: 0 8px 8px 0;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--algo-gradient);
  border-color: var(--algo-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
  position: relative;
}

.portfolio-item {
  transition: var(--transition);
}

.portfolio-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Enhanced Portfolio Cards */
.portfolio-card {
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--algo-border);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--algo-shadow-lg);
}

.portfolio-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-actions {
  display: flex;
  gap: 10px;
}

.portfolio-content {
  background: white;
}

/* Tech Tags */
.project-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tech-tag {
  background: var(--algo-light-gray);
  color: var(--algo-medium-gray);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Service Card Enhancements */
.service-icon {
  width: 90px;
  height: 90px;
  background: var(--algo-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }
  
  .carousel-control-prev {
    left: 15px;
  }
  
  .carousel-control-next {
    right: 15px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    margin: 0 4px 8px 0;
    font-size: 0.9rem;
  }
  
  .portfolio-filters {
    text-align: center;
  }
  
  .hero-slide {
    min-height: 80vh;
  }
  
  .tech-tag {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
}

/* Professional User Management Button Styles */
.user-management-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.user-management-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;
}

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

.user-management-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Enhanced Button Styles */
.btn-primary.create-user-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 10px;
}

.btn-primary.create-user-btn:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transform: translateY(-3px);
}

.user-details-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.user-details-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.user-edit-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.user-edit-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.user-delete-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.user-delete-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Enhanced Card Styles for User Management */
.user-management-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
}

.user-management-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.user-management-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0 !important;
    border: none;
    padding: 1.5rem;
}

/* Professional Table Styles */
.user-management-table tbody tr:hover {
    background-color: rgba(102, 126, 234, 0.08);
    transform: scale(1.005);
    transition: all 0.2s ease;
}

.user-management-table thead th {
    border-bottom: 2px solid #667eea;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

/* Button Group Enhancements */
.user-actions .btn {
    margin: 0 2px;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}

.user-actions .btn:first-child {
    margin-left: 0;
}

.user-actions .btn:last-child {
    margin-right: 0;
}