
@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700&display=swap');

:root {
  --default-font: 'Barlow', system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: 'Barlow', sans-serif;
  --nav-font: 'Barlow', 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: #090808; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #05289d; /* Color for headings, subheadings and title throughout the website */
  --accent-color:  #05289d;; /* 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; 
  
  --first-color: #05289d;
  --second-color:#133ad9;
   --third-color:#000000;
   /* --third-color: #ffb000; */
 --fourth-color: #ff00b0;
  --five-color:  #00ffe9;/* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: rgb(214, 160, 13); /* 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: #40372e; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f87500; /* 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: #fffbf7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color:  color-mix(in srgb, #0216c7 80%, transparent) 100% ;/* bleu plus fort */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}
.color-violet{
  color: #f200ffc1 !important;
  --background-color: #f200ffc1 !important;
  
}

.btn-devfest{
  background-color: #f1f1f1;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


.text_justifty{
  text-align: justify;
  justify-content: border-box;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
   font-family: barlow, sans-serif; 
}

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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  ;
}
/*  */
.btn-container {
      display: flex;
      gap: 20px; /* espace entre les deux boutons */
    }

    .btn {
      font-family:barlow, sans-serif;
      font-size: 16px;
      font-weight: 500;
      border: none;
      border-radius: 30px;
      padding: 12px 28px;
      cursor: pointer;
      transition: 0.3s;
    }

    /* Premier bouton : Devenir Partenaire */
    .btn-gradient {
      background: linear-gradient(90deg, #3ea5ff, #a132f5);
      color: white;
      width: auto !important;
      gap: 10px;
    }

    .btn-gradient:hover {
      opacity: 0.85;
    }

    /* Flèche → */
    .btn-gradient::after {
      content: "→";
      font-weight: bold;
    }

    /* Deuxième bouton : Je veux participer */
    .btn-white {
      background: white;
      color: #e91e89;
      border: 2px solid white;
    }
    .btn-pink {
      background: rgb(255, 0, 179) !important;
      color: #ffffff;
      font-size:20px;
      font-family: barlow, sans-serif;
      /* border: 2px solid white; */
    }
    .btn-green {
      background: rgb(95, 255, 236);
      color: #000000;
      font-size:20px;
      font-family: barlow, sans-serif;
      /* border: 2px solid white; */
    }

    .btn-white:hover, .btn-green:hover {
      background: #f7f7f7;
    }
    .btn-white:hover, .btn-pink:hover {
      background: #f7f7f7;
      color: #000000;
    }

    
/* 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 {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header-images{
  border-radius: 30px;
  width: auto;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.2s ease-out;
  z-index: 2; /* au-dessus du texte par défaut */
  position: relative;
}
.hero-theme {
  font-size: clamp(22px, 5vw, 45px);
  font-weight: 700;
  font-style: normal;
  margin-top: 20px;
}
@media (max-width: 765px) {
  .hero-theme{
  font-size: 19px;
  font-weight: 700;
  font-style: normal;
  margin-top: 20px;}

  .hero-btn{
    display: flex;
    flex-direction: column;
    text-decoration: center;
  }
}
.theme_hilight{
  color: rgb(214, 160, 13);
}
.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--accent-color);
  background: var(--contrast-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }

}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(34, 18, 2, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
 .text-pink {
    color: #f72585;
  }

  .btn-dark.active {
    background-color: #f72585;
    color: #fff;
  }

  .card {
    border: none;
  }
  .footer{
  background-color: rgb(15, 8, 66);
  color: #ffffff;
  font-family: barlow, sans-serif;
  }

.footer, .review{
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

/* Pied de page  */
/* FOOTER STRUCTURE */
.footer {
  background: #0f1116;
  color: #c7c7c7;
  font-family: "Inter", sans-serif;
}

.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* About */
.footer-about img {
  height: 42px;
}

.footer-about .footer-desc {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.7;
}

/* Social Icons */
.footer .social-links a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  color: #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.footer .social-links a:hover {
  border-color: #00f7ff;
  color: #00f7ff;
}

/* TITLES */
.footer h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 18px;
  font-weight: 600;
}

/* Listes */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  padding: 6px 0;
}

.footer-links ul li a {
  color: #9ca3af;
  font-size: 15px;
  transition: 0.25s ease;
}

.footer-links ul li a:hover {
  color: #00f7ff;
}

/* COPYRIGHT */
.footer .copyright {
  color: #9ca3af;
  font-size: 14px;
  padding-top: 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer h4 {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# 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(--fourth-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: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background:  linear-gradient(
    135deg,
    color-mix(in srgb, #0216c7 90%, transparent) 0%,   /* bleu + léger */
    color-mix(in srgb, #0216c7 80%, transparent) 100%  /* bleu plus fort */
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: start;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: barlow, sans-serif;
  margin-bottom: 20px;
  color:var(--fourth-color);
  padding-bottom: 20px;
  position: relative;
}

.section-title p {
  margin-bottom: 0;
}

/* RESPONSIVE : en dessous de 768px (tablette et mobile) */
@media (max-width: 768px) {
  .section-title {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .swiper-navigation {
    justify-content: center;
    margin-top: 1rem;
  }

  .section-title h2 {
    font-size: 1.5rem; /* réduit un peu le titre */
  }

  .section-title p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  /* border:#ff4800 5px solid; */
  align-items: center;
  justify-content: center;
  background-image: url("../img/media/images/home_header.jpg");
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden; /* 🚫 empêche tout dépassement */

}

/* Image qui scrool */

.image-head {
                        overflow: hidden;
                       margin-top: 60px;
                        /* border:#ffd500 5px solid; */
                        position: relative;
                        height: 100vh;
                        display: flex;
                        justify-content: center; /* centrer horizontalement */
                        align-items: center;     /* centrer verticalement */
   
                          z-index: 3; /* passe au-dessus du texte quand elle grandit */
                          pointer-events: none; /* pour éviter de bloquer le scroll */
                      }

                      .header-image {
                        margin-top: 300px;
                         width: 900px;              /* 🌟 taille initiale au chargement */
  max-width: 1900px;
                        transition: transform 0.1s linear;
                        transform-origin: center center;
                        display: block;
                      }
/* === TEXTE FIXE AU CENTRE === */
.hero-text {
  position: absolute; /* 🔁 au lieu de fixed */
  width: 900px;
  top: 27%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* au-dessus du fond, sous l’image zoomée */
  color: #fff;
  text-align: center;
  margin: 50px; /* pas de marge qui décale hors du header */
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    min-height: 90vh;
  }
}

.hero .hero-content {
  position: relative;
   /* border:#00ffe9 5px solid; */
  z-index: 2;
  width: 100%;
  padding-top: 45px;
 
}

@media (max-width: 768px) {
  .hero .hero-content {
    padding: 100px 0 60px;
  }
}

.hero .hero-text {
  margin:20px 10px;
  z-index: 3;
     /* border:#00ffe9 5px solid; */
  
}

@media (max-width: 768px) {
  .hero .hero-text {
    margin-bottom: 40px;

  }
  .hide-mobile, .image-head{
    display: none;
  }

  .hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4px 0 40px;
}

}

.hero .hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .hero .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

.hero .hero-subtitle {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

.hero .event-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero .event-details {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

.hero .detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 500;
}

.hero .detail-item i {
  font-size: 1.5rem;
  ;
}
.hero .detail-item .icon-green {
  color: var(--five-color) !important ;
}
.hero .detail-item  .icon-moutard {
  color: var(--nav-hover-color) !important;
}

@media (max-width: 768px) {
  .hero .detail-item {
    font-size: 1rem;
  }
}

.hero .countdown-section {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .hero .countdown-section {
    margin-bottom: 40px;
  }
}

.hero .countdown-label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero .countdown-label {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}

.hero .countdown {
  gap: 30px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero .countdown {
    gap: 20px;
  }
}

.hero .countdown div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px 20px;
  min-width: 120px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero .countdown div:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero .countdown div {
    padding: 16px 12px;
    min-width: 90px;
  }
}

.hero .countdown div h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero .countdown div h3 {
    font-size: 2rem;
  }
}

.hero .countdown div h4 {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color) 90%, white 15%);
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero .countdown div h4 {
    font-size: 0.8rem;
  }
}

