/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /**
   * colors
   */

  --selective-yellow: hsl(42, 94%, 55%);
  --eerie-black-1: hsl(180, 3%, 7%);
  --eerie-black-2: hsl(180, 3%, 7%);
  --quick-silver: hsl(0, 0%, 65%);
  --radical-red: hsl(351, 83%, 61%);
  --light-gray: hsl(0, 0%, 80%);
  --isabelline: hsl(36, 33%, 94%);
  --gray-x-11: hsl(0, 0%, 73%);
  --kappel_15: #000000;
  --platinum: hsl(0, 0%, 90%);
  --gray-web: hsl(0, 0%, 50%);
  --black_80: hsla(0, 0%, 0%, 0.8);
  --white_50: hsla(0, 0%, 100%, 0.5);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_30: hsla(0, 0%, 0%, 0.3);
  --kappel: #6134b7;
  --white: hsl(0, 0%, 100%);
  --cultured: hsl(0, 0%, 93%);
  --bg-white: hsla(0, 0%, 100%, 1);
  --primary-color: #6134b7;
  --primary-dark: #8010d0;
  --accent-color: #ff4081;

  --bg-black: rgb(2, 1, 56);

  /**
   * gradient color
   */

  --gradient: ‚linear-gradient(120deg, #6134b7);

  /**
   * typography
   */

  --ff-league_spartan: "League Spartan", sans-serif;
  --ff-poppins: "Poppins", sans-serif;

  --fs-1: 4.2rem;
  --fs-2: 3.2rem;
  --fs-3: 2.3rem;
  --fs-4: 1.8rem;
  --fs-5: 1.5rem;
  --fs-6: 1.4rem;
  --fs-7: 1.3rem;
  --fs-8: 2rem;
  --fs-9: 1.8rem;
  --fs-10: 1.5rem;
  --fs-11: 1.4rem;
  --fs-12: 1.3rem;

  --fw-500: 500;
  --fw-600: 600;

  /**
   * spacing
   */

  --section-padding: 75px;

  /**
   * shadow
   */

  --shadow-1: 0 6px 15px 0 hsla(0, 0%, 0%, 0.05);
  --shadow-2: 0 10px 30px hsla(0, 0%, 0%, 0.06);
  --shadow-3: 0 10px 50px 0 hsla(220, 53%, 22%, 0.1);
  --shadow-4: 3px 4px 30px hsla(0, 0%, 53%, 0.1);
  /**
   * radius
   */

  --radius-pill: 500px;
  --radius-circle: 50%;
  --radius-3: 3px;
  --radius-5: 5px;
  --radius-10: 10px;
  --radius-circle: 50%;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
span,
data,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--gray-web);
  font-size: 1.6rem;
  line-height: 1.75;
}

:focus-visible {
  outline-offset: 4px;
}

/* ::-webkit-scrollbar {
  width: 10px;
} */

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

/* ::-webkit-scrollbar-thumb {
  background-color: var(--kappel);
  width: 8px;
} */

::-webkit-scrollbar-thumb:hover {
  background-color: var(--kappel);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.section {
  padding-block: var(--section-padding);
}

.shape {
  position: absolute;
  display: none;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3 {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
  line-height: 1;
}

.h1,
.h2 {
  font-weight: var(--fw-600);
}

.h1 {
  font-size: var(--fs-1);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
}

.section-title {
  --color: var(--radical-red);
  text-align: center;
}

.section-title .span {
  display: inline-block;
  color: var(--kappel);
}
.section-title .span-gradient {
  background: linear-gradient(to left, var(--kappel), var(--kappel));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: max-content;
  padding: 10px 20px;
  border-radius: 50px;
  overflow: hidden;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}

.btn::before {
  inset: 0;
  background-image: var(--gradient);
  z-index: -1;
  border-radius: inherit;
  transform: translateX(-100%);
  transition: var(--transition-2);
}

.btn:is(:hover, :focus)::before {
  transform: translateX(0);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  background-color: rgb(0, 0, 0);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  letter-spacing: 1px;
  text-align: center;
  margin-block-end: 15px;
}

.section-text {
  font-size: var(--fs-5);
  text-align: center;
  margin-block: 15px 25px;
}

.grid-list {
  display: grid;
  gap: 30px;
}

.category-card,
.stats-card {
  background-color: hsla(var(--color), 0.1);
}
.lettersLM {
  color: var(--kappel) !important;
}
:is(.course, .blog) .section-title {
  margin-block-end: 40px;
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 10px;
  box-shadow: var(--shadow-1);
  z-index: 4;
}

/* .header.active {
  position: fixed;
} */

.header .container,
.header-actions,
.navbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-action .span {
  font-size: var(--fs-10);
  color: var(--primary-color);
}

.header-action-btn {
  display: none;
}

/* Show only on mobile devices */
@media screen and (max-width: 768px) {
  .header-action-btn {
    display: flex;
    bottom: 1px;
    z-index: 1;
  }
}

.header-action-btn {
  position: relative;
}

.nav-close-btn {
  position: relative;
  transition: all 0.3s ease;
  font-size: 20px;
  font-weight: 600;
  transition: var(--transition-1);
}

.header-action-btn .btn-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-6);
  min-width: 10px;
  height: 10px;
  border-radius: var(--radius-circle);
}

.header-action-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.9);
}

/* mobile-contact-gif */
.mobile-contact-gif {
  display: none; /* Hidden by default */
  position: fixed;
  border-radius: 8px;
  right: 18%;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  width: 33px;
  height: 31px;
}

/* Show only on mobile devices */
@media screen and (max-width: 768px) {
  .mobile-contact-gif {
    display: block;
    position: fixed;
    border-radius: 8px;
    right: 87%;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .mobile-contact-gif:hover {
    transform: scale(1.1);
  }

  .mobile-contact-gif img {
    width: 30px !important;
    height: 30px !important;
    object-fit: cover;
    display: block;
    max-width: 100% !important;
    max-height: 100% !important;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
  .mobile-contact-gif {
    width: 30px !important;
    height: 30px !important;
    transform: scale(1);
  }

  .mobile-contact-gif img {
    width: 30px !important;
    height: 30px !important;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
  }
}

/*
  * Navbar
  .navbar {
  position: fixed;
  top: 0;
  left: -320px;
  background-color: var(--white);
  width: 100%;
  max-width: 320px;
  height: 100%;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(320px);
  transition: 0.5s var(--cubic-out);
}
  */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--white);
  width: 0;
  height: 100%;
  z-index: 1000;
  overflow-x: hidden; /* Pour éviter tout débordement de contenu */
  transition: 0.5s var(--cubic-in);
}

.navbar.active {
  width: 100%; /* Prend toute la largeur lorsqu'active */
  transition: 0.5s var(--cubic-out);
}

.navbar .wrapper {
  padding: 15px 20px;
  border-block-end: 1px solid var(--platinum);
}

.navbar-list {
  padding: 15px 20px;
}

.navbar-item:not(:last-child) {
  border-block-end: 1px solid var(--platinum);
}

.navbar-link {
  padding-block: 8px;
  font-weight: var(--fw-500);
  transition: var(--transition-1);
  font-weight: bolder;
}

.navbar-link:is(:hover, :focus) {
  color: var(--kappel);
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_80);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: calc(var(--section-padding) + 80px);
}

.hero .container {
  display: grid;
  gap: 40px;
}

.hero-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-4);
  text-align: center;
  margin-block: 18px 20px;
}

.hero .btn {
  margin-inline: auto;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: flex-start;
  gap: 30px;
}

.hero-banner .img-holder.one {
  border-top-right-radius: 70px;
  border-bottom-left-radius: 110px;
}

.hero-banner .img-holder.two {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 90px;
}

/*-----------------------------------*\
  #CATEGORY
\*-----------------------------------*/

.category {
  padding-bottom: 0px !important;
  padding-top: 100px !important;
}

.category .section-title {
  --color: var(--kappel);
}

.category .section-text {
  margin-block-end: 40px;
}

.category-card {
  padding: 50px 30px;
  text-align: center;
  border-radius: var(--radius-5);
  display: flex;
  flex-direction: column;
}

.category-card .card-icon {
  background-color: hsla(var(--color), 0.1);
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  margin-inline: auto;
  margin-block-end: 30px;
}

.category-card .card-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-5);
  margin-block: 15px 25px;
}

.category-card .card-badge {
  background-color: hsla(var(--color), 0.1);
  color: hsl(var(--color));
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  padding: 2px 18px;
  max-width: max-content;
  margin-inline: auto;
  border-radius: var(--radius-5);
}

.UlChiffres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.UlChiffres li {
  flex: 1 0 51%;
}

@media (max-width: 1000px) {
  .UlsavoirFaire li {
    flex: 1 0 100%;
  }
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  padding-block-start: 0;
  overflow: hidden;
  margin-top: 150px;
  padding-bottom: 20px;
}

