  :root {
      /* --primary: #0a66c2;
             --secondary: #ff6b00;
              --accent: #00c4cc;
             */
      --primary: #ff6e00;

      --primary-dark: #084b8a;
      --secondary: #0a66c2;
      --accent: #ffab00;
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
      --light-gray: #e9ecef;
      --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
      --radius: 16px;
  }

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

  body {
      font-family: 'Poppins', sans-serif;
      background-color: #ffffff;
      color: var(--dark);
      overflow-x: hidden;
      line-height: 1.6;
      position: relative;
  }

  body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 10% 20%, rgba(232, 245, 255, 0.7) 0%, rgba(255, 255, 255, 0) 50%);
      pointer-events: none;
      z-index: -1;
  }

  /* Loader */
  .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.8s ease, visibility 0.8s ease;
  }

  .loader-logo {
      width: 120px;
      height: 120px;
      position: relative;
      margin-bottom: 2rem;
  }

  .loader-logo svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      animation: rotate 3s linear infinite;
  }

  .loader-bar {
      width: 300px;
      height: 6px;
      background: var(--light-gray);
      border-radius: 3px;
      overflow: hidden;
      position: relative;
  }

  .loader-progress {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0%;
      background: var(--primary);
      border-radius: 3px;
      transition: width 0.4s ease;
  }

  .loader.hidden {
      opacity: 0;
      visibility: hidden;
  }

  /* Header */
  header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1.2rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transform: translateY(0);
      transition: var(--transition);
  }

  header.scrolled {
      padding: 0.8rem 5%;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }

  .logo {
      display: flex;
      align-items: center;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
  }

  .logo span {
      color: var(--secondary);
  }

  .logo i {
      margin-right: 10px;
      font-size: 2rem;
  }

  .nav-links {
      display: flex;
      gap: 2rem;
  }

  .nav-links a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      font-size: 1.1rem;
      position: relative;
      padding: 0.5rem 0;
      transition: var(--transition);
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--primary);
      border-radius: 3px;
      transition: var(--transition);
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
      width: 100%;
  }

  .nav-links a:hover {
      color: var(--primary);
  }

  .hamburger {
      display: none;
      cursor: pointer;
      z-index: 1001;
  }

  .hamburger div {
      width: 25px;
      height: 3px;
      background-color: var(--dark);
      margin: 5px;
      transition: var(--transition);
  }

  /* Hero Section */
  .hero {

    margin-top: 50px;

      height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 0 5%;
      background: linear-gradient(135deg, rgba(10, 102, 194, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-content {
      max-width: 650px;
      z-index: 2;
      transform: translateY(20px);
      opacity: 0;
  }

  .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      font-family: 'Montserrat', sans-serif;
      color: var(--dark);
  }

  .hero h1 span {
      color: var(--primary);
      position: relative;
  }

  .hero h1 span::after {
      content: '';
      position: absolute;
      bottom: 10px;
      left: 0;
      width: 100%;
      height: 15px;
      background: rgba(10, 102, 194, 0.15);
      z-index: -1;
  }

  .hero p {
      font-size: 1.2rem;
      margin-bottom: 2.5rem;
      color: var(--gray);
  }

  .hero-buttons {
      display: flex;
      gap: 1.5rem;
  }

  .btn {
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: var(--transition);
      box-shadow: var(--shadow);
      transform: translateY(0);
      position: relative;
      overflow: hidden;
      z-index: 1;
  }

  .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transition: var(--transition);
      z-index: -1;
  }

  .btn:hover::before {
      width: 100%;
  }

  .btn:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
  }

  .btn-primary {
      background: var(--primary);
      color: white;
  }

  .btn-secondary {
      background: white;
      color: var(--primary);
      border: 2px solid var(--primary);
  }

  .hero-badges {
      position: absolute;
      bottom: 50px;
      right: 50px;
      display: flex;
      gap: 1.5rem;
      z-index: 2;
  }

  .badge {
      background: white;
      padding: 1.2rem 1.8rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 15px;
      transform: translateY(50px);
      opacity: 0;
      transition: var(--transition);
  }

  .badge:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
  }

  .badge i {
      font-size: 2rem;
      color: var(--primary);
  }

  .badge-content h3 {
      font-size: 1.1rem;
      margin-bottom: 0.3rem;
  }

  .badge-content p {
      font-size: 0.9rem;
      color: var(--gray);
      margin: 0;
  }

  .hero-image {
      position: absolute;
      top: 50%;
      right: 5%;
      transform: translateY(-50%);
      width: 45%;
      height: 70%;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      perspective: 1000px;
  }

  .hero-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(10, 102, 194, 0.2) 0%, rgba(0, 196, 204, 0.15) 100%);
      z-index: 1;
  }

  .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
  }

  .hero-image:hover img {
      transform: scale(1.05);
  }

  /* Floating Elements */
  .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
  }

  .floating-element {
      position: absolute;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0.3;
      filter: blur(2px);
  }

  /* Carousel Section */
  .carousel-section {
      padding: 6rem 5%;
      background: linear-gradient(to bottom, #ffffff 0%, #f8fafd 100%);
      position: relative;
      overflow: hidden;
  }

  .section-title {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
  }

  .section-title h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--dark);
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 1rem;
  }

  .section-title p {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 600px;
      margin: 0 auto;
  }

  .swiper {
      width: 100%;
      height: 500px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
  }

  .swiper-slide {
      position: relative;
      overflow: hidden;
  }

  .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
  }

  .swiper-slide:hover img {
      transform: scale(1.05);
  }

  .swiper-content {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 3rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
      color: white;
      transform: translateY(20px);
      opacity: 0;
      transition: var(--transition);
  }

  .swiper-slide-active .swiper-content {
      transform: translateY(0);
      opacity: 1;
  }

  .swiper-content h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
  }

  .swiper-content p {
      max-width: 600px;
      font-size: 1.1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
      color: white;
      background: rgba(255, 255, 255, 0.2);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      backdrop-filter: blur(10px);
      transition: var(--transition);
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
      background: var(--primary);
  }

  .swiper-pagination-bullet {
      background: white;
      opacity: 0.5;
      width: 12px;
      height: 12px;
      transition: var(--transition);
  }

  .swiper-pagination-bullet-active {
      background: var(--secondary);
      opacity: 1;
      transform: scale(1.3);
  }

  /* Cards Section */
  .cards-section {
      padding: 6rem 5%;
      position: relative;
  }

  .cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
  }

  .card {
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      transform-style: preserve-3d;
      perspective: 1000px;
      position: relative;
      transform: translateY(30px);
      opacity: 0;
  }

  .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--primary);
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
  }

  .card:hover {
      transform: translateY(-10px) rotateY(5deg);
      box-shadow: var(--shadow-hover);
  }

  .card:hover::before {
      transform: scaleX(1);
  }

  .card-icon {
      height: 200px;
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(135deg, rgba(10, 102, 194, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  }

  .card-icon i {
      font-size: 4rem;
      color: var(--primary);
      transition: var(--transition);
  }

  .card:hover .card-icon i {
      transform: scale(1.1) rotate(5deg);
      color: var(--secondary);
  }

  .card-content {
      padding: 2.5rem;
  }

  .card h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      font-family: 'Montserrat', sans-serif;
  }

  .card p {
      color: var(--gray);
      margin-bottom: 1.5rem;
  }

  .card .btn {
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
  }

  /* Profile Modal */
  .profile-modal {
      margin: 0;
      /* on supprime la marge qui rendait le scroll inutile */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;

      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10000;
      transition: opacity 0.6s ease, visibility 0.6s ease;

      overflow-y: auto;
      /* ✅ permet le scroll si le contenu dépasse */
      padding: 40px 20px;
      /* ✅ un peu d'espace autour du contenu */
      box-sizing: border-box;
  }


  .profile-modal.hidden {
      opacity: 0;
      visibility: hidden;
  }

  .modal-content {
      background: white;
      border-radius: var(--radius);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
      padding: 3rem;
      max-width: 700px;
      width: 90%;
      text-align: center;
      position: relative;
      transform: scale(0.9);
      opacity: 0;
      transition: var(--transition);
      margin-top: 150px;

  }

  .modal-content.active {
      transform: scale(1);
      opacity: 1;
  }

  .modal-content h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: var(--dark);
  }

  .modal-content p {
      color: var(--gray);
      margin-bottom: 2.5rem;
      font-size: 1.1rem;
  }

  .profile-options {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
  }

  .profile-option {
      background: var(--light);
      border-radius: var(--radius);
      padding: 2rem 1.5rem;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
  }

  .profile-option::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background: rgba(10, 102, 194, 0.05);
      transition: var(--transition);
      z-index: 0;
  }

  .profile-option:hover::before {
      height: 100%;
  }

  .profile-option.active {
      border-color: var(--primary);
      background: rgba(10, 102, 194, 0.05);
      transform: translateY(-5px);
      box-shadow: var(--shadow);
  }

  .profile-option i {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      transition: var(--transition);
  }

  .profile-option.active i {
      color: var(--secondary);
      transform: scale(1.1);
  }

  .profile-option h3 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 1;
  }

  .profile-option p {
      font-size: 0.9rem;
      margin: 0;
      position: relative;
      z-index: 1;
  }

  .modal-btn {
      padding: 1rem 3rem;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: var(--shadow);
  }

  .modal-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
  }

  /* Footer */
  footer {
      background: linear-gradient(to bottom, #4b4b4a 0%, #232528 100%);
      color: white;
      padding: 5rem 5% 2rem;
      position: relative;
      overflow: hidden;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto 3rem;
  }

  .footer-column h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.8rem;
  }

  .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--accent);
      border-radius: 3px;
  }

  .footer-column p,
  .footer-column a {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 0.8rem;
      display: block;
      text-decoration: none;
      transition: var(--transition);
  }

  .footer-column a:hover {
      color: white;
      transform: translateX(5px);
  }

  .contact-info {
      margin-top: 1.5rem;
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 1rem;
  }

  .contact-item i {
      color: var(--accent);
      font-size: 1.2rem;
      margin-top: 3px;
  }

  .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
  }

  .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      font-size: 1.2rem;
      transition: var(--transition);
  }

  .social-links a:hover {
      background: var(--primary);
      transform: translateY(-5px);
  }

  .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      max-width: 1200px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.5);
  }

  /* Animations */
  @keyframes rotate {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  @keyframes float {
      0% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-20px);
      }

      100% {
          transform: translateY(0px);
      }
  }

  /* Responsive */
  @media (max-width: 992px) {
      .hero h1 {
          font-size: 3rem;
      }

      .hero-image {
          width: 50%;
      }
  }

  @media (max-width: 768px) {
      .nav-links {
          position: fixed;
          top: 0;
          right: 0;
          height: 100vh;
          width: 70%;
          background: white;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          transform: translateX(100%);
          transition: var(--transition);
          box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
      }

      .nav-links.active {
          transform: translateX(0);
      }

      .hamburger {
          display: block;
      }

      .hamburger.active div:nth-child(1) {
          transform: rotate(-45deg) translate(-5px, 6px);
      }

      .hamburger.active div:nth-child(2) {
          opacity: 0;
      }

      .hamburger.active div:nth-child(3) {
          transform: rotate(45deg) translate(-5px, -6px);
      }

      .hero {
          flex-direction: column;
          justify-content: center;
          text-align: center;
          padding-top: 80px;
          height: auto;
          padding-bottom: 50px;
      }

      .hero-content {
          max-width: 100%;
          margin-bottom: 3rem;
      }

      .hero-buttons {
          justify-content: center;
      }

      .hero-image {
          position: relative;
          width: 100%;
          height: 40%;
          right: auto;
          transform: none;
          margin-top: 2rem;
      }

      .hero-badges {
          position: relative;
          bottom: auto;
          right: auto;
          justify-content: center;
          width: 100%;
          margin-top: 2rem;
      }

      .badge {
          transform: none;
          opacity: 1;
      }

      .modal-content {
          margin-top: 270px;
      }
  }

  @media (max-width: 576px) {
      .hero h1 {
          font-size: 2.3rem;
      }

      .hero p {
          font-size: 1rem;
      }

       .hero {
        margin-top:100px;
       }

      .hero-buttons {
          flex-direction: column;
          align-items: center;
      }

      .hero-badges {
          flex-direction: column;
      }

      .section-title h2 {
          font-size: 2rem;
      }

      .swiper {
          height: 400px;
      }

      .modal-content {
          margin-top: 500px;
      }
  }



  .hidden {
      display: none !important;
  }



  .dynamic-form input {
      padding: 15px 30px;
      gap: 10px;
      margin-bottom: 15px;
      border: --primary solid 1px;
      border-radius: 8px;
  }




  /* logo */


  .logo {
      display: flex;
      align-items: center;
      justify-content: center;
      /* padding: 10px; */
      max-height: 50px;
      /* Ajuste selon ta navbar */
  }

  .logo img {
      height: 100%;
      max-height: 60px;
      /* Limite la hauteur du logo */
      width: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
      border-radius: 8px;
      /* Optionnel : si tu veux des coins arrondis */
  }

  /* Effet au survol */
  .logo img:hover {
      transform: scale(1.05);
  }





  .floating-register-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #ff6e00;
      color: white;
      border: none;
      padding: 15px 20px;
      border-radius: 50px;
      font-size: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      z-index: 1000;
      transition: background-color 0.3s;
  }

  .floating-register-btn:hover {
      background-color: #e55d00;
  }













