/*--------------------------------------------------------------
# DevOps Modern Design Styles
# Professional, Soft & Clean Design for DevOps & Development Focus
--------------------------------------------------------------*/

:root {
  /* Couleurs inspirées du logo GTIS-IT : Orange/Jaune doré + Violet/Bleu */
  --primary-gradient: linear-gradient(135deg, #ffc451 0%, #ff9a3d 50%, #667eea 100%);
  --secondary-gradient: linear-gradient(135deg, #ffb84d 0%, #f7941d 100%);
  --blue-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --success-gradient: linear-gradient(135deg, #ffc451 0%, #ffb84d 100%);
  
  --primary-color: #ffc451;
  --secondary-color: #667eea;
  --accent-color: #ff9a3d;
  --success-color: #52c41a;
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Header Modern
--------------------------------------------------------------*/
.header-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-modern.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo-modern {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.logo-modern a {
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.logo-text {
  font-weight: 800;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-accent {
  color: var(--accent-color);
  font-weight: 600;
}

.logo-modern:hover a {
  transform: translateY(-2px);
}

.nav-link-modern {
  display: flex;
  align-items: center;
  padding: 0.625rem 1rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.938rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link-modern:hover {
  background: rgba(255, 196, 81, 0.15);
  color: #ff9a3d;
  transform: translateY(-2px);
}

.nav-link-modern i {
  font-size: 1rem;
  opacity: 0.7;
}

.navbar-lang .lang-toggle {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 196, 81, 0.15);
  color: #ff9a3d;
  font-weight: 600;
  border-radius: 10px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 196, 81, 0.3);
}

.navbar-lang .lang-toggle:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
}

.navbar-lang .lang-option {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: var(--text-dark);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar-lang .lang-option:hover {
  background: rgba(255, 196, 81, 0.15);
  color: #ff9a3d;
}

.navbar-lang li.active .lang-option {
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 8px;
}

@media (max-width: 991px) {
  .header-modern {
    padding: 0.5rem 0;
  }
  
  .logo-modern {
    font-size: 1.25rem;
  }
  
  #navbar ul {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-link-modern {
    margin: 0.25rem 0;
  }
}

/*--------------------------------------------------------------
# Hero DevOps Section
--------------------------------------------------------------*/
.hero-devops-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffc451 0%, #ff9a3d 50%, #667eea 100%);
  overflow: hidden;
  padding: 0;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 196, 81, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 154, 61, 0.2) 0%, transparent 40%);
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  margin-right: 0.75rem;
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 20px rgba(255, 196, 81, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-modern {
  background: #fff;
  color: var(--primary-color);
  box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(255, 255, 255, 0.4);
  color: var(--primary-color);
}

.btn-secondary-modern {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/*--------------------------------------------------------------
# Code Window Visual
--------------------------------------------------------------*/
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.code-window {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(30, 41, 59, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.code-dot-red {
  background: #ff5f56;
}

.code-dot-yellow {
  background: #ffbd2e;
}

.code-dot-green {
  background: #27c93f;
}

.code-title {
  margin-left: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Courier New', monospace;
}

.code-body {
  padding: 1.5rem;
  overflow-x: auto;
}

.code-body pre {
  margin: 0;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.8;
}

.code-body code {
  color: #94a3b8;
}

.code-keyword {
  color: #c084fc;
  font-weight: 600;
}

.code-string {
  color: #4ade80;
}

.code-property {
  color: #60a5fa;
}

.code-bracket {
  color: #fbbf24;
}

/*--------------------------------------------------------------
# Floating Cards
--------------------------------------------------------------*/
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.floating-card-1 {
  top: -30px;
  right: -20px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 100px;
  left: -40px;
  animation-delay: 1s;
}

.floating-card-3 {
  bottom: 20px;
  right: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/*--------------------------------------------------------------
# Section Utilities
--------------------------------------------------------------*/
.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 196, 81, 0.15);
  color: #ff9a3d;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 196, 81, 0.3);
}

.section-title-modern {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle-modern {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Workflow Cards
--------------------------------------------------------------*/
.workflow-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.workflow-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.workflow-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(255, 196, 81, 0.4);
}

.workflow-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.workflow-icon i {
  font-size: 2rem;
  color: #fff;
}

.workflow-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.workflow-desc {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.workflow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.workflow-tags .tag {
  padding: 0.375rem 0.75rem;
  background: rgba(255, 196, 81, 0.15);
  color: #ff9a3d;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 196, 81, 0.2);
}

/*--------------------------------------------------------------
# Service Cards Modern
--------------------------------------------------------------*/
.service-card-modern {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 196, 81, 0.3);
  border-color: var(--primary-color);
}

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

.service-icon-modern {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

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

.service-icon-modern i {
  font-size: 2rem;
  color: #fff;
}

.service-title-modern {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-desc-modern {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: var(--text-dark);
  font-size: 0.938rem;
}

.service-features li i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 1.125rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: #ff9a3d;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.service-link i {
  margin-left: 0.5rem;
  transition: margin-left 0.3s ease;
}

.service-link:hover i {
  margin-left: 0.75rem;
}

/*--------------------------------------------------------------
# Technology Cards
--------------------------------------------------------------*/
.tech-category-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.tech-category-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.tech-category-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #ffc451;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-tag {
  padding: 0.625rem 1.125rem;
  background: linear-gradient(135deg, rgba(255, 196, 81, 0.1) 0%, rgba(255, 154, 61, 0.1) 100%);
  color: var(--text-dark);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
  border: 1px solid rgba(255, 196, 81, 0.2);
}

.tech-tag:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 196, 81, 0.4);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title-modern {
    font-size: 2rem;
  }
  
  .floating-card {
    position: static;
    margin-top: 1rem;
    animation: none;
  }
  
  .hero-visual {
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .section-title-modern {
    font-size: 1.75rem;
  }
  
  .btn-modern {
    width: 100%;
    justify-content: center;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .code-body {
    padding: 1rem;
  }
  
  .code-body pre {
    font-size: 0.75rem;
  }
}

/*--------------------------------------------------------------
# Animations & Effects
--------------------------------------------------------------*/
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient-animation 5s ease infinite;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--primary-color);
  color: #fff;
}

::-moz-selection {
  background: var(--primary-color);
  color: #fff;
}

/*--------------------------------------------------------------
# Modern Service Cards (Additional Services Section)
--------------------------------------------------------------*/
.modern-service-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.modern-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.modern-service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 196, 81, 0.3);
  border-color: transparent;
}

.modern-service-card:hover::after {
  opacity: 0.05;
}

.modern-service-card > * {
  position: relative;
  z-index: 1;
}

.modern-service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-service-card:hover .modern-service-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modern-service-icon i {
  font-size: 2rem;
  color: #fff;
}

.modern-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.modern-service-card:hover .modern-service-title {
  color: #ff9a3d;
}

.modern-service-subtitle {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.modern-service-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 196, 81, 0.15);
  color: #ff9a3d;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.938rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  border: 1px solid rgba(255, 196, 81, 0.3);
}

.modern-service-btn:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateX(5px);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255, 196, 81, 0.4);
}