.about .container {
  display: grid;
  gap: 30px;
}

.about-banner {
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}

.about-banner .img-holder {
  border-radius: var(--radius-10);
}

.about-shape-2 {
  display: block;
  bottom: -100px;
  left: -60px;
  animation: bounce 2.5s infinite;
}

.img-cover-edit {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.about-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.about-details {
  flex: 1; /* Distribute available space equally among items */

  margin: 10px;
  color: var(--bg-white); /* Set text color */
  cursor: pointer;
}

.about-details .role {
  text-transform: uppercase;
  font-size: 1.2rem;
}
.about-details .nom {
  font-size: 1.2rem;
}

.about-details .num {
  padding-top: 10px;
}

.about-details .num,
.mail {
  font-size: 1.1rem;
  color: var(--bg-white);
  font-style: italic;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.about :is(.section-subtitle, .section-title, .section-text) {
  text-align: left;
}

.about-item {
  margin-block: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-item ion-icon {
  color: var(--kappel);
  font-size: 20px;
  --ionicon-stroke-width: 50px;
}

.about-item .span {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
}

/*-----------------------------------*\
  #PORTFOLIO ET AVIS
\*-----------------------------------*/

.ulPortfolio {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  white-space: nowrap; /* Empêche le retour à la ligne des éléments */
}

.ulPortfolio li {
  width: 500px;
}

.course .course-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-5);
  overflow: hidden;
}

.course-card .img-cover {
  transition: var(--transition-2);
}

.course-card:is(:hover, :focus-within) .img-cover {
  transform: scale(1.1);
}

.course-card :is(.abs-badge, .badge) {
  font-family: var(--ff-league_spartan);
  border-radius: var(--radius-3);
}

.course-card .abs-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--selective-yellow);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  padding: 6px 8px;
  padding-block-end: 3px;
}

.course-card .abs-badge ion-icon {
  font-size: 18px;
  margin-block-end: 5px;
  --ionicon-stroke-width: 50px;
}

.course-card .card-content {
  padding: 25px;
  word-wrap: break-word; /* Ajout pour permettre le passage à la ligne */
}

.course-card .badge {
  background-color: var(--kappel_15);
  max-width: max-content;
  color: var(--kappel);
  line-height: 25px;
  padding-inline: 10px;
}

.course-card .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-block: 15px 8px;
  transition: var(--transition-1);
  word-wrap: break-word; /* Ajout pour forcer le passage à la ligne */
}

.course-card .card-title:is(:hover, :focus) {
  color: var(--kappel);
}

.course-card :is(.wrapper, .rating-wrapper, .card-meta-list, .card-meta-item) {
  display: flex;
  align-items: center;
}

.course-card .wrapper {
  gap: 10px;
}

.course-card .rating-wrapper {
  gap: 3px;
}

.course-card .rating-wrapper ion-icon {
  color: var(--selective-yellow);
}

.course-card .rating-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
}

.course-card .price1 {
  color: var(--radical-red);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-block: 8px 15px;
}

.course-card .card-meta-list {
  flex-wrap: wrap;
}

.course-card .card-meta-item {
  position: relative;
  gap: 5px;
}

.course-card .card-meta-item:not(:last-child)::after {
  content: "|";
  display: inline-block;
  color: var(--platinum);
  padding-inline: 10px;
}

.course-card .card-meta-item ion-icon {
  color: var(--quick-silver);
  --ionicon-stroke-width: 50px;
}

.course-card .card-meta-item .span {
  color: var(--eerie-black-1);
  font-size: var(--fs-7);
}

.course .btn {
  margin-inline: auto;
  margin-block-start: 60px;
}

/*-----------------------------------*\
  #VIDEO
\*-----------------------------------*/

.video {
  background-size: contain;
  background-position: center top;
}

.video-banner {
  position: relative;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 120px;
}

.video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--radical-red);
  font-size: 30px;
  padding: 16px;
  color: var(--white);
  border-radius: var(--radius-circle);
  box-shadow: 0 0 0 0 var(--white_50);
  z-index: 1;
  animation: pulse 3s ease infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--white_50);
  }
  100% {
    box-shadow: 0 0 0 20px transparent;
  }
}

.video-banner::after {
  inset: 0;
  background-color: var(--black_30);
}

/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats-card {
  text-align: center;
  padding: 25px;
  border-radius: var(--radius-10);
}

.stats-card :is(.card-title, .card-text) {
  font-family: var(--ff-league_spartan);
  word-wrap: break-word; /* Permettre au texte de passer à la ligne */
}

.stats-card .card-title {
  color: hsl(var(--color));
  font-size: var(--fs-2);
  line-height: 1.1;
}

.stats-card .card-text {
  color: var(--eerie-black-1);
  text-transform: uppercase;
  word-wrap: break-word; /* Permettre au texte de passer à la ligne */
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-card .card-banner {
  border-radius: var(--radius-10);
}

.blog-card .card-banner .img-cover {
  transition: var(--transition-2);
}

.blog-card .card-banner::after {
  inset: 0;
  background-color: var(--black_50);
  opacity: 0;
  transition: var(--transition-1);
}

.blog-card:is(:hover, :focus-within) .card-banner .img-cover {
  transform: scale(1.1);
}

.blog-card:is(:hover, :focus-within) .card-banner::after {
  opacity: 1;
}

.blog-card .card-content {
  position: relative;
  margin-inline: 15px;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-10);
  box-shadow: rgb(206 206 206) 0px 0px 10px 5px;
  margin-block-start: -100px;
  z-index: 1;
}

.blog-card .card-btn {
  position: absolute;
  top: -40px;
  right: 30px;
  background-color: var(--kappel);
  color: var(--white);
  font-size: 20px;
  padding: 20px;
  border-radius: 50px;
  transition: var(--transition-1);
  opacity: 0;
}

.blog-card .card-btn:is(:hover, :focus) {
  background-color: var(--radical-red);
}

.blog-card:is(:hover, :focus-within) .card-btn {
  opacity: 1;
  transform: translateY(10px);
}

.blog-card :is(.card-meta-item, .card-text, .card-subtitle) {
  font-size: var(--fs-5);
  padding: 5px;
}

.blog-card .card-subtitle {
  text-transform: uppercase;
}

.blog-card .card-title {
  margin-block: 10px 15px;
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) {
  color: var(--kappel);
}

.blog-card :is(.card-meta-list, .card-meta-item) {
  display: flex;
}

.blog-card .card-meta-list {
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-block-end: 20px;
}

.blog-card .card-meta-item {
  gap: 10px;
  align-items: center;
  color: var(--eerie-black-1);
}

.blog-card .card-meta-item ion-icon {
  color: var(--kappel);
  font-size: 18px;
  --ionicon-stroke-width: 40px;
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 27px;
  background-color: var(--kappel);
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  color: var(--white);
  font-size: 12px;

  padding: 12px;
  border-radius: var(--radius-circle);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.back-top-btn.active {
  transform: translateY(10px);
  opacity: 1;
  pointer-events: all;
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  :is(.course, .blog) .grid-list {
    grid-template-columns: 1fr;
  }

  /**
   * HEADER
   */

  .header .container {
    max-width: unset;
  }

  .header-actions {
    gap: 30px;
  }

  /**
   * HERO
   */

  .hero-banner {
    grid-template-columns: 1fr 0.9fr;
  }

  /**
   * VIDEO
   */

  .video .play-btn {
    padding: 25px;
  }

  /**
   * STATS
   */

  .stats-card {
    padding: 40px 30px;
  }
}

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 4.6rem;
    --fs-2: 3.8rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  .btn {
    padding: 15px 30px;
  }

  :is(.course, .blog) .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  /**
   * HEADER
   */

  .header .container {
    padding-inline: 30px;
  }

  .header .btn {
    display: flex;
    padding: 10px 30px;
    margin-inline: 20px;
  }

  /**
   * HERO
   */

  .hero {
    padding-block-start: calc(var(--section-padding) + 90px);
  }

  .hero .container {
    gap: 50px;
  }

  .hero-text {
    margin-block-end: 30px;
  }

  .hero-banner {
    position: relative;
    z-index: 1;
  }

  .hero-banner .img-holder {
    max-width: max-content;
  }

  .hero-banner .img-holder.one {
    justify-self: flex-end;
  }

  .hero-banner .img-holder.two {
    margin-block-start: 100px;
  }

  .hero-shape-1 {
    display: block;
    position: absolute;
    bottom: -40px;
    left: -10px;
  }

  /**
   * ABOUT
   */

  .about {
    padding-block-start: 50px;
  }

  .about-banner {
    padding: 60px;
    padding-inline-end: 0;
  }

  .about-banner .img-holder {
    max-width: max-content;
    margin-inline: auto;
  }

  .about-shape-1 {
    display: block;
    top: -40px;
    right: -70px;
  }
}

