:root {
  /* Border Colors */
  --tt-border-white: var(--tt-white);
  --tt-border-white-rgb: var(--tt-white-rgb);
  --tt-border-disabled: var(--tt-neutral-25);
  --tt-border-disabled-rgb: var(--tt-neutral-25-rgb);
  --tt-border-normal: var(--tt-neutral-50);
  --tt-border-normal-rgb: var(--tt-neutral-50-rgb);
  --tt-border-hover: var(--tt-neutral-100);
  --tt-border-hover-rgb: var(--tt-neutral-100-rgb);
  --tt-border-pressed: var(--tt-neutral-200);
  --tt-border-pressed-rgb: var(--tt-neutral-200-rgb);
  /* Primary Color */
  --tt-primary-50: #4caf50;
  --tt-primary-100: #298F50;
  --tt-primary-200: #1e5438;
  --tt-primary-300: #0d3b3b;
  --tt-primary-400: #0a2e2e;
  /* Secondary Color */
  --tt-secondary-0: #FFF9F0;
  --tt-secondary-25: #FFF3E0;
  --tt-secondary-50: #FFD28F;
  --tt-secondary-100: #FFA31A;
  --tt-secondary-200: #EB8D00;
  --tt-secondary-300: #B86E00;
  --tt-secondary-400: #804C00;
  --tt-secondary-500: #472B00;
  /* Header Colors */
  --tt-header-secondary-100: #FFA31A;
  --tt-header-secondary-300: #B86E00;
  --tt-header-primary-500: #4A2A7D;
  /* Transition */
  --tt-transition-base: all .35s;
  
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
/*----------------------------------------*/
/*   Padding Size
/*----------------------------------------*/
.padd-100 {
  padding: 100px 0;
}
.padd-80 {
  padding: 80px 0;
}
.padd-60 {
  padding: 60px 0;
}
.padd-50 {
  padding: 50px 0;
}
.padd-40 {
  padding: 40px 0;
}
.padd-30 {
  padding: 30px 0;
}
.padd-20 {
  padding: 20px 0;
}
.padd-10 {
  padding: 10px 0;
}
.padd-botm {
  padding-bottom: 100px !important;
}
.padd-botm-150 {
  padding-bottom: 150px !important;
}
.padd-rt-lft-15 {
  padding: 0 15px;
}
.padd-btm-15 {
  padding-bottom: 15px;
}
/* Background */
.white-bg{
  background-color: #fff;
}
.violet-bg{
  background-color: #480689;
}

/* Attention animation */
@keyframes attention-1 {
  0%   { transform: translate(0, 0); }
  10%  { transform: translateY(-1px); }   /* up */
  20%  { transform: translateY(1px); }    /* down */
  30%  { transform: translateY(-1px); }   /* up */
  40%  { transform: translateY(1px); }    /* down */
  10%  { transform: translateX(1px); }    /* right */
  60%  { transform: translateX(-1px); }   /* left */
  70%  { transform: translateX(1px); }    /* right */
  80%  { transform: translateX(-1px); }   /* left */
  100% { transform: translate(0, 0); }     /* return to position */
}
.btn.btn_outline-animation {
  transition: opacity 0.5s ease;
  animation: attention;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  position: relative;
  overflow: hidden;
}
.btn.btn_outline-animation:hover {
  animation-play-state: paused;
}
/* Animated wave on button */
.btn.btn_outline-animation::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.50),
    transparent
  );
  animation: wave-move 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes wave-move {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/*=========================================== Start header ===========================================*/
/* ========================
   NAVIGATION
======================== */
.navbar {
  padding: 15px 80px;
  transition: var(--transition-smooth);
}
.navbar.scrolled {
  padding: 10px 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #0b2c24 0%, #154633 100%);
  backdrop-filter: blur(6.5px);
}
.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--tt-primary-50), var(--tt-primary-100-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  transition: var(--transition-bounce);
}
.logo-icon:hover {
  transform: rotate(360deg) scale(1.1);
}
.brand-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-primary);
}
.brand-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.nav-link {
  padding: 10px 10px;
  margin: 0 4px;
  transition: var(--transition-smooth);
  position: relative;
  color: #FFF !important;
  text-align: justify;
  font-family: "Hacen Maghreb Bd";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.nav-link:hover {
  color: var(--tt-primary-50) !important;
}
.nav-cta {
  display: flex;
  gap: 10px;
  margin-right: 20px;
}
.nav-cta .btn-white{
  border: 0;
  background: #fff0;
  color: #fff;
}
.nav-cta .btn-white:hover{
  border: 0;
  color: var(--tt-primary-100) !important;
}
.navbar-nav{
  margin: auto;
}
.btn-primary-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 8px 24px;
  border-radius: 25px;
  font-weight: 700;
  transition: var(--transition-smooth);
  text-decoration: none;
  font-size: 14px;
}
.btn-primary-custom:hover {
  background: var(--white);
  color: var(--tt-primary-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}
.btn-success-custom {
  background: linear-gradient(135deg, var(--tt-primary-50), var(--tt-primary-100-light));
  color: var(--white);
  padding: 8px 24px;
  border-radius: 25px;
  font-weight: 700;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none;
  font-size: 14px;
}
.btn-success-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, var(--tt-primary-100-light), var(--tt-primary-50));
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler{
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}
/* ========================
   HERO SECTION
======================== */
.hero-section {
  background: #0B2C24;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}
.hero-section .bg-svgs{
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-section .bg-svgs .hero-bg-svg{
  position: absolute;
  z-index: 1;
}
.hero-section .bg-svgs .bg-svg-1{
    bottom: -10%;
    right: 0;
}
.hero-section .bg-svgs .bg-svg-2{
  top: 0;
  left: 0;
}
.hero-section .bg-svgs .bg-svg-3{
  bottom: 50%;
  left: 0;
}
.hero-section .container{
  position: relative;
  z-index: 2;
}
/* Animated Background Circles */
.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.05), transparent);
  animation: float 20s infinite ease-in-out;
}
.hero-section::before {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}
.hero-section::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 0;
}
.hero-tag {
  display: inline-flex;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
  background: rgba(35, 119, 95, 0.14);
  border: 1px solid rgba(76, 175, 80, 0.3);
  animation: slideInRight 0.8s ease-out;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.hero-tag .stat-indicator {
  width: 10px;
  height: 10px;
}
.hero-title {
  color: #fff;
  text-align: right;
  font-size: 39px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
  margin-bottom: 10px;
  animation: slideInRight 0.8s ease-out 0.2s both;
}
.hero-title span{
  color: #B9DEC5;
}
.hero-description {
color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  line-height: 1.8;
  animation: slideInRight 0.8s ease-out 0.4s both;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.hero-features {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  --cols: 2;
  --gap: 20px;
  gap: var(--gap);
  row-gap: 10px;
  flex-direction: row;
  align-content: flex-start;
  animation: slideInRight 0.8s ease-out 0.6s both;
}
.feature-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}
.feature-item i {
  color: var(--tt-primary-50);
  margin-left: 6px;
  font-size: 20px;
}
.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--tt-primary-50), var(--tt-primary-100-light));
  color: var(--white);
  padding: 16px 48px;
  border-radius: 35px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
  animation: slideInRight 0.8s ease-out 0.8s both;
  border: none;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, var(--tt-primary-100-light), var(--tt-primary-50));
}
/* ========================
   TARGET VISUALIZATION
======================== */
.target-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-right: auto;
}
.target-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  animation: fadeInScale 1s ease-out;
}
.target-circle {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(76, 175, 80, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
}
.target-outer {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 60%, rgba(76, 175, 80, 0.05) 100%);
  animation-delay: 0s;
}
.target-mid {
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, transparent 60%, rgba(76, 175, 80, 0.08) 100%);
  animation-delay: 0.5s;
}
.target-inner {
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.15), transparent);
  animation-delay: 1s;
}
.target-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--tt-primary-50), var(--tt-primary-100-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 10px 40px rgba(76, 175, 80, 0.5);
  animation: glow 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 10px 40px rgba(76, 175, 80, 0.5); }
    50% { box-shadow: 0 10px 60px rgba(76, 175, 80, 0.8); }
}
/* Arrow */
.arrow-wrapper {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%) rotate(-45deg);
  animation: arrowFly 2s ease-out;
}
.arrow-shaft {
  width: 160px;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--orange-accent));
  border-radius: 3px;
}
.arrow-head {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid var(--orange-accent);
}

