.d-column, .card {
  transition: box-shadow 0.3s, transform 0.3s;
}
.d-column.in-view, .card.in-view {
  box-shadow: 0 8px 32px rgba(4,148,148,0.13);
  transform: translateY(-8px) scale(1.03);
}

.heroheading {
  transition: color 0.3s, text-shadow 0.3s;
}
.heroheading.in-view {
  color: var(--amber, #ffc107);
  text-shadow: 0 2px 16px rgba(4,148,148,0.13);
}

.slider-arrow {
  transition: transform 0.2s, box-shadow 0.2s;
}
.slider-arrow:hover, .slider-arrow:focus {
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(4,148,148,0.18);
  z-index: 10;
}
@media (max-width: 768px) {
  .navbar-container-admin {
    display: none !important;
  }
}

/* GENERAL STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
   }
   
   html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
   }

:root.dark-theme {
    --primary-white: #000106;
    --primary-black: #676060;
    --light-mint:  #27282c;
    --soft-gray: #27282c;
    --card-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    --teal-bckg:rgba(4, 148, 148, 0.758);
}

   :root {
    --primary-white: #ffffff;
    --primary-black: #3d3b3b;
    --primary-green: #27AE60;
    --primary-dark-green: #049724;
    --teal: #2EC4B6;
    --teal-bckg:#2EC4B6;
    --teal-transparent: rgba(4, 148, 148, 0.6);
    --navy-blue: #0A1F44;
    --navy-blue-transparent: #0A1F4470;
    --mint-green: #A3D9CF;
    --light-mint: #d6ecec;
    --light-mint-constant: #EAF4F4;
    --slate-gray: #8892B0;
    --soft-gray: #e0e0e0;
    --soft-red: #d18181;
    --dark-red: #c01b1b;
    --amber: #FFC107;
    --amber-dark: #cabf1d;
     --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    --font-primary: 'Nunito', sans-serif;

    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 1000;
  }

   body {
    line-height: 1.5;
    text-rendering: optimizeSpeed;
    background-color: var(--primary-white);
    color: var(--primary-black);
    font-family: var(--font-primary);
    scroll-behavior: smooth;
    transition: background-color 0.4s ease, color 0.3s ease;
   }
   
   /* IMAGE RENDERING*/
   img {
    max-width: 100%;
    height: auto;
    display: block;
   }
   
   p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
   }
   
   input, button, textarea, select, option {
    font: inherit;
   }

    button.dark-toggle {
    background: none;
    color: var(--light-mint-constant);
    font-weight: 700;
    border: none;
    padding: 0;
    cursor: pointer;
  }

.icon-size{
    width: 40px;
    cursor: pointer;
    margin: 5px;
}

.icon-size2{
    width: 50px;
    cursor: pointer;
    margin: 10px;
}

h1 {
  font-size: 2.6rem; /* ~42px */
  font-weight: 900;
  color: var(--teal);
  font-family: var(--font-primary);
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2.1rem; /* ~34px */
  font-weight: 700;
  color: var(--teal);
  font-family: var(--font-primary);
  margin-bottom: 0.45em;
}
h3 {
  font-size: 1.6rem; /* ~26px */
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.4em;
}
h4 {
  font-size: 1.25rem; /* ~20px */
  font-weight: 500;
  margin-bottom: 0.35em;
}
h5 {
  font-size: 1.1rem; /* ~18px */
  font-weight: 500;
  margin-bottom: 0.3em;
}
h6 {
  font-size: 1rem; /* ~16px */
  font-weight: 400;
  margin-bottom: 0.25em;
}
p {
  font-size: 1.08rem; /* ~17px */
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 0.8em;
  margin: 0;
}
li {
  font-size: 1.05rem; /* ~16px */
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; font-weight: 800; }
  h2 { font-size: 1.6rem; font-weight: 700; }
  h3 { font-size: 1.25rem; font-weight: 600; }
  h4 { font-size: 1.1rem; font-weight: 500; }
  h5 { font-size: 1rem; font-weight: 500; }
  h6 { font-size: 0.95rem; font-weight: 400; }
  p, li { font-size: 0.98rem; font-weight: 400; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; font-weight: 800; }
  h2 { font-size: 1.2rem; font-weight: 700; }
  h3 { font-size: 1.05rem; font-weight: 600; }
  h4 { font-size: 0.95rem; font-weight: 500; }
  h5 { font-size: 0.9rem; font-weight: 500; }
  h6 { font-size: 0.85rem; font-weight: 400; }
  p, li { font-size: 0.92rem; font-weight: 400; }
}