/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 5.5rem;
    --fs-2: 4.5rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }

  .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  :is(.course, .blog) .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero .section-title,
  .hero-text {
    text-align: left;
  }

  .hero .btn {
    margin-inline: 0;
  }

  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.6fr;
    align-items: center;
    gap: 60px;
  }

  /**
   * VIDEO
   */

  .video-banner {
    max-width: 75%;
    margin-inline: auto;
  }
}

/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 6.5rem;

    /**
     * spacing
     */

    --section-padding: 120px;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1185px;
  }

  .shape {
    display: block;
  }

  .about-content,
  .video-card,
  .blog {
    position: relative;
  }

  /**
   * HEADER
   */

  .header-action-btn:last-child,
  .navbar .wrapper,
  .overlay {
    display: none;
  }

  .header.active {
    transform: translateY(-100%);
    animation: slideIn 0.5s ease forwards;
  }

  @keyframes slideIn {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0);
    }
  }

  .navbar,
  .navbar.active {
    all: unset;
  }

  .navbar-list {
    display: flex;
    gap: 50px;
    padding: 0;
  }

  .navbar-item:not(:last-child) {
    border-block-end: none;
  }

  .navbar-link {
    color: var(--eerie-black-1);
    padding-block: 20px;
  }

  .header .btn {
    margin-inline-end: 0;
  }

  /**
   * HERO
   */

  .hero {
    padding-block-start: calc(var(--section-padding) + 120px);
  }

  .hero .container {
    gap: 80px;
  }

  .hero-shape-2 {
    top: -80px;
    z-index: -1;
  }

  /**
   * ABOUT
   */

  .about .container {
    gap: 110px;
  }

  .about-banner .img-holder {
    margin-inline: 0;
  }

  .about-shape-3 {
    top: -20px;
    left: -100px;
    z-index: -1;
  }

  .about-content {
    z-index: 1;
  }
  .about-content .section-subtitle {
    padding-top: 100px !important;
  }
  .about-shape-4 {
    top: 30px;
    right: -60px;
    z-index: -1;
  }

  /**
   * VIDEO
   */

  .video-shape-1 {
    top: -50px;
    left: 0;
  }

  .video-shape-2 {
    top: -80px;
    right: 120px;
    z-index: 1;
  }

  /**
   * BLOG
   */

  .blog-shape {
    top: 0;
    left: 0;
  }
}

/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.processusContainer .ulProcessus {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  box-shadow: inset 55vw 0 0 0 var(--bg-black),
    inset -55vw 0 0 0 var(--bg-black);
  display: grid;
  place-items: center;
  z-index: 10;
}

.preloader.loaded {
  transition: 300ms ease 500ms;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 var(--bg-white), inset 0 0 0 0 var(--bg-white);
}

.preloader .line {
  width: 1px;
  height: 100%;
  background-color: var(--bg-white);
  transition: var(--transition-2);
  animation: loading 1000ms linear forwards;
}

@keyframes loading {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(0.3);
  }
}

.preloader.loaded .line {
  animation: loaded 500ms ease forwards;
}

@keyframes loaded {
  0% {
    transform: scaleY(0.3);
  }

  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

/*-----------------------------------*\
  #SAVOIR FAIRE
\*-----------------------------------*/

.service .section-text {
  margin-block: 15px 50px;
}

.service .grid-list {
  margin-block-end: 50px;
}

.service-card {
  height: 100%;
  padding: 30px 25px;
  text-align: center;
  box-shadow: var(--shadow-1);
}

.service-card::after {
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--kappel);
  transition: var(--transition-2);
}

.service-card:is(:hover, :focus-within)::after {
  width: 100%;
}

.service-card .card-icon {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 10px;
}

.service-card .img {
  transition: var(--transition-1);
}

.service-card:is(:hover, :focus-within) .img {
  transform: scale(1.1);
}

.service-card .card-text {
  margin-block: 5px 13px;
}

.service .btn {
  margin-inline: auto;
}

.UlsavoirFaire {
  display: flex;
  flex-wrap: wrap;
}

.UlsavoirFaire li {
  flex: 1 0 45%;
}

@media (max-width: 1200px) {
  .UlsavoirFaire li {
    flex: 1 0 100%;
  }
}

/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/

.features .section-text {
  margin-block: 15px 50px;
}

.features-card {
  position: relative;
  background-color: var(--white);
  padding: 25px;
  padding-block-start: 40px;
  margin-block-start: 24px;
  box-shadow: var(--shadow-4);
  transition: var(--transition-2);
  box-shadow: rgb(206 206 206) 0px 0px 10px 5px;
  border-radius: var(--radius-5);
}

.features-card:hover {
  background-color: var(--kappel);
}

.features-card .card-number {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  background-color: var(--cultured);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  padding-block: 5px;
  min-width: 50px;
  text-align: center;
  border-radius: var(--radius-5);
  transition: var(--transition-1);
}

.features-card:hover .card-number {
  color: var(--kappel);
}

.features-card .card-title {
  font-size: var(--fs-3);
  margin-block-end: 5px;
}

.features-card :is(.card-title, .card-text) {
  transition: var(--transition-1);
}

.features-card:hover :is(.card-title, .card-text) {
  color: var(--white);
}

/*-----------------------------------*\
  #FAQ
\*-----------------------------------*/

.faq .container {
  gap: 20px;
}

.faq .title-wrapper {
  background-color: var(--white);
  padding: 30px 25px;
  box-shadow: var(--shadow-1);
}

.faq-card {
  background-color: var(--);
  border-radius: var(--radius-5);
  overflow: hidden;
}

.faq-card .card-action {
  --action-bg: var(--bg-black);
  --color: var(--white);

  background-color: var(--action-bg);
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  gap: 20px;
  transition: var(--transition-1);
}

.faq-card .card-action:is(:hover, :focus, .active) {
  --action-bg: var(--kappel);
  --color: var(--bg-white);
}

.faq-card .card-title {
  color: var(--color);
  font-size: var(--fs-8);
  transition: var(--transition-1);
}

.faq-card ion-icon {
  color: var(--color);
  font-size: 15px;
  transition: var(--transition-1);
  --ionicon-stroke-width: 60px;
}

.faq-card .card-action.active .open,
.faq-card .card-action .close {
  display: none;
}

.faq-card .card-action .open,
.faq-card .card-action.active .close {
  display: block;
}

.faq-card .card-content {
  font-size: var(--fs-10);
  padding-inline: 25px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-2);
  border-style: solid;
  border-color: var(--kappel); /* Couleur de la bordure */
  border-width: 0 1px 1px 1px; /* Largeur de la bordure (haut, droite, bas, gauche) */
  border-radius: 0 0 var(--radius-5) var(--radius-5); /* Arrondi uniquement des coins inférieurs */
}

.faq-card .card-content p {
  margin-block: 15px;
  color: var(--quick-silver);
}

.faq-card .card-action.active + .card-content {
  max-height: 500px;
}

.faqUl {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

.faqUl li {
  flex: 1 0 45%;
}

@media (max-width: 1200px) {
  .faqUl li {
    flex: 1 0 100%;
  }
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  background-color: var(--bg-black);
  color: var(--white);
}

.footer-top .section-title {
  color: var(--white);
}

.footer-bg {
  position: relative;
  width: 100%;
  height: auto;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* la moitié supérieure de l'image */
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1)
  ); /* dégradé du noir transparent en haut vers noir opaque en bas */
}

.social-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; /* Aligner horizontalement au centre */
  list-style: none;
  padding-top: 50px;
  gap: 30px;
  margin: auto; /* Centrer horizontalement */
}

.social-link {
  display: flex;
  align-items: center; /* Aligner verticalement au centre */
  margin: 0 10px; /* Marge entre les icônes */
  animation: bounce 2.5s infinite;
}

.social-link ion-icon {
  margin-right: 10px; /* Marge à droite des icônes pour l'espace */
  font-size: var(--fs-1); /* Taille des icônes */
  color: var(--kappel);
}

/*-----------------------------------*\
  #CUSTOM CURSOR
\*-----------------------------------*/

/**
   * CUSTOM CURSOR
   */

.cursor {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 75px;
  height: 75px;
  background-color: var(--white);
  mix-blend-mode: exclusion;
  border-radius: var(--radius-circle);
  transform: translate(-50%, -50%) scale(0.35);
  transition: transform 0.35s;
  pointer-events: none;
  z-index: 6;
}

.cursor.hovered {
  transform: translate(-50%, -50%) scale(1.2);
}

.cursor.disabled {
  transform: translate(-50%, -50%) scale(0);
}

@media (max-width: 1200px) {
  .cursor {
    display: none;
  }
}

/*-----------------------------------*\
  #TOGGLE TARIFS
\*-----------------------------------*/