.hero .cta-section {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .hero .cta-section {
    margin-bottom: 50px;
  }
}

.hero .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  
}

@media (max-width: 576px) {
  .hero .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.hero .btn-cta {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
}

@media (max-width: 768px) {
  .hero .btn-cta {
    padding: 14px 28px;
    font-size: 1rem;
    min-width: 160px;
  }
}

.hero .btn-cta.btn-primary {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .btn-cta.btn-primary:hover {
  transform: translateY(-2px);
}

.hero .btn-cta.btn-secondary {
  background: transparent;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-cta.btn-secondary:hover {
  transform: translateY(-2px);
}

.hero .cta-note {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .hero .cta-note {
    font-size: 0.9rem;
  }
}

.hero .sponsors-section {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 40px;
}

@media (max-width: 768px) {
  .hero .sponsors-section {
    padding-top: 30px;
  }
}

.hero .sponsors-label {
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  font-size: 0.9rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero .sponsors-label {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }
}

.hero .sponsors-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero .sponsors-logos {
    gap: 24px;
  }
}

.hero .sponsor-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hero .sponsor-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero .sponsor-logo {
    height: 40px;
  }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.intro {
  position: relative;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  background-image: url("../img/devexpo/public-profil.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.intro .bg-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:  linear-gradient(
    135deg,
    color-mix(in srgb, #0216c7 90%, transparent) 0%,   /* bleu + léger */
    color-mix(in srgb, #0216c7 80%, transparent) 100%  /* bleu plus fort */
  );
  /* background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%); */
  z-index: 1;
}

.intro::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  width: 100%;
  height: 200%;
  /* background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%); */
   background:  linear-gradient(
    55deg,
    color-mix(in srgb, #0216c790 90%, transparent) 0%,   /* bleu + léger */
    color-mix(in srgb, #0216c76c 80%, transparent) 100%  /* bleu plus fort */
  );
  /* transform: rotate(-15deg); */
  z-index: 1;
}

.intro .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    min-height: 90vh;
  }
}

.intro .content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: barlow, sans-serif;
  color: var(--fourth-color);
  margin-bottom: 2rem;
  background-clip: text;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .intro .content h2 {
    font-size: 2.1rem;
  }
}

.intro .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.intro .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: barlow, sans-serif;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.intro .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.intro .stat-item {
  text-align: center;
  position: relative;
}

.intro .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.intro .stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--heading-color);
}

.intro .stat-item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
  border-radius: 2px;
}

.intro .cta-section {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;}

.intro .cta-section .btn {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.intro .cta-section .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  border: none;
  color: var(--contrast-color);
}

.intro .cta-section .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.intro .cta-section .btn.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.intro .cta-section .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.intro .visual-section {
  position: relative;
}

.intro .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: all 0.3s ease;
}

.intro .image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.intro .image-wrapper img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.intro .image-wrapper .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 60%) 0%, transparent 100%);
}

.intro .image-wrapper .floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  gap: 0.5rem;

}
/* Video Recap */
.intro .image-wrapper .floating-video {
  position: absolute;
  top: 50%;
  right: 460px;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--first-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icône Play centrée */
.play-icon {
  font-size: 32px;
  color: white;
  z-index: 2;
}

/* Cercle animé (ondes) */
.circle-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--first-color);
  animation: ripple 1.8s infinite;
  z-index: 1;
}

/* Animation d’onde */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
/*  */
 .image-wrapper .floating-badge i {
  font-size: 1.1rem;
}

.highlight-cards {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
 .highlight-cards {
    flex-direction: column;
  }
}

 .highlight-card {
  flex: 1;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
}




.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.highlight-card i {
  font-size: 2.1rem;
  /* color: var(--accent-color); */
  margin-bottom: 1rem;
   background: var(--fourth-color); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-card h4 {
  font-size: 1.2rem;
  font-family: barlow, sans-serif;
  margin-bottom: 0.75rem;
}

.highlight-card p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--five-color, transparent 40%));
  margin: 0;
  line-height: 1.6;
}

.intro .founder-quote {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 25px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  position: relative;
  overflow: hidden;
}

.intro .founder-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-weight: bold;
  line-height: 1;
}

.intro .founder-quote .founder-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.intro .founder-quote blockquote {
  margin: 0;
}

.intro .founder-quote blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .intro .founder-quote blockquote p {
    font-size: 1.1rem;
  }
}

.intro .founder-quote blockquote cite {
  display: block;
  text-align: left;
}