.row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.row2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.row3 {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.row4 {
    display: flex;
    gap: 1px;
    flex-wrap: wrap;
    justify-content: start;
}

.row5{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: no-wrap;
}

@media (max-width: 768px) {
  .col-70,
  .col-30 {
    flex: 0 0 100%;
  }

  .row2{
    gap: 0;
  }
}



.row3 .col-30 {
    flex: 0 0 calc(30% - 10px);
}

.row2 > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.col2{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.col-admin{
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0;
}

.hero-landing {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  margin: 0 auto; 
  margin-top: 10px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-position: center;
  background-size: cover;
  animation: fadeInUp 0.6s ease-out forwards;
  will-change: transform, opacity;
  z-index: 0;
  height: 70vh;
}

@media (max-width: 768px) {
  .hero-landing {
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
    margin: 20px 8px;
    width: auto;
    padding: 10px;
    border-radius: 14px;
  }
  .hero-landing .column {
    min-height: unset !important;
  }
}

.hero-slide {
  width: 100vw;
  max-width: 1200px;
  height: 100%;
  padding: 10px;
  opacity: 0;
  transition: opacity 3.8s cubic-bezier(.4,0,.2,1);
  position: relative;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  animation: fadeIn 0.8s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeIn {
  from { opacity: 0.5; transform: translateX(10px); scale: 0.99;}
  to   { opacity: 1; transform: translateY(0); scale: 1.0;}
}

.hero-landing .column {
  height: 80vh;
  min-height: 350px;
}

.promo-banner{
  background-color: var(--primary-white);
  border-radius: 9px;
  display: flex;
  height: 100%;
}

.promo-card0{
  background-color: var(--light-mint);
  border-radius: 20px 20px 150px 20px;
  align-content: center;
  padding-left: 10%;
  position:absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 40%;
}

.promo-card0 p{
  color: var(--slate-gray);
  font-weight: 800;
  font-size: 1.1rem;
}

.promo-card0 h1{
  font-weight: 800;
  font-size: 3rem;
}

.promo-card{
  background-color: var(--navy-blue);
  border-radius: 150px 20px 0 0;
  padding: 50px 20px 0 150px; 
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 100%;
  height: 35%;
  z-index: 10;
}

.promo-card h2{
  color: white;
  font-weight: 800;
  font-size: 1.6rem;
}

.promo-card p{
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--teal);
}

.promo-cover{
  background-color: var(--teal);
  border-radius: 20px 20px 0 150px;
  position: absolute;
  top: 0;
  right: 0;
  height: 65%;
  width: 30%;
}

.cta-banner{
  position: absolute;
  right: 1%;
  bottom: 1%;
}




@media (max-width: 667px) {

.promo-card0{
  left: 0;
  top: 0;
  width: 100%;
  height: 15%;
  z-index: 1;
}

.promo-card0 h1{
  font-size: 1.2rem;
}

.banner-cont2{
  top: 8%;
  width: 100%;
  height: 100%;
  overflow: hidden;

}

.banner-cont2 img{
  position: absolute;
  top: 8%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.promo-cover{
  top: 85%;
  height: 15%;
  width: 80%;
  border-radius: 150px 10px 20px 20px;
}

.promo-card{
  background-color: var(--navy-blue);
  border-radius: 0 0 20px 20px;
  padding: 10px 20px 0 15px; 
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
}

.promo-card h2{
  font-weight: 600;
  font-size: 1.2rem;
}

.promo-card p{
  font-weight: 600;
  font-size: 1.0rem;
}
}

.caption{
  color: var(--slate-gray);
  font-weight: 800;
  margin: 0;
}

.hero-img-full{
  width: 180%;
  height: 50vh;
}





@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-landing {
    animation: none !important;
    transition: none !important;
  }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  background: var(--navy-blue-transparent);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  opacity: 0.85;
  padding: 0;
  z-index: 10;
}
.slider-arrow img {
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.slider-arrow:hover {
  background: var(--teal-transparent);
  opacity: 1;
}
#hero-prev {
  left: 5px;
}
#hero-next {
  right: 5px;
}

@media (max-width: 768px) {
  .slider-arrow {
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
  
  #hero-prev { left: -8px; right: auto; }
  #hero-next { right: -8px; left: auto; }

  .slider-arrow img {
  width: 30px;
  height: 30px;
  pointer-events: none;
}
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--slate-gray);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  opacity: 0.7;
}
.slider-dot.active {
  background: var(--amber);
  opacity: 1;
  transform: scale(1.18);
}

.hero-landing {
  position: relative;
}


.transparent-blur {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: var(--navy-blue-transparent)
}


.splash {
  background-color: var(--teal);
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: white;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cont2 {
  width: 100%;
  max-width: 1200px;
  border-radius: 20px;
  padding: 20px;
  margin: 10px auto;
  background-color: var(--primary-white);
  box-shadow: var(--card-shadow);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.user-page {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  padding: 20px;
  background-color: var(--primary-white);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.container,
.cont2,
.containerAdmin {
  animation: fadeInUp 0.6s ease-out forwards;
  will-change: transform, opacity;
}

.cardinfo {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  padding: 20px;
  margin: 20px auto;
  background-color: var(--primary-white);
  box-shadow: var(--card-shadow);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}


.hidden {
  display: none;
}

.step {
  padding: 20px;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.blogcard {
  width: 100%;
  max-width: 1200px;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-white);
}

.img-wrap {
  object-fit: fill;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
}

.img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

  .diagnoses {
  overflow: hidden;
  position: relative;
}

.diagnoses h3 {
  text-align: center;
  margin-bottom: 20px;
}

.scroll-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 15px;
  border: var(--card-shadow);
}

.scroll-container {
  display: flex;
  gap: 20px;
  animation: scroll-left-reverse 65s linear infinite alternate;
  width: max-content;
}

.card {
  flex: 0 0 auto;
  padding: 10px 20px;
  background-color: var(--primary-white);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  white-space: nowrap;
}

@keyframes scroll-left-reverse {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

  .diagnoses:hover .scroll-container {
    animation-play-state: paused;
  }

.card:hover {
  transition: transform 0.5s;
  background-color: var(--teal);
  color: white;
  cursor:pointer;

}

.card p {
  margin: 0;
  font-size: 1rem;
  color: var(--primary-black);
  font-weight: 600;
}

.card p:hover {
  margin: 0;
  font-size: 1rem;
  color: white;
  font-weight: 800;
  cursor:pointer;
}

.card-wrapper{
  max-width: 1200px;
  border-radius: 20px;
  padding: 10px;
  margin: 20px;
  background-color: var(--primary-white);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

div .row2 p{
  margin: 10px;
  padding: 10px;
}

.fade-slide-in {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInFade 0.4s ease-out forwards;
}

@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

summary {
  background-color: var(--primary-white);
  color: var(--primary-black);
  border: none;
  border-radius: 8px;
  margin: 5px;
  padding: 12px 20px;
  font-size: 1rem;
  text-align: left;
  font-weight: 400;
  transition: background-color 0.3s;
  cursor: pointer;
  list-style: none;
}

summary:hover {
  background-color: var(--amber);
}

details[open] summary {
  background-color: var(--amber);
}

.content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  padding: 0 20px;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.3s ease;
}

details[open] .content {
  max-height: 500px;
  opacity: 1;
  margin-top: 10px;
}

ul {
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 1em;
  color: var(--primary-black);
  font-size: 1rem;
  align-items: flex-start;
}

li {
  margin-bottom: 0.5em;
  line-height: 1.4;
}

ul.custom-bullets li::before {
  content: "➤";
  color: #007bff;
  margin-right: 8px;
}

ol {
  list-style: none;
  counter-reset: list-counter;
  padding-left: 20px;
  margin: 5px;
}

ol li {
  counter-increment: list-counter;
  margin: 5px;
  position: relative;
  padding-left: 30px;
  font-weight: 500;
}

ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #007BFF;
  font-size: 1.1em;
}

.important{
  color: var(--amber);
  font-size: 17px;
  padding: 5px;
  margin: 0;
}

.row > div {
  flex: 1 1 30%;
  min-width: 280px;
}

.container-column{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.center-content{
  margin: 10px;
  padding: 10px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-white);
}

.center-content2{
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: var(--primary-white);
  padding: 2rem 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: flex-start;
  animation: shake 0.5s ease-in-out;
transition: transform 0.5s;
}

.hidden {
  display: none !important;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

#success-modal .modal-content {
  animation: scaleIn 0.4s ease-out;
  transform-origin: center;
}

.highlight{
  font-weight: 700;
}


  .btn img {
    transition: transform 0.4s ease-out;
    transform-origin: center;
  }

  .btn:hover img {
    transform: scale(1.1);
  }

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes moveAndScale {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

button, .cta {
    font-weight: var(--font-weight-extrabold);
}

a{
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.navbar-main {
    background-color: var(--navy-blue);
    padding: 15px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;

}

.navbar-container-admin {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    background-color: var(--navy-blue);
}

.navbar-admin-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    max-width: 1800px;
    width: 100%;
    font-family: sans-serif;
    font-weight: 700;
    color: var(--primary-black);
}

@media (max-width: 768px) {
    .navbar-admin-inner {
        display: none !important;
    }
}

.navbar-admin-inner ul{
margin: 0;
padding: 0;
}

.navitem{
  width: auto;
  padding: 10px 10px 0 10px;
  margin-right: 4px;
  margin-bottom: 0px;
  border-radius: 10px 10px 0 0;
  border: none;
  outline: none;
  background-color: var(--primary-white);

  transition: transform 0.5s;
  list-style-type: none;
}

.navitem:hover {
  transform: translateY(-2px);
  transform: scale(1.07);

}

.navitem.active {
    background: var(--light-mint);
    color: var(--teal) !important;
    animation: fadeInLeft 0.6s ease-out forwards;
  will-change: transform, opacity;
}

.heroheading {
    color: var(--teal);
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 34px;
    align-items: center;
    margin: 0;
}

.navbar-inner1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .navbar-inner1 {
      align-items: center;
        justify-content: space-between;
        margin: 0;
        width: 100%;
    }
}

.navlogo {
  display: flex;
  align-items: center;
  height: 100%;
}

.navlogo img {
    display: block;
}

.navbar-inner2 nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.nav-item a {
    text-decoration: none;
    color: var(--light-mint-constant);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: var(--teal);
}

.nav-item img {
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.nav-item img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 1px;
    }

    .nav-list {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 5px;
        padding: 10px 0;
        justify-content: space-between;
        align-items: center;
    }

    .nav-item {
        flex: 0 0 auto;
    }

    .nav-item img {
        width: 40px;
        height: 40px;
    }

    .heroheading {
        font-size: 28px;
        text-align: center;
    }

  @media (max-width: 768px) {
  .week .day {
    display: none;
  }

  .week .day.active {
    display: block;
  }
}

.day-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.day-nav-btn {
  background-color: var(--light-mint);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

}

footer {
    background-color: var(--navy-blue);
    display: flex;
    justify-content: center;
}

.text_light {
    color: var(--mint-green);
}

.fot-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    padding: 15px 15px;
    gap: 200px;
    max-width: 1500px;
}

@media (max-width: 768px) {
  .fot-main {
      gap: 40px;
  }
}

@media (max-width: 480px) {
  .fot-main {
      gap: 30px;
  }
}

.fot-main > div {
    flex: 1 1 auto;
    max-width: 400px;
}

.card-f {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    margin: 15px 0;
    text-align: left;
}

.card-f a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.card-f p{
   margin: 0;
   width: 100%;
}


.captcha-container iframe {
  width: 304px !important;
  height: 78px !important;
  aspect-ratio: auto !important;
  display: block;
  margin: 0 auto;
  border: 0;
  transform: scale(0.80);
}

hr {
  border: none;
  height: 3px;
  background-color: var(--primary-green);
  margin: 1rem 0;
}

.icon_wrap {
    margin: 0;
    flex-shrink: 0;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 100%;
    width: 100%;
    gap: 10px;
}

.devwrapper{
  margin-top: 2px;
  padding-top: 2px;
  text-align: center;
  line-height: 0.9;
}

.devwrapper p{
    text-align: center;
    line-height: 1.2;
}

.d-row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.d-column{
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    gap: 2px;
    margin: 10px;
    padding: 15px;
    max-width: 270px;
    height: auto;
}

#faq {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
}

#faq details {
    margin-bottom: 20px;
}