.UlPrice {
  padding-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  align-items: start;
  justify-content: center;
  gap: 25px;
}

.UlPrice li {
  flex: 1 0 33%;
}

.container-toggle {
  display: none;
}

@media (max-width: 1000px) {
  .UlPrice li {
    width: 40%;
  }

  .container-toggle {
    display: flex;
    flex-direction: column;
    margin: 30px auto 0;
    color: white;
    padding: 10px;
    justify-items: center;
    align-items: center;
  }

  .switch {
    position: relative;
    height: 32px;
    width: 300px;
    margin: 20px auto;
    background: #f2f2f2;
    background: #d7d7d7;
    border-radius: 32px;
  }
  .switch-label {
    font-weight: bold;

    position: relative;
    z-index: 2;
    float: left;
    width: 100px;
    line-height: 32px;
    font-size: 12px;
    color: #7d8285;
    text-align: center;
    cursor: pointer;
  }

  /* Specific colors for each plan type when checked */

  .switch-label-y {
    color: #cd7f32; /* Bronze color */
    font-size: medium;
    font-weight: bold;
  }

  .switch-label-i {
    color: #c0c0c0; /* Silver color */
    font-size: medium;
    font-weight: bold;
  }

  .switch-label-n {
    color: #ffd700; /* Gold color */
    font-size: medium;
    font-weight: bold;
  }

  .switch-label-j {
    color: #cd7f32; /* Bronze color */
    font-size: medium;
    font-weight: bold;
  }

  .switch-label-k {
    color: #c0c0c0; /* Silver color */
    font-size: medium;
    font-weight: bold;
  }

  .switch-label-m {
    color: #ffd700; /* Gold color */
    font-size: medium;
    font-weight: bold;
  }

  .switch-label-d {
    color: #cd7f32; /* Bronze color */
    font-size: medium;
    font-weight: bold;
  }

  .switch-label-c {
    color: #c0c0c0; /* Silver color */
    font-size: medium;
    font-weight: bold;
  }

  .switch-label-e {
    color: #ffd700; /* Gold color */
    font-size: medium;
    font-weight: bold;
  }
  /* Hover effect for better interactivity */
  .switch-label:hover {
    opacity: 0.8;
  }

  .switch-input {
    display: none;
  }

  .switch-input:checked + .switch-label {
    transition: 0.15s ease-out;
    transition-property: color, var(--shadow-1);
  }

  .switch-input:checked + .switch-label-y ~ .switch-selector {
    transform: translateX(0%);
    background-color: var(--kappel);
  }
  .switch-input:checked + .switch-label-i ~ .switch-selector {
    transform: translateX(100%);
    background-color: var(--kappel);
  }
  .switch-input:checked + .switch-label-n ~ .switch-selector {
    transform: translateX(200%);
    background-color: var(--kappel);
  }

  .switch-input:checked + .switch-label-d ~ .switch-selector {
    transform: translateX(0%);
    background-color: var(--kappel);
  }
  .switch-input:checked + .switch-label-c ~ .switch-selector {
    transform: translateX(100%);
    background-color: var(--kappel);
  }
  .switch-input:checked + .switch-label-e ~ .switch-selector {
    transform: translateX(200%);
    background-color: var(--kappel);
  }

  .switch-input:checked + .switch-label-j ~ .switch-selector {
    transform: translateX(0%);
    background-color: var(--kappel);
  }
  .switch-input:checked + .switch-label-k ~ .switch-selector {
    transform: translateX(100%);
    background-color: var(--kappel);
  }
  .switch-input:checked + .switch-label-m ~ .switch-selector {
    transform: translateX(200%);
    background-color: var(--kappel);
  }

  .switch-selector {
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    display: block;
    width: 100px;
    height: 32px;
    border-radius: 32px;
    background-color: #6134b7;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  }

  .active-price {
    display: block;
    transition: var(--transition-2);
  }

  .hidden-price {
    display: none;
    transition: var(--transition-2);
  }
}

.tarifs-trait {
  text-decoration: line-through;
}

/*-----------------------------------*\
  #CAROUSEL PORTFOLIO
\*-----------------------------------*/

.carousel-control-next {
  justify-content: flex-end;
}

.carousel-control-prev,
.carousel-control-next {
  transition: none;
  opacity: unset;
}

/*-----------------------------------*\
  #SWIPER PORTFOLIO
\*-----------------------------------*/

.course swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  --swiper-navigation-color: #000000;
}

.course swiper-slide {
  background-position: center;
  background-size: cover;
  width: 400px;
  height: 500px;
}

.course swiper-slide img {
  display: block;
  width: 100%;
  border-radius: var(--radius-10);
}

.container-portfolio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.badge-portfolio {
  width: max-content;
  text-align: center;
  max-width: max-content;
  line-height: 20px;
  padding-inline: auto;
  margin: 10px 0px;
  border-radius: var(--radius-10);
  color: var(--bg-black) !important;
}

.container-portfolio strong {
  color: var(--bg-black);
}

.avis-portfolio {
  color: var(--bg-black);
  text-align: center;
  font-style: italic;
  max-width: max-content;
  line-height: 20px;
  padding-inline: 10px;
}

@media (max-width: 1000px) {
  .course swiper-slide {
    background-position: center;
    background-size: cover;
    width: 200px;
    height: 400px;
  }
}

/*-----------------------------------*\
    #HIDE HEADER
\*-----------------------------------*/

.hideHeader {
  display: none;
  transition: var(--transition-2);
}

/*-----------------------------------*\
    #LOGO
\*-----------------------------------*/

.logo {
  font-size: var(--fs-2); /* Taille de la police */
  font-style: italic;
  font-weight: bold; /* Gras */
  text-decoration: none; /* Pas de soulignement */
  color: black; /* Couleur de texte par défaut */
  display: flex;
}

@media (max-width: 1000px) {
  .logo {
    font-size: var(--fs-2); /* Taille de la police */
  }
}

strong {
  color: var(--kappel);
}

/*-----------------------------------*\
    #ANIMATION
\*-----------------------------------*/

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}

.reveal.activeAnimation {
  transform: translateY(0);
  opacity: 1;
}

/*-----------------------------------*\
    #LANDING FLUIDE ANIMATION
\*-----------------------------------*/
#LykoF {
  height: 100vh;
  width: 100vw;
}
@import url("https://fonts.googleapis.com/css?family=Karla&display=swap");

canvas {
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  z-index: 1 !important;
  margin-top: -15px;
}

.Logo {
  background: pink;
  height: 100px;
  width: 200px;
  background: url(https://styrkin.s3-eu-west-1.amazonaws.com/public/logo_2.png);
  background: url(https://styrkin.s3-eu-west-1.amazonaws.com/public/logo-text-only_2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 100px;
  width: 200px;
}

.slab {
  z-index: 2 !important;
  top: 38%;
  margin: auto 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;

  height: fit-content;
  text-align: center;
  color: white;

  padding-bottom: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-55%);
}
/*Tablet REsponsiv e*/
.landing-h1 {
  font-size: 5.4rem !important;
  font-weight: 700 !important;
  color: white !important;
  text-align: center !important;
}

.landing-trait {
  border-bottom: 3px solid var(--bg-white);
  width: 260px;
  padding-top: 15px;
  margin-bottom: 1.5rem;
  transition: width 0.3s ease;
}

/* Desktop responsive */
@media (min-width: 1024px) {
  .landing-trait {
    width: 400px; /* Larger width for desktop screens */
  }
}

/* Extra large screens */
@media (min-width: 1440px) {
  .landing-trait {
    width: 320px; /* Even larger width for extra large screens */
  }
}

.landing-trait2 {
  border-bottom: 3px solid var(--bg-white);
  width: 260px;
  padding-top: 15px;
  transition: width 0.3s ease;
}

@media (min-width: 1024px) {
  .landing-trait2 {
    width: 400px;
  }
}

@media (min-width: 1440px) {
  .landing-trait2 {
    width: 320px;
  }
}

.landing-italic {
  font-style: italic;
}
@keyframes blink {
  0% {
    background-color: #6134b7;
  }
  49% {
    background-color: #6134b7;
  }
  50% {
    background-color: transparent;
  }
  99% {
    background-color: transparent;
  }
  100% {
    background-color: #6134b7;
  }
}

@media (max-width: 1000px) {
  .landing-h1 {
    font-size: 2.9rem !important;
  }

  .landing-trait {
    border-bottom: 3px solid var(--bg-white);
  }

  .landing-italic {
    font-size: 1.5rem !important;
  }
}
/* ///  TIMER  //*/

.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eee;
  margin-bottom: 15px;
}
.flip-clock {
  text-align: center;
  -webkit-perspective: 600px;
  perspective: 600px;
  margin: 0 auto;
}
.flip-clock *,
.flip-clock *:before,
.flip-clock *:after {
  box-sizing: border-box;
}
.flip-clock__piece {
  display: inline-block;
  margin: 0 0.2vw;
}
@media (min-width: 1000px) {
  .flip-clock__piece {
    margin: 0 5px;
  }
}
.flip-clock__slot {
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  /*
  //position: relative;
  //top: -1.6em;
  z-index: 10;
  //color: #FFF;
*/
}
.flip-card {
  display: block;
  position: relative;
  padding-bottom: 0.72em;
  font-size: 2.25rem;
  line-height: 0.95;
}
@media (min-width: 1000px) {
  .flip-clock__slot {
    font-size: 16px;
  }
  .flip-card {
    font-size: 33px;
  }
}
/*////////////////////////////////////////*/
.flip-card__top,
.flip-card__bottom,
.flip-card__back-bottom,
.flip-card__back::before,
.flip-card__back::after {
  display: block;
  height: 0.72em;
  color: #ccc;
  background: #222;
  padding: 0.23em 0.25em 0.4em;
  border-radius: 0.15em 0.15em 0 0;
  backface-visiblity: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 1.8em;
}
.flip-card__bottom,
.flip-card__back-bottom {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: solid 1px #000;
  background: #393939;
  border-radius: 0 0 0.15em 0.15em;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.flip-card__back-bottom {
  z-index: 1;
}
.flip-card__bottom::after,
.flip-card__back-bottom::after {
  display: block;
  margin-top: -0.72em;
}
.flip-card__back::before,
.flip-card__bottom::after,
.flip-card__back-bottom::after {
  content: attr(data-value);
}
.flip-card__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0%;
  pointer-events: none;
}
.flip-card__back::before {
  position: relative;
  overflow: hidden;
  z-index: -1;
}
.flip .flip-card__back::before {
  z-index: 1;
  -webkit-animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
.flip .flip-card__bottom {
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
  animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
}
@-webkit-keyframes flipTop {
  0% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    z-index: 2;
  }
  0%,
  99% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    opacity: 0;
  }
}
@keyframes flipTop {
  0% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    z-index: 2;
  }
  0%,
  99% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    opacity: 0;
  }
}
@-webkit-keyframes flipBottom {
  0%,
  50% {
    z-index: -1;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    z-index: 5;
  }
}
@keyframes flipBottom {
  0%,
  50% {
    z-index: -1;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    z-index: 5;
  }
}

