:root {
  --nw-accent: #1769e0;
  --nw-accent-rgb: 23, 105, 224;
  --nw-accent-dark: #0b438f;
  --nw-ink: #132238;
  --nw-muted: #64748b;
  --nw-surface: #ffffff;
  --nw-soft: #f3f7fc;
  --nw-border: #dce6f1;
  --nw-radius: 22px;
  --nw-shadow: 0 18px 55px rgba(18, 43, 70, .11);
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--nw-ink);
  background: #fff;
  font-family: "Nunito", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nw-menu-open { overflow: hidden; }
a { color: var(--nw-accent); transition: color .2s ease, background .2s ease, transform .2s ease; }
a:hover { color: var(--nw-accent-dark); text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1180px; }
.nw-inner-page #main { padding-top: 74px; }
.nw-inner-page #main > section:first-child { padding-top: 72px; }

/* En-tete */
#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 997;
  min-height: 82px;
  padding: 15px 28px;
  background: linear-gradient(90deg, rgba(8, 28, 51, .92), rgba(var(--nw-accent-rgb), .82));
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  transition: min-height .25s ease, padding .25s ease, box-shadow .25s ease;
}
#header.header-scrolled { min-height: 68px; padding-top: 9px; padding-bottom: 9px; box-shadow: 0 10px 32px rgba(8, 28, 51, .2); }
#header .container-fluid { display: flex; align-items: center; gap: 24px; }
#logo { float: none !important; min-width: 170px; margin-right: auto; }
#logo h1 { margin: 0; padding: 0; font-size: clamp(1.15rem, 2vw, 1.75rem); font-weight: 900; line-height: 1.1; letter-spacing: -.035em; }
#logo h1 a { display: block; color: #fff; border: 0; }
#nav-menu-container { float: none; margin: 0; }
.nav-menu, .nav-menu * { margin: 0; padding: 0; list-style: none; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; white-space: nowrap; }
.nav-menu > li > a { display: block; padding: 11px 12px; color: #fff; font-size: .82rem; font-weight: 800; letter-spacing: .015em; border-radius: 999px; }
.nav-menu > li:hover > a, .nav-menu > .menu-active > a, .nav-menu > .btn-get-started > a { background: rgba(255,255,255,.17); color: #fff; }
.nav-menu ul {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  display: none;
  min-width: 235px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--nw-border);
  border-radius: 16px;
  box-shadow: var(--nw-shadow);
  z-index: 1000;
}
@media (min-width: 992px) {
  .nav-menu li:hover > ul,
  .nav-menu li:focus-within > ul {
    display: block;
  }

  .nav-menu ul ul {
    top: -10px;
    left: calc(100% - 4px);
  }
}
.nav-menu ul li a { display: block; padding: 9px 12px; color: var(--nw-ink); font-size: .88rem; font-weight: 700; border-radius: 10px; white-space: normal; }
.nav-menu ul li a:hover { color: var(--nw-accent-dark); background: rgba(var(--nw-accent-rgb), .09); }
#header .social-links { display: flex; gap: 7px; margin-left: auto; }
#header .social-links a { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; background: rgba(255,255,255,.12); border-radius: 50%; }
.nw-menu-toggle { display: none; width: 44px; height: 44px; padding: 0; color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); border-radius: 13px; font-size: 1.35rem; }

/* Hero */
#intro { position: relative; width: 100%; min-height: clamp(570px, 78vh, 780px); background: #071b31; overflow: hidden; }
#intro .intro-container, #introCarousel, #intro .carousel-inner, #intro .carousel-item { position: absolute; inset: 0; }
#intro .carousel-background { position: absolute; inset: 0; }
#intro .carousel-background::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,22,41,.86) 0%, rgba(5,22,41,.56) 52%, rgba(5,22,41,.3) 100%); }
#intro .carousel-background img { width: 100%; height: 100%; object-fit: cover; }
#intro .carousel-container { position: absolute; inset: 0; display: flex; align-items: center; padding: 115px 7vw 60px; }
#intro .carousel-content { width: min(760px, 100%); color: #fff; text-align: left; }
#intro h2 { margin: 0 0 16px; color: #fff; font-size: clamp(2.3rem, 6vw, 5rem); font-weight: 900; line-height: 1.02; letter-spacing: -.05em; text-shadow: 0 3px 24px rgba(0,0,0,.22); }
#intro h3, #intro p { margin: 0 0 28px; color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 2.2vw, 1.4rem); line-height: 1.5; }
.btn-get-started, #intro .btn-get-started, #call-to-action input[type="submit"], .btn-primary, input[class^="btn-"] {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 24px;
  color: #fff !important; background: var(--nw-accent) !important; border: 0 !important; border-radius: 999px !important;
  font-weight: 900; box-shadow: 0 12px 28px rgba(var(--nw-accent-rgb), .28); cursor: pointer;
}
.btn-get-started:hover, #call-to-action input[type="submit"]:hover { background: var(--nw-accent-dark) !important; transform: translateY(-2px); }
#intro .carousel-control-prev, #intro .carousel-control-next { width: 7%; opacity: .7; }
#intro .carousel-indicators li { width: 9px; height: 9px; border: 0; border-radius: 50%; }