#faq summary {
    background-color: var(--navy-blue);
    color: var(--mint-green);
    padding: 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    max-width: 100%;
}

#faq summary:hover {
    background-color: var(--mint-green);
    color: var(--navy-blue);
}

#faq p {
    background-color: var(--mint-green);
    color: var(--navy-blue);
    margin: 10px;
    padding: 20px;
    border-radius: 20px;
    max-width: 100%;
}

#scheduler{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

  .container{
    width: 100%;
    max-width: 1200px;
    background-color: var(--light-mint);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 10px auto;
  }

   .container-navy{
    position: relative;
    width: 100%;
    max-width: 1200px;
    background-color: var(--navy-blue);
    border-radius: 20px;
    padding: 15px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 10px auto;
  }

  .container-navy p{
    color: var(--slate-gray);
  }

  .container-navy li{
    color: var(--slate-gray);
  }

  .margin-left{
    margin-left: 10px;
  }

textarea {
  width: 100%;
  max-width: 100%;
  height: 100px;
  border-radius: 20px;
  background-color: var(--light-mint);
  color: var(--primary-black);
  font-weight: 400;
  outline: none;
  border: none;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  resize: vertical;
}

 input {
  width: 100%;
  max-width: 1100px;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 20px;
  outline: none;
  border: none;
  color: var(--primary-black);
  background-color: var(--light-mint);
  font-weight: 500;
}

