


@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
/* iphone */
@import url('https://fonts.cdnfonts.com/css/sf-pro-display');
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@200;500&display=swap');

html, body {
  background: #fff !important;
}

.background-container {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    transition: background 1s ease-in-out;
    overflow-y: auto; /* Enables scrolling inside the container */
    max-height: 80vh; /* Prevents it from affecting the entire page */
}
/* Make SVGs fit inside cards reliably */
.svg-card-fit {
  width: 100%;
  max-width: 520px;          /* tweak if you want it larger/smaller */
  margin: 0 auto;
  aspect-ratio: 1 / 1;       /* square; change to 4/3 or 16/9 if your SVG is wide */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;          /* prevents any bleed */
}

.svg-embed {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: contain;       /* key: keep entire SVG visible */
}

/* If you want it to be shorter on small screens */
@media (max-width: 768px) {
  .svg-card-fit {
    max-width: 360px;
    aspect-ratio: 1 / 1;
  }
}
#study p {
  display: block !important;
  text-align: left;              /* right column text alignment */
  color: #5c2b16 !important;     /* Yogaflex blue */
}
#study h2 {
  color: #0EB2EE !important;
}
.circle-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.circle-image img {
  width: 80%;
  height: auto;
  object-fit: contain;
}


.check-line {
  display: flex;
  align-items: center;
  gap: 0.4rem;          /* spacing between icon and text */
  margin: 0.25rem 0;   /* small vertical spacing */
  line-height: 1.4;
  color: #0EB2EE;      /* Yogaflex blue */
}

.check-line i {
  color: #0EB2EE;      /* icon color */
  font-size: 1rem;
  flex-shrink: 0;      /* prevents icon shifting */
}




* {
    margin: 0;
    padding: 0;
}

.rounded-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rounded-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* optional drop shadow */
}
.flip-horizontal {
    transform: scaleX(-1);
}

.carousel-image {
    height: 250px;           /* Set your desired height */
    object-fit: cover;       /* Ensures image fills area without stretching */
    width: 100%;             /* Forces full column width */
    border-radius: 10px;     /* Optional: rounded corners */
}
/********** Template CSS **********/
:root {
    --primary: #B8E4FF;
    --secondary: #0EB2EE;
    --light: #E9F0F4;
    --dark: #5a2a19;
}
.ingrediente-section,
.ingrediente-section * {
  color: var(--dark) !important;
}
.btn-white-blue-gradient {
    background: linear-gradient(to right, #ffffff 40%, rgba(14, 178, 238, 0.4));
    color: var(--dark);
    border: none;
    transition: background 0.7s ease;
  }
  
  .btn-white-blue-gradient:hover {
    background: linear-gradient(to right, rgba(14, 178, 238, 0.6), #ffffff 100%);
    color: var(--dark);
  }
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
.hero-header h1 {
    color: rgba(244, 226, 125, 0.96) !important; /* Change to your desired color */
}

h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}
.navbar {
    transition: all 0.3s ease-in-out;
    z-index: 1050;
}
.sticky-top {
    position: fixed;
    top: 0;
    width: 100%;
    background: white; /* Ensure a background when it sticks */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 45px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}


@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}
.btn-no-outline:focus {
    outline: none;
    box-shadow: none;
}
@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 16rem 0 0 0;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-bottom.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}

.accordion-button {
    border-bottom: 1px solid white !important;
  }

  .accordion-button::after {
    filter: brightness(0) invert(1); /* Makes the default arrow white */
  }

  .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1); /* Keeps arrow white when expanded */
  }

  .accordion-button {
    box-shadow: none !important;
  }

  .accordion-item:last-child .accordion-button {
    border-bottom: none !important; /* Optional: remove line under last item */
  }
/*** Feature ***/
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* Ensures text inside is also centered */
}
#feature h3 {
    margin-top: -20px; /* Moves heading upwards */
}

.feature-item:hover {
    margin-top: -10px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}



/*** Footer ***/
.footer {
    margin-top: 3rem;
    padding-top: 3rem;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-top.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
    background-repeat: no-repeat;
}


.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.theme-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}


