.btn-title {
  font-size: 14px !important;
  font-weight: 700;
}
.font-smg {
  font-weight: 600;
}

/* Global CSS */
:root {
  --primary-color: rgb(65, 167, 55);
  --primary-color-opa: rgba(12, 193, 12, 0.3);
  --sub-primary-color: #dbffd3;
  --secondary-color: rgb(255, 204, 0);
  --tertiary-color: rgb(193, 0, 44);
  --accent-color: #f59e0b;
  --text-dark: rgb(1, 1, 1);
  --text-light: #e2dbdb;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --font-abpf: "Quicksand", sans-serif;
  --header-font: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;


}

* {
  scroll-behavior: smooth;
  
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  display: block;
  margin: 1rem auto;
}

/* Form Styles (Shared) */
.form-container {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.form-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.form-control {
  height: 3.2em;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.btn-submit {
  background: var(--primary-color);
  border: none;
  color: var(--bg-white);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  animation: slider 10s ease-in-out infinite;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@keyframes slider {
  0% {
    background-image: url(../images/background/bg_1.png);
  }
  50% {
    background-image: url(../images/background/bg2.png);
  }
  100% {
    background-image: url(../images/background/bg_3.png);
  }
}

.hero-content {
  position: relative;
  padding-top: 2.5em;
}

.hero-text {
  color: var(--bg-white);
}

.hero-title {
  color: var(--secondary-color);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  padding-bottom: 1em;
  
  /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);*/
}

.hero-subtitle {
  color: var(--bg-white);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Conference title*/
.conference-dates {
  background: linear-gradient(
    to right,
    rgba(255, 255, 0, 0.2),
    rgba(2, 68, 21, 0.2)
  );
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
  width: 70%;
  margin: 0 auto 2rem;
}

.conference-dates h3 {
  color: var(--bg-light);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.8rem;
  /*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);*/
}

.conference-dates p {
  color: var(--bg-light);
  margin: 0;
  font-size: 1.5rem;
  /*font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif*/
  /*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);*/
}

.conference-dates h5 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--bg-light);
  margin-top: 1rem;
  /*font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif*/

  /*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);*/
}

/* CTA Buttons */
.cta-buttons {
  gap: 1rem;
}

.btn-cta-primary {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-cta-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  color: var(--text-dark);
}

.btn-cta-tertiary {
  background: var(--bg-white);
  border: none;
  color: var(--primary-color);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-cta-tertiary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  color: black;
}

.btn-cta-secondary {
  background-color: transparent;
  backdrop-filter: blur(5px);
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .conference-dates {
    text-align: center;
    padding: 1rem;
    width: 90%;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}
s

/* About Section */
.about {
  background: var(--bg-light);
}

.about-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  height: 100%;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Specific list styling within about card */
.about-card ul {
  padding-left: 0; /* Remove default padding */
}

.about-card ul li {
  display: flex;
  align-items: flex-start; /* Align icon and text */
}

.about-card ul li i {
  margin-top: 0.25rem; /* Adjust icon vertical alignment */
}

/* Speakers Section */
.speaker-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%; /* Ensure cards in a row have same height */
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.speaker-image {
  height: 300px;
  display: flex;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

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

.speaker-info {
  padding: 1.5rem;
}

.speaker-name {
  font-size: 1.3rem;
  font-weight: 600;
}

.speaker-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 0.9rem; /* Slightly smaller title */
  font-weight: 500;
}

.speaker-info p {
  font-size: 0.95rem; /* Adjust paragraph size */
  margin-bottom: 0.75rem;
}

.speaker-info .text-muted {
  font-size: 0.85rem; /* Smaller location text */
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .conference-dates {
    text-align: center;
    padding: 1rem;
  }
}

.sponsors {
  /* Assuming this class exists on the parent section */
  background: var(--bg-light);
  /* Add padding if needed, e.g., padding: 5rem 0; */
}

.sponsor-logo {
  height: 120px; /* Maintain fixed height or adjust as needed */
  background: white;
  border-radius: 15px;
  display: flex; /* Use flexbox to center the image */
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden; /* Keep image within rounded corners */
}

.sponsor-logo:hover {
  transform: scale(1.05);
}

.sponsor-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: cover;
}

.sponsor-logo.small-logo {
  height: 80px;
  padding: 0.5rem;
}

.sponsors .card {
  height: 100%;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sponsors .card-body {
  display: flex;
  flex-direction: column;
}

.sponsors .card p {
  flex-grow: 1; /* Make text take available space */
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem; /* Example spacing */
}

.sponsors .card .d-flex.align-items-center {
  margin-top: auto; /* Push author info to bottom */
}

/* Gallery Section */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem; /* Add margin below the image container */
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  height: 200px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.video-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Style for the caption below gallery items */
.gallery .text-muted {
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
    width: 100%; /* Assure la pleine largeur */
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer p {
  color: #d1d5db; /* Lighter text for paragraphs */
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color);
}

.footer .list-unstyled li {
  margin-bottom: 0.5rem;
}

.footer .list-unstyled i {
  width: 20px; /* Align icons */
  text-align: center;
  color: var(--primary-color); /* Use accent color for icons */
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 40px; /* Vertically center icon */
  margin-right: 0.5rem;
  transition: all 0.3s ease;
  color: white; /* Ensure icon color is white */
}

.social-icons a:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.2) !important; /* Ensure hr is visible */
}

