@charset "UTF-8";
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #lightgrey;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #fff;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0563bb;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #45505b;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0563bb;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0563bb;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

:root {
  --galactic-color-1: #2f3bb3;
  /* Bleu Roi */
  --galactic-color-2: #225ddf;
  /* Bleu Cobalt */
  --galactic-color-3: #145da1;
  /* Bleu Océan */
  --galactic-color-4: #6643f7;
  /* Violet Électrique */
  --galactic-color-5: #285eda;
  /* Bleu Saphir */
  --galactic-color-6: #026294;
  /* Bleu Pétrole */
  --galactic-color-7: #053768;
  /* Bleu Nuit */
}

/* GALACTIC BG */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes drift {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 50px));
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes nebula {
  0%, 100% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  50% {
    background-position: 100% 50%;
    filter: hue-rotate(45deg);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #053768 0%, #026294 20%, #2f3bb3 40%, #145da1 60%, #225ddf 80%, #285eda 100%);
  animation: fadeIn 1.5s ease-in-out;
}
main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 20% 30%, rgba(102, 67, 247, 0.4) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 70%, rgba(40, 93, 218, 0.3) 0%, transparent 50%), radial-gradient(ellipse 40% 30% at 50% 20%, rgba(34, 93, 223, 0.2) 0%, transparent 50%), radial-gradient(ellipse 70% 35% at 30% 80%, rgba(138, 43, 226, 0.25) 0%, transparent 50%);
  animation: nebula 12s ease-in-out infinite;
  z-index: 1;
}
main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(1.5px 1.5px at 25px 35px, rgba(255, 255, 255, 0.8), transparent), radial-gradient(2px 2px at 65px 45px, rgba(255, 255, 255, 0.6), transparent), radial-gradient(1px 1px at 105px 25px, rgba(102, 67, 247, 0.7), transparent), radial-gradient(1.5px 1.5px at 145px 65px, rgba(255, 255, 255, 0.5), transparent), radial-gradient(2px 2px at 185px 15px, rgba(40, 93, 218, 0.6), transparent), radial-gradient(1px 1px at 15px 75px, rgba(138, 43, 226, 0.8), transparent), radial-gradient(1.5px 1.5px at 175px 55px, rgba(255, 255, 255, 0.4), transparent), radial-gradient(1px 1px at 125px 85px, rgba(34, 93, 223, 0.7), transparent);
  background-repeat: repeat;
  background-size: 200px 80px;
  opacity: 0.7;
  z-index: 2;
}

main .star-1, main .star-2, main .star-3, main .star-4, main .star-5, main .star-6 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}
main .star-1 {
  top: 15%;
  left: 10%;
  width: 4px;
  height: 4px;
  background: white;
  box-shadow: 0 0 8px white, 0 0 16px white, 0 0 24px white;
  animation: twinkle 3s ease-in-out infinite;
}
main .star-2 {
  top: 25%;
  right: 20%;
  width: 3px;
  height: 3px;
  background: violet;
  box-shadow: 0 0 6px violet, 0 0 12px violet, 0 0 18px violet;
  animation: twinkle 4s ease-in-out infinite;
  animation-delay: 1s;
}
main .star-3 {
  top: 45%;
  left: 15%;
  width: 2px;
  height: 2px;
  background: #6643f7;
  box-shadow: 0 0 4px #6643f7, 0 0 8px #6643f7, 0 0 12px #6643f7;
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
main .star-4 {
  top: 60%;
  right: 30%;
  width: 3px;
  height: 3px;
  background: #285eda;
  box-shadow: 0 0 5px #285eda, 0 0 10px #285eda, 0 0 15px #285eda;
  animation: twinkle 3.5s ease-in-out infinite;
  animation-delay: 2s;
}
main .star-5 {
  bottom: 25%;
  left: 25%;
  width: 4px;
  height: 4px;
  background: white;
  box-shadow: 0 0 7px white, 0 0 14px white, 0 0 21px white;
  animation: pulse 4s ease-in-out infinite;
  animation-delay: 1.5s;
}
main .star-6 {
  bottom: 15%;
  right: 15%;
  width: 2px;
  height: 2px;
  background: #225ddf;
  box-shadow: 0 0 3px #225ddf, 0 0 6px #225ddf, 0 0 9px #225ddf;
  animation: twinkle 2.5s ease-in-out infinite;
  animation-delay: 0.8s;
}

main .particle-1, main .particle-2, main .particle-3, main .particle-4 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
}
main .particle-1 {
  top: 20%;
  left: -10px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  animation: drift 25s linear infinite;
}
main .particle-2 {
  top: 50%;
  left: -10px;
  width: 6px;
  height: 6px;
  background: rgba(102, 67, 247, 0.8);
  box-shadow: 0 0 3px #6643f7, 0 0 6px #6643f7, 0 0 9px #6643f7;
  animation: drift 30s linear infinite;
  animation-delay: 8s;
}
main .particle-3 {
  top: 75%;
  left: -10px;
  width: 4px;
  height: 4px;
  background: rgba(40, 93, 218, 0.9);
  animation: drift 20s linear infinite;
  animation-delay: 15s;
}
main .particle-4 {
  top: 35%;
  left: -10px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
  animation: drift 35s linear infinite;
  animation-delay: 5s;
}