input {
  padding: 4px 10px;
  width: 100%;
  text-align: center;
}

.cta {
  margin-top: 15px;
  background: green;
  font-size: 17px;
  padding: 11px 28px;
}

.cta {
  position: relative;
  display: block;
  float: none;
  color: white;
  border-radius: 10px;
  border: 2px solid #56616c;
  background: linear-gradient(#53a318, green);
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease;
  text-align: center;
  overflow: hidden;
}
.shiny-button:focus {
  outline: none;
}
.shiny-button:active {
  margin: 5px auto 0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.15);
}
.shiny-button::before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  content: "";
  height: 20px;
  width: 400px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  -webkit-animation-name: shine;
  animation-name: shine;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: cubic-beizer(0.17, 0.79, 0.96, 0.25);
  animation-timing-function: cubic-beizer(0.17, 0.79, 0.96, 0.25);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes shine {
  0% {
    top: -100px;
    left: -280px;
  }
  100% {
    top: 100%;
    left: 100%;
  }
}
@keyframes shine {
  0% {
    top: -100px;
    left: -280px;
  }
  100% {
    top: 100%;
    left: 100%;
  }
}

/* mobile responsive */
/* Media query for screens smaller than 768px (typical smartphones) */
@media (max-width: 768px) {
  .slab {
    position: absolute;
    top: 38%;
    max-width: 80%; /* Adjust the maximum width for smaller screens */
    padding: 10px; /* Adjust padding */
    height: fit-content;
    left: 52.3%;
  }

  .Logo {
    height: 50px;
    width: 100px;
  }

  p {
    font-size: 14px; /* Adjust font size */
  }

  .button.cta {
    font-size: 10px; /* Adjust font size */
    padding: 5px 10px; /* Adjust padding */
  }

  canvas {
    max-width: 100%; /* Make canvas responsive */
    height: 100%; /* Allow canvas to adjust its height */
  }
  body {
    overflow-x: hidden;
  }
  .navbar {
    overflow-x: hidden;
  }

  #LykoF {
    height: 61vh;
  }
}

/* container rotation  animation on load */
.containerRotationAvis {
  position: relative;
  width: 320px;
  margin: 100px auto 0 auto;
  perspective: 1000px;
  margin-bottom: 500px;
}

.carouselAvis {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotate360 60s infinite forwards linear;
}

.imageAvis {
  position: absolute;
  height: 200px;
  top: 20px;
  left: 10px;
  right: 10px;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
  display: flex;
}

.containerRotationAvis span {
  margin: auto;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--white);
}

.containerAvis {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 20px;
}

.rating {
  display: flex;
  gap: 10px;
}

.rating-wrapper {
  display: flex;
  gap: 3px;
}

.rating-wrapper ion-icon {
  color: var(--selective-yellow);
}

.rating-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
}

@keyframes rotate360 {
  from {
    transform: rotateY(360deg);
  }

  to {
    transform: rotateY(-360deg);
  }
}

.imageAvis:nth-child(1) {
  background-image: url(/assets/images/DTech_CG.png);
  transform: rotateY(0deg) translateZ(450px);
}

.imageAvis:nth-child(2) {
  background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
  transform: rotateY(40deg) translateZ(450px);
}

.imageAvis:nth-child(3) {
  background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
  transform: rotateY(80deg) translateZ(450px);
}

.imageAvis:nth-child(4) {
  background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
  transform: rotateY(120deg) translateZ(450px);
}

.imageAvis:nth-child(5) {
  background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
  transform: rotateY(160deg) translateZ(450px);
}

.imageAvis:nth-child(6) {
  background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
  transform: rotateY(200deg) translateZ(450px);
}

.imageAvis:nth-child(7) {
  background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
  transform: rotateY(240deg) translateZ(450px);
}

.imageAvis:nth-child(8) {
  background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
  transform: rotateY(280deg) translateZ(450px);
}

.imageAvis:nth-child(9) {
  background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
  transform: rotateY(320deg) translateZ(450px);
}

/*  to make the portfolio images responsive mobile friendly */
/* Base styles */
/* Base styles */

/* Adjustments for mobile screens */

/* Responsive styles */

@media only screen and (max-width: 768px) {
  #LykoF {
    height: 100vh !important;
  }
  .slab {
    display: flex;
    width: 100%;
  }

  .landing-h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    text-align: center;
  }

  .containerRotationAvis {
    position: relative;
    width: 100%;
    margin: 0px auto 0 auto;
    perspective: 500px;
    margin-bottom: 600px;
  }

  .carouselAvis {
    position: absolute;
    width: 100%;
    height: 250px;
    transform-style: preserve-3d;
    animation: rotate360 60s infinite forwards linear;
    padding: 50px;
  }

  .imageAvis {
    position: absolute;
    height: 100px;
    top: -190px;
    right: 0;
    margin: 260px;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    display: flex;
  }

  .containerRotationAvis span {
    margin: auto;
    font-size: 6px;
  }

  .containerAvis {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    gap: 10px;
  }

  .rating {
    display: flex;
    gap: 5px;
    flex-direction: column;
  }

  .rating-wrapper {
    display: flex;
    gap: 2px;
  }

  .rating-wrapper ion-icon {
    color: var(--selective-yellow);
    font-size: 6px;
  }

  .rating-text {
    color: var(--eerie-black-1);
    font-size: 15px;
    font-weight: 200px;
  }

  @keyframes rotate360 {
    from {
      transform: rotateY(0deg);
    }

    to {
      transform: rotateY(360deg);
    }
  }

  .imageAvis:nth-child(1) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(0deg) translateZ(280px);
  }

  .imageAvis:nth-child(2) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(40deg) translateZ(280px);
  }

  .imageAvis:nth-child(3) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(80deg) translateZ(280px);
  }

  .imageAvis:nth-child(4) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(120deg) translateZ(280px);
  }

  .imageAvis:nth-child(5) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(160deg) translateZ(280px);
  }

  .imageAvis:nth-child(6) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(200deg) translateZ(280px);
  }

  .imageAvis:nth-child(7) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(240deg) translateZ(280px);
  }

  .imageAvis:nth-child(8) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(280deg) translateZ(280px);
  }

  .imageAvis:nth-child(9) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(320deg) translateZ(280px);
  }
}