/* Sections */
main section { padding: 82px 0; }
main section:nth-of-type(even):not(#intro):not(#call-to-action) { background: var(--nw-soft); }
.section-bg { background: var(--nw-soft) !important; }
.section-header { max-width: 790px; margin: 0 auto 42px; text-align: center; }
.section-header h3, .section-title { position: relative; margin: 0 0 18px; color: var(--nw-ink); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.15; letter-spacing: -.035em; }
.section-header h3::after { content: ""; display: block; width: 58px; height: 5px; margin: 15px auto 0; background: var(--nw-accent); border-radius: 5px; }
.section-header p { color: var(--nw-muted); font-size: 1.05rem; }

#featured-services { position: relative; z-index: 4; margin-top: -42px; padding: 0 0 38px; background: transparent !important; }
#featured-services .row { overflow: hidden; background: #fff; border: 1px solid var(--nw-border); border-radius: var(--nw-radius); box-shadow: var(--nw-shadow); }
#featured-services .box { min-height: 155px; padding: 30px 26px; color: var(--nw-ink); background: #fff; border-right: 1px solid var(--nw-border); text-align: center; }
#featured-services .box:last-child { border-right: 0; }
#featured-services .box span { color: var(--nw-accent); }
#featured-services .title { margin-top: 12px; font-size: 1rem; font-weight: 900; }
#featured-services .title a { color: var(--nw-ink); }
#about .about-col, #services .box, #team .member, #speakers .member, .portfolio-item, .pricing-box {
  height: 100%; padding: 28px; background: #fff; border: 1px solid var(--nw-border); border-radius: var(--nw-radius); box-shadow: 0 10px 35px rgba(18,43,70,.07);
}
#services .row { row-gap: 22px; }
#services .box { margin: 0; }
#services .icon { float: none; display: grid; width: 54px; height: 54px; margin-bottom: 18px; place-items: center; color: #fff; background: var(--nw-accent); border-radius: 16px; font-size: 1.35rem; }
#services .title, #services .description { margin-left: 0; }
#services .title { font-size: 1.05rem; font-weight: 900; }
#services .title a { color: var(--nw-ink); }
#services .description { color: var(--nw-muted); line-height: 1.6; }

#call-to-action { padding: 64px 0; color: #fff; background: linear-gradient(135deg, var(--nw-accent-dark), var(--nw-accent)) !important; }
#call-to-action h3 { color: #fff; font-weight: 900; }
#call-to-action form { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
#call-to-action input[type="text"], #call-to-action input[type="email"] { min-width: min(360px, 100%); min-height: 48px; padding: 11px 18px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; }
#call-to-action input[type="submit"] { color: var(--nw-accent-dark) !important; background: #fff !important; box-shadow: none; }

#facts .counters > div { padding: 12px; }
#facts .counters span { display: block; color: var(--nw-accent); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
#facts .counters p { color: var(--nw-muted); font-weight: 800; }