.modern-service-btn i {
  transition: margin-left 0.3s ease;
}

.modern-service-btn:hover i {
  margin-left: 0.5rem;
}

/*--------------------------------------------------------------
# Contact Section Modern
--------------------------------------------------------------*/
.contact-modern {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.contact-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 196, 81, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.contact-info-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 196, 81, 0.3);
}

.contact-info-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.contact-info-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-info-content p {
  font-size: 0.938rem;
  color: var(--text-light);
  margin: 0;
}

.contact-form-modern {
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--border-color);
}

.modern-form {
  width: 100%;
}

.form-group-modern {
  margin-bottom: 0;
}

.form-label-modern {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 0.938rem;
}

.form-label-modern i {
  color: #ff9a3d;
}

.form-control-modern {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: var(--light-bg);
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 196, 81, 0.15);
}

.form-control-modern::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

textarea.form-control-modern {
  resize: vertical;
  min-height: 140px;
}

@media (max-width: 991px) {
  .contact-form-modern {
    padding: 2rem;
    margin-top: 2rem;
  }
  
  .contact-info-card:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 767px) {
  .contact-form-modern {
    padding: 1.5rem;
  }
  
  .form-control-modern {
    padding: 0.875rem 1rem;
    font-size: 0.938rem;
  }
}

/*--------------------------------------------------------------
# Partners Section Modern
--------------------------------------------------------------*/
.partners-modern {
  background: #fff;
  position: relative;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 120px;
}

.partner-card:hover {
  background: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.2);
  transform: translateY(-5px);
}

.partner-logo {
  max-height: 60px;
  max-width: 100%;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .partner-card {
    padding: 1.5rem;
    min-height: 100px;
  }
  
  .partner-logo {
    max-height: 50px;
  }
}