select {
  width: 100%;
  max-width: 1100px;
  padding: 10px 30px 10px 20px;
  margin: 10px 0;
  border-radius: 20px;
  outline: none;
  border: none;
  color: var(--primary-black);
  background-color: var(--light-mint);
  font-weight: 800;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none; 
}

.radio-input {
  display: none;
}

input[type="checkbox"] {
  width: auto;
}

.radio-input + label {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 10px;
  background-color: #f0f0f0;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.radio-input:checked + label {
  background-color: var(--teal);
  color: #fff;
}

.radio-input + label:hover {
  background-color: var(--primary-green);
  border: none;
}

.radio-input:focus + label {
  box-shadow: 0 0 5px rgba(45, 135, 240, 0.5);
}

  .hero-main {
    width: 100%;
    background-color: var(--primary-white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-cards{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-card{
    flex: 1 1 calc(33.33% - 20px);
    padding: 20px;
    text-align: flex-start;
    border: var(--teal) solid 5px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    box-sizing: border-box;
  }

  .hero-card:hover {
    transform: scale(1.05);
  }

  .cta{
    padding: 15px;
    margin: 5px;
    border-radius: 10px;
    border: none;
    outline: none;
    background-color: var(--amber);
    color: var(--navy-blue);
    transition: transform 0.5s;
  }

  .cta:hover {
      transform: translateY(-2px);
      transform: scale(1.07);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .icon:hover{
      transition: transform 0.5s;
      transform: translateY(-2px);
      transform: scale(1.1);
  }

    .cta-no{
    padding: 15px;
    margin: 5px;
    border-radius: 10px;
    border: none;
    outline: none;
    background-color: var(--navy-blue);
    color: var(--slate-gray);
    transition: transform 0.5s;
  }

  .cta-no:hover {
      transform: translateY(-2px);
      transform: scale(1.07);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .flex-center{
    display: flex;
    justify-content: center;
  }

  .go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: opacity 0.3s, transform 0.3s;
    padding: 0;
    background-color: var(--navy-blue-transparent);
    backdrop-filter: blur(8px);
    z-index: 20;
    -webkit-backdrop-filter: blur(8px);
}

.icon-overlay{
  cursor: pointer;
  border-radius: 50%;
  transition: opacity 0.3s, transform 0.3s;
}

.go-to-top:hover {
    opacity: 0.8;
    transform:scale(1.1)
}

.go-to-top.show {
    display: block;
    opacity: 1;
}

.icon_wrap {
    width: 40px;
    height: 40px;
    margin-right: 5px;
}

.go-to-top {
    display: none;
}

@media (max-width: 767px) {
    .go-to-top {
        display: block;
    }
}

.week {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  background-color: var(--primary-white);
  padding: 1px;
  color: var(--primary-white);
  gap: 1px;
  margin: 1px;
  height: auto;
  align-items: stretch;
  min-width: 120px
}

.day {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px;
  background-color: var(--primary-white);
  color: var(--primary-black);
  border-radius: 10px;
  flex: 1;
  min-width: 120px;
  margin: 0 1px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

  .week {
  min-width: 250px
}

.day {
  min-width: 180px;
}
}


.weekday-card {
  background-color: var(--light-mint-constant);
  color: var(--navy-blue);
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 2px;
  text-align: center;
  width: 100%;
  height: auto;
}

.appointment-card {
  background-color: var(--soft-gray);
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 2px;
  text-align: center;
  width: 100%;
  color: var(--teal);
  transition: transform 0.5s;
  cursor: pointer;
}

.appointment-card:hover{
  background-color: var(--primary-green);
  color: var(--primary-white);
  animation: moveAndScale 0.3s ease-in-out;
}


.card-message-red{
  background-color: var(--soft-red);
  color: var(--primary-white);
  padding: 2px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s;
}

.card-message-red:hover{
  animation: shake 0.5s ease-in-out;
}

@keyframes swing {
  0% { transform: rotate(0deg); opacity: 0; scale: 0.2; translateY:(50%); }
  2% { transform: rotate(10deg); scale: 0.6;}
  7% { transform: rotate(-10deg); opacity: 1; scale: 1;}
  14% { transform: rotate(8deg); }
  20% { transform: rotate(-6deg); }
  50% { transform: rotate(2deg); }
  60% { transform: rotate(0deg); }
  70% { transform: rotate(0deg);}
}

.form-prompt {
  border-radius: 10px;
  padding: 5px;
  max-width: 300px;
  background-color: var(--soft-red);
  animation: swing 1.5s ease-in-out forwards;
  color: var(--dark-red);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
   z-index: 9999;
   align-content: center;
}

#termini {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2px;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
}

.table-wrapper table {
  min-width: 600px;
  width: 100%;
  border-collapse: collapse;
  margin: 2px;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
}

td {
  padding: 2px 2px;
  text-align: center;
  vertical-align: middle;
  color: var(--primary-black);
  border: 1px solid var(--soft-gray);
  min-width: 100px;       /* samo minimalna širina */
  max-width: 100%;         /* može rasti do širine containera */
  border-radius: 8px;
  background-color: var(--primary-white);
  transition: background-color 0.3s ease-in-out;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}


th {
  background-color: var(--teal);
  color: var(--primary-white);
  padding: 10px 15px;
  margin: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
}

tr:hover td {
  background-color: var(--slate-gray);
  color: white;
}


tr:hover span {
  background-color: var(--slate-gray);
  color: white;
}

.greenbutton{
  display: inline-block;
  background-color: var(--primary-green);
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.greenbutton:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  background-color: var(--primary-dark-green);
}

.back-btn{
  display: inline-block;
  margin: 20px;
  background-color: var(--soft-red);
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-size: 14px;
  transition: background-color 0.1s ease;
}

.back-btn:hover {
  background-color: var(--dark-red);
}

.dangerbutton{
  display: inline-block;
  background-color: var(--soft-red);
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  transition: background-color 0.1s ease;
  margin: 5px;
}

  .hidden-button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
  }

.dangerbutton:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  background-color: var(--dark-red);
}

.containerAdmin1 {
  width: 100%;
  max-width: 1800px;
  background-color: var(--light-mint);
  border-radius: 0 20px 20px 20px;
  padding: 20px 20px 20px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto 40px auto;
  overflow-x: auto;
  animation: fadeInLeft 0.6s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translatex(-30px) scale(1.01);
  }
   70% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cont-admin-card {
  max-width: 400px;
  border-radius: 20px;
  padding: 10px;
  margin: 10px auto;
  background-color: var(--primary-white);
  box-shadow: var(--card-shadow);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.cont-admin-card-data {
  max-width: 1800px;
  border-radius: 20px;
  padding: 10px;
  margin: 10px auto;
  background-color: var(--primary-white);
  box-shadow: var(--card-shadow);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.col-admin{
  display: flex;
  flex-direction: column;
  max-width: 401px;
}

.row-admin{
  display: flex;
  flex-direction: row;
  width: 100%;
}

.containerAdmin {
  width: 100%;
  max-width: 1800px;
  background-color: var(--light-mint);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  overflow-x: auto;
}

.containerAdmin table {
  width: 90%;
  border-collapse: collapse;
}

.button-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 2;
  position: relative;
}

form .button-container{
  justify-content: center;
  align-items: center;
  width: 100%;
}

.app-container {
  border: none;
  outline: none;
  border-radius: 16px;
  margin: 10px auto;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-blue) 70%, #2EC4B6 100%);
  color: var(--amber);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(46,196,182,0.13), 0 1.5px 4px rgba(0,0,0,0.08);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  padding: 15px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.app-container p{
  margin: 0;
  height: 100%;
}

.td-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin: 2px;
  padding: 1px;
  height: 100%;
  width: 100%;
  color: var(--primary-black);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.td-card2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 2px;
  padding: 1px;
  height: 100%;
  width: 100%;
  color: var(--primary-black);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  overflow: hidden;
}

.app-container::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
  border-radius: 16px;
}