.footer .text-center p {
  font-size: 0.9rem;
}

.footer .text-center small {
  font-size: 0.8rem;
  color: #9ca3af; /* Even lighter text for small print */
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

.my_copyright a:first-child {
  color: rgb(65, 167, 55);
}

.my_copyright a:last-child {
  color: var(--accent-color);
}

.my-text-justify {
  text-align: justify;
  word-spacing: 0.1px;
  font-family: var(--font-abpf);
  font-size: 18px;
}

.my-text-tertiary {
  color: var(--tertiary-color);
  font-family: var(--font-abpf);
  font-size:16px;
}

.my-bg-tertiary {
  background-color: var(--tertiary-color);
}

.my-text-secondary {
  color: var(--secondary-color);
}

.my-bg-secondary {
  background-color: var(--secondary-color);
}

.my-text-primary {
  color: var(--primary-color);
  /*Madi*/
  font-family: var(--header-font);
}
.my-text-primaty2 {
  color: var(--accent-color);
}

.my-bg-primary {
  background-color: var(--primary-color);
}

.my-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  font-family: var(--header-font);
}

.my-section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  display: block;
  margin: 1rem auto;
}

/*inscription*/
.modal-content {
  border-radius: 15px;
}

.modal-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
}

.modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%); /* Make close button white */
}

.modal-title {
  font-weight: 600;
}

.modal-footer {
  border-top: none;
}

.my-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0;
}

.my-logo img {
  width: 18em;
  height: auto;
  object-fit: cover;
}