@media (min-width: 300px) and (max-width: 600px) {
  #LykoF {
    height: 100vh !important;
  }

  .containerRotationAvis {
    position: relative;
    width: 100%;
    margin: 100px auto 0 auto;
    perspective: 500px;
    margin-bottom: 300px;
  }

  .carouselAvis {
    position: absolute;
    width: 100%;
    height: 250px;
    transform-style: preserve-3d;
    animation: rotate360 60s infinite forwards linear;
    padding: 50px;
  }

  .imageAvis {
    position: absolute;
    height: 100px;
    top: -130px;
    /* left: 8px; */
    right: 10px;
    margin: 144px;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    display: flex;
  }

  .containerRotationAvis span {
    margin: auto;
    font-size: 6px;
  }

  .containerAvis {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    gap: 10px;
  }

  .rating {
    display: flex;
    gap: 5px;
    flex-direction: column;
  }

  .rating-wrapper {
    display: flex;
    gap: 2px;
  }

  .rating-wrapper ion-icon {
    color: var(--selective-yellow);
    font-size: 6px;
  }

  .rating-text {
    color: var(--eerie-black-1);
    font-size: 15px;
    font-weight: 200px;
  }

  @keyframes rotate360 {
    from {
      transform: rotateY(0deg);
    }

    to {
      transform: rotateY(360deg);
    }
  }

  .imageAvis:nth-child(1) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(0deg) translateZ(160px);
  }

  .imageAvis:nth-child(2) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(40deg) translateZ(160px);
  }

  .imageAvis:nth-child(3) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(80deg) translateZ(160px);
  }

  .imageAvis:nth-child(4) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(120deg) translateZ(160px);
  }

  .imageAvis:nth-child(5) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(160deg) translateZ(160px);
  }

  .imageAvis:nth-child(6) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(200deg) translateZ(160px);
  }

  .imageAvis:nth-child(7) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(240deg) translateZ(160px);
  }

  .imageAvis:nth-child(8) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(280deg) translateZ(160px);
  }

  .imageAvis:nth-child(9) {
    background-image: url(https://i.pinimg.com/originals/5e/4c/65/5e4c655b9353e0be289273b3e7c4b227.jpg);
    transform: rotateY(320deg) translateZ(160px);
  }
}

/*  CARTE DE VISITE */

.container-cartes {
  display: flex;
  gap: 40px;
  justify-content: space-around;
  margin: 100px;
}

.visitecard-container {
  display: flex;
  background-color: var(--bg-black);
  height: 250px;
  width: 350px;
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
}

.visitecard-left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 60%;
  padding-right: 15px;
}

.visitecard-left-container-titre,
.visitecard-left-container-contact {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  align-items: center;
}

.visitecard-left-container-contact {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.nom-left {
  align-items: center;
  border-bottom: 2px solid rgb(255, 255, 255);
  margin-bottom: 10px;
}

.poste-left {
  font-size: 1.3rem;
}

.mail-left {
  font-size: 1.1rem;
}

.num-left {
  font-size: 1.4rem;
}

.visitecard-right {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.visitecard-container-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .container-cartes {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
}

/* BANNER */

.container-banner {
  display: flex;
  flex-direction: column;
}
.container-banner .container-form form {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container-banner .container-form-footer {
  display: flex;
  justify-content: center;
}

.banner {
  background-color: var(--bg-black);
  color: var(--bg-white) !important;
}

#landing-calendly {
  margin-top: 50px;
}

.banner-margin {
  margin-top: 100px;
}

.banner .section-title {
  color: var(--bg-white) !important;
}

input,
textarea {
  width: calc(80% - 10px);
  margin-bottom: 20px;
  padding: 5px;
  font-size: var(--fs-5) !important;
  text-align: center;
  border-radius: var(--radius-5);
  padding: 15px;
  max-width: 400px;
  font-family: var(--ff-poppins);
  font-size: var(--fs-12);
  background-color: var(--bg-white);
}

input:focus,
textarea:focus {
  outline: none;
}

#submit {
  margin-top: -20px;
}
#li-contact {
  display: none;
}

.container-price-prestation {
  display: flex;
  align-items: center;
  gap: 5px;
}
.container-price-prestation .older-price {
  text-decoration: line-through;
}

@media (max-width: 768px) {
  #li-contact {
    display: block;
  }
}

#btnreserverbas {
  margin-top: 40px !important;
}

.gradient-h1 {
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  -webkit-background-clip: text !important;
  -background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important; /* Pour s'assurer que le dégradé s'applique correctement */
  animation: moveGradient 5s linear infinite !important; /* Changez la durée et le type d'animation selon vos besoins */
}
.gradient-h2 {
  background: linear-gradient(to right, #6134b7, #ffa700, #847878) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important; /* Pour s'assurer que le dégradé s'applique correctement */
  animation: moveGradient 5s linear infinite !important; /* Changez la durée et le type d'animation selon vos besoins */
}
.gradient-h1-noir {
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important; /* Pour s'assurer que le dégradé s'applique correctement */
  animation: moveGradient 5s linear infinite !important;
}

.logo {
  display: inline-block;
  line-height: 0;
}

.logo-img {
  max-height: auto;
  max-width: 100px;
  object-fit: contain;
}
/* Tablet devices */
@media screen and (max-width: 768px) {
  .logo-img {
    max-width: 70px;
    margin: 0 auto !important;
    padding: 5px;
    margin-right: 0 !important;
    display: block;
  }
}
@media (max-width: 767px) {
  .logo-img {
    max-width: 100px;
    margin: 0 auto !important;
    padding: 5px;
    margin-right: 0 !important;
    display: block;
  }
}
/* Mobile devices */
@media screen and (max-width: 480px) {
  .logo-img {
    max-width: 100px;
    display: block;
    position: absolute;
    top: 12px;
    left: 22px;
  }

  .header .container {
    justify-content: center;
  }

  .logo {
    width: 100%;
    text-align: center;
    display: block;
  }
}

/* Small mobile devices */
@media screen and (max-width: 320px) {
  .logo-img {
    max-width: 100px;
    margin: 0 auto !important;
    margin-right: 0 !important;
    padding: 2px;
  }
}

/* Ensure proper display on iOS devices */
@supports (-webkit-touch-callout: none) {
  .logo-img {
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
  }
}

/* Style the select element */
#no-company {
  margin-left: 10px;
  margin-bottom: 20px;
  margin-top: -10px;
  padding: 5px;
  text-align: center;
  border: 1px solid #6134b7;
  border-radius: 5px;
  width: 200px;
}

select {
  text-align: center !important;
  text-align-last: center !important;
  -moz-text-align-last: center !important;
  -webkit-text-align-last: center !important;
  direction: ltr !important;
}

select option {
  text-align: center !important;
  text-align-last: center !important;
  -moz-text-align-last: center !important;
  -webkit-text-align-last: center !important;
  direction: ltr !important;
}

/* Safari specific fix */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select,
  select option {
    text-align: center !important;
    text-align-last: center !important;
    -webkit-text-align-last: center !important;
  }
}

/* Firefox specific fix */
@-moz-document url-prefix() {
  select,
  select option {
    text-align: center !important;
    text-align-last: center !important;
    -moz-text-align-last: center !important;
  }
}

.input-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 300px;
  padding: 10px 35px;
}

.input-icon {
  position: absolute;

  top: 32%;
  transform: translateY(-35%);
  color: #6134b7;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.input-wrapper textarea + .input-icon {
  top: 25px;
  transform: none;
}
/*-----------------------------------*\
  #SUBMIT BTN STYLE
\*-----------------------------------*/
.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 1rem);
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  max-width: 150px;
}

.submit-btn:hover {
  background: var(--gradient-1, linear-gradient(45deg, #6134b7, #ffa700));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 142, 242, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn .submit-icon {
  font-size: 1.25em;
  transition: transform 0.3s ease;
}

.submit-btn:hover .submit-icon {
  transform: translateX(4px);
}

.submit-btn.loading {
  cursor: wait;
}

.submit-btn.loading .submit-icon {
  animation: rotating 1s linear infinite;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .submit-btn {
    padding: 0.625rem 1.25rem;
    font-size: 1.5rem;
  }

  .submit-btn .submit-icon {
    font-size: 1.125em;
  }
}

@media (max-width: 480px) {
  .submit-btn {
    padding: 0.5rem 1rem;
    max-width: 250px;
  }
}

/* Optional loading animation */
.submit-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.submit-btn:hover::after {
  transform: translateX(100%);
}
/*-----------------------------------*\
  #EMAIL BTN STYLE
\*-----------------------------------*/
.email-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 1rem);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  max-width: 150px;
  width: 100%;
}

.email-btn:hover {
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 142, 242, 0.3);
}

.email-btn:active {
  transform: translateY(0);
}

.email-btn .icon-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.email-btn .email-icon {
  font-size: 1.1em;
  transform: translateY(-1px);
  transition: transform 0.3s ease;
}

.email-btn:hover .email-icon {
  transform: translateY(-1px) scale(1.1);
}