.app-container:hover, .app-container:focus {
  transform: translateY(-3px) scale(1.01);
  margin: 15px;
  box-shadow: 0 8px 28px rgba(46,196,182,0.18), 0 2px 8px rgba(0,0,0,0.10);
  background: linear-gradient(135deg, #2EC4B6 30%, var(--navy-blue) 100%);
  color: #fff;
}

.transparent-amber-blur {
  margin-top: 1rem;
  color: var(--amber);
  background-color: rgba(255, 191, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 0.5rem;
}

.custom-alert {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 80%;
  max-width: 600px;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.4s ease, fadeOut 0.5s ease 4s forwards;
}

.success-alert {
  background-color: var(--primary-green);
  color: white;
}

.error-alert {
  background-color: var(--soft-red);
  color: white;
}

.warning-alert {
  background-color: var(--amber);
  color: white;
}

.alert-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-text p {
  margin: 0;
  padding: 10px;
  line-height: 1.4;
  text-align: center;
}

.alert-icon {
  display: inline-block;
  transform-origin: center center;
  animation: errorAlertAnim 1.1s ease forwards;
  border: 4px solid white;
  border-radius: 50%;
}

@keyframes errorAlertAnim {
  0% {
    transform: scale(0.3) rotate(0deg);
  }
  20% {
    transform: scale(0.6) rotate(-35deg);
  }
  40% {
    transform: scale(0.9) rotate(30deg);
  }
  60% {
    transform: scale(1) rotate(-25deg);
  }
  75% {
    transform: scale(1) rotate(15deg);
  }
  90% {
    transform: scale(1) rotate(-5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes slideDown {
  from {
      top: -100px;
      opacity: 0;
  }
  to {
      top: 20px;
      opacity: 1;
  }
}

@keyframes fadeOut {
  to {
      opacity: 0;
      transform: translateX(-50%) translateY(-20px);
      pointer-events: none;
  }
}

#privacy-policy p {
  padding: 10px;
}

#terms-of-service p {
  padding: 10px;
}

@media (min-width: 769px) {
  #mobile-prev-day,
  #mobile-next-day {
    display: none !important;
  }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin: 8px 12px 8px 0;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 28px;
    background: var(--teal);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .admin-nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 10px;
        right: 10px;
        background: var(--primary-white);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(46,196,182,0.10);
        padding: 20px 0;
        z-index: 1000;
    }
    .admin-nav-list.show {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .navbar-admin-inner {
        position: relative;
    }
    .admin-nav-list .navitem {
        margin: 10px 0;
        padding: 12px 20px;
        border-radius: 10px;
        background: none;
        text-align: left;
    }
}


.packages{
  background-color: var(--slate-gray);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.promo1{
  color: white !important;
  background-color: var(--teal);
  border-radius: 20px 150px 20px 0;
  padding: 60px;
  padding: 5px;
  padding-left: 5%;
  align-content: center;
  width: 50%;
  position: absolute;
  top: 30%;
  height: 35%;
}

.packages h2{
  color: var(--amber);
  font-weight: 800;
}

.packages h3{
  color: white;
  font-weight: 800;
}

.packages p{
  color: white;
  font-weight: 800;
}

.packages .price{
  color: var(--slate-gray);
  font-weight: 800;
  margin: 0;
}

.promo2{
  background-color: var(--navy-blue);
  border-radius: 0 0 150px 20px;
  padding-top: 60px;
  padding: 5px;
  padding-left: 5%;
  align-content: center;
  width: 40%;
  height: 65%;
  position: absolute;
  top: 0;
  right: 5%;
}

.promo3{
  background-color: var(--mint-green);
  border-radius: 150px 0 20px  20px;
  padding: 60px;
  height: 33%;
  width: 70%;
  align-content: center;
  position: absolute;
  right: 15%;
  bottom: 0;

}

@media (max-width: 768px) {
  .hero-slide {
  width: 90vw;
  border-radius: 50px;
   height: 80vh;
  }
  .promo1 {
    position: absolute;
    height: 30%;
    top: 0;
    left: 0;
    width: 95%;
    height: 30%;
    z-index: 1;
    padding-left: 5%;
  }
  .promo2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 65%;
    z-index: -1;
    padding-top: 50%;
    padding-left: 5%;
  }
  .promo3 {
    position: absolute;
    top: auto;
    right: 0;
    width: 100%;
    height: 35%;
  }
  .cta-banner{
  position: absolute;
  right: 1%;
  bottom: 1%;
}
}

@media (max-width: 666px) {
  .hero-landing{
    height: 100vh;
    margin-top: 0;
  }
  .promo3 {
    position: absolute;
    top: auto;
    right: 0;
    width: 100%;
    height: 32%;
    padding-top: 30px;
  }
  .cta-banner{
  position: absolute;
  right: 1%;

}

.cta{
  padding: 10px;
}
}

@media (max-width: 667px) {
  .container{
    margin: 10px auto;
    padding: 15px;
  }

  .card{
    padding: 5px 10px;
  }

  .scroll-container{
    gap: 5px;
  }

  .processCard{
    padding: 0;
  }

  .modal-overlay{
    padding: 10px;
  }

  .modal-content{
    padding: 10px;
    height: 80%;
    height: auto;
  }

    .modal-content .container{
    height: auto;
  }


  .cardinfo{
    margin: 5px;
    padding: 5px;
  }

}

.schedule-banner{
  background-color: var(--primary-white);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner-con1{
  background-color: var(--teal);
  color: var(--amber);
  font-size: 2.5rem;
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 0;
  left: 5%;
  width: 60%;
  height: 50%;
  align-content: center;
}

.banner-con1 h1{
  color: var(--amber);
  font-size: 3rem;
  padding-left: 5%;
}

.banner-card{
  background-color: black;
  border-radius: 200px 20px 20px 20px;
  color: var(--navy-blue);
  font-weight: 800;
  align-content: center;
  padding-left: 5%;
}

.banner-card p{
  color: var(--navy-blue);
  font-weight: 800;
  font-size: 1.2rem;
}

.banner-card1{
  background-color: var(--mint-green);
  opacity: 1;
  height: 20%;
  width: 20%;
  position: absolute;
  top: 55%;
  left: 5%;
}

.banner-card2{
  background-color: var(--mint-green);
  opacity: 0.85;
  height: 20%;
  width: 20%;
  position: absolute;
  top: 55%;
  left: 26%;
}

.banner-card3{
  background-color: var(--mint-green);
  opacity: 0.65;
    height: 20%;
  width: 20%;
  position: absolute;
  top: 55%;
  left: 47%;
}

.banner-card4{
  background-color: var(--mint-green);
  opacity: 0.45;
    height: 20%;
  width: 20%;
  position: absolute;
  top: 55%;
  left: 68%;
}

.banner-overlay{
  position: absolute;
  background-color: var(--navy-blue);
  border-radius: 0 0 150px 20px;
  left: 10%;
  right: 2%;
  top: 0;
  height: 90%;
  z-index: -1;
}

.banner-text{
  position: absolute;
  top: 80%;
  right: 15%;
  color: var(--amber);
}

.banner-text h2{
  color: var(--amber);
  font-size: 2rem;
  font-weight: 700 ;
}

.banner-cont2{
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 70%;
}

  .hero-img-full{
  width: 80%;
  height: 50vh;
}

@media (orientation: landscape) and (max-width: 1024px) {
  .hero-landing {
    height: 200vh;
    padding: 10px;
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-landing .column {
    height: auto;
    min-height: unset;
  }

  .hero-slide {
    flex: 1;
    height: 200dvh;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
  }

  .hero-slide .banner-card {
    flex: 1;
    margin: 0 5px;
    min-width: 140px;
  }

  .banner-cont2{
    width: 100%;
    height: 200dvh;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .hero-img-full{
  height: 150dvh;
}

.promo-banner{
  height: 200vh;
}


.promo-card{
  position:absolute;
  bottom: 0;
  left: 15%;
  width: 100%;
  height: 60vh;
}

.promo-card0{
  position:absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 40%;
  z-index: 1;
}

.banner-cont2{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

  .hero-img-full{
  width: 100%;
  height: 170vh;
}

.banner-con1 h1{
  color: var(--amber);
  font-size: 2.9rem;
  padding-left: 5%;
}



}



@media (max-width: 667px) {

.banner-text{
  position: absolute;
  top: 85%;
  right: 20%;
  font-size: 2rem;
}

.banner-text h2{
  color: var(--amber);
  font-size: 1.45rem;
}

.banner-card p{
  font-weight: 600;
  font-size: 1.1rem;
  position: absolute;
  top: 50%;
  padding-left: 5px;
}

.banner-card{
  position: absolute;
  top: 40%;
  width: 46%;
  left: 0;
}

.banner-card2{
  top: 40%;
  left: 51%;
}

.banner-card3{
  top: 62%;
  left: 0;
}

.banner-card4{
  top: 62%;
  left: 51%;
}


.banner-con1 h1{
  color: var(--amber);
  font-size: 1.9rem;
  padding-left: 5%;
}

.banner-con1{
  position: absolute;
  right: 0;
  width: 90%;
  height: 30%;
}

.banner-overlay{
  left: 0;
  right: 0;
  top: 0;
  height: 95%;
}

}

.banner-cont2{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
}


.cookie{
  position: fixed;
  bottom: 10px;
  left: 50%;
  right: 0;
  border-radius: 150px 20px 10px 10px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  margin: 10px;
  max-width: 700px;
}

.cookie p{
  color: var(--mint-green);
    padding: 10px 10px 10px 70px;
}

.cookie-policy{
  color: var(--amber);
}

@media (max-width: 667px) {
.cookie{
  left: 0;
  border-radius: 20px;
  margin: 10px 10px 0 10px;
}
.cookie p{
  padding: 10px;
  padding-bottom: 0;
}
}

.processCard {
  scroll-snap-align: start;
  min-height: 70vh;
  padding: 60px 30px;
  box-sizing: border-box;
  background: white;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--teal-bckg);
  margin-top: 20px;
}

.processCard.in-view {
  opacity: 1;
  transform: translateY(0);
}

.articleMenu {
  position: fixed;
  right: 2vw;
  top: 50%;
  height: 60px;
  width: 60px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.5s;
}

.articleMenuContainer{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.articleMenu img:hover {
    transform: scale(1.15);
}

.articleToolbar2{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  height: 5%;
  width: 100%;
  border-radius: 20px 20px 20px 0;
}

.articleCard {
  scroll-snap-align: start;
  min-height: 100vh;
  padding: 10px;
  box-sizing: border-box;
  background: white;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--teal-bckg);
}

.articleCard.in-view {
  opacity: 1;
  transform: translateY(0);
}

#overlay {
  position: fixed;
  top: 10%;
  left: 10%;
  right: 10%;
  width: 80%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

#menu-articles {
  overflow-y: auto;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  overflow-y: auto;
}

.articleRow{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.articleList{
  background-color: var(--primary-white);
  padding: 10px;
  margin: 5px;
  width: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: var(--primary-black);
}

.articleList h5{
  font-weight: 700;
}

.articleList:hover{
  background-color: var(--amber);
}

#overlay-close {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(15px);
  position: absolute;
  top: 0;
  right: 0%;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
  background-color: var(--teal-transparent);
  padding: 5px 20px;
  border-radius: 50%;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
}

#overlay-close:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

#overlay-close img {
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

#overlay-close img:hover {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 668px) {
#overlay-close {
  position: absolute;
  top: 85%;
  right: 43%;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
  background-color: var(--teal-transparent);
}

#menu-articles {
  padding: 1rem;
  border-radius: 1rem;
  width: 99%;
  height: 70%;
  overflow-y: auto;
  margin: 5px;
}

#overlay {
  top: 5%;
  left: 2%;
  right: 2%;
  width: 96%;
  height: 100%;
}

.articleMenu {
  right: 1vw;
  top: 50%;
  height: 50px;
  width: 50px;
}
}