.theme-gallery-img {
    width: 100%; /* Ensure the image fits within the column */
    height: 180px; /* Adjust height to make it visually appealing */
    object-fit: cover; /* Crop images to maintain aspect ratio */
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.theme-gallery-img:hover {
    transform: scale(1.1);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}
body {
    font-family: Arial, sans-serif;
    background-color: #eef2f5;
    margin: 0;
    padding: 2rem;
  }

  .card-stack {
    max-width: 800px;
    margin: auto;
  }

  .stacked-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    overflow: hidden;
    margin-bottom: -10px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .card-header {
    padding: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }



  .active .card-content {
    display: block;
  }

  img {
    max-width: 100%;
    height: auto;
  }
  .card-stack .stacked-card {
    position: relative;
    margin-top: -10px;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
  }
  
  .card-stack .stacked-card.card1 { z-index: 1; background-color: #0EB2EE; color: white; }
  .card-stack .stacked-card.card2 { z-index: 2; background-color: #b0daf6; color: black; }
  .card-stack .stacked-card.card3 { z-index: 3; background-color: #ffffff; color: #5a2a19; border: 1px solid #ccc; }
  
  .card-stack .stacked-card.active {
    margin-top: 0;
    z-index: 99; /* Bring active card on top regardless of original z */
  }
  
  .card-content {
    display: none;
    padding: 1rem;
    background-color: #fff;
  }
  
  .stacked-card.active .card-content {
    display: block;
  }
  .spacing-below-title {
    margin-bottom: 3rem; /* or 100px or whatever looks best */
  }

  .card-stack h2,
  .card-stack .card-header {
    color: var(--dark) !important;
  }
  .btn-outline-to-blue {
    background-color: white;
    color: var(--dark);
    border: 1px solid var(--dark);
    transition: background 0.5s ease, color 0.5s ease;
  }
  
  .btn-outline-to-blue:hover {
    background-color: var(--primary);
    color: var(--dark);
    border: 1px solid var(--dark);
    
  }
  .card-stack .stacked-card .card-content p,
.card-stack .stacked-card .card-content td,
.card-stack .stacked-card .card-content th {
  color: var(--secondary) !important;
}


.scroll-stack {
    position: relative;
    transition: transform 0.4s ease, z-index 0.3s ease, opacity 0.4s;
    z-index: 1;
    opacity: 0.8;
  }
  
  .scroll-stack.stack-on-top {
    transform: scale(1.05);
    z-index: 10;
    opacity: 1;
  }

  
  /* .flowing-water {
    stroke: #029DCF;
    stroke-width: 5;
    fill: none;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: dashFlow 4s linear infinite;
  }
  
  @keyframes dashFlow {
    to {
      stroke-dashoffset: 0;
    }
  } */
  .logo-static,
  .logo-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
  }


.sinergie {
    font-family: 'Playpen Sans', cursive, sans-serif;
    color: var(--secondary);
    /* Optionally add some letter spacing or styling */
    font-weight: 500 !important; /* or 400 depending on desired thickness */
    letter-spacing: 1px;
    text-shadow:
        0 2px 2px #bdbdbd;
    font-size: 2rem;
}
.footer  a:hover {
    text-decoration: underline !important;
  }
  
.custom-loader {
    position: fixed;
    z-index: 99999;
    top: 0; left: 200; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s;
  }
  
  .custom-loader .loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .loader-logo-animated {
    width: 200px;
    height: 200px;
  }
  .content-logo-animated {
    width: 75px;
    /* ...etc */
  }
  
  #loader-title {
    margin-top: 1.5rem;
    font-size: 2rem;
    color: var(--secondary);
    transition: opacity 1s;
  }
  /* .synergy-step, .synergy-arrow {
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
} */
#synergy-flow {
    gap: 2rem;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}



.border-tag {
    
    color: var(--secondary);
    font-weight: 600;
    display: inline-block;
    margin-top: 0; /* Ensure there's no extra margin from the top */
    padding-top: 1rem; /* Fixed padding from the top of the card */
    margin-bottom: 1.5rem; /* Fixed margin to create space between title and next element */
}

.synergy-ingredient p {
    color: #262321; /* Make the <p> text grey */
}


.synergy-ingredient.highlight {
    color: black;
    transition: opacity 0.5s ease-in-out;
}
.synergy-card {
    flex: 1 1 250px;
    max-width: 300px;
    height: 270px; /* Adjust height as needed to fit the image */
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Ensures content starts from the top */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center; /* Ensure text inside cards is centered */
    background-size: cover; /* Scale the image to cover the entire card and crop if necessary */
    background-position: center; /* Crop from the center */
    background-repeat: no-repeat; /* Prevent the image from repeating */
}


.card-bg-1 {
    background-image: url('../img/restructurare.jpg'); /* Add path to your first image */
}

.card-bg-2 {
    background-image: url('../img/mobilitate.jpg'); /* Add path to your second image */
}

.card-bg-3 {
    background-image: url('../img/rezistenta.jpg'); /* Add path to your third image */
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    #synergy-flow {
        flex-direction: column;
        align-items: center;
    }
}

#circle-flow {
    gap: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .circle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }
  
  .circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
  }
  
  .circle-bg-1 { background-image: url('../img/knee2.jpg'); }
  .circle-bg-2 { background-image: url('../img/pain_joint2.jpg'); }
  .circle-bg-3 { background-image: url('../img/knee1.jpg'); }
  .circle-bg-4 { background-image: url('../img/back.jpg'); }
  .circle-bg-5 { background-image: url('../img/walk_pain.jpg'); }
  
  .circle-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.3;
  }
  .flipped {
    transform: scaleX(-1);
  }
  @media (max-width: 768px) {
    #circle-flow {
      flex-direction: column;
      align-items: center;
    }
  }
  