/* =============== VARIABLES CSS =============== */
:root {
  /* Colors inspired by Mission Excellence logo */
  --primary-color: #2E86C1; /* Blue from logo */
  --primary-color-alt: #2471A3;
  --secondary-color: #27AE60; /* Green from logo */
  --accent-color: #E67E22; /* Orange from logo */
  --accent-red: #E74C3C; /* Red from logo */
  --accent-yellow: #F1C40F; /* Yellow from logo */
  
  /* Neutral colors */
  --title-color: #1B2631;
  --text-color: #566573;
  --text-color-light: #85929E;
  --body-color: #FAFBFC;
  --container-color: #FFFFFF;
  --border-color: #E5E8E8;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-red) 100%);
  
  /* Typography */
  --body-font: 'Inter', sans-serif;
  --biggest-font-size: 3rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.75rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;
  
  /* Font weight */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /* Margins */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  
  /* Transitions */
  --transition: 0.3s ease;
  
  /* Shadows */
  --shadow-light: 0 2px 8px rgba(46, 134, 193, 0.1);
  --shadow-medium: 0 4px 16px rgba(46, 134, 193, 0.15);
  --shadow-strong: 0 8px 32px rgba(46, 134, 193, 0.2);
}

/* Responsive typography */
@media screen and (max-width: 992px) {
  :root {
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

/* =============== BASE =============== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/* =============== REUSABLE CSS CLASSES =============== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.grid {
  display: grid;
}

.section {
  padding: 6rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: var(--mb-0-5);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  text-align: center;
  margin-bottom: var(--mb-3);
}

.section__header {
  margin-bottom: var(--mb-3);
}

/* =============== BUTTONS =============== */
.button {
  display: inline-flex;
  align-items: center;
  gap: var(--mb-0-5);
  background: var(--gradient-primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: var(--font-medium);
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.button--primary {
  background: var(--gradient-primary);
}

.button--ghost {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.button--ghost:hover {
  background: var(--primary-color);
  color: #fff;
}

/* =============== HEADER & NAVIGATION =============== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.nav {
  height: 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 2.5rem;
  width: auto;
}

.nav__list {
  display: flex;
  column-gap: 2rem;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -0.5rem;
  left: 0;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__toggle,
.nav__close {
  display: none;
}

/* Mega menu */
.nav__item--dropdown { position: relative; }
.nav__link--button { background: transparent; border: 0; font: inherit; color: var(--title-color); display: inline-flex; align-items: center; gap: .35rem; cursor: pointer; }
.megamenu { position: absolute; left: 0; top: 100%; width: 800px; max-width: 85vw; background: var(--container-color); border: 1px solid var(--border-color); box-shadow: var(--shadow-medium); border-radius: 0.75rem; padding: 1.5rem; display: none; }
.megamenu__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.megamenu__title { font-size: var(--h3-font-size); color: var(--primary-color); margin-bottom: .75rem; }
.megamenu a { color: var(--title-color); display: block; padding: .4rem 0; border-radius: .35rem; }
.megamenu a:hover { color: var(--primary-color); background: #f6fbff; }
.nav__item--dropdown:focus-within > .megamenu,
.nav__item--dropdown:hover > .megamenu { display: block; }

@media screen and (max-width: 768px) {
  .megamenu { position: static; width: 100%; max-width: 100%; box-shadow: none; border: none; padding: .5rem 0 0; }
  .megamenu__grid { grid-template-columns: 1fr; }
}

/* =============== HERO =============== */
.hero {
  padding-top: 8rem;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
}

.hero__container {
  gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.hero__data {
  padding-right: 2rem;
}

.hero__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-1);
  line-height: 1.1;
}

.hero__title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  margin-bottom: var(--mb-2-5);
  font-size: 1.125rem;
  color: var(--text-color);
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__img {
  display: flex;
  justify-content: center;
}

.hero__blob {
  width: 300px;
  fill: var(--primary-color);
}

.hero__blob-img {
  width: 170px;
}

/* Hero carousel & rotator */
.hero__carousel { position: relative; width: 100%; max-width: 520px; aspect-ratio: 4/3; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-medium); }
.hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
.hero__slide--active { opacity: 1; }
.hero__badges { margin-top: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.badge { background: #eef6ff; color: var(--primary-color); border: 1px solid #d9ebff; padding: .35rem .6rem; border-radius: 999px; font-size: .8rem; }
.hero__title-main { display: block; margin-bottom: .25rem; }
.hero-rotator__text { display: inline-block; min-width: 10ch; }


/* =============== ABOUT =============== */
.about__container {
  gap: 3rem;
}

.about__content {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.about__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--primary-color);
}

.about__description {
  margin-bottom: var(--mb-2);
  line-height: 1.7;
}

.about__mission {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: var(--mb-2);
  border-left: 4px solid var(--primary-color);
}

.about__mission-title {
  color: var(--primary-color);
  margin-bottom: var(--mb-0-75);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about__stat {
  text-align: center;
  padding: 1rem;
  background: var(--container-color);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-light);
}

.about__stat-number {
  display: block;
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: var(--mb-0-25);
}

.about__stat-text {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.about__img-main {
  border-radius: 1rem;
  box-shadow: var(--shadow-medium);
}

/* =============== SERVICES =============== */
.services {
  background: var(--container-color);
}

.services__content {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.services__card {
  background: var(--body-color);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.services__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.services__card--featured {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
  border: 2px solid var(--primary-color);
}

.services__card--featured::before {
  height: 6px;
  background: var(--gradient-accent);
}

.services__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1-5);
  font-size: 2rem;
  color: #fff;
}

.services__card--featured .services__icon {
  background: var(--gradient-accent);
}

.services__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--title-color);
}

.services__description {
  margin-bottom: var(--mb-1-5);
  line-height: 1.6;
}

.services__list {
  text-align: left;
}

.services__list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-color);
}

.services__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: var(--font-bold);
}

/* =============== WHY US =============== */
.why-us {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
}

.why-us__content {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.why-us__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
  color: var(--primary-color);
}

.why-us__description {
  margin-bottom: var(--mb-2);
  line-height: 1.7;
}

.why-us__features {
  display: grid;
  gap: 1.5rem;
}

.why-us__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-us__feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.why-us__feature-title {
  margin-bottom: var(--mb-0-25);
  color: var(--title-color);
}

.why-us__feature-text {
  color: var(--text-color);
  line-height: 1.5;
}

.why-us__img-main {
  border-radius: 1rem;
  box-shadow: var(--shadow-medium);
}

/* Partner section */
.partner { background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%); }
.partner__card { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: center; background: var(--container-color); padding: 2rem; border-radius: 1rem; box-shadow: var(--shadow-medium); border: 1px solid var(--border-color); }
.partner__logo img { width: 100%; height: auto; object-fit: contain; filter: saturate(1.1); }
.partner__title { color: var(--primary-color); margin-bottom: .5rem; }
.partner__text { margin-bottom: 1rem; }
.partner__badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.partner__badge { background: #eafff2; color: var(--secondary-color); border: 1px solid #c6f2d7; padding: .35rem .6rem; border-radius: 999px; font-size: .8rem; }
.partner__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

@media screen and (max-width: 768px) {
  .partner__card { grid-template-columns: 1fr; text-align: center; }
}

/* =============== CTA =============== */
.cta {
  background: var(--gradient-primary);
  color: #fff;
}

.cta__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
  color: #fff;
}