.testimonial-slider {
  display: flex;
  width: 100%;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  touch-action: pan-x;
}
.testimonial-slide {
  min-width: 100%;
  transition: transform 0.4s cubic-bezier(.4,.2,.2,1);
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 1.5rem 1rem;
  background: var(--primary-white);
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin: 0;
  display: none;
  z-index: 2;
}
.testimonial-slide.active {
  display: block;
}
@media (max-width: 600px) {
  .testimonial-slide {
    padding: 1.2rem 0.5rem;
    font-size: 1rem;
  }
}

#testimonial-prev {
  left: 0;
}
#testimonial-next {
  right: 0;
}

@media (max-width: 768px) {
  .slider-arrow2 {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  #testimonial-prev { left: -8px; right: auto; }
  #testimonial-next { right: -8px; left: auto; }
}

@media (max-width: 400px) {
  .testimonial-slider{
    margin: 0;
  }
  .slider-arrow2 {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }
  #testimonial-prev { left: -12px; right: auto; }
  #testimonial-next { right: -12px; left: auto; }

#testimonial-next img {
  width: 30px;
  height: 30px;
}

#testimonial-prev img {
  width: 30px;
  height: 30px;
}
}

.slider-arrow2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-blue-transparent);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  opacity: 0.85;
  padding: 0;
  z-index: 2;
}