#portfolio-flters { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; padding: 0; list-style: none; }
#portfolio-flters li { padding: 9px 15px; color: var(--nw-ink); background: #fff; border: 1px solid var(--nw-border); border-radius: 999px; font-weight: 800; cursor: pointer; }
#portfolio-flters li:hover, #portfolio-flters .filter-active { color: #fff; background: var(--nw-accent); border-color: var(--nw-accent); }
#program.jumbotron { padding: 24px !important; border: 1px solid var(--nw-border); border-radius: var(--nw-radius); box-shadow: var(--nw-shadow); }
.nav1-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; padding: 0; list-style: none; }
.nav1-tabs a { display: block; padding: 9px 15px; color: var(--nw-ink); background: var(--nw-soft); border-radius: 999px; font-weight: 800; }
.nav1-tabs a.active, .nav1-tabs a:hover { color: #fff; background: var(--nw-accent); }
.schedule-item { margin: 12px 0; padding: 20px 8px; background: #fff; border-bottom: 1px solid var(--nw-border); }
.schedule-item time { color: var(--nw-accent-dark); font-weight: 900; }
.schedule-item h4 { color: var(--nw-ink); font-weight: 900; }

#clients .owl-item, #clients .client-logo { padding: 15px; }
#clients img { max-height: 95px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: .2s ease; }
#clients img:hover { filter: none; opacity: 1; }
.testimonial-item { max-width: 780px; margin: auto; padding: 30px; background: #fff; border-radius: var(--nw-radius); box-shadow: var(--nw-shadow); }
.testimonial-item .testimonial-img { width: 92px; height: 92px; object-fit: cover; border: 5px solid rgba(var(--nw-accent-rgb),.14); border-radius: 50%; }
.quote-sign-left, .quote-sign-right { width: 22px !important; opacity: .25; }
#team .row, #speakers .row { row-gap: 24px; }
#team .member, #speakers .member { overflow: hidden; padding: 0; }
#team .member img, #speakers .member img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

#pricing .box, #pricing .pricing-box { padding: 30px; }
#pricing h3, #pricing h4 { color: var(--nw-ink); font-weight: 900; }
#pricing h4 sup, #pricing h4 span { color: var(--nw-muted); }
#pricing .featured { border: 2px solid var(--nw-accent); transform: translateY(-6px); }

#contact .form-control { min-height: 48px; border: 1px solid var(--nw-border); border-radius: 12px; }
#contact textarea.form-control { min-height: 145px; }
#map, .map { overflow: hidden; border-radius: var(--nw-radius); }
#footer { padding-top: 54px; color: rgba(255,255,255,.78); background: #081c33; }
#footer h3, #footer h4, #footer a { color: #fff; }
#footer .footer-top { background: transparent; }
.back-to-top { position: fixed; right: 18px; bottom: 18px; z-index: 996; display: none; width: 46px; height: 46px; color: #fff; background: var(--nw-accent); border-radius: 50%; text-align: center; line-height: 46px; box-shadow: 0 12px 25px rgba(var(--nw-accent-rgb),.3); }
.back-to-top.nw-visible { display: block; }
.cc-window { background: var(--nw-accent) !important; border-radius: 14px !important; box-shadow: var(--nw-shadow); }
.cc-window .cc-btn { color: var(--nw-accent-dark) !important; background: #fff !important; border-color: #fff !important; border-radius: 999px; }

@media (max-width: 991px) {
  #header { min-height: 70px; padding: 11px 16px; }
  #header .container-fluid { gap: 10px; }
  #logo { min-width: 0; max-width: calc(100% - 106px); }
  #logo h1 { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  #header .social-links { display: none; }
  .nw-menu-toggle { display: block; flex: 0 0 44px; }
  #nav-menu-container { position: fixed; inset: 70px 12px auto; display: none; max-height: calc(100vh - 84px); overflow-y: auto; padding: 10px; background: #fff; border-radius: 18px; box-shadow: 0 24px 70px rgba(8,28,51,.35); }
  #nav-menu-container.nw-open { display: block; }
  .nav-menu { display: block; }
  .nav-menu > li > a { padding: 12px 13px; color: var(--nw-ink); border-radius: 10px; }
  .nav-menu > li:hover > a, .nav-menu > .menu-active > a, .nav-menu > .btn-get-started > a { color: var(--nw-accent-dark); background: rgba(var(--nw-accent-rgb),.09); }
  .nav-menu ul { position: static; display: none; min-width: 0; margin: 2px 0 8px 14px; padding: 5px; background: var(--nw-soft); border: 0; box-shadow: none; }
  .nav-menu li:hover > ul { display: none; }
  .nav-menu li.nw-submenu-open > ul { display: block; }
  #intro .carousel-container { padding: 104px 24px 50px; }
  #intro .carousel-content { text-align: center; }
  #intro .carousel-background::after { background: rgba(5,22,41,.63); }
  #featured-services { margin-top: -25px; }
  #featured-services .box { border-right: 0; border-bottom: 1px solid var(--nw-border); }
  main section { padding: 64px 0; }
  .nw-inner-page #main { padding-top: 68px; }
}

@media (max-width: 600px) {
  #intro { min-height: 610px; }
  #intro h2 { font-size: 2.35rem; }
  #intro h3 { font-size: 1rem; }
  #intro .carousel-control-prev, #intro .carousel-control-next { display: none; }
  .section-header { margin-bottom: 28px; }
  main section { padding: 52px 0; }
  #program.jumbotron { padding: 14px !important; }
  .schedule-item .col-md-2 { margin-bottom: 6px; }
  #call-to-action input { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