.about-img {
  margin-top: 5em;
  margin-bottom: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img img {
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  object-fit: cover;
}

.my_card {
  background-color: var(--bg-white);
  width: 100%;
  height: auto;
  border: solid 1px #9ca3af;
  padding: 20px 40px;
  border-radius: 20px;
  margin: 0;
}

.language-selector {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.language-label {
  padding: 4px 9px;
  color: var(--bg-white);
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: color 0.2s ease;
}

.language-label:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin-top: 6px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.language-option:hover {
  background-color: var(--sub-primary-color);
}

.language-option .abbr {
  font-weight: bold;
  color: var(--primary-color);
}

.center-item {
  display: flex;
  align-content: center;
  justify-content: center;
}

/* About section new*/

.about-cias {
  position: relative;
  width: 100%;
  height: 50vh;
  background: url(../images/background/bg_2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.about-cias-title {
  padding-top: 3em;
  color: var(--secondary-color);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  padding-bottom: 1em;
}

.about-cias-bg {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.cias-contain {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.cias-fist-pr {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.cias-pre-img {
  border-color: var(--sub-primary-color);
  border-width: 3px;
  border-style: solid;
  border-radius: 50%;
  width: 6em;
  height: auto;
  margin-right: 1em;
  object-fit: cover;
}

.cias-pre-word {
  /* font-style: italic; */
  font-family: var(--font-abpf);
  color: rgb(0, 0, 0);
  font-size: 18px;
  line-height: 23px;
  text-align: justify;
  word-spacing: 0.1px;
}

.cias-pre-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 0;
  font-family: var(--font-abpf);
}

.cias-pre-role {
  margin-bottom: 0.5em;
  color: rgb(0, 0, 0);
  font-size: 14px;
  line-height: 23px;
  font-family: var(--font-abpf);
}

.cias-second-contain {
  background-color: var(--sub-primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 0.5rem;
  margin-bottom: 2em;
  
}

/* ABPF Presentation */

.abpf-second-contain {
  display: flex;
  justify-content: center;
}

.abpf-first-contain {
  width: 100%;
}

.abpf-image {
  border-radius: 0.5rem;
  width: 80%;
  height: 90%;
  object-fit: cover;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.countdown-container2{
  background: transparent;
  color: var(--primary-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.countdown-container {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: white;
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.countdown-boxes {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.countdown-btn-boxes {
  gap: 3rem;
  width: 51%;
  margin-left: auto;
  margin-right: auto;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem;
  min-width: 80px;
}

.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.countdown-label {
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--text-dark);
  font-weight: bold;
}

.countdown-btn {
  background: var(--bg-white);
  border: none;
  color: var(--text-dark);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: none;
  transition: all 0.6s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.countdown-btn:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  color: var(--bg-white);
}

.countdown-submission-btn {
  width: 100%;
  background: var(--bg-white);
  border: none;
  color: var(--tertiary-color);
  padding: 0.7rem 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: none;
  transition: all 0.6s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.countdown-submission-btn:hover {
  background: var(--tertiary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  color: var(--bg-white);
}

/* section reviewer */
.reviewer-contain {
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border: solid 1px rgb(229 231 235);
  border-radius: 0.5em;
  padding: 2rem;
  max-width: 56rem;
  margin-right: auto;
  margin-left: auto;
}

.reviewer-text {
  line-height: 23px;
  font-size: 14px;
}

.reviewer-important-msg {
  background-color: rgb(254 252 232);
  padding: 0.5rem;
  border-style: solid;
  border-color: var(--secondary-color);
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-left-width: 4px;
}

.flex-shrink-0 {
  margin-right: 10px;
}

.reviewer-important-contain {
  display: flex;
}

.reviewer-attention-icon {
  color: var(--secondary-color);
}

.reviewer-attention-text {
  color: rgb(161 98 7);
}

.btn-cta-reviwer {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-cta-reviwer:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  color: var(--text-dark);
}

.reviewer-second-contain {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.reviewer-second-contain img {
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section Tarifs */
#tarifs {
  padding: 80px 0;
  background-color: var(--bg-white);
  color: white;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  color: #333;
  height: 44em;
}

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

.pricing-card .card-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin: -2rem -2rem 2rem -2rem;
  text-align: center;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.pricing-card .description {
  color: #666;
  margin-bottom: 1.5rem;
}

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

.pricing-card .features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

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

.pricing-card .features i {
  color: #28a745;
  margin-right: 0.5rem;
}

.btn-pricing {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-pricing:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  transform: translateY(-2px);
  color: white;
} 
 

/* Host country */
.host-country-firt-contain {
  width: 60%;
}

.host-country-img-contain {
  aspect-ratio: 16 / 9;
  margin-bottom: 1.5rem;
}

.host-country-img {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
}

.host-country-info-contain {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.host-country-info-item {
  display: flex;
  align-items: flex-start;
}

.host-country-second-contain {
  width: 40%;
}

.host-country-hotel-contain {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  background-color: var(--bg-white);
  border: solid 1px rgb(229 231 235);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.host-country-hotel-item-b {
  display: flex;
  align-items: flex-start;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid rgb(229 231 235);
  border-top: none;
  padding: 10px;
  transition: all 0.5s;
}

.host-country-hotel-item-b:hover {
  background-color: var(--bg-light);
}

.host-country-hotel-item {
  display: flex;
  align-items: flex-start;
  padding: 10px;
  transition: all 0.5s;
}

.host-country-hotel-item:hover {
  background-color: var(--bg-light);
}

.host-country-hotel-item-img {
  max-width: 100%;
  width: 5rem;
  height: 4rem;
  margin-right: 0.8rem;
  border-radius: 0.4rem;
  object-fit: cover;
}

.host-country-advice-contain {
  background-color: var(--sub-primary-color);
  border: 1px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.host-country-advice-item {
  display: flex;
  align-items: flex-start;
}

.host-country-advice-icon {
  margin-top: 0.3em;
  margin-right: 0.5rem;
}

/* themes section */
.themes-contain {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.themes-items-contain {
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  border: 1px solid rgb(229 231 235);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: all 0.5s;
}

.themes-items-contain:hover {
  border-color: var(--primary-color);
}

.main-theme-contain {
  background-color: var(--sub-primary-color);
  margin-top: 4rem;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--primary-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.main-theme-item {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
}


/* other code  */
.my-spaceur {
  margin-top: 4em;
  margin-bottom: 4em;
}

.my-text-black {
  color: var(--text-dark);
}
.contain {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

section > .contain {
  padding-right: 120px;
  padding-left: 120px;
}

.normal-size {
  line-height: 23px;
  font-size: 14px;
}

.bg-light {
  background-color: var(--bg-light);
}

.no-margin {
  margin: 0;
}

.margin-right {
  margin-right: 0.7em;
}

.my-text-white {
  color: var(--bg-white);
}

.my-align-center {
  margin-top: auto;
  margin-bottom: auto;
}

.action {
  border: 1px solid rgb(229 231 235) !important;
  border-radius: 0.375rem;
  transition: all 0.5s ease;
}

.action:hover {
  border-color: var(--primary-color) !important;
}

.full-height {
  height: 100% !important;
}

.icon-big {
  font-size: 2.5rem;
}

.my-bg-black {
  background-color: var(--text-dark);
}

.my-border-primary {
  border: 1px solid var(--primary-color) !important;
}

.my-border-secondary {
  border: 1px solid var(--secondary-color) !important;
}

.my-border-tertiary {
  border: 1px solid var(--tertiary-color) !important;
}

.my-border-black {
  border: 1px solid var(--text-dark) !important;
}

/* Responsives - Pages about */

@media (max-width: 640px) {
  .about-cias-container {
    width: 640px;
  }

  .cias-fist-pr {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .about-cias-container {
    width: 768px;
  }

  .countdown-boxes {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .countdown-box {
    min-width: 70px;
    padding: 0.8rem;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  section .themes-contain {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  section > .contain {
    padding-right: 7px;
    padding-left: 7px;
  }
}

@media (min-width: 768px) {
  .cias-first-contain {
    width: 70%;
  }

  .cias-second-contain {
    width: 40%;
  }

  .reviewer-second-contain {
    width: 40%;
  }
}

@media (max-width: 1023px) {
  .about-cias-container {
    width: 1024px;
  }

  .cias-first-contain {
    width: 100%;
  }

  .cias-second-contain {
    width: 100%;
  }

  .abpf-first-contain {
    width: 100%;
  }

  .abpf-second-contain {
    width: 100%;
  }

  .abpf-image {
    width: 100%;
  }

  .host-country-firt-contain {
    width: 100%;
  }

  .cias-contain {
    flex-direction: column;
  }

  .reviewer-second-contain {
    width: 100%;
  }

  .host-country-info-contain {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .host-country-second-contain {
    width: 100%;
  }

  .themes-contain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  .contain {
    max-width: 1320px;
  }
}

@media (max-width: 1279px) {
  .about-cias-container {
    width: 1280px;
  }
}

@media (max-width: 1400px) {
  .countdown-btn {
    width: 100%;
  }
}

/* ===== CARTES D'INTERVENANTS (CÉRÉMONIE D'OUVERTURE) ===== */

.intervenant-card {
  border-radius: 0.5rem;
  border: 1px solid rgb(229 231 235);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  background: white;
  overflow: hidden;
}

.intervenant-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.panneliste-hover:hover {
  background-color: var(--bg-white);
}

.intervenant-name {
  font-size: var(--font-size-name);
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.intervenant-title {
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.intervenant-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.intervenant-description {
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0;
}

.intervenant-description span {
  font-size: 12px;
  margin-top: 1em;
}

/* ===== CARTES DE SESSIONS PLÉNIÈRES ===== */

.intervenant-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--sub-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 1rem;
}

.session-description {
  font-size: var(--font-size-description);
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ===== ANIMATIONS FADE-IN ===== */
.fade-in-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

/* Délais d'animation pour un effet en cascade */
.fade-in-card:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in-card:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in-card:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in-card:nth-child(4) {
  animation-delay: 0.4s;
}
.fade-in-card:nth-child(5) {
  animation-delay: 0.5s;
}
.fade-in-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablettes */
@media (max-width: 991.98px) {
  .subsection-title {
    font-size: 1.1rem;
  }

  .intervenant-card .card-body {
    padding: 1.25rem;
  }
}

/* Mobiles */
@media (max-width: 767.98px) {
  .subsection-title {
    font-size: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }

  .intervenant-card .card-body {
    padding: 1rem;
  }

  .card-body {
    padding: 1rem;
  }
}

/* Très petits écrans */
@media (max-width: 575.98px) {
  .intervenant-name {
    font-size: 1rem;
  }

  .intervenant-description,
  .session-description {
    font-size: 0.85rem;
  }
}

/* login page */

/* Container principal */

.mybody-style {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background: var(--bg-light);
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1000px;
  margin: 2rem auto;
}

.illustration-section {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.illustration-content {
  text-align: center;
  z-index: 2;
  padding: 2rem;
}

.illustration-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.illustration-subtitle {
  font-size: 1rem;
  color: var(--bg-white);
  line-height: 1.6;
}

/* Éléments décoratifs */
.decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.decoration-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
}

.decoration-2 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: -75px;
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.login-subtitle {
  color: gray;
  font-size: 1rem;
}

/* Formulaire */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
  background: var(--bg-white);
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  z-index: 3;
}

.form-control-icon {
  padding-left: 3rem;
}

/* Bouton principal */
.btn-login {
  background-color: var(--primary-color);
  border: none;
  border-radius: 12px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--bg-white);
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

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

/* Lien mot de passe oublié */
.forgot-password {
  text-align: center;
  margin-top: 1.5rem;
}

.forgot-password a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-password a:hover {
  color: var(--tertiary-color);
}

/* Loading spinner */
.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

/* Responsive */
@media (max-width: 768px) {
  .illustration-section {
    display: none;
  }

  .form-section {
    padding: 2rem 1.5rem;
  }

  .login-title {
    font-size: 1.5rem;
  }

  .container-fluid {
    padding: 1em;
  }
}

@media (max-width: 576px) {
  .form-section {
    padding: 1.5rem 1rem;
  }
}

/* Animations */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Security badge */
.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.875rem;
  color: gray;
}

.security-badge i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}



#submission-countdown-timer{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#submission-countdown-timer > *:first-child {
  margin-top: 0 !important;
}

/* Supprimer l’espace entre #about et #tarifs */
#about {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#tarifs {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Supprimer les marges/paddings des éléments internes */
#about > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#tarifs > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Optionnel : gérer les classes internes problématiques */
#about .my-spaceur,
#tarifs .mb-5 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  
}


#submission-countdown-timer{
  background-color:var(--primary-color-opa);
}


#about .container{
  padding-top:60px;
}