main .light-beam-1, main .light-beam-2, main .light-beam-3 {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.3;
}
main .light-beam-1 {
  left: 25%;
  background: linear-gradient(to bottom, transparent 0%, rgba(102, 67, 247, 0.6) 50%, transparent 100%);
  animation: drift 40s linear infinite;
}
main .light-beam-2 {
  left: 65%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  animation: drift 35s linear infinite;
  animation-delay: 15s;
}
main .light-beam-3 {
  left: 85%;
  background: linear-gradient(to bottom, transparent 0%, rgba(34, 93, 223, 0.5) 50%, transparent 100%);
  animation: drift 45s linear infinite;
  animation-delay: 25s;
}

main .orbital-ring {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
  z-index: 6;
  pointer-events: none;
}
main .orbital-ring::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 4px white, 0 0 8px white, 0 0 12px white;
}

main .container, main .section-title, main .content, main section {
  position: relative;
  z-index: 10;
}
main h1, main h2, main h3, main h4, main h5, main h6 {
  color: white;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(102, 67, 247, 0.3);
  position: relative;
  z-index: 11;
}
main p, main .content {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 11;
}
main a {
  color: #b6a5fb;
  text-shadow: 0 0 10px rgba(102, 67, 247, 0.5);
  transition: all 0.3s ease;
}
main a:hover {
  color: white;
  text-shadow: 0 0 15px rgba(102, 67, 247, 0.8);
}
main img {
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(102, 67, 247, 0.2);
  transition: all 0.3s ease;
}
main img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(102, 67, 247, 0.4);
}
main .section-title {
  position: relative;
}
main .section-title::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, #6643f7 50%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
  border-radius: 2px;
  box-shadow: 0 0 3px #6643f7, 0 0 6px #6643f7, 0 0 9px #6643f7;
  z-index: 11;
}

