.textPrimary {
    color: #353535;
  }

.move-up-figure {
  position: relative;
  margin: -20rem auto 2rem;
  max-width: 600px !important;
  width: 100%;
  height: auto;
  z-index: 10;
  display: block;
}

.move-figure {
  max-width: 600px !important;
  width: 100%;
  margin: 0 auto;
  height: auto;
  z-index: 10;
  display: block;
}

header.scrolled {
  background-color: rgba(0, 36, 129, .9);
  color: white;
}


.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-column {
  flex-direction: column;
}
.flex-column-reverse {
  flex-direction: column-reverse;
}
.d-flex {display: flex;}
.d-none {display: none;}
.d-block {display: block;}

.katilimFormTitle {
  text-align: center;
}
.katilimFormDesciption {
  text-align: center;
}

@media screen and (min-width: 640px) {
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-sm-column {
    flex-direction: column;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse;
  }
  .d-sm-flex {display: flex;}
  .d-sm-none {display: none;}
  .d-sm-block {display: block;}
}

@media screen and (min-width: 768px) {
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-md-column {
    flex-direction: column;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse;
  }
  .d-md-flex {display: flex;}
  .d-md-none {display: none;}
  .d-md-block {display: block;}
}

@media screen and (min-width: 1024px) {
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse;
  }
  .d-lg-flex {display: flex;}
  .d-lg-none {display: none;}
  .d-lg-block {display: block;}

  .katilimFormTitle {
    text-align: start;
  }
  .katilimFormDesciption {
    text-align: start;
  }
}

@media screen and (min-width: 1280px) {
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xl-column {
    flex-direction: column;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse;
  }
  .d-xl-flex {display: flex;}
  .d-xl-none {display: none;}
  .d-xl-block {display: block;}
}

@media screen and (min-width: 1536px) {
  .flex-2xl-row {
    flex-direction: row;
  }
  .flex-2xl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-2xl-column {
    flex-direction: column;
  }
  .flex-2xl-column-reverse {
    flex-direction: column-reverse;
  }
  .d-2xl-flex {display: flex;}
  .d-2xl-none {display: none;}
  .d-2xl-block {display: block;}
}


/* Grid container */
.grid-container {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Grid row */
.grid-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-right: -15px;
  margin-left: -15px;
}

/* Grid columns */
.grid-column {
  flex: 1;
  padding: 15px;
  box-sizing: border-box;
}

/* Default column width (100%) */
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* Breakpoints */
/* sm: 640px */
@media (min-width: 640px) {
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* md: 768px */
@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* xl: 1280px */
@media (min-width: 1280px) {
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* 2xl: 1536px */
@media (min-width: 1536px) {
  .col-2xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-2xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-2xl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-2xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}


/* Margin (m-) */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }

/* Margin - Top (mt-) */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* Margin - Bottom (mb-) */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

/* Margin - Start (ms-) */
.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-5 { margin-left: 3rem !important; }

/* Margin - End (me-) */
.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }

/* Margin - Horizontal (mx-) */
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.mx-5 { margin-left: 3rem !important; margin-right: 3rem !important; }

/* Margin - Vertical (my-) */
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

/* Padding (p-) */
.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

/* Padding - Top (pt-) */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

/* Padding - Bottom (pb-) */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

/* Padding - Start (ps-) */
.ps-0 { padding-left: 0 !important; }
.ps-1 { padding-left: 0.25rem !important; }
.ps-2 { padding-left: 0.5rem !important; }
.ps-3 { padding-left: 1rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.ps-5 { padding-left: 3rem !important; }

/* Padding - End (pe-) */
.pe-0 { padding-right: 0 !important; }
.pe-1 { padding-right: 0.25rem !important; }
.pe-2 { padding-right: 0.5rem !important; }
.pe-3 { padding-right: 1rem !important; }
.pe-4 { padding-right: 1.5rem !important; }
.pe-5 { padding-right: 3rem !important; }

/* Padding - Horizontal (px-) */
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

/* Padding - Vertical (py-) */
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }


/* Bootstrap Kontainer */
.kontainer {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .kontainer {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .kontainer {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .kontainer {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .kontainer {
    max-width: 1140px;
  }
}

/* Bootstrap Kontainer Fluid */
.kontainer-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}

@media (min-width: 576px) {
  .kontainer-fluid {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .kontainer-fluid {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .kontainer-fluid {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .kontainer-fluid {
    max-width: 100%;
  }
}

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

/* Card Component Styles */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.1);
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px 0 rgba(34, 41, 47, 0.15);
}

.card-header {
  padding: 1.5rem;
  margin-bottom: 0;
  background-color: transparent;
  border-bottom: 1px solid rgba(34, 41, 47, 0.125);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header h1, .card-header h2, .card-header h3, 
.card-header h4, .card-header h5, .card-header h6 {
  margin: 0;
  color: #2c3e50;
  font-weight: 600;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
  color: #6e6b7b;
}

.card-footer {
  padding: 1rem 1.5rem;
  background-color: transparent;
  border-top: 1px solid rgba(34, 41, 47, 0.125);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Card Variants */
.card-primary {
  border-top: 4px solid #7367f0;
}

.card-success {
  border-top: 4px solid #28c76f;
}

.card-info {
  border-top: 4px solid #00cfe8;
}

.card-warning {
  border-top: 4px solid #ff9f43;
}

.card-danger {
  border-top: 4px solid #ea5455;
}

/* Card with Image */
.card-img-top {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: auto;
  object-fit: cover;
}

/* Card Groups */
.card-group {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}

.card-group .card {
  flex: 1 0 300px;
}

/* Card with Overlay */
.card-overlay {
  position: relative;
  overflow: hidden;
}

.card-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-overlay:hover::before {
  opacity: 1;
}

/* Card with Hover Effects */
.card-hover-reveal {
  overflow: hidden;
}

.card-hover-reveal .card-body {
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.card-hover-reveal:hover .card-body {
  transform: translateY(0);
}

/* Responsive Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

/* Card Stats */
.card-stats {
  padding: 1rem;
}

.card-stats .stats-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.card-stats .stats-text {
  color: #6e6b7b;
  font-size: 0.875rem;
}

/* Card Loading State */
.card-loading {
  position: relative;
  overflow: hidden;
}

.card-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