.email-btn:hover ion-icon {
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .email-btn {
    padding: 0.625rem 1.25rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .email-btn {
    padding: 0.5rem 1rem;
    max-width: 125px;
  }

  .email-btn .icon-wrapper {
    gap: 0.35rem;
  }
}
/*-----------------------------------*\
  #SOCIAL BTN STYLE
\*-----------------------------------*/
.social-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(to right, #6134b7, #ffa700) !important;

  color: #fff;
  font-size: clamp(1.5rem, 2vw, 1rem);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  max-width: 150px;
  width: 100%;
  top: 25px;
}

.social-btn:hover {
  background: #6134b7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 142, 242, 0.5);
}

.social-btn:active {
  transform: translateY(0);
}

.social-btn .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25em;
  transition: transform 0.3s ease;
}

.social-btn:hover .icon-wrapper {
  transform: scale(1.1);
}

.social-btn:hover ion-icon {
  transform: translateX(4px);
}

.social-btn ion-icon {
  transition: transform 0.3s ease;
}

/* Specific styles for TikTok button */
#tiktok-btn .icon-wrapper {
  margin-right: 4px;
}

#tiktok-btn:hover .fa-tiktok {
  animation: bounce 0.5s ease infinite;
}

/* Specific styles for Email button */
#email-btn .icon-wrapper {
  margin-right: 4px;
}

#email-btn:hover .fa-envelope {
  animation: shake 0.5s ease infinite;
}

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

@keyframes shake {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-btn {
    padding: 0.4rem 0.75rem;
    font-size: 1.4rem;
  }

  .social-btn .icon-wrapper {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .social-btn {
    padding: 1rem 1rem;
    width: 50%;
    max-width: 150px;
  }
}
/*-----------------------------------*\
  #CONTACT BTN STYLE
\*-----------------------------------*/
.nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(to right, #ffa700, #6134b7) !important;

  color: #fff;
  font-size: clamp(1.5rem, 2vw, 1rem);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

.nav-btn:hover {
  background: var(--gradient-1, linear-gradient(45deg, #6134b7, #ffa700));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 142, 242, 0.9);
}

.nav-btn:active {
  transform: translateY(0);
}

.nav-btn .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.nav-btn:hover .icon-wrapper {
  transform: translateX(4px);
}

.nav-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.nav-btn:hover::after {
  transform: translateX(100%);
}
/*-----------------------------------*\
  #Modern Pricing Section Styles
\*-----------------------------------*/
/* Service toggle styles */
.service-toggle-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.service-toggle {
  background: #f5f5f5;
  border-radius: 30px;
  padding: 5px;
  position: relative;
  display: inline-flex;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-toggle .toggle-input {
  display: none;
}

.service-toggle .toggle-label {
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-weight: 500;
  transition: color 0.3s ease;
  border-radius: 25px;
  text-align: center;
}

.service-toggle .toggle-input:checked + .toggle-label {
  color: white;
}

.service-toggle .toggle-selector {
  position: absolute;
  height: calc(100% - 10px);
  top: 5px;
  left: 5px;
  border-radius: 25px;
  background: linear-gradient(to right, #ffa700, #6134b7) !important;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 5px rgba(160, 32, 240, 0.3);
}

/* Pricing toggle styles */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.pricing-toggle {
  background: #f5f5f5;
  border-radius: 30px;
  padding: 5px;
  position: relative;
  display: inline-flex;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-toggle .toggle-input {
  display: none;
}

.pricing-toggle .toggle-label {
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  font-weight: 500;
  transition: color 0.3s ease;
  border-radius: 25px;
  text-align: center;
}

.pricing-toggle .toggle-input:checked + .toggle-label {
  color: white;
}

.pricing-toggle .toggle-selector {
  position: absolute;
  height: calc(100% - 10px);
  top: 5px;
  left: 5px;
  border-radius: 25px;
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 5px rgba(160, 32, 240, 0.3);
}

/* Pricing card styles */
.pricing-cards-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pricing-card {
  flex: 0 0 350px;
  max-width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.hidden-price {
  display: none;
}

/* Card header */
.pricing-card-header {
  padding: 25px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
  border-bottom: 1px solid #eee;
}

.pricing-tier {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.tier-icon {
  font-size: 24px;
  margin-right: 10px;
}

.pricing-tier h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.pricing-amount {
  position: relative;
}

.current-price {
  font-size: 22px;
  font-weight: 700;
  color: #6134b7;
  display: block;
}

.original-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-left: 5px;
}

.discount-badge {
  position: absolute;
  top: -10px;
  right: 0;
  background: #ff6b6b;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
}

/* Card body */
.pricing-card-body {
  padding: 20px;
  flex-grow: 1;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #6134b7;
  margin-right: 10px;
  font-size: 14px;
}

/* Card footer */
.pricing-card-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}

.pricing-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.pricing-btn:hover {
  background: #6134b7;
  transform: translateY(-3px);
}

.pricing-btn ion-icon {
  margin-left: 8px;
}

/* Subscription section styles */
.subscription-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.subscription-cards .pricing-card {
  display: flex;
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .subscription-cards .pricing-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }

  .service-toggle .toggle-label,
  .pricing-toggle .toggle-label {
    padding: 8px 15px;
    font-size: 15px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .subscription-cards .pricing-card {
    flex: 0 0 85%;
    max-width: 90%;
  }

  .service-toggle,
  .pricing-toggle {
    width: 100%;
    max-width: 350px;
  }

  .service-toggle .toggle-label,
  .pricing-toggle .toggle-label {
    padding: 8px 12px;
    font-size: 14px;
    text-align: center;
  }

  .current-price {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    flex: 0 0 85%;
    max-width: 90%;
  }

  .service-toggle,
  .pricing-toggle {
    max-width: 300px;
  }

  .service-toggle .toggle-label,
  .pricing-toggle .toggle-label {
    padding: 6px 10px;
    font-size: 13px;
    text-align: center;
  }

  .pricing-toggle .toggle-label {
    padding: 6px 10px;
    font-size: 13px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #333;
  }

  .pricing-tier h3 {
    font-size: 18px;
  }

  .current-price {
    font-size: 22px;
  }

  .original-price {
    font-size: 14px;
  }

  .pricing-features li {
    font-size: 14px;
  }
}
/* Add spacing between pricing sections and subscription section */
.section.blog.has-bg-image.site-ecommerce {
  margin-bottom: 150px; /* Increase bottom margin to create more space */
}

/* Adjust top margin of the subscription section */
.section.blog.has-bg-image.site-subscription {
  margin-top: 20px; /* Add top margin to create separation */
  padding-top: 20px; /* Add padding to create internal spacing */
  border-top: 1px solid rgba(160, 32, 240, 0.1); /* Optional: add a subtle divider */
}

/* For mobile devices, adjust the spacing */
@media (max-width: 768px) {
  .section.blog.has-bg-image.site-ecommerce {
    margin-bottom: 60px;
  }

  .section.blog.has-bg-image.site-subscription {
    margin-top: 30px;
    padding-top: 40px;
  }
}
/* Animation for pricing cards */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animation to pricing cards when they become visible */
.pricing-card.animate-in {
  animation: fadeInScale 0.4s ease-out forwards;
}

/* Ensure hidden cards don't take up space */
.pricing-card.hidden-price {
  display: none;
}

/* Ensure active cards are displayed with flex */
.pricing-card.active-price {
  display: flex;
}

/* Fully Responsive Slab Section Styles */
.section#LykoF {
  position: relative;
  min-height: 100vh;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

canvas#landing-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  will-change: transform;
}

.slab {
  position: absolute !important;
  z-index: 2;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: min(95%, 1100px) !important;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  background-color: rgba(15, 15, 26, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(160, 32, 240, 0.15);
  margin: 0 !important;
  /* Ensure proper box sizing */
  box-sizing: border-box;
}
.slab::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(160, 32, 240, 0.1),
    transparent,
    rgba(138, 43, 226, 0.1)
  );
  border-radius: clamp(10px, 2vw, 18px);
  z-index: -1;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.slab-content {
  max-width: 100%;
  margin: 0 auto;
}

/* Enhanced Landing-H1 Presentation */
.landing-h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.3;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.5s ease;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

/* Split text animation for mobile */
@media (max-width: 768px) {
  .landing-h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .landing-h1 .gradient-h1 {
    font-size: 110%;
    padding: 0.2rem 0.5rem;
    position: relative;
  }

  .landing-h1 .gradient-h1::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    left: -5px;
    top: 0;
    background: linear-gradient(to bottom, transparent, #6134b7, transparent);
    border-radius: 3px;
  }
}

/* Add a subtle text reveal animation on page load */
@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-h1 {
  animation: textReveal 1s ease forwards;
}

/* Staggered animation for each word */
.landing-h1 span {
  display: inline-block;
  opacity: 0;
  animation: textReveal 0.5s ease forwards;
}

.landing-h1 span:nth-child(1) {
  animation-delay: 0.1s;
}
.landing-h1 span:nth-child(2) {
  animation-delay: 0.2s;
}
.landing-h1 span:nth-child(3) {
  animation-delay: 0.3s;
}
.landing-h1 span:nth-child(4) {
  animation-delay: 0.4s;
}
.landing-h1 span:nth-child(5) {
  animation-delay: 0.5s;
}
.landing-h1 span:nth-child(6) {
  animation-delay: 0.6s;
}

.landing-trait,
.landing-trait2 {
  height: 2px;

  margin: clamp(1rem, 3vw, 1.5rem) auto;
  width: min(70%, 500px);
  border-radius: 2px;
  opacity: 0.8;
}
.landing-trait2 {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(160, 32, 240, 0.7),
    transparent
  );
}

.landing-italic {
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: rgba(255, 255, 255, 0.9);
  margin: clamp(1rem, 3vw, 1.5rem) 0;
  min-height: 2.5rem;
  font-weight: 400;
  padding: 0 clamp(0.5rem, 2vw, 1.5rem);
}

.cursor-typing {
  display: inline-block;
  width: max(2px, 0.2vw);
  height: 1.2em;
  background-color: #6134b7;
  margin-left: 5px;
  animation: blink 0.8s steps(2) infinite;
  vertical-align: middle;
}

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

.cta-container {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 4vw, 2rem);
  flex-wrap: wrap;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.social-btn,
.contact-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: 50px;
  font-weight: 500;
  font-size: clamp(1.5rem, 1vw, 1.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: clamp(120px, 30vw, 160px);
  justify-content: center;
  white-space: nowrap;
  flex-grow: 0;
}

#tiktok-btn {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

.contact-btn {
  background: linear-gradient(45deg, #6134b7, #ffa700);
  color: white;
  border: none;
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.tech-badges {
  display: flex;
  gap: clamp(0.4rem, 1vw, 0.7rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.tech-badge {
  background: rgba(160, 32, 240, 0.15);
  border: 1px solid rgba(160, 32, 240, 0.2);
  padding: clamp(0.25rem, 0.8vw, 0.35rem) clamp(0.5rem, 1vw, 0.7rem);
  border-radius: clamp(4px, 0.8vw, 6px);
  font-size: clamp(0.65rem, 0.9vw, 0.75rem);
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  margin: 0.2rem;
}

/* Comprehensive responsive breakpoints */
/* Extra small devices (phones, 320px and up) */
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .slab {
    padding: 1.2rem 1rem;
    width: 95%;
  }

  .landing-h1 {
    font-size: 1.6rem;
    padding: 0 0.3rem;
  }

  .landing-italic {
    font-size: 1rem;
    min-height: 3rem;
  }

  .cta-container {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .social-btn,
  .contact-btn {
    width: 100%;
    max-width: 220px;
    padding: 0.6rem 1rem;
  }

  .tech-badges {
    margin-top: 1.2rem;
  }

  .tech-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
  }
}

/* Small devices (landscape phones, 480px and up) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .slab {
    padding: 1.5rem 1.2rem;
    width: 90%;
  }

  .landing-h1 {
    font-size: 1.8rem;
  }

  .cta-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .social-btn,
  .contact-btn {
    width: 100%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slab {
    padding: 2rem 1.8rem;
    width: 85%;
  }

  .landing-h1 {
    font-size: 2.2rem;
  }

  .cta-container {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slab {
    padding: 2.5rem 2rem;
    width: 80%;
  }

  .landing-h1 {
    font-size: 2.6rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .slab {
    padding: 3rem 2.5rem;
    width: 75%;
    max-width: 1100px;
  }

  .landing-h1 {
    font-size: 3rem;
  }
}

/* Portrait orientation adjustments */
@media only screen and (orientation: portrait) {
  .slab {
    padding-top: clamp(2rem, 5vh, 3rem);
    padding-bottom: clamp(2rem, 5vh, 3rem);
  }

  .cta-container {
    margin-top: clamp(1.2rem, 3vh, 2rem);
  }
}

/* Landscape orientation on small devices */
@media only screen and (orientation: landscape) and (max-height: 500px) {
  .section#LykoF {
    min-height: 120vh;
  }

  .slab {
    padding: 1.2rem;
    margin-top: 3rem;
  }

  .landing-h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 0.8rem;
  }

  .landing-trait,
  .landing-trait2 {
    margin: 0.8rem auto;
  }

  .landing-italic {
    margin: 0.8rem 0;
    min-height: 2rem;
  }

  .cta-container {
    margin-top: 1rem;
  }

  .tech-badges {
    margin-top: 1rem;
  }
}

/* High-DPI screens (Retina displays) */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi) {
  .slab {
    border-width: 0.5px;
  }

  .tech-badge {
    border-width: 0.5px;
  }
}

/* Foldable devices and narrow screens */
@media only screen and (max-width: 350px) {
  .slab {
    padding: 1rem 0.8rem;
    width: 98%;
  }

  .landing-h1 {
    font-size: 1.4rem;
  }

  .landing-italic {
    font-size: 0.9rem;
  }

  .social-btn,
  .contact-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    min-width: 100px;
  }

  .tech-badge {
    padding: 0.2rem 0.4rem;
    font-size: 0.6rem;
  }
}

/* Ensure touch targets are large enough on touch devices */
@media (hover: none) and (pointer: coarse) {
  .social-btn,
  .contact-btn {
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.2rem, 3vw, 1.8rem);
    min-height: 44px;
  }

  .tech-badge {
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.8rem);
    min-height: 36px;
  }

  /* Reduced motion preference */
  @media (prefers-reduced-motion: reduce) {
    .slab:hover::before,
    .gradient-h1:hover,
    .social-btn:hover,
    .contact-btn:hover,
    .tech-badge:hover {
      transition: none;
      transform: none;
    }

    .cursor-typing {
      animation: none;
      opacity: 0.7;
    }
  }

  /* Print styles */
  @media print {
    .section#LykoF {
      height: auto;
      min-height: auto;
    }

    canvas#landing-canvas {
      display: none;
    }

    .slab {
      box-shadow: none;
      border: 1px solid #ccc;
      background: white;
      color: black;
    }

    .landing-h1,
    .landing-italic {
      color: black;
    }

    .gradient-h1 {
      color: #6134b7;
      background: none;
    }

    .cta-container,
    .tech-badges {
      display: none;
    }
  }
}
/* User Menu Styles */
.user-menu-wrapper {
  position: relative;
  margin-right: 15px;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
}