@media (max-width: 768px) {
  main::after {
    background-size: 150px 60px;
  }
  main .orbital-ring {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 5%;
  }
  main .section-title::before {
    width: 60px;
  }
}
@media (max-width: 480px) {
  main::after {
    background-size: 120px 50px;
    opacity: 0.5;
  }
  main .orbital-ring {
    width: 100px;
    height: 100px;
  }
  main .star-1, main .star-2, main .star-3, main .star-4, main .star-5, main .star-6 {
    width: 2px;
    height: 2px;
  }
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  min-width: 200px;
}
@media (max-width: 1199px) {
  .header {
    background-color: var(--background-color);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    width: 300px;
    left: -100%;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .header ~ main {
    margin-left: 160px;
  }
  .header ~ main .hero {
    margin-left: -160px;
    width: 100vw;
  }
}
.header.header-show {
  left: 0;
}
.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}
.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* --- Couleurs personnalisées pour les liens du menu via :nth-child --- */
/* Variables pour les couleurs des liens (les mêmes que précédemment, c'est propre !) */
:root {
  --color-roi: #2f3bb3;
  /* Roi Accueil */
  --color-cobalt: #225ddf;
  /* Cobalt Cours */
  --color-ocean: #145da1;
  /* Ocean Production */
  --color-elecrique: #6643f7;
  /* Electrique  Stages*/
  --color-saphir: #285eda;
  /* Saphir Publics */
  --color-petrole: #026294;
  /* Petrole A Propos */
  --color-nuit: #053768;
  /* Nuit Contact */
  /* Couleurs de survol pour les liens (adaptées pour le mix) */
  --hover-roi: color-mix(in srgb, var(--color-roi), #FFF 30%);
  --hover-cobalt: color-mix(in srgb, var(--color-cobalt), #FFF 30%);
  --hover-ocean: color-mix(in srgb, var(--color-ocean), #FFF 30%);
  --hover-elecrique: color-mix(in srgb, var(--color-elecrique), #FFF 30%);
  --hover-saphir: color-mix(in srgb, var(--color-saphir), #FFF 30%);
  --hover-petrole: color-mix(in srgb, var(--color-petrole), #FFF 30%);
  --hover-nuit: color-mix(in srgb, var(--color-nuit), #FFF 30%);
  /* Couleur de contraste pour le texte sur les fonds colorés */
  --contrast-color: #FFFFFF;
  /* Généralement blanc pour contraster */
}

.navmenu {
  padding: 0;
  z-index: 9997;
  /* Styles généraux pour les liens, inchangés */
  /* Styles spécifiques pour chaque lien basé sur sa position */
  /* 1er lien : Home (Roi) */
  /* 2ème lien : Cours (Cobalt) */
  /* 3ème lien : Production (Ocean) */
  /* 4ème lien : Activités (Electrique) */
  /* 5ème lien : Public (Saphir) */
  /* 6ème lien : A Propos (Petrole) */
  /* 7ème lien : Contact (Nuit) */
  /* Règle générale pour le survol et l'état actif, juste au cas où */
}
.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
  width: 140px;
}
.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  /* Couleur par défaut du texte, sera surchargée */
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 8px;
  font-size: 15px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  /* Ton background par défaut */
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}
.navmenu a i,
.navmenu a:focus i {
  font-size: 20px;
}
.navmenu a span,
.navmenu a:focus span {
  padding: 0 5px 0 7px;
}
@media (min-width: 992px) {
  .navmenu a,
.navmenu a:focus {
    max-width: 56px;
  }
  .navmenu a span,
.navmenu a:focus span {
    display: none;
  }
}
.navmenu li:nth-child(1) a {
  background: var(--color-roi);
  color: var(--contrast-color);
}
.navmenu li:nth-child(1) a:hover,
.navmenu li:nth-child(1) .active,
.navmenu li:nth-child(1):hover > a {
  background: var(--hover-roi);
  color: var(--contrast-color);
}
.navmenu li:nth-child(2) a {
  background: var(--color-cobalt);
  color: var(--contrast-color);
}
.navmenu li:nth-child(2) a:hover,
.navmenu li:nth-child(2) .active,
.navmenu li:nth-child(2):hover > a {
  background: var(--hover-cobalt);
  color: var(--contrast-color);
}
.navmenu li:nth-child(3) a {
  background: var(--color-ocean);
  color: var(--contrast-color);
}
.navmenu li:nth-child(3) a:hover,
.navmenu li:nth-child(3) .active,
.navmenu li:nth-child(3):hover > a {
  background: var(--hover-ocean);
  color: var(--contrast-color);
}
.navmenu li:nth-child(4) a {
  background: var(--color-elecrique);
  color: var(--contrast-color);
}
.navmenu li:nth-child(4) a:hover,
.navmenu li:nth-child(4) .active,
.navmenu li:nth-child(4):hover > a {
  background: var(--hover-elecrique);
  color: var(--contrast-color);
}
.navmenu li:nth-child(5) a {
  background: var(--color-saphir);
  color: var(--contrast-color);
}
.navmenu li:nth-child(5) a:hover,
.navmenu li:nth-child(5) .active,
.navmenu li:nth-child(5):hover > a {
  background: var(--hover-saphir);
  color: var(--contrast-color);
}
.navmenu li:nth-child(6) a {
  background: var(--color-petrole);
  color: var(--contrast-color);
}
.navmenu li:nth-child(6) a:hover,
.navmenu li:nth-child(6) .active,
.navmenu li:nth-child(6):hover > a {
  background: var(--hover-petrole);
  color: var(--contrast-color);
}
.navmenu li:nth-child(7) a {
  background: var(--color-nuit);
  color: white;
  /* Spécifiquement blanc pour le texte sur fond noir */
}
.navmenu li:nth-child(7) a:hover,
.navmenu li:nth-child(7) .active,
.navmenu li:nth-child(7):hover > a {
  background: var(--hover-nuit);
  color: white;
  /* Spécifiquement blanc pour le texte sur fond noir */
}
.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover > a {
  /* Ces règles seront surchargées par les règles spécifiques ci-dessus */
  max-width: 100%;
}
.navmenu a:hover span,
.navmenu .active span,
.navmenu .active:focus span,
.navmenu li:hover > a span {
  display: block;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
  color: #053768;
}
.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}
.footer .social-links {
  margin: 0 0 30px 0;
}
.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}
.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}
.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.about .content ul strong {
  margin-right: 10px;
}
.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
  margin-top: 40px;
}
.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.contact .php-email-form {
  height: 100%;
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero video, .hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}
.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
}
.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}
.hero .social-links {
  margin-top: 25px;
}
.hero .social-links a {
  font-size: 20px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}