.slider-arrow2 img {
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.slider-arrow2:hover {
  background: var(--teal-transparent);
  opacity: 1;
}

.testimonial-slider .d-row {
  overflow: hidden;
}

.error-h{
  margin: 0;
}


@keyframes showBannerDelayed {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.banner_message {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 1220px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  background-color: var(--navy-blue-transparent);
  box-shadow: 0 4px 16px rgba(4, 148, 148, 0.18);
  z-index: 1000;
  opacity: 0;
  animation: showBannerDelayed 0.3s ease-in forwards;
  animation-delay: 2s;
  transition: opacity 0.3s ease-in-out;
}


.banner_message p{
  margin: 0;
  color: var(--amber);
}

.banner_message h2{
  margin: 0;
  color: var(--amber);
}

.inline-element-message {
  margin: 10px auto;
  padding: 5px;
  max-width: 800px;
  text-align: center;
}

.inline-element-message p{
  margin: 0;
  align-content: center;
}


.testimonial-slide {
  opacity: 0;
  transition: opacity 0.4s;
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1;
}
.testimonial-slide.active {
  opacity: 1;
  position: relative;
}
.testimonial-slide.fade-in {
  opacity: 1;
  transition: opacity 0.4s;
}
.testimonial-slide.fade-out {
  opacity: 0;
  transition: opacity 0.4s;
}

.d-row {
  position: relative;
  height: auto;
}

.alert-col{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
  padding: 10px;
  margin: 10px;
}

.captcha-container{
    transform: scale(0.85);
    transform-origin: 0 0;
    margin:10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 78px;
    margin: 10px;
    padding: 10px;
    z-index: 10;
    overflow: hidden;
}



.front{
  z-index: 20;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1 / 1;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}