.intro .founder-quote blockquote cite strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.intro .founder-quote blockquote cite span {
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .intro .founder-quote {
    text-align: center;
  }

  .intro .founder-quote .founder-img {
    margin-bottom: 2rem;
  }

  .intro .founder-quote blockquote cite {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .intro .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .intro .cta-section {
    justify-content: center;
  }

  .intro .cta-section .btn {
    flex: 1;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Featured Speakers Section
--------------------------------------------------------------*/
.featured-speakers .speaker-card {
  background: var(--surface-color);
  
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px 0 color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px 0 color-mix(in srgb, var(--default-color), transparent 80%);
}

.featured-speakers .speaker-card.featured {
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.featured-speakers .speaker-card.featured .speaker-image {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.featured-speakers .speaker-card.featured .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social a {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social a:hover {
  background: var(--heading-color);
  transform: translateY(-3px);
}

.featured-speakers .speaker-card.featured .speaker-image .speaker-social a i {
  font-size: 16px;
}

.featured-speakers .speaker-card.featured .speaker-content {
  padding: 30px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-company {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-session {
  margin-bottom: 25px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-session h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.featured-speakers .speaker-card.featured .speaker-content .speaker-session p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.featured-speakers .speaker-card.featured .speaker-content .btn-speaker {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.featured .speaker-content .btn-speaker:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-speakers .speaker-card.featured .speaker-image {
    height: 250px;
  }

  .featured-speakers .speaker-card.featured .speaker-content {
    padding: 20px;
  }

  .featured-speakers .speaker-card.featured .speaker-content .speaker-name {
    font-size: 20px;
  }
}

.featured-speakers .speaker-card.compact {
  text-align: center;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.compact .speaker-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.featured-speakers .speaker-card.compact .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.compact .speaker-image .speaker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--default-color), transparent 30%) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social {
  display: flex;
  gap: 10px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a {
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a i {
  font-size: 14px;
}

.featured-speakers .speaker-card.compact .speaker-image:hover .speaker-overlay {
  opacity: 1;
}

.featured-speakers .speaker-card.compact .speaker-image:hover .speaker-overlay .speaker-social {
  transform: translateY(0);
}

.featured-speakers .speaker-card.compact .speaker-image:hover img {
  transform: scale(1.05);
}

.featured-speakers .speaker-card.compact .speaker-content {
  padding: 25px 20px;
}

.featured-speakers .speaker-card.compact .speaker-content .speaker-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.featured-speakers .speaker-card.compact .speaker-content .speaker-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.featured-speakers .speaker-card.compact .speaker-content .speaker-company {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.featured-speakers .speaker-card.compact .speaker-content .speaker-topic {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 768px) {
  .featured-speakers .speaker-card.compact .speaker-image {
    height: 250px;
  }

  .featured-speakers .speaker-card.compact .speaker-content {
    padding: 20px 15px;
  }

  .featured-speakers .speaker-card.compact .speaker-content .speaker-name {
    font-size: 16px;
  }
}

.featured-speakers .speaker-quote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
}

.featured-speakers .speaker-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: var(--accent-color);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
}

.featured-speakers .speaker-quote blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
}

.featured-speakers .speaker-quote blockquote p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--default-color);
  font-style: italic;
  margin-bottom: 25px;
}

.featured-speakers .speaker-quote .quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.featured-speakers .speaker-quote .quote-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.featured-speakers .speaker-quote .quote-author .author-info {
  text-align: left;
}

.featured-speakers .speaker-quote .quote-author .author-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
}

.featured-speakers .speaker-quote .quote-author .author-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .featured-speakers .speaker-quote {
    padding: 30px 20px;
  }

  .featured-speakers .speaker-quote::before {
    font-size: 60px;
    top: -5px;
  }

  .featured-speakers .speaker-quote blockquote p {
    font-size: 16px;
  }

  .featured-speakers .speaker-quote .quote-author {
    flex-direction: column;
    text-align: center;
  }

  .featured-speakers .speaker-quote .quote-author .author-info {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.schedule .schedule-tabs .nav-pills .nav-item {
  margin: 0 8px;
}

.schedule .schedule-tabs .nav-pills .nav-item .nav-link {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.schedule .schedule-tabs .nav-pills .nav-item .nav-link:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.schedule .schedule-tabs .nav-pills .nav-item .nav-link.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.schedule .track-headers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.schedule .track-headers .track-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 28px;
  font-weight: 600;
  color: var(--contrast-color);
}

.schedule .track-headers .track-header i {
  margin-right: 8px;
  font-size: 18px;
}

.schedule .track-headers .track-header.development {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.schedule .track-headers .track-header.design {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.schedule .track-headers .track-header.business {
  background: linear-gradient(135deg, #059669, #0891b2);
}

@media (max-width: 768px) {
  .schedule .track-headers {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

.schedule .schedule-timeline .time-slot {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.schedule .schedule-timeline .time-slot .time-label {
  text-align: right;
  padding-top: 20px;
  position: sticky;
  top: 100px;
}

.schedule .schedule-timeline .time-slot .time-label .time {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.schedule .schedule-timeline .time-slot .time-label .duration {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 4px;
}

.schedule .schedule-timeline .time-slot .sessions-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.keynote {
  grid-column: 1/-1;
  border-left-color: #fbbf24;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, #fbbf24, transparent 95%));
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.keynote .session-type {
  color: #f59e0b;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.development {
  border-left-color: #4f46e5;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.development .session-type {
  color: #4f46e5;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.design {
  border-left-color: #ef4444;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.design .session-type {
  color: #ef4444;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.business {
  border-left-color: #059669;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.business .session-type {
  color: #059669;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.break {
  grid-column: 1/-1;
  border-left-color: #6b7280;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.break .session-type {
  color: #6b7280;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.break h4 {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.workshop {
  grid-column: 1/-1;
  border-left-color: #8b5cf6;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, #8b5cf6, transparent 95%));
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card.workshop .session-type {
  color: #8b5cf6;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-type {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-type i {
  margin-right: 6px;
  font-size: 14px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.4;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker .speaker-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker .speaker-details h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker .speaker-details span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 16px;
  line-height: 1.5;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .venue {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .venue:before {
  content: "\f3c5";
  font-family: "bootstrap-icons";
  margin-right: 4px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level.beginner {
  background: color-mix(in srgb, #10b981, transparent 85%);
  color: #059669;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level.intermediate {
  background: color-mix(in srgb, #f59e0b, transparent 85%);
  color: #d97706;
}

.schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level.advanced {
  background: color-mix(in srgb, #ef4444, transparent 85%);
  color: #dc2626;
}

.schedule .schedule-timeline .time-slot.break-slot .sessions-row {
  grid-template-columns: 1fr;
}

@media (max-width: 992px) {
  .schedule .schedule-timeline .time-slot .sessions-row {
    grid-template-columns: 1fr;
  }

  .schedule .schedule-timeline .time-slot .sessions-row .session-card.keynote,
  .schedule .schedule-timeline .time-slot .sessions-row .session-card.workshop {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .schedule .schedule-timeline .time-slot {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .schedule .schedule-timeline .time-slot .time-label {
    text-align: left;
  }

  .schedule .schedule-timeline .time-slot .time-label .time {
    font-size: 16px;
  }
}

.schedule .download-cta {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.schedule .download-cta h4 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.schedule .download-cta p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 24px;
}

.schedule .download-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.schedule .download-cta .cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.schedule .download-cta .cta-buttons .btn i {
  margin-right: 8px;
}

.schedule .download-cta .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.schedule .download-cta .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.schedule .download-cta .cta-buttons .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.schedule .download-cta .cta-buttons .btn.btn-outline-primary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/events/showcase-1.webp") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .display-4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.call-to-action .lead {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}

.call-to-action .stats-wrapper {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.call-to-action .stat-item {
  text-align: center;
  padding: 1rem 0;
}

.call-to-action .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.call-to-action .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.call-to-action .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.call-to-action .stat-item .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-to-action .stat-item:hover .stat-icon {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.call-to-action .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.call-to-action .cta-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.call-to-action .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.125rem;
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  margin-bottom: 2rem;
}

.call-to-action .cta-buttons .btn {
  border-radius: 50px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-width: 2px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-to-action .cta-buttons .btn.btn-outline-secondary {
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: transparent;
}

.call-to-action .cta-buttons .btn.btn-outline-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-to-action .security-note {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1rem;
}

.call-to-action .security-note small {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action .security-note small i {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .call-to-action .display-4 {
    font-size: 2rem;
  }

  .call-to-action .stats-wrapper {
    padding: 2rem 1rem;
  }

  .call-to-action .stat-item {
    margin-bottom: 2rem;
  }

  .call-to-action .stat-item .stat-number {
    font-size: 2rem;
  }

  .call-to-action .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .call-to-action .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 40px;
}

/* Force swiper height auto */
.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

/* Each slide */
.testimonials .testimonial-item {
  padding: 0;
  width: 100%;
  max-width: 360px;
  margin: auto;
  height: auto;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

/* Hover top bar animation */
.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

/* Header image */
.testimonials .testimonial-header {
  text-align: center;
  padding: 10px;
}

.testimonials .testimonial-header img {
  width: 100%;
  max-height: 360px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  transition: 0.3s;
}

/* Footer (département title) */
.testimonials .testimonial-footer {
  padding: 15px 20px 20px;
  text-align: center;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fourth-color);
  margin-bottom: 0;
}

/* Navigation */
.testimonials .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  margin: 0 ;
  background: var(--fourth-color);
  border-radius: 50%;
  color: #f1f1f1;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--first-color), var(--heading-color) 20%);
  color: #f1f1f1;
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}


/* Pagination */
.testimonials .swiper-pagination {
  position: static;
  margin-top: 25px;
}

.testimonials .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  transition: 0.3s;
}

.testimonials .swiper-pagination-bullet-active {
  transform: scale(1.3);
}

/* ============================================
   1200px (Laptops)
=============================================== */
@media (max-width: 1199px) {
  .testimonials .testimonial-footer h5 {
    font-size: 1.5rem;
  }
}

/* ============================================
   992px (Tablettes horizontales)
=============================================== */
@media (max-width: 991px) {
  .testimonials .testimonial-item {
    max-width: 330px;
  }
}

/* ============================================
   768px (Tablettes / mobiles larges)
=============================================== */
@media (max-width: 767px) {
  .testimonials .swiper-navigation {
    justify-content: center;
    margin-bottom: 10px;
  }

  .testimonials .testimonial-footer h5 {
    font-size: 1.3rem;
  }

  .testimonials .testimonial-header img {
    border-radius: 0 !important;
  }
}

/* ============================================
   575px (Téléphones)
=============================================== */
@media (max-width: 575px) {
  .testimonials .testimonial-item {
    max-width: 100%;
    border-radius: 0;
  }

  .testimonials .testimonial-header {
    padding: 0;
  }

  .testimonials .testimonial-header img {
    width: 100% !important;
    height: auto !important;
  }

  .testimonials .testimonial-footer h5 {
    font-size: 1.1rem;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about .content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
}

.about .content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about .content .quote-section {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  margin: 2rem 0;
}

.about .content .quote-section blockquote {
  margin: 0;
}

.about .content .quote-section blockquote p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .content .quote-section blockquote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.9rem;
}

.about .content .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about .content .cta-buttons .btn-primary,
.about .content .cta-buttons .btn-secondary {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.about .content .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .content .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.about .content .cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.about .content .cta-buttons .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about .stats-grid .stat-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .stats-grid .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .stats-grid .stat-card .stat-icon {
  margin-bottom: 1rem;
}

.about .stats-grid .stat-card .stat-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.about .stats-grid .stat-card .stat-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about .stats-grid .stat-card .stat-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.9rem;
}

.about .audience-section {
  text-align: center;
}

.about .audience-section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about .audience-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.1rem;
}

.about .audience-section .audience-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about .audience-section .audience-item:hover {
  background-color: var(--surface-color);
  transform: translateY(-5px);
}

.about .audience-section .audience-item:hover .audience-icon i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.about .audience-section .audience-item .audience-icon {
  margin-bottom: 1rem;
}

.about .audience-section .audience-item .audience-icon i {
  font-size: 2rem;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.about .audience-section .audience-item h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about .audience-section .audience-item p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .about .content {
    margin-bottom: 3rem;
  }

  .about .content .cta-buttons {
    justify-content: center;
  }

  .about .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about .content h3 {
    font-size: 1.8rem;
  }

  .about .content .quote-section {
    padding: 1.5rem;
  }

  .about .content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about .content .cta-buttons .btn-primary,
  .about .content .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .about .audience-section .audience-item {
    padding: 1rem 0.5rem;
  }

  .about .audience-section .audience-item .audience-icon i {
    font-size: 1.8rem;
  }

  .about .audience-section .audience-item h5 {
    font-size: 0.9rem;
  }

  .about .audience-section .audience-item p {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speakers .speakers-list .speaker-entry {
  margin-bottom: 2rem;
}

.speakers .speakers-list .speaker-profile {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  height: 100%;
}

.speakers .speakers-list .speaker-profile:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
  transform: translateY(-3px);
}

.speakers .speakers-list .speaker-profile:hover .speaker-photo img {
  transform: scale(1.05);
}

.speakers .speakers-list .speaker-meta {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.speakers .speakers-list .speaker-photo {
  flex-shrink: 0;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.speakers .speakers-list .speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.speakers .speakers-list .speaker-info {
  flex-grow: 1;
}

.speakers .speakers-list .speaker-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.speakers .speakers-list .speaker-info .speaker-position {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-color);
  margin-bottom: 3px;
}

.speakers .speakers-list .speaker-info .speaker-org {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.speakers .speakers-list .speaker-info .speaker-track {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 15%));
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 15px;
}

.speakers .speakers-list .speaker-details .speaker-topic {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  padding: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
}

.speakers .speakers-list .speaker-details .speaker-topic i {
  color: var(--accent-color);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.speakers .speakers-list .speaker-details .speaker-topic span {
  font-weight: 600;
  font-size: 14px;
  color: var(--heading-color);
  line-height: 1.4;
}

.speakers .speakers-list .speaker-details .speaker-summary {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.speakers .speakers-list .speaker-details .speaker-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.speakers .speakers-list .speaker-details .speaker-actions .profile-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.speakers .speakers-list .speaker-details .speaker-actions .profile-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateY(-2px);
}

.speakers .speakers-list .speaker-details .speaker-actions .speaker-social {
  display: flex;
  gap: 8px;
}

.speakers .speakers-list .speaker-details .speaker-actions .speaker-social .social-link {
  width: 32px;
  height: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.speakers .speakers-list .speaker-details .speaker-actions .speaker-social .social-link:hover {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .speakers .speakers-list .speaker-profile {
    padding: 20px;
  }

  .speakers .speakers-list .speaker-meta {
    gap: 15px;
  }

  .speakers .speakers-list .speaker-photo {
    width: 75px;
    height: 75px;
  }

  .speakers .speakers-list .speaker-info h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .speakers .speakers-list .speaker-entry {
    margin-bottom: 1.5rem;
  }

  .speakers .speakers-list .speaker-profile {
    padding: 18px;
  }

  .speakers .speakers-list .speaker-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .speakers .speakers-list .speaker-photo {
    width: 80px;
    height: 80px;
  }

  .speakers .speakers-list .speaker-details .speaker-actions {
    flex-direction: column;
    gap: 15px;
  }

  .speakers .speakers-list .speaker-details .speaker-actions .profile-btn {
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .speakers .speakers-list .speaker-profile {
    padding: 15px;
  }

  .speakers .speakers-list .speaker-info h4 {
    font-size: 17px;
  }

  .speakers .speakers-list .speaker-info .speaker-position {
    font-size: 14px;
  }

  .speakers .speakers-list .speaker-details .speaker-topic {
    padding: 10px;
  }

  .speakers .speakers-list .speaker-details .speaker-topic span {
    font-size: 13px;
  }

  .speakers .speakers-list .speaker-details .speaker-summary {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Speaker Details 2 Section
--------------------------------------------------------------*/
.speaker-details-2 .speaker-profile-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 2rem;
}

.speaker-details-2 .speaker-profile-card .profile-image-wrapper {
  position: relative;
}

.speaker-details-2 .speaker-profile-card .profile-image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .speaker-details-2 .speaker-profile-card .profile-image-wrapper img {
    height: 280px;
  }
}

.speaker-details-2 .speaker-profile-card .profile-image-wrapper .speaker-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.speaker-details-2 .speaker-profile-card .profile-image-wrapper .speaker-status .status-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.speaker-details-2 .speaker-profile-card .profile-image-wrapper .speaker-status .status-badge.keynote {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
}

.speaker-details-2 .speaker-profile-card .profile-content {
  padding: 2rem;
}

.speaker-details-2 .speaker-profile-card .profile-content .speaker-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.speaker-details-2 .speaker-profile-card .profile-content .speaker-title {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.speaker-details-2 .speaker-profile-card .profile-content .speaker-company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.speaker-details-2 .speaker-profile-card .profile-content .speaker-company i {
  color: var(--accent-color);
}

.speaker-details-2 .speaker-profile-card .profile-content .connection-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}

.speaker-details-2 .speaker-profile-card .profile-content .connection-stats .stat-item {
  text-align: center;
}

.speaker-details-2 .speaker-profile-card .profile-content .connection-stats .stat-item .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.2;
}

.speaker-details-2 .speaker-profile-card .profile-content .connection-stats .stat-item .stat-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 85%);
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn.linkedin:hover {
  border-color: #0077b5;
  color: #0077b5;
  background: color-mix(in srgb, #0077b5, transparent 95%);
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn.twitter:hover {
  border-color: #1da1f2;
  color: #1da1f2;
  background: color-mix(in srgb, #1da1f2, transparent 95%);
}

.speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn.website:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.speaker-details-2 .speaker-highlight {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.speaker-details-2 .speaker-highlight .quote-container {
  position: relative;
}

.speaker-details-2 .speaker-highlight .quote-container .quote-icon {
  position: absolute;
  top: -15px;
  left: -10px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-details-2 .speaker-highlight .quote-container .quote-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.speaker-details-2 .speaker-highlight .quote-container blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--heading-color);
  margin: 0;
  padding-left: 3rem;
}

@media (max-width: 768px) {
  .speaker-details-2 .speaker-highlight .quote-container blockquote {
    font-size: 1.1rem;
    padding-left: 2rem;
  }
}

.speaker-details-2 .speaker-biography,
.speaker-details-2 .session-schedule {
  margin-bottom: 2.5rem;
}

.speaker-details-2 .speaker-biography .section-header,
.speaker-details-2 .session-schedule .section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.speaker-details-2 .speaker-biography .section-header h3,
.speaker-details-2 .session-schedule .section-header h3 {
  font-size: 1.6rem;
  color: var(--heading-color);
  margin: 0;
  white-space: nowrap;
}

.speaker-details-2 .speaker-biography .section-header .header-line,
.speaker-details-2 .session-schedule .section-header .header-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.speaker-details-2 .speaker-biography .bio-content p,
.speaker-details-2 .session-schedule .bio-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.speaker-details-2 .speaker-biography .bio-content .expertise-areas,
.speaker-details-2 .session-schedule .bio-content .expertise-areas {
  margin-top: 2rem;
}

.speaker-details-2 .speaker-biography .bio-content .expertise-areas h4,
.speaker-details-2 .session-schedule .bio-content .expertise-areas h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.speaker-details-2 .speaker-biography .bio-content .expertise-areas .tags-list,
.speaker-details-2 .session-schedule .bio-content .expertise-areas .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.speaker-details-2 .speaker-biography .bio-content .expertise-areas .tags-list .expertise-tag,
.speaker-details-2 .session-schedule .bio-content .expertise-areas .tags-list .expertise-tag {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.speaker-details-2 .schedule-timeline {
  position: relative;
  padding-left: 2rem;
}

.speaker-details-2 .schedule-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.speaker-details-2 .schedule-timeline .timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.speaker-details-2 .schedule-timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.speaker-details-2 .schedule-timeline .timeline-item.featured .timeline-content {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.5rem;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-left: 8px;
  border: 3px solid var(--surface-color);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot.keynote {
  background: var(--accent-color);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot.workshop {
  background: #10b981;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot.panel {
  background: #8b5cf6;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag.keynote {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag.workshop {
  background: #10b981;
  color: white;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag.panel {
  background: #8b5cf6;
  color: white;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-name {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid {
    grid-template-columns: 1fr;
  }
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid .meta-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-summary {
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.speaker-details-2 .speaker-cta {
  padding: 2rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.speaker-details-2 .speaker-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .speaker-details-2 .speaker-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

.speaker-details-2 .speaker-cta .cta-buttons a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  justify-content: center;
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-secondary {
  background: var(--heading-color);
  color: var(--background-color);
  border: 2px solid var(--heading-color);
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-secondary:hover {
  background: transparent;
  color: var(--heading-color);
  transform: translateY(-2px);
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-outline {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.speaker-details-2 .speaker-cta .cta-buttons a.btn-outline:hover {
  background: var(--default-color);
  color: var(--background-color);
  border-color: var(--default-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Tickets Section
--------------------------------------------------------------*/
.tickets .ticket-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  height: 100%;
}

.tickets .ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tickets .ticket-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

.tickets .ticket-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.tickets .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tickets .ticket-header {
  text-align: center;
  margin-bottom: 30px;
}

.tickets .ticket-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.tickets .ticket-header .ticket-price {
  margin-bottom: 10px;
}

.tickets .ticket-header .ticket-price .currency {
  font-size: 20px;
  color: var(--accent-color);
  font-weight: 600;
  vertical-align: top;
}

.tickets .ticket-header .ticket-price .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.tickets .ticket-header .ticket-price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.tickets .ticket-header .ticket-price .original-price {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  margin-right: 10px;
}

.tickets .ticket-header .ticket-duration {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.tickets .ticket-body {
  margin-bottom: 30px;
}

.tickets .ticket-body .ticket-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tickets .ticket-body .ticket-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--default-color);
}

.tickets .ticket-body .ticket-features li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.tickets .ticket-body .ticket-features li:last-child {
  margin-bottom: 0;
}

.tickets .ticket-footer {
  text-align: center;
}

.tickets .ticket-footer .btn-ticket {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
  width: 100%;
  margin-bottom: 15px;
}

.tickets .ticket-footer .btn-ticket:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.tickets .ticket-footer .availability-info {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.tickets .ticket-info-bar {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.tickets .ticket-info-bar .countdown-info {
  margin-bottom: 30px;
}

.tickets .ticket-info-bar .countdown-info h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tickets .ticket-info-bar .countdown-info h4 i {
  color: var(--accent-color);
  margin-right: 10px;
}

.tickets .ticket-info-bar .countdown-info .countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.tickets .ticket-info-bar .countdown-info .countdown>div {
  background: var(--surface-color);
  padding: 20px 15px;
  border-radius: 10px;
  min-width: 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tickets .ticket-info-bar .countdown-info .countdown>div h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0 0 5px 0;
  line-height: 1;
}

.tickets .ticket-info-bar .countdown-info .countdown>div h4 {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tickets .ticket-info-bar .support-info p {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--default-color);
}

.tickets .ticket-info-bar .support-info .contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.tickets .ticket-info-bar .support-info .contact-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.tickets .ticket-info-bar .support-info .divider {
  margin: 0 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

@media (max-width: 768px) {
  .tickets .ticket-card {
    padding: 30px 20px;
  }

  .tickets .ticket-card.featured {
    transform: none;
  }

  .tickets .ticket-card.featured:hover {
    transform: translateY(-5px);
  }

  .tickets .ticket-header .ticket-price .amount {
    font-size: 36px;
  }

  .tickets .ticket-info-bar {
    padding: 30px 20px;
  }

  .tickets .ticket-info-bar .countdown {
    gap: 15px !important;
  }

  .tickets .ticket-info-bar .countdown>div {
    padding: 15px 10px;
    min-width: 60px;
  }

  .tickets .ticket-info-bar .countdown>div h3 {
    font-size: 24px;
  }

  .tickets .ticket-info-bar .countdown>div h4 {
    font-size: 12px;
  }

  .tickets .ticket-info-bar .support-info .divider {
    display: block;
    margin: 10px 0;
  }
}

/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
.buy-tickets {
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 5%);
}

.buy-tickets .ticket-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.buy-tickets .event-info {
  text-align: center;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  padding-bottom: 30px;
}

.buy-tickets .event-info h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}

.buy-tickets .event-info .event-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.buy-tickets .event-info .event-meta span {
  display: flex;
  align-items: center;
  color: var(--default-color);
  font-size: 14px;
}

.buy-tickets .event-info .event-meta span i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .buy-tickets .event-info .event-meta {
    flex-direction: column;
    gap: 15px;
  }
}

.buy-tickets .ticket-types {
  margin-bottom: 40px;
}

.buy-tickets .ticket-types h4 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 600;
}

.buy-tickets .ticket-types .ticket-option {
  margin-bottom: 20px;
}

.buy-tickets .ticket-types .ticket-option input[type=radio] {
  display: none;
}

.buy-tickets .ticket-types .ticket-option .ticket-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
}

.buy-tickets .ticket-types .ticket-option .ticket-label:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.buy-tickets .ticket-types .ticket-option input[type=radio]:checked+.ticket-label {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.buy-tickets .ticket-types .ticket-option .ticket-info {
  flex: 1;
}

.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-description {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 12px;
}

.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.buy-tickets .ticket-types .ticket-option .ticket-info .ticket-benefits span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 8px;
  border-radius: 4px;
}

.buy-tickets .ticket-types .ticket-option .ticket-price {
  text-align: right;
}

.buy-tickets .ticket-types .ticket-option .ticket-price .original-price {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.buy-tickets .ticket-types .ticket-option .ticket-price .current-price {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .buy-tickets .ticket-types .ticket-option .ticket-label {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .buy-tickets .ticket-types .ticket-option .ticket-benefits {
    justify-content: center;
  }
}

.buy-tickets .ticket-form .form-group {
  margin-bottom: 25px;
}

.buy-tickets .ticket-form .form-group label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

.buy-tickets .ticket-form .form-group input[type=text],
.buy-tickets .ticket-form .form-group input[type=email],
.buy-tickets .ticket-form .form-group input[type=tel],
.buy-tickets .ticket-form .form-group select,
.buy-tickets .ticket-form .form-group textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  transition: all 0.3s ease;
}

.buy-tickets .ticket-form .form-group input[type=text]:focus,
.buy-tickets .ticket-form .form-group input[type=email]:focus,
.buy-tickets .ticket-form .form-group input[type=tel]:focus,
.buy-tickets .ticket-form .form-group select:focus,
.buy-tickets .ticket-form .form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.buy-tickets .ticket-form .form-group input[type=text]::placeholder,
.buy-tickets .ticket-form .form-group input[type=email]::placeholder,
.buy-tickets .ticket-form .form-group input[type=tel]::placeholder,
.buy-tickets .ticket-form .form-group select::placeholder,
.buy-tickets .ticket-form .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.buy-tickets .ticket-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.buy-tickets .pricing-summary {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
}

.buy-tickets .pricing-summary h5 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.buy-tickets .pricing-summary .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--default-color);
}

.buy-tickets .pricing-summary .summary-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.buy-tickets .pricing-summary .summary-row.total .total-price {
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: 700;
}

.buy-tickets .pricing-summary .tax-note {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: center;
  margin-top: 15px;
  font-style: italic;
}

.buy-tickets .terms-checkbox,
.buy-tickets .newsletter-checkbox {
  margin-bottom: 20px;
}

.buy-tickets .terms-checkbox input[type=checkbox],
.buy-tickets .newsletter-checkbox input[type=checkbox] {
  margin-right: 10px;
}

.buy-tickets .terms-checkbox label,
.buy-tickets .newsletter-checkbox label {
  color: var(--default-color);
  font-size: 14px;
  cursor: pointer;
}

.buy-tickets .terms-checkbox label a,
.buy-tickets .newsletter-checkbox label a {
  color: var(--accent-color);
  text-decoration: none;
}

.buy-tickets .terms-checkbox label a:hover,
.buy-tickets .newsletter-checkbox label a:hover {
  text-decoration: underline;
}

.buy-tickets .form-submit {
  text-align: center;
  margin-top: 30px;
}

.buy-tickets .form-submit .btn-submit {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
}

.buy-tickets .form-submit .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.buy-tickets .form-submit .btn-submit:active {
  transform: translateY(0);
}

.buy-tickets .security-info {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 30px;
}

.buy-tickets .security-info .security-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.buy-tickets .security-info .security-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
}

.buy-tickets .security-info .security-badges .badge-item i {
  color: var(--accent-color);
  font-size: 18px;
}

.buy-tickets .security-info .payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.buy-tickets .security-info .payment-methods .payment-label {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}

.buy-tickets .security-info .payment-methods .payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.buy-tickets .security-info .payment-methods .payment-icons i {
  color: var(--accent-color);
  font-size: 24px;
}

.buy-tickets .security-info .payment-methods .payment-icons .payment-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
}

@media (max-width: 768px) {
  .buy-tickets .security-info .security-badges {
    flex-direction: column;
    gap: 15px;
  }

  .buy-tickets .security-info .payment-methods {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .buy-tickets .ticket-form-wrapper {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Venue 2 Section
--------------------------------------------------------------*/
.venue-2 .venue-content h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.venue-2 .venue-content .venue-address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-weight: 500;
}

.venue-2 .venue-content .venue-address i {
  font-size: 1.2rem;
}

.venue-2 .venue-content p {
  margin-bottom: 30px;
  line-height: 1.7;
}

.venue-2 .venue-image {
  position: relative;
}

.venue-2 .venue-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.venue-2 .venue-image .venue-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.venue-2 .venue-features {
  margin-bottom: 30px;
}

.venue-2 .venue-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.venue-2 .venue-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  width: 20px;
}

.venue-2 .venue-features .feature-item span {
  font-weight: 500;
}

.venue-2 .venue-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.venue-2 .venue-actions .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.venue-2 .venue-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.venue-2 .venue-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.venue-2 .venue-actions .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.venue-2 .venue-actions .btn.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.venue-2 .venue-map h4 {
  color: var(--heading-color);
  margin-bottom: 25px;
  text-align: center;
}

.venue-2 .venue-map .map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.venue-2 .venue-map .map-container iframe {
  width: 100%;
  height: 400px;
}

.venue-2 .travel-info {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--surface-color);
  border-radius: 15px;
  height: 100%;
  transition: transform 0.3s ease;
}

.venue-2 .travel-info:hover {
  transform: translateY(-5px);
}

.venue-2 .travel-info .travel-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-2 .travel-info .travel-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.venue-2 .travel-info h5 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.venue-2 .travel-info p {
  margin: 0;
  line-height: 1.6;
}

.venue-2 .accommodation-section h4 {
  color: var(--heading-color);
  margin-bottom: 30px;
  text-align: center;
}

.venue-2 .accommodation-section .hotel-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.venue-2 .accommodation-section .hotel-card:hover {
  transform: translateY(-5px);
}

.venue-2 .accommodation-section .hotel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.venue-2 .accommodation-section .hotel-card .hotel-info {
  padding: 20px;
}

.venue-2 .accommodation-section .hotel-card .hotel-info h6 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.venue-2 .accommodation-section .hotel-card .hotel-info .hotel-distance {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.venue-2 .accommodation-section .hotel-card .hotel-info .hotel-distance i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.venue-2 .accommodation-section .hotel-card .hotel-info .hotel-price {
  font-weight: 600;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .venue-2 .venue-actions {
    justify-content: center;
  }

  .venue-2 .venue-actions .btn {
    flex: 1;
    min-width: 150px;
  }

  .venue-2 .venue-map .map-container iframe {
    height: 300px;
  }

  .venue-2 .travel-info {
    margin-bottom: 30px;
  }

  .venue-2 .hotel-card {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
.sponsors .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.sponsors .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.sponsors .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .sponsors .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.sponsors .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* Mine */
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  
  justify-content: space-between;
}

.about-left {
  flex: 1;
  position: relative;
  /* border: 2px solid black; */
  height: 500px;
  /* max-width: 50%; */
}

.image-grid {
  display: grid;
  grid-template-columns: 120px 120px;
  grid-template-rows: 150px 120px;
  gap: 85px;
  /* border: #00ffe9 solid 2px; */
  /* justify-content: center;
  align-items: center; */
}

.img-box {
  overflow: hidden;
  
}

.square {
  width: 240px;
  height: 270px;
  border-radius: 20px;
  overflow: hidden;
}

.circle {
  width: 330px;
  height: 330px;
  border-radius: 10px;
  border: #00ffe9 solid 2px;
  margin:  90px;
  overflow: hidden;
}
.circles {
  width:330px;
  height: 330px;
  border-radius: 10px;
  border: #00ffe9 solid 2px;
margin-top: 90px;
  overflow: hidden;
}


.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 45%;
  left: 2%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-color: #ef3e24;
  border-radius: 50%;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.experience-badge .icon {
  font-size: 1.5rem;
}

.experience-badge .number {
  font-size: 2rem;
  margin: 5px 0;
}

.about-right {
  flex: 1;
  max-width: 45%;
}

.subtitle {
  color: #ef3e24;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.highlight {
  color: #ef3e24;
}

.description {
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.features h4 {
  color: #ef3e24;
  margin-bottom: 10px;
}

.features ul {
  list-style: none;
}

.features li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
}

.circle-progress {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 30px;
}

.circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

circle {
  fill: none;
  stroke-width: 10;
  stroke: #2c2c2c;
}

.progress {
  stroke: #ef3e24;
  stroke-dasharray: 283;
  stroke-dashoffset: 42; /* (100 - 85)% of 283 */
  transition: stroke-dashoffset 1s ease;
}

.percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: bold;
}

.circle-text h4 {
  color: #ef3e24;
  margin-bottom: 10px;
}

.circle-text p {
  font-size: 14px;
  line-height: 1.5;
}

/* bouto view all speakers */
.view-all{
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  border: none;
  border-radius: 35px;
  color: var(--contrast-color);
  padding: 7px;
  width: 200px;
  font-size: 22px;
  font-weight: 300px;
  font-family: var(--nav-font);
}

.view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: #f1f1f1;
}
.patterns{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}#hero {
  position: relative;
  overflow: hidden;
}

.growing-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 50%; /* largeur initiale */
  z-index: 3;
  transition: width 0.3s ease-out, bottom 0.3s ease-out;
  pointer-events: none;
}

.growing-image-wrapper img.growing-image {
  width: 100%;
  height: auto;
  display: block;
}
.hero-sticky-content {
  position: sticky;
  top: 100px; /* ou 0 selon ton design */
  z-index: 5; /* en dessous de l’image qui passera au-dessus */
  background: transparent;
}
-----------------------------------------------------------------------
.text-justify {
  text-align: justify;
  text-justify: inter-word;
  border: 4px solid #ef3e24;
}

.lead{
  font-size: 18px;
  font-family: barlow, sans-serif;
  color: #7c3aed;
}
.bg-blue{
  background: color-mix(in srgb, #0216c7 80%, transparent) 100% !important;
  color: #f1f1f1;
  font-family: barlow, sans-serif;
  font-size: 16px;
}

.sticky{
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.z-5{
  z-index: 5;
}

/* --- Section Bénéfices DevExpo --- */
#benefits {
  position: relative;
  color: #fff;
  padding: 80px 0;
}

#benefits .bg-overlay {
  background: radial-gradient(circle at top right, #0b132b 20%, #1f2b4d 100%);
  opacity: 0.9;
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Titre et sélecteur */
#benefits h2 {
  font-size: 2rem;
  font-weight: 700;
}
#benefits .select-year {
  background: rgba(255, 255, 255, 0.1);
  color: #000000;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  margin-left: 10px;
  font-size: 0.9rem;
}

/* Cartes */
#benefits .bg-blue {
  border: none;
  transition: all 0.3s ease;
} 
#benefits .bg-blue:hover {
  transform: translateY(-5px);
  
}
#benefits .card i {
  font-size: 2rem;
}
#benefits .bg-blue:hover .card i {
  color: blue;
}

/* Texte rose */
.text-pink {
  color: #ff00aa !important;
}

/* Cercle image */
.circle-wrapper {
  position: relative;
  width: 520px;
  height: 520px;
  overflow: visible;
}

/* Responsive */
@media (max-width: 991px) {
  #benefits .circle-wrapper {
    margin-top: 40px;
  }
}

.select-year {
    appearance: none;
    background: linear-gradient(135deg, #111927, #1e293b);
    color: #fff;
    border: 1px solid #ff00aa !important;
    border-radius: 12px;
    padding: 17px 45px 17px 16px;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    
  }

  .select-year:hover {
    background: linear-gradient(135deg, #1e293b, #312e81);
    box-shadow: 0 0 10px rgba(255, 0, 170, 0.3);
  }

  .select-year:focus {
    border-color: #ff00aa;
    box-shadow: 0 0 0 3px rgba(255, 0, 170, 0.3);
  }

  /* Flèche personnalisée */
  .select-year::after {
    content: "▼";
    font-size: 0.8rem;
    color: #ff00aa;
    position: absolute;
    right: 15px;
    pointer-events: none;
  }

  /* Ajuste pour les navigateurs Webkit */
  select.select-year::-ms-expand {
    display: none;
  }

  /* Responsive */
  @media (max-width: 576px) {
    .select-year {

      font-size: 0.95rem;
    }
  }

  /* My code */



#google_translate_element select {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

/* add calendar button header */

  .calendar-menu {
  position: relative;
  display: inline-block;
}

.calendar-dropdown {
  position: absolute;
  bottom: 100%; /* ✅ Le menu s'ouvre AU-DESSUS */
  left: 0;
  background: #0a0a13;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 0;
  margin-bottom: 5px; /* espace entre le bouton et le menu */
  min-width: 240px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1000;
  transform-origin: bottom center; /* pour l’animation */
}

.calendar-dropdown li {
  list-style: none;
}

.calendar-dropdown a {
  display: block;
  padding: 8px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}

.calendar-dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.calendar-dropdown.show {
  display: block;
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Swiper */

  #testimonials {
    padding: 50px 0;
  }

  .testimonial-item {
    
    border-radius: 12px;
    overflow: hidden;
   
    transition: transform 0.3s ease;
  }

  .testimonial-item:hover {
    transform: translateY(-5px);
  }

  .testimonial-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .testimonial-footer {
    padding: 15px;
    text-align: center;
  }

  .testimonial-footer h5 {
    font-weight: bold;
    margin: 0;
  }

  .swiper-button-next, .swiper-button-prev {
    color: #000;
    transition: color 0.3s;
  }

  .swiper-button-next:hover, .swiper-button-prev:hover {
    color: #007bff;
    background-color: #f1f1f1;
  }

  /* Aquoi s'attendre */

  /* 🧩 STYLES GÉNÉRAUX */
body, #sponsors {
  background: #0a0a13;
  font-family: "Poppins", sans-serif;
  color: #e6e6f0;
  letter-spacing: 0.3px;

  /* Police fluide */
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.7;
}

/* 🔥 TITRES PRINCIPAUX */
#sponsors h2, .text-gradient {
  background: linear-gradient(90deg, #f72585, #7209b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(247, 37, 133, 0.5);
}

#sponsors h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  /* text-align: center; */
  text-transform: uppercase;
}

/* 🔥 Sous-titres */
#sponsors h4 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 0 12px rgba(247, 37, 133, 0.3);
}

#sponsors h5 {
  font-size: clamp(1rem, 2.6vw, 1.3rem);
  font-weight: 600;
  text-transform: uppercase;
  color: #f72585;
  margin-top: 1rem;
}

/* 📝 PARAGRAPHES & LISTES */
#sponsors p, 
#sponsors ul li {
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  color: #d0cfe2;
  line-height: 1.8;
}

#sponsors strong { 
  color: #fff; 
  font-weight: 600; 
}

/* 📌 LISTES PERSONNALISÉES */
#sponsors ul { 
  margin: 1rem 0; 
  padding-left: 1.2rem; 
}

#sponsors ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .4rem;
  transition: 0.3s;
}

#sponsors ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #f72585;
  font-weight: bold;
}

#sponsors ul li:hover { 
  transform: translateX(5px); 
  color: #fff; 
}

/* 🧊 GLASS CARD */
.glass-card {
  background: rgba(20, 20, 40, 0.75);
  border-radius: 20px;

  /* Padding fluide */
  padding: clamp(1.5rem, 4vw, 3rem);

  backdrop-filter: blur(15px);
  box-shadow: 0 0 30px rgba(114, 9, 183, 0.25);
  transition: all 0.4s ease;
  animation: fadeIn 1.5s ease;
}

.glass-card:hover {
  box-shadow: 0 0 50px rgba(247, 37, 133, 0.4);
  transform: scale(1.02);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 🧠 ICONES */
#sponsors i {
  color: #f72585;
  margin-right: 8px;

  /* Icônes fluides */
  font-size: clamp(1rem, 2.2vw, 1.4rem);

  transition: 0.3s;
}

#sponsors h4:hover i { 
  transform: rotate(10deg) scale(1.2); 
}

/* 🎞️ CAROUSEL */
.carousel-item img { filter: brightness(85%); }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255,255,255,0.3);
  border-radius: 50%;
  padding: clamp(8px, 1.6vw, 12px);
  transition: 0.3s;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #f72585;
  box-shadow: 0 0 15px #f72585;
}
/* Design pour arranger les boutons des ancienne edition dev expo */

/* Style des boutons */
.year-btn {
  background: #111;
  color: #fff;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: clamp(12px, 2.5vw, 16px);
  font-weight: 600;
  border: 1px solid #333;
  transition: 0.3s;
}

/* Effet hover Desktop */
.year-btn:hover {
  background: #f72585;
  border-color: #f72585;
  box-shadow: 0 0 12px rgba(247, 37, 133, 0.5);
  transform: translateY(-2px);
}

/* Container responsive */
.edition-btn-group {
  flex-wrap: wrap;
  gap: 10px;
}

/* Mobile: les boutons s'étendent */
@media (max-width: 768px) {
  .year-btn {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    font-size: clamp(14px, 4vw, 18px);
  }
}

/* Couleur rose personnalisée */
.text-pink {
  color: #ff2fa7;
}

/* STYLE DU SELECT (reste comme avant) */
.select-year {
  border: 2px solid #ff2fa7;
  background: transparent;
  color: #ff2fa7;
  padding: 6px 14px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition: 0.25s ease;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='14' height='14' viewBox='0 0 20 20' fill='%23ff2fa7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7L10 12L15 7' stroke='%23ff2fa7' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
}

/* FOND DE LA LISTE DÉROULANTE */
.select-year option {
  background: #ffffff;
  color: #444;
  font-size: 16px;
  padding: 10px;
}

/* OPTION SURVOLÉE (hover) — effet rose chic */
.select-year option:hover {
  background: #ffe4f4 !important; /* rose pâle */
  color: #ff2fa7 !important;
}

/* OPTION SELECTIONNÉE */
.select-year option:checked {
  background: #ffd2ef !important;
  color: #ff0f8b !important;
}

/* STYLE GLOBAL DE LA “LISTE” (pour Chrome & Edge) */
select.select-year::-ms-expand {
  display: none;
}

/* STYLE DU MENU DÉROULANT (Webkit) */
select.select-year:focus option {
  border: none;
}

/* Pour rendre le dropdown plus beau sur chrome */
select.select-year {
  --webkit-tap-highlight-color: transparent;
}


/* -------------------------------------------------
   SECTION HERO + SPONSORS
---------------------------------------------------*/
.devexpo-hero {
  padding: 0;
}

.devexpo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 500px;
  padding: 3rem;
  gap: 2rem;
  position: relative;
}


/* -------------------------------------------------
   SLIDESHOW (DESKTOP & TABLET)
---------------------------------------------------*/
.devexpo-slideshow {
  position: relative;
  width: 100%;
  min-height: 450px;
  border-radius: 20px;
  overflow: hidden;
}

.devexpo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.devexpo-slide.active {
  opacity: 1;
}


/* -------------------------------------------------
   CARD BLANCHE (CONTENU)
---------------------------------------------------*/
.devexpo-card {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 450px;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.08);
}

.devexpo-eyebrow {
  color: #7A7AED;
  font-size: 0.95rem;
  font-weight: 500;
}

.devexpo-title {
  font-size: 25px;
  font-weight: 700;
  margin: 1rem 0;
}

.pink {
  color: #FF00C8;
}

.devexpo-text {
  color: #5A5A5A;
  margin-bottom: 1.8rem;
}

.devexpo-btn {
  font-size: 1.1rem;
  text-decoration: none;
  color: black;
  font-weight: 600;
  transition: 0.3s;
}



/* -------------------------------------------------
   RESPONSIVE TABLET
---------------------------------------------------*/
@media (max-width: 992px) {

  .devexpo-container {
    flex-direction: column;
    padding: 2rem;
  }

  .devexpo-slideshow {
    width: 100%;
    min-height: 380px;
  }

  .devexpo-card {
    position: absolute;
    left: 25px;
    right: 25px;
    transform: translateY(-50%);
    max-width: none;
    padding: 2rem;
  }
}


/* -------------------------------------------------
   MOBILE : la card reste visible, le slideshow disparaît
---------------------------------------------------*/
@media (max-width: 576px) {

  /* Le slideshow (image + slides) DISPARAÎT */
  .devexpo-slideshow {
    display: none !important;
  }

  /* La card devient un vrai bloc indépendant */
  .devexpo-card {
    position: relative;   /* enlève la superposition */
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;

    width: 100%;
    max-width: 100%;
    margin-top: 1rem;

    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.10);
  }

  .devexpo-title {
    font-size: 1.8rem;
  }
}