.hero .social-links a:hover {
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }
  .hero p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}
.portfolio .portfolio-filters li:hover, .portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}
.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}
.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}
.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .swiper-wrapper {
  height: auto;
}
.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}
.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 575px) {
  .portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    display: none;
  }
}
.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}
.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}
.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}
.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}
.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}
.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}
.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}
.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes buttonPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes shimmerBorder {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes dotAnimation {
  0%, 100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}
.pricing.section.cursus {
  padding: 60px 0;
  position: relative;
}
.pricing.section.cursus .section-title {
  text-align: center;
  margin-bottom: 50px;
}
.pricing.section.cursus .section-title h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
}
.pricing.section.cursus .section-title h2 .underlight {
  position: relative;
  color: white;
}
.pricing.section.cursus .section-title h2 .underlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, violet 0%, white 50%, violet 100%);
  border-radius: 2px;
  box-shadow: 0 0 8px violet, 0 0 16px violet, 0 0 24px violet;
}
.pricing.section.cursus .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .pricing.section.cursus {
    padding: 40px 0;
  }
  .pricing.section.cursus .section-title {
    margin-bottom: 35px;
  }
  .pricing.section.cursus .section-title p {
    padding: 0 15px;
  }
}

.btn-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  padding: 0 20px;
}
.btn-section .btn {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 25px;
  padding: 12px 25px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  min-width: 100px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
}
.btn-section .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: left 0.5s ease;
}
.btn-section .btn:hover {
  background: rgba(138, 43, 226, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}
.btn-section .btn:hover::before {
  left: 100%;
}
.btn-section .btn:active {
  transform: translateY(0);
  animation: buttonPulse 0.3s ease;
}
.btn-section .btn.active {
  background: rgba(138, 43, 226, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
  color: white;
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .btn-section .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 80px;
  }
}
@media (max-width: 480px) {
  .btn-section {
    flex-direction: column;
    align-items: center;
  }
  .btn-section .btn {
    width: 200px;
  }
}

#search-results {
  animation: fadeInUp 0.6s ease-out;
}
#search-results .pricing-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border-left: 4px solid rgba(138, 43, 226, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(138, 43, 226, 0.08);
}
#search-results .pricing-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0.8) 6px, transparent 6px, transparent 12px);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
  animation: dotAnimation 3s ease-in-out infinite;
}
#search-results .pricing-item:last-child::after {
  display: none;
}
#search-results .pricing-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: white;
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 8px 30px rgba(138, 43, 226, 0.3), 0 0 25px rgba(255, 255, 255, 0.15);
}
#search-results .pricing-item:hover::after {
  background-image: repeating-linear-gradient(to right, violet 0, violet 6px, rgba(138, 43, 226, 0.6) 6px, rgba(138, 43, 226, 0.6) 12px);
  box-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
  animation-duration: 1.5s;
}
#search-results .pricing-item h3 {
  margin: 0;
  flex: 1;
}
#search-results .pricing-item h3 a {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
  position: relative;
}
#search-results .pricing-item h3 a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, violet, white);
  transition: width 0.3s ease;
  border-radius: 1px;
  box-shadow: 0 0 3px violet, 0 0 6px violet, 0 0 9px violet;
}
#search-results .pricing-item h3 a:hover {
  color: white;
  text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
}
#search-results .pricing-item h3 a:hover::before {
  width: 100%;
}
#search-results .pricing-item h4 {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  background: rgba(138, 43, 226, 0.25);
  border-radius: 8px;
  border: 1px solid rgba(138, 43, 226, 0.4);
  min-width: fit-content;
  text-align: center;
}
#search-results .col-lg-6:nth-child(1) .pricing-item {
  animation-delay: 0s;
}
#search-results .col-lg-6:nth-child(2) .pricing-item {
  animation-delay: 0.1s;
}
#search-results .col-lg-6:nth-child(3) .pricing-item {
  animation-delay: 0.2s;
}
#search-results .col-lg-6:nth-child(4) .pricing-item {
  animation-delay: 0.3s;
}
#search-results .col-lg-6:nth-child(5) .pricing-item {
  animation-delay: 0.4s;
}
#search-results .col-lg-6:nth-child(6) .pricing-item {
  animation-delay: 0.5s;
}
#search-results .col-lg-6:nth-child(7) .pricing-item {
  animation-delay: 0.6s;
}
#search-results .col-lg-6:nth-child(8) .pricing-item {
  animation-delay: 0.7s;
}
#search-results p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  text-align: center;
  padding: 40px 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
  font-style: italic;
}
@media (max-width: 768px) {
  #search-results .pricing-item {
    padding: 16px 20px;
    margin-bottom: 12px;
  }
  #search-results .pricing-item h3 a {
    font-size: 1rem;
  }
  #search-results .pricing-item h4 {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
  #search-results .pricing-item::after {
    left: 20px;
    right: 20px;
  }
}
@media (max-width: 480px) {
  #search-results .pricing-item {
    padding: 14px 16px;
    border-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  #search-results .pricing-item h3 a {
    font-size: 0.95rem;
  }
  #search-results .pricing-item h4 {
    align-self: flex-end;
    font-size: 0.75rem;
  }
  #search-results .pricing-item::after {
    left: 16px;
    right: 16px;
  }
}