@keyframes arrowFly {
  0% { transform: translateY(-50%) rotate(-45deg) translateX(-200px); opacity: 0; }
  100% { transform: translateY(-50%) rotate(-45deg) translateX(0); opacity: 1; }
}

/* Stat Badges */
.stat-badge {
  position: absolute;
  padding: 8px 20px;
  transition: var(--transition-smooth);
  border-radius: 13px;
  border: 2px dashed rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.02);
  color: #CFF7D0;
  backdrop-filter: blur(6.5px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
}
.stat-badge:hover {
    transform: translateY(-2px);
}
.stat-1 { 
  top: 5%;
  right: -100px; 
  animation: bounce 7s infinite;
}
.stat-2 { 
  top: 50%;
  right: -150px;
  animation: bounce 5s infinite;
}
.stat-3 { 
  bottom: 15%;
  right: -160px;
  animation: bounce 10s infinite;
}
.stat-value {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 7px;
  background: rgba(95, 206, 108, 0.07);
  padding: 3px 13px;
  direction: ltr;
}
.stat-label {
   font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.stat-indicator {
    width: 8px;
    height: 8px;
    background: var(--tt-primary-50);
    border-radius: 50%;
    animation: blink 2s infinite;
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 9;
}
.mouse {
  width: 25px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}
.wheel {
  width: 3px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}
.scroll-indicator:hover .mouse{
  border: 1px solid rgb(255, 255, 255);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}
/* ========================
   ABOUT SECTION
======================== */
.about-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--light-cream) 100%);
}
.section-header {
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  color: var(--tt-primary-100);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 5px;
  position: relative;
}
.section-title {
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  color: var(--tt-text-loud);
}
.section-description {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.80);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
.div-cards-list{
  border-radius: 30px;
  background: #EFF2F1;
  padding: 40px;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  --cols: 2;
  --gap: 40px;
  gap: var(--gap);
  row-gap: 10px;
  flex-direction: row;
  align-content: flex-start;
}
.div-cards__item{
  padding: 28px 35px 28px 35px;
  border-radius: 30px;
  background: #FFF;
  position: relative;
  flex: 0 0 calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
}
.div-cards__icon {
  background: #EFF2F0;
  display: inline-flex;
  padding: 23px;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 25%;
}
.div-cards__icon .item-icon{
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.right-icon.div-cards__item{
  padding-right: 130px;
}
.left-icon.div-cards__item{
  padding-left: 130px;
}
.right-icon .div-cards__icon{
    right: -40px;
}
.div-cards__icon::before,
.div-cards__icon::after
{
  content: "";
  position: absolute;
  width: 35px;
  height: 41px;
  background-repeat: no-repeat;
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35 38'><path d='M0 25.5C32.317 28.2367 34.3825 4.75965 34.4962 0.617936C34.4986 0.216186 34.5 0 34.5 0C34.5 0 34.5071 0.219496 34.4962 0.617936C34.4723 4.60788 34.3486 26.9006 34.5 37.5H0V25.5Z'/></svg>") no-repeat center;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35 38'><path d='M0 25.5C32.317 28.2367 34.3825 4.75965 34.4962 0.617936C34.4986 0.216186 34.5 0 34.5 0C34.5 0 34.5071 0.219496 34.4962 0.617936C34.4723 4.60788 34.3486 26.9006 34.5 37.5H0V25.5Z'/></svg>") no-repeat center;
  background-color: #EFF2F0;
  background-size: contain;
}
.right-icon .div-cards__icon::before,
.right-icon .div-cards__icon::after{
    right: 39px;
}
.right-icon .div-cards__icon::before{
    top: -26px;
}
.right-icon .div-cards__icon::after{
    bottom: -26px;
    transform: scaleY(-1);
}
.left-icon .div-cards__icon{
    left: -40px;
}
.left-icon .div-cards__icon::before,
.left-icon .div-cards__icon::after{
    left: 39px;
    transform: scaleX(-1);
}
.left-icon .div-cards__icon::before{
    top: -26px;
}
.left-icon .div-cards__icon::after{
    bottom: -26px;
    transform: scale3d(-1, -1, -1);
}
.div-cards__icon .item-icon svg{
  fill:#3A966A;
}
.about-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  height: 100%;
  border: 1px solid rgba(45, 122, 79, 0.1);
}
.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.div-cards__item-details h3{
  color: var(--tt-text-loud);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  border-right: 4px solid #21A625;
  padding-right: 10px;
}
.item-details__text{
  padding-right: 20px;
}
.item-details__text p{
  color: var(--tt-text-loud);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
    margin-bottom: 3px;
}
.item-details__text .details-div-cards-list{
  margin-top: 15px;
}
.item-details__text .details-div-cards-list p i {
  color: var(--tt-text-muted);
  margin-left: 8px;
  font-size: 20px;
  margin-top: 3px;
}
/* ========================
  Services SECTION
======================== */
.services-section {
  background: #F3F7F5;
}
.services-desc {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.8;
}
.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px 20px;
  transition: all 0.35s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 7px 10px rgb(0 0 0 / 6%);
}
.service-highlight {
  border: 2px solid #4caf50;
}
.card-badge {
  margin-bottom: 10px;
}
.service-card h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  color: var(--tt-text-loud);
}
.service-card p {
  font-size: 14px;
  color: var(--tt-text-muted);
  line-height: 20px;
  margin: 0;
}
/* ========================
  Registration SECTION
======================== */
.registration-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.registration-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: blur(105px);
  background: linear-gradient(95deg, rgba(33, 166, 37, 0.4) 7.09%, rgba(96, 238, 249, 0.4) 82.49%);
  width: 70%;
  margin: auto;
  height: 40%;
  margin-top: 10%;
}
.container {
  position: relative;
  z-index: 2;
}
.section-tag {
  color: #2d7a4f;
  font-weight: 500;
  font-size: 16px;
}
.section-title {
  font-size: 25px;
  font-weight: 600;
  margin: 3px 0 10px 0;
}
.section-desc {
  color: #6c757d;
  font-size: 16px;
}
.reg-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  transition: .4s ease;
}
.reg-card h4{
  font-size: 18px;
   color: var(--tt-text-loud);
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 5px;
}
.reg-card p{
  font-size: 13px;
  color: var(--tt-text-muted);
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.reg-card:hover {
  transform: translateY(-8px);
}
.reg-card.active {
  border: 2px solid #4caf50;
}
.reg-card.disabled {
  opacity: .6;
}
.reg-status {
  display:inline-block;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:700;
  margin-bottom:16px;
}
.open {
  background: #e6f4ed;
  color: #2d7a4f;
}
.upcoming {
  background: #eaf3ff;
  color: #2563eb;
}
.closed {
  background: #fdecec;
  color: #d32f2f;
}
.reg-dates {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--tt-border-normal);
  padding-bottom: 20px;
}
.reg-dates .reg-date {
  display: flex;
  justify-content: flex-start;
  font-size: 13px;
  flex-direction: column;
  align-items: flex-start;
}
.reg-dates .reg-date h5{
  color: var(--tt-text-normal);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: normal;
  margin-bottom: 4px;
}
.reg-dates .reg-date h4{
  color: var(--tt-text-loud);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: normal;
}
.reg-actions {
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.reg-actions .btn{
  position: relative;
}
.reg-actions .btn:not(:first-child)::before{
  content: "";
  position: absolute;
  top: 10%;
  right: -15px;
  width: 1px;
  height: 80%;
  background-color: var(--tt-border-normal);
}
.reg-actions .btn:last-child{
  flex: 2;
}
/* ========================
  targets SECTION
======================== */
.section-description.text-right{
  margin-right: 0;
}
.targets-section{
  background: #212B26;
  position: relative;
  overflow: hidden;
}
.targets-section::before{
  content: "";
  background-image: url(../images/sec_bg_cercl.svg);
  background-size: 100%;
  position: absolute;
  right: -230px;
  bottom: -90px;
  width: 450px;
  height: 570px;
  background-repeat: no-repeat;
}
.trgt-bg{
  background: linear-gradient(95deg, rgba(33, 166, 37, 0.40) 7.09%, rgba(96, 238, 249, 0.40) 82.49%);
  filter: blur(105px);
  width: 550px;
  height: 330px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.target-cards{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.target-card{
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(35, 119, 95, 0.07);
  backdrop-filter: blur(4px);
  padding: 20px;
  flex: 1 0 0;
}
.target-card::before{
  content:"";
  position:absolute;
  top:50%;
  right:-30px;
  width:10px;
  height:10px;
  background:#3bbf6b;
  border-radius:50%;
  transform:translateY(-50%);
  box-shadow:0 0 0 6px rgba(59,191,107,.15);
    animation: blink 2s infinite;
}
.target-card h5{
  font-size: 18px;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
.target-card p{
  font-size: 14px;
  color: #fff;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  text-align: right;
  margin: 0;
  opacity: .8;
}
@media (max-width: 992px){
  .target-card::before{display:none;}
}
/* ========================
  journey SECTION
======================== */
.journey-section{
  background: #F3F7F5;
}
.journey-steps{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  --cols: 5;
  --gap: 20px;
  gap: var(--gap);
}
.step-card{
  flex: 0 0 calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #F1F1F1;
  background: #FFF;
  position: relative;
}
.step-card:not(:first-child)::before{
  content: "";
  position: absolute;
  left: 95%;
  top: 36px;
  height: 2px;
  width: 35px;
  background: linear-gradient(90deg, #21a62500 0%, #21a62585 73.08%);
  z-index: 2;
}
.journey-title small{
  color:#2e7d32;
  font-weight:600;
}
.step-card h4{
  font-size: 18px;
  color: var(--tt-text-loud);
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
.step-card p{
  font-size: 13px;
  color: var(--tt-text-loud);
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-align: right;
  margin: 0;
}
.steps{
  position:relative;
  margin-top:60px;
}
.steps::before{
  content:"";
  position:absolute;
  top:50%;
  right:0;
  left:0;
  height:2px;
  background:#dfe5e2;
  z-index:0;
}
.step-number{
  width:36px;
  height:36px;
  border-radius:50%;
  border: 1px solid #F1F1F1;
  background: #F3F7F5;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin-bottom: 10px;
}
/* ========================
  FaQs SECTION
======================== */
.accordion-item{
  border-radius: 12px;
  background: rgba(245, 247, 249, 0.80);
}
.accordion-item .accordion-button {
  background: rgba(245, 247, 249, 0.80);
}
.accordion-item:has(.accordion-collapse.show) .accordion-header .accordion-button {
  color: var(--tt-primary-100);
  background-color: #fff0;
}
.accordion-item .accordion-body {
  padding-top: 0;
}
/* ========================
  Partners SECTION
======================== */
.partners-section{
  background: #F3F7F5;
}
.partner-cards{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  --cols: 5;
  --gap: 20px;
  gap: var(--gap);
  margin-top: 15px;
}
.partner-cards .partner-card{ 
  flex: 0 0 calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
  border-radius: 6px;
  background: #FFF;
  padding: 18px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
}
.partner-cards .partner-card img{
  width: 140px;
  height: 28px;
  object-fit: scale-down;
}
/* ========================
  Partners SECTION
======================== */
.cta-section{
  background: linear-gradient(135deg, #298861, #1b481d);
  color:#fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before{
  content: "";
  background-image: url(../images/sec_bg_cercl.svg);
  background-size: 100%;
  position: absolute;
  right: -230px;
  bottom: -90px;
  width: 460px;
  height: 310px;
  background-repeat: no-repeat;
}
/* ========================
  Footer
======================== */
.footer-section{
  background: linear-gradient(0deg, #133523 0%, #133523 100%), linear-gradient(0deg, #102F27 0%, #102F27 100%), #1D2B1E;
  padding: 50px 0 20px;
}
.footer-title{
  font-size: 18px;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 10px;
}
.footer-brand{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
.footer-brand p{
  font-size: 16px;
  line-height: 25px;
  color: #bcd5c7;
  font-style: normal;
  font-weight: 400;
}
.footer-links,
.footer-info{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li,
.footer-info li{
  margin-bottom: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  padding-right: 10px;
}
.footer-links a{
  color: rgba(255, 255, 255, 0.85);
  text-decoration:none;
}
.footer-links a:hover {
  color: #3bbf6b
}
.footer-brand h5 {
  font-weight: 700;
  margin-top: 15px
}
.footer-bottom{
  margin-top: 30px;
  padding: 20px 0 10px;
  border-top:1px solid rgba(235, 235, 235, 0.13);
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color: #ffffff;
}
@media(max-width:768px){
  .footer-bottom{flex-direction:column;gap:10px;text-align:center}
}
/* ========================
   ANIMATIONS
======================== */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Modal */
.lg-modal .modal-dialog {
  max-width: 900px;
}
.modal .close-x {
  position: absolute;
  left: 12px;
  top: 10px;
  background: rgba(255, 255, 255, 0.30);
  color: #9a979c;
  border: 1px solid #E7EBF2;
  box-shadow: 0 1px 2px 0 rgba(84, 84, 89, 0.03);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 99;
}
.modal-content{
  padding: 10px 20px 20px;
}
.modal__sec-head{
  border-radius: 10px;
  background: linear-gradient(135deg, #276149, #2B3A35);
  padding: 20px 20px;
}
.modal__sec-head h4{
  font-size: 20px;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.modal__sec-head p{
  font-size: 13px;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 20px
}
.modal__sec-head-ctg .ctg-reg-dates{
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0;
  font-size: 13px;
  gap: 50px;
}
.modal__sec-head-ctg .ctg-reg-dates .reg-date {
  display: flex;
  justify-content: flex-start;
  font-size: 13px;
  flex-direction: column;
  align-items: flex-start;
}
.modal__sec-head-ctg .ctg-reg-dates .reg-date h5 {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: normal;
  margin-bottom: 4px;
  opacity: 0.8;
}
.modal__sec-head-ctg .ctg-reg-dates .reg-date h4 {
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: normal;
}
.modal__sec-head-ctg{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-top: 1px solid #efeff014;
  flex-wrap: wrap;
  gap: 15px;
}
.modal-body-sec{
  padding: 20px;
}
.reg-info-title{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.modal-body-sec .reg-info-des-box h6{
  font-size: 14px;
  color: var(--tt-primary-100);
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  flex: none;
  margin: 0;
}
.modal-body-sec .reg-info-title .divider{
  width: 100%;
  height: 1px;
  display: block;
  background: #EFEFF0;
}
.reg-info-des-box ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  position: relative;
}
.reg-info-des-box ul li p{
  color: var(--tt-text-loud);
  text-align: right;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  position: relative;
  margin: 0;
}
.reg-info-des-box ul li p i {
  color: var(--tt-primary-100);
  font-size: 19px;
  font-weight: normal;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-left: 5px;
}