.profile-sidebar {
  position: fixed;
  top: 100px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.profile-card {
  background: var(--primary);
  width: 60px;
  height: 80px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: width 0.3s ease;
  overflow: hidden;
  position: relative;
  color: white;
}

.profile-card:hover {
  width: 200px;
  justify-content: flex-start;
  padding-left: 10px;
}

.profile-card span {
  opacity: 0;
  margin-left: 10px;
  white-space: nowrap;
  transition: opacity 0.3s;
  font-weight: bold;
}

.profile-card:hover span {
  opacity: 1;
}

.popup-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.hidden {
  display: none;
}




.profile-sidebar {
  position: fixed;
  top: 100px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
.profile-card {
  background: var(--primary);
  width: 60px;
  height: 80px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Aligner les enfants à gauche */
  cursor: pointer;
  overflow: hidden;
  position: relative;
  color: white;
  transition: all 0.3s ease;
  padding-left: 12px; /* pour que l’icône ne touche pas le bord */
  flex-direction: row; /* Alignement horizontal */
}

.profile-card i {
  font-size: 20px;
  margin-right: 0;
  flex-shrink: 0;
  display: inline-block;
}


/* Texte masqué de base */
.profile-card span {
  opacity: 0;
  margin-left: 10px;
  white-space: nowrap;
  transition: opacity 0.3s;
  font-weight: bold;
}

/* Texte visible au survol */
.profile-card:hover {
  width: 200px;
  justify-content: flex-start;
}

.profile-card:hover span {
  opacity: 1;
}
















.welcome-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
}

.welcome-content {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  text-align: left;
  animation: fadeIn 0.4s ease;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.welcome-content h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.welcome-content ul {
  padding-left: 20px;
  margin: 15px 0;
}

.welcome-content ul li {
  margin-bottom: 8px;
}

.welcome-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.welcome-content button:hover {
  background: #004080;
}

.close-welcome {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: gray;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}