.card_cursus {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: fadeInUp 0.6s ease-out forwards;
  box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3), 0 0 25px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.card_cursus::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.8) 0%, rgba(255, 255, 255, 0.6) 25%, rgba(102, 67, 247, 0.9) 50%, rgba(255, 255, 255, 0.4) 75%, rgba(138, 43, 226, 0.8) 100%);
  background-size: 400% 400%;
  animation: shimmerBorder 3s ease-in-out infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  z-index: 1;
}
.card_cursus::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8), transparent), radial-gradient(1px 1px at 70% 70%, rgba(138, 43, 226, 0.6), transparent), radial-gradient(1px 1px at 80% 20%, rgba(255, 255, 255, 0.5), transparent);
  background-size: 80px 80px;
  border-radius: inherit;
  opacity: 0.6;
  z-index: 2;
}
.card_cursus:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 50px rgba(138, 43, 226, 0.4), 0 0 40px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.card_cursus:hover::before {
  animation-duration: 1.5s;
}
.card_cursus:hover::after {
  opacity: 1;
}
.card_cursus:hover h4 a {
  color: white;
  text-shadow: 0 0 25px rgba(138, 43, 226, 0.9);
}
.card_cursus > * {
  position: relative;
  z-index: 10;
}
.card_cursus h4 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
}
.card_cursus h4 a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.card_cursus h4 a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, violet, white);
  transition: width 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 4px violet, 0 0 8px violet, 0 0 12px violet;
}
.card_cursus h4 a:hover {
  color: white;
}
.card_cursus h4 a:hover::after {
  width: 100%;
}
.card_cursus hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(138, 43, 226, 0.8) 20%, rgba(255, 255, 255, 0.8) 50%, rgba(138, 43, 226, 0.8) 80%, transparent 100%);
  margin: 16px 0;
  position: relative;
  box-shadow: 0 0 5px violet, 0 0 10px violet, 0 0 15px violet;
}
.card_cursus hr::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 6px;
  background: white;
  border-radius: 3px;
  box-shadow: 0 0 8px white, 0 0 16px white, 0 0 24px white;
}
.card_cursus p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
}
.card_cursus p:last-child {
  margin-bottom: 0;
}
.card_cursus p a[hx-get*=cursus_by_day],
.card_cursus p a[hx-get*=cursus_by_prof] {
  background: linear-gradient(90deg, rgba(138, 43, 226, 0.2), rgba(255, 255, 255, 0.1), rgba(138, 43, 226, 0.2));
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(138, 43, 226, 0.4);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 2px violet, 0 0 4px violet, 0 0 6px violet;
}
.card_cursus p a[hx-get*=cursus_by_day]:hover,
.card_cursus p a[hx-get*=cursus_by_prof]:hover {
  background: linear-gradient(90deg, rgba(138, 43, 226, 0.4), rgba(255, 255, 255, 0.2), rgba(138, 43, 226, 0.4));
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 0 8px white, 0 0 16px white, 0 0 24px white;
}
.card_cursus:nth-child(2) {
  animation-delay: 0.1s;
}
.card_cursus:nth-child(3) {
  animation-delay: 0.2s;
}
.card_cursus:nth-child(4) {
  animation-delay: 0.3s;
}
.card_cursus:nth-child(5) {
  animation-delay: 0.4s;
}
.card_cursus:nth-child(6) {
  animation-delay: 0.5s;
}
@media (max-width: 768px) {
  .card_cursus {
    padding: 20px;
    margin-bottom: 20px;
  }
  .card_cursus h4 {
    font-size: 1.1rem;
  }
  .card_cursus p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .card_cursus {
    padding: 16px;
    border-radius: 12px;
  }
  .card_cursus h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .card_cursus p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  .card_cursus hr {
    margin: 12px 0;
  }
}