.user-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.user-menu-btn i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  margin-right: 8px;
}

.username-display {
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.user-menu-wrapper:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.user-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.user-dropdown ul li {
  padding: 0;
  margin: 0;
}

.user-dropdown ul li a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.user-dropdown ul li a:hover {
  background-color: #f5f5f5;
  color: #6134b7;
}

.user-dropdown ul li a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Login Button */
.login-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.login-btn .icon-wrapper {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  border: none;
  display: flex;
  color: white;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(160, 32, 240, 0.3);
}

/* Mobile Auth Button */
.mobile-auth-btn {
  display: none;
}

.mobile-user-menu {
  position: relative;
}

.mobile-user-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(160, 32, 240, 0.3);
}

.mobile-login-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(160, 32, 240, 0.3);
}

.mobile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.mobile-user-menu.active .mobile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.mobile-dropdown-header {
  padding: 15px;
  border-bottom: 1px solid #eee;
  font-weight: 600;
  color: #333;
}

.mobile-dropdown ul {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.mobile-dropdown ul li a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-dropdown ul li a:hover {
  background-color: #f5f5f5;
  color: #6134b7;
}

.mobile-dropdown ul li a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Media Queries */
@media (max-width: 992px) {
  .user-menu-btn .username-display {
    display: none;
  }

  .user-menu-btn {
    padding: 8px;
  }

  .user-menu-btn i {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .nav-btn,
  .login-btn,
  .user-menu-wrapper {
    display: none;
  }

  .mobile-user-btn {
    width: 28px;
    height: 28px;
  }

  .mobile-auth-btn {
    display: block;
    margin-right: 15px;
  }

  .user-menu-btn i {
    margin-right: 0;
  }

  .mobile-contact-gif {
    display: none;
  }
  .login-btn .icon-wrapper {
    width: 20px;
    height: 20px;
    background: linear-gradient(to right, #6134b7, #ffa700) !important;
    border: none;
    display: flex;
    color: white;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(160, 32, 240, 0.3);
  }
}

/* Mobile devices */
@media screen and (max-width: 480px) {
  .mobile-user-btn {
    width: 28px;
    height: 28px;
  }
}

.custom-menu-icon {
  width: 10px;
  height: auto;
  color: #6134b7;
  transition: transform 0.3s ease;
}

.header-action-btn:hover .custom-menu-icon {
  transform: scale(1.1);
}