.cta__description {
  margin-bottom: var(--mb-2-5);
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .button--primary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta .button--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta .button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =============== FOOTER =============== */
.footer {
  background: var(--title-color);
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer__content {
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: var(--mb-2);
}

.footer__logo-img {
  height: 2rem;
  margin-bottom: var(--mb-1);
}

.footer__description {
  margin-bottom: var(--mb-1-5);
  opacity: 0.8;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__links-title {
  margin-bottom: var(--mb-1);
  color: #fff;
}

.footer__links-list {
  display: grid;
  gap: 0.5rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--primary-color);
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact i {
  color: var(--primary-color);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--mb-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  opacity: 0.8;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__legal-link:hover {
  color: var(--primary-color);
}

/* =============== LEGAL PAGES =============== */
.legal-content {
  padding-top: 8rem;
  background: var(--body-color);
}

.legal-header {
  text-align: center;
  margin-bottom: var(--mb-3);
  padding-bottom: var(--mb-2);
  border-bottom: 2px solid var(--border-color);
}

.legal-title {
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.legal-subtitle {
  color: var(--text-color-light);
  font-style: italic;
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-section {
  margin-bottom: var(--mb-3);
  padding: var(--mb-2);
  background: var(--container-color);
  border-radius: 1rem;
  box-shadow: var(--shadow-light);
}

.legal-section h2 {
  color: var(--primary-color);
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1-5);
  padding-bottom: var(--mb-0-5);
  border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
  color: var(--title-color);
  font-size: var(--h3-font-size);
  margin: var(--mb-1-5) 0 var(--mb-1);
}

.legal-section p {
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.legal-section ul {
  margin: var(--mb-1) 0;
  padding-left: var(--mb-2);
}

.legal-section li {
  margin-bottom: var(--mb-0-5);
  color: var(--text-color);
  list-style-type: disc;
}

.company-info,
.address-info,
.contact-info-legal,
.hosting-info {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
  padding: var(--mb-1-5);
  border-radius: 0.75rem;
  margin: var(--mb-1) 0;
}

.company-info p,
.address-info p,
.contact-info-legal p,
.hosting-info p {
  margin-bottom: var(--mb-0-5);
  font-weight: var(--font-medium);
}

.legal-link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: var(--transition);
}

.legal-link:hover {
  color: var(--primary-color-alt);
}

/* =============== SCROLL UP =============== */
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background: var(--gradient-primary);
  opacity: 0.8;
  padding: 0.3rem;
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: var(--transition);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.scrollup:hover {
  background: var(--primary-color-alt);
  opacity: 1;
  transform: translateY(-2px);
}

.show-scroll {
  bottom: 5rem;
}

/* =============== RESPONSIVE DESIGN =============== */

/* For large devices */
@media screen and (max-width: 992px) {
  .container {
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
  }
  
  .hero__container,
  .about__content,
  .why-us__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero__data {
    padding-right: 0;
    text-align: center;
  }
  
  .hero__img {
    order: -1;
  }
  
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .services__content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For medium devices */
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--container-color);
    padding: 2rem 1.5rem 4rem;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 1.5rem 1.5rem 0 0;
    transition: var(--transition);
  }
  
  .nav__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--small-font-size);
    color: var(--title-color);
    font-weight: var(--font-medium);
  }
  
  .nav__link:hover {
    color: var(--primary-color);
  }
  
  .nav__close {
    position: absolute;
    right: 1.3rem;
    bottom: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
  }
  
  .nav__close:hover {
    color: var(--primary-color-alt);
  }
  
  .nav__toggle {
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--title-color);
  }
  
  .nav__toggle:hover {
    color: var(--primary-color);
  }
  
  .show-menu {
    bottom: 0;
  }
  
  .section {
    padding: 4rem 0 2rem;
  }
  
  .hero {
    padding-top: 6rem;
  }
  
  .hero__buttons {
    justify-content: center;
  }
  
  .about__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .services__content {
    grid-template-columns: 1fr;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* For small devices */
@media screen and (max-width: 350px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  
  .hero__buttons {
    flex-direction: column;
  }
  
  .services__card {
    padding: 2rem 1rem;
  }
  
  .nav__list {
    column-gap: 0;
  }
}
.partners-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 2rem 0;
  background: #f9fcff;
}

.partners-track {
  display: flex !important;
  flex-wrap: nowrap !important; 
  align-items: center;
  gap: 3rem;
  will-change: transform;
}

.partner {
  flex: 0 0 auto;
}

.partner img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Styles pour la section Nos Partenaires */
.partners-section {
    background: var(--container-color);
    padding: 4rem 0;
}

.partners-section .section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.partners-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    will-change: transform;
}

.partners-track .partner {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partners-track .partner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.partners-track .partner img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-track .partner:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .partners-track .partner {
        width: 140px;
        height: 80px;
    }
    
    .partners-track {
        gap: 2rem;
    }
}