.htmx-indicator {
  display: none;
}
.htmx-indicator.htmx-request {
  display: inline-block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
.htmx-indicator.htmx-request::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid violet;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#message .alert {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 193, 7, 0.4);
  color: white;
  border-radius: 10px;
}
#message .alert .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.card_cursus:focus-within {
  outline: 2px solid rgba(102, 67, 247, 0.6);
  outline-offset: 2px;
}

.card_cursus.htmx-request {
  opacity: 0.8;
  transform: scale(0.98);
}
.card_cursus.htmx-request::before {
  animation-duration: 0.8s;
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}
.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}
.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}
.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}
.resume .resume-item ul {
  padding-left: 20px;
}
.resume .resume-item ul li {
  padding-bottom: 10px;
}
.resume .resume-item:last-child {
  padding-bottom: 0;
}
.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}
.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}
.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}
.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #000;
}
.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}
.services .service-item.item-cyan i {
  color: #0dcaf0;
}
.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}
.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}
.services .service-item.item-orange i {
  color: #fd7e14;
}
.services .service-item.item-orange:hover .icon i {
  color: #fff;
}
.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}
.services .service-item.item-teal i {
  color: #20c997;
}
.services .service-item.item-teal:hover .icon i {
  color: #fff;
}
.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}
.services .service-item.item-red i {
  color: #df1529;
}
.services .service-item.item-red:hover .icon i {
  color: #fff;
}
.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}
.services .service-item.item-indigo i {
  color: #6610f2;
}
.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}
.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}
.services .service-item.item-pink i {
  color: #f3268c;
}
.services .service-item.item-pink:hover .icon i {
  color: #fff;
}
.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
.service-details .service-box + .service-box {
  margin-top: 30px;
}
.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}
.service-details .services-list a:first-child {
  margin-top: 0;
}
.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}
.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}
.service-details .services-list a.active i {
  color: var(--contrast-color);
}
.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}
.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}
.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}
.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}
.service-details .download-catalog a:hover {
  color: var(--accent-color);
}
.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}
.service-details .help-box .help-icon {
  font-size: 48px;
}
.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}
.service-details .services-img {
  margin-bottom: 20px;
}
.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}
.service-details p {
  font-size: 15px;
}
.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.stats .stats-item {
  margin-top: 10px;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 0;
}
.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.stats .stats-item p {
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}
.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
  font-style: italic;
}
.testimonials .swiper-wrapper {
  height: auto;
}
.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Sections de l'ancien bootstrap
@import './../../scss/sections/_about.scss'
--------------------------------------------------------------*/
.galactic-background {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 500px;
  /* Ajuste la hauteur selon tes besoins */
  background-color: var(--galactic-color-7);
  /* Couleur de fond par défaut, la plus sombre */
  display: flex;
  /* Pour centrer le contenu si besoin */
  justify-content: center;
  align-items: center;
  color: white;
  /* Couleur du texte sur ce fond */
}

/* Pseudo-élément pour les nébuleuses (formes SVG animées) */
.galactic-background::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  /* Plus grand que 100% pour que les formes bougent sans coupure */
  height: 200%;
  background: radial-gradient(circle at 20% 30%, var(--galactic-color-1) 0%, transparent 30%), radial-gradient(circle at 70% 80%, var(--galactic-color-2) 0%, transparent 30%), radial-gradient(circle at 50% 10%, var(--galactic-color-3) 0%, transparent 30%), radial-gradient(circle at 10% 90%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 90% 40%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 30% 60%, var(--galactic-color-6) 0%, transparent 30%);
  filter: url(#galactic-nebula-filter);
  /* Applique le filtre SVG */
  animation: nebula-movement 40s infinite alternate ease-in-out, color-shift 30s infinite alternate ease-in-out;
  transform-origin: center center;
  z-index: 1;
  /* S'assure que les nébuleuses sont en dessous du contenu */
}

/* Pseudo-élément pour les étoiles */
.galactic-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: 10px 10px 0 0 rgba(255, 255, 255, 0.8), 50px 80px 0 0 rgba(255, 255, 255, 0.6), 120px 30px 0 0 rgba(255, 255, 255, 0.9), 180px 100px 0 0 rgba(255, 255, 255, 0.7), 250px 50px 0 0 rgba(255, 255, 255, 0.5), 300px 150px 0 0 rgba(255, 255, 255, 0.8), 350px 20px 0 0 rgba(255, 255, 255, 0.6), 400px 180px 0 0 rgba(255, 255, 255, 0.9), 450px 70px 0 0 rgba(255, 255, 255, 0.7), 500px 200px 0 0 rgba(255, 255, 255, 0.5), 600px 10px 0 0 rgba(255, 255, 255, 0.8), 650px 120px 0 0 rgba(255, 255, 255, 0.6), 700px 40px 0 0 rgba(255, 255, 255, 0.9), 750px 160px 0 0 rgba(255, 255, 255, 0.7), 800px 90px 0 0 rgba(255, 255, 255, 0.5), 850px 220px 0 0 rgba(255, 255, 255, 0.8), 900px 60px 0 0 rgba(255, 255, 255, 0.6), 950px 190px 0 0 rgba(255, 255, 255, 0.9), 1000px 110px 0 0 rgba(255, 255, 255, 0.7), 1050px 240px 0 0 rgba(255, 255, 255, 0.5), 1100px 30px 0 0 rgba(255, 255, 255, 0.8), 1150px 140px 0 0 rgba(255, 255, 255, 0.6), 1200px 70px 0 0 rgba(255, 255, 255, 0.9), 1250px 200px 0 0 rgba(255, 255, 255, 0.7), 1300px 100px 0 0 rgba(255, 255, 255, 0.5), 1350px 250px 0 0 rgba(255, 255, 255, 0.8), 1400px 80px 0 0 rgba(255, 255, 255, 0.6), 1450px 210px 0 0 rgba(255, 255, 255, 0.9), 1500px 130px 0 0 rgba(255, 255, 255, 0.7), 1550px 260px 0 0 rgba(255, 255, 255, 0.5);
  animation: star-twinkle 15s infinite alternate ease-in-out;
  z-index: 2;
  /* S'assure que les étoiles sont au-dessus des nébuleuses */
}

/* Animation de mouvement pour les nébuleuses */
@keyframes nebula-movement {
  0% {
    transform: scale(1) rotate(0deg) translate(0, 0);
  }
  25% {
    transform: scale(1.05) rotate(5deg) translate(5%, -5%);
  }
  50% {
    transform: scale(0.95) rotate(-5deg) translate(-5%, 5%);
  }
  75% {
    transform: scale(1.02) rotate(3deg) translate(3%, 3%);
  }
  100% {
    transform: scale(1) rotate(0deg) translate(0, 0);
  }
}
/* Animation de changement de couleur pour les nébuleuses */
@keyframes color-shift {
  0% {
    background: radial-gradient(circle at 20% 30%, var(--galactic-color-1) 0%, transparent 30%), radial-gradient(circle at 70% 80%, var(--galactic-color-2) 0%, transparent 30%), radial-gradient(circle at 50% 10%, var(--galactic-color-3) 0%, transparent 30%), radial-gradient(circle at 10% 90%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 90% 40%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 30% 60%, var(--galactic-color-6) 0%, transparent 30%);
  }
  20% {
    background: radial-gradient(circle at 25% 35%, var(--galactic-color-2) 0%, transparent 30%), radial-gradient(circle at 75% 85%, var(--galactic-color-3) 0%, transparent 30%), radial-gradient(circle at 55% 15%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 15% 95%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 95% 45%, var(--galactic-color-6) 0%, transparent 30%), radial-gradient(circle at 35% 65%, var(--galactic-color-7) 0%, transparent 30%);
  }
  40% {
    background: radial-gradient(circle at 30% 40%, var(--galactic-color-3) 0%, transparent 30%), radial-gradient(circle at 80% 90%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 60% 20%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 20% 100%, var(--galactic-color-6) 0%, transparent 30%), radial-gradient(circle at 100% 50%, var(--galactic-color-7) 0%, transparent 30%), radial-gradient(circle at 40% 70%, var(--galactic-color-1) 0%, transparent 30%);
  }
  60% {
    background: radial-gradient(circle at 35% 45%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 85% 95%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 65% 25%, var(--galactic-color-6) 0%, transparent 30%), radial-gradient(circle at 25% 105%, var(--galactic-color-7) 0%, transparent 30%), radial-gradient(circle at 105% 55%, var(--galactic-color-1) 0%, transparent 30%), radial-gradient(circle at 45% 75%, var(--galactic-color-2) 0%, transparent 30%);
  }
  80% {
    background: radial-gradient(circle at 40% 50%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 90% 100%, var(--galactic-color-6) 0%, transparent 30%), radial-gradient(circle at 70% 30%, var(--galactic-color-7) 0%, transparent 30%), radial-gradient(circle at 30% 110%, var(--galactic-color-1) 0%, transparent 30%), radial-gradient(circle at 110% 60%, var(--galactic-color-2) 0%, transparent 30%), radial-gradient(circle at 50% 80%, var(--galactic-color-3) 0%, transparent 30%);
  }
  100% {
    background: radial-gradient(circle at 20% 30%, var(--galactic-color-1) 0%, transparent 30%), radial-gradient(circle at 70% 80%, var(--galactic-color-2) 0%, transparent 30%), radial-gradient(circle at 50% 10%, var(--galactic-color-3) 0%, transparent 30%), radial-gradient(circle at 10% 90%, var(--galactic-color-4) 0%, transparent 30%), radial-gradient(circle at 90% 40%, var(--galactic-color-5) 0%, transparent 30%), radial-gradient(circle at 30% 60%, var(--galactic-color-6) 0%, transparent 30%);
  }
}
/* Animation pour le scintillement des étoiles */
@keyframes star-twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/*# sourceMappingURL=main.css.map */
