/*

Tooplate 2119 Gymso Fitness

https://www.tooplate.com/view/2119-gymso-fitness

*/

  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Regular.woff2') format('woff2'),
          url('../fonts/Plain-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Light.woff2') format('woff2'),
          url('../fonts/Plain-Light.woff') format('woff');
      font-weight: 300;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Bold.woff2') format('woff2'),
          url('../fonts/Plain-Bold.woff') format('woff');
      font-weight: bold;
      font-style: normal;
  }

  :root {
    --primary-color:        #f13a11;
    --white-color:          #ffffff;
    --dark-color:           #171819;
    --about-bg-color:       #f9f9f9;

    --gray-color:           #909090;
    --link-color:           #404040;
    --p-color:              #666262;

    --base-font-family:     'Plain', sans-serif;
    --font-weight-bold:     bold;
    --font-weight-normal:   normal;
    --font-weight-light:    300;
    --font-weight-thin:     100;

    --h1-font-size:         48px;
    --h2-font-size:         36px;
    --h3-font-size:         28px;
    --h4-font-size:         24px;
    --h5-font-size:         22px;
    --h6-font-size:         22px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    --menu-font-size:       14px;

    --border-radius-large:  100%;
    --border-radius-small:  2px;
  }


  body {
    background: var(--white-color);
    font-family: var(--base-font-family);
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: var(--font-weight-thin);
    line-height: normal;
  }

  h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 20px 0;
  }

  h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -2px;
  }

  h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    margin: 0;
  }

  h4 {
    font-size: var(--h4-font-size);
  }

  h5 {
    font-size: var(--h5-font-size);
  }

  h6 {
    color: var(--gray-color);
    font-size: var(--h6-font-size);
    line-height: inherit;
    margin: 0;
  }

  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    line-height: 1.5em;
  }

  b, 
  strong {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0;
  }

  .section {
    padding: 3rem 0;
  }


  /* BUTTON */

  .custom-btn {
    background: transparent;
    border-radius: var(--border-radius-small);
    padding: 14px 24px;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .custom-btn:hover {
    color: var(--primary-color);
  }

  .custom-btn:focus {
    box-shadow: none;
  }

  .custom-btn.bordered:hover,
  .custom-btn.bordered:focus,

  .custom-btn.bg-color:hover,
  .custom-btn.bg-color:focus {
    background: var(--white-color);
    border-color: transparent;
    color: var(--primary-color);
  }

  .bordered {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }

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



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a:hover, 
  a:active, 
  a:focus {
    color: var(--primary-color);
    outline: none;
    text-decoration: none;
  }


  /* BG OVERLAY */

  .bg-overlay {
    /* background: var(--dark-color); */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
  }


  /*---------------------------------------
     MODAL              
  -----------------------------------------*/

  .modal-content {
    padding: 2rem 3rem;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    border: 0;
    padding: 0;
  }

  .membership-form a {
    color: var(--primary-color);
  }


  /*---------------------------------------
    FEATURE          
  -----------------------------------------*/

  .feature {
    background: var(--dark-color);
    padding: 5rem 0;
  }


  /*---------------------------------------
     MENU             
  -----------------------------------------*/

  .navbar {
    background: var(--dark-color);
    padding: 1rem;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .navbar-brand {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    padding-top: 0;
  }

  .nav-item .nav-link {
    display: block;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    padding: 2px 6px;
  }

  .nav-item .nav-link.active,
  .nav-item .nav-link:hover {
    color: var(--primary-color);
  }

  .navbar .social-icon li a {
    color: var(--white-color);
  }

  .navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 30px;
    height: 35px;
    outline: none;
  }

  .navbar-toggler:focus {
    outline: none;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }

  .navbar-toggler .navbar-toggler-icon {
    background: var(--primary-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
  }

  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 30px;
    height: 2px;
    content: '';
  }

  .navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
  }

  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .hero {
    background-image: url('../images/back3.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
  }


  /*---------------------------------------
     CLASS               
  -----------------------------------------*/

  .class-info {
    background: var(--white-color);
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    border-radius: 0 0 2px 2px;
    padding: 1rem 1rem;
    position: relative;
  }

  .class-info img {
    border-radius: 2px 2px 0 0;
  }

  .class-info strong {
    color: var(--gray-color);
  }

  .class-price {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
  }


  /*---------------------------------------
     SCHEDULE             
  -----------------------------------------*/

  .schedule {
    background: var(--dark-color);
  }

  .schedule-table {
    display: table;
    border: 0;
    text-align: center;
  }

  .schedule-table strong,
  .schedule-table span {
    display: block;
    text-align: center;
  }

  .schedule-table strong {
    color: var(--white-color);
  }

  .schedule-table span {
    color: var(--gray-color);
  }

  .schedule-table span,
  .schedule-table small {
    font-size: var(--menu-font-size);
    text-transform: uppercase;
  }

  .schedule-table small {
    position: relative;
    top: 10px;
  }

  .table .thead-light th,
  .schedule-table tr td:first-child {
    background: var(--primary-color);
    border: 1px solid #212122;
    color: var(--white-color);
  }

  .schedule-table .thead-light th {
    border-bottom: 0;
    text-transform: uppercase;
  }

  .table-bordered td, 
  .table-bordered th {
    border: 1px solid #212122;
  }

  .table-bordered td {
    padding-bottom: 22px;
  }

  .table td, .table th {
    padding: 1rem;
  }


  /*---------------------------------------
      ABOUT & TEAM            
  -----------------------------------------*/

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

  .about-working-hours {
    border-left: 2px solid;
    padding-left: 3.5rem;
  }

  .about-working-hours strong {
    color: var(--white-color);
    opacity: 0.85;
  }

  .team-thumb {
    position: relative;
  }

  .team-info {
    background: var(--white-color);
    border-radius: 0 0 2px 2px;
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    padding: 20px;
    position: relative;
  }

  .team-info span {
    font-weight: var(--font-weight-light);
    opacity: 0.85;
  }

  .team-info .social-icon {
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .team-info .social-icon li {
    display: block;
  }


  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

  .webform input,
  button#submit-button {
    height: calc(2.25rem + 20px);
  }

  .form-control {
    border-radius: var(--border-radius-small);
    margin: 1.3rem 0;
  }

  .form-control:focus {
    box-shadow: none;
    border-color: var(--dark-color);
  }

  button#submit-button {
    background: var(--dark-color);
    border-color: transparent;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  button#submit-button:hover {
    background: #28a745;
  }

  .contact h2 + p {
    max-width: 90%;
  }

  .google-map {
    border-top: 1px solid #efebeb;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }

  .google-map iframe {
    width: 100%;
  }


  /*---------------------------------------
     Section one               
  -----------------------------------------*/
  .section-one .heading-one{
    background-color: #ffba03;
    font-size: 2.5rem;
    padding: 20px 10px 30px 10px;
  }

  .section-one .heading-two{
    font-size: 3.75rem;
    line-height: 1;
    color: #fff;
  }

  .section-one .heading-three{
    font-size: 3rem;
    line-height: 1;
  }

  .section-one .heading-four{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .color-red{
    color: #dc3545;
  }

  .color-bg-red{
    background-color: #dc3545;
  }

  .btn-red-color{
    background-color: #dc3545;
    color: #fff;
    padding: 10px;
    font-size: 22px;
  }

  .btn-gold-color{
    background-color: #28a745;
  }

  .rounded-full {
    border-radius: 9999px;
}
.overflow-hidden {
    overflow: hidden!important;
}

.pop_image {
    animation: zoom-in-zoom-out 1.2s cubic-bezier(.9,.7,.5,.9) infinite;
}
.w-28 {
    width: 4rem;
}
.animated h3 {
  font-size: 1.25rem;
    line-height: 2rem;
}

#contactFormLabel{
  font-size: 1.25rem;
}

#contactForm .modal-header{
    border-bottom: 1px solid #ced4da;
    padding-bottom: 20px;
}


@keyframes glowing {
  0% {
    background-color: #28a745;
    box-shadow: 0 0 5px #28a745;
    transform: scaleX(1);
  }
  50% {
    background-color: #28a745;
    box-shadow: 0 0 20px #28a745;
    -webkit-transform: scale3d(1.05,1.05,1.05);
    transform: scale3d(1.05,1.05,1.05);
  }
  100% {
    background-color: #ffc107;
    box-shadow: 0 0 5px #ffc107;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.blink-btn {
  animation: glowing 1000ms infinite;
}

.mobile-device{
    display: none;
  }


  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 5px 0 0 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    text-decoration: none;
    display: inline-block;
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-bold);
    margin: 5px 10px;
    text-align: center;
  }

  .social-icon li a:hover {
    color: var(--primary-color);
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (max-width: 992px) {

    .section {
      padding: 4rem 0;
    }

    .nav-item .nav-link {
      padding: 6px;
    }

    .navbar .social-icon {
      margin-top: 22px;
    }

    .navbar-collapse,
    .site-footer {
      text-align: center;
    }

    .schedule-table {
      display: block;
    }

    .modal-content {
      padding: 2rem;
    }
  }

  @media screen and (max-width: 767px) {

    #videoDemo .carousel-inner iframe{
      width: 100%;
      height: 100%;
    }
    .mobile-device{
      display: block;
    }
    .web-device{
      display: none;
    }

    .mobile-device .row{
        position: relative !important;
        height: 50px;
    }
    .mobile-device .row .col-md-4 img{
      height: 100px;
      position: absolute;
      bottom: -5px;
      left: 0px;
    }

    .mobile-device .row .col-md-8{
      position: absolute;
      right: 0px;
      bottom: -1px;
      text-align: right !important;
    }
    .mobile-device .row .col-md-8 .blink-btn{
        width: 150px !important;
    }

    h1 {
      font-size: 38px;
    }

    .about-working-hours {
      border-left: 0;
      padding: 22px 0 0 0;
    }

    .contact h2 span {
      display: block;
    }
  }
/* New order form style */

/* ===== Center Order Form Section ===== */
.order-center-section {
  width: 100%;
  background: #f7f2eb;
  padding: 45px 0 70px;
}

.order-center-section .container {
  max-width: 1180px;
}

.order-main-heading {
  color: #8d0b27;
  font-size: 46px;
  line-height: 1.22;
  font-weight: 900;
  margin: 0 0 35px;
  text-align: center;
}

.new-order-form {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 42px 36px 46px;
  box-shadow: 0 0 20px rgba(0,0,0,0.22);
  text-align: center;
}

.new-order-form .order-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
  white-space: nowrap;
}

.new-order-form .old-price {
  color: #999999;
  font-size: 42px;
  font-weight: 900;
  text-decoration: line-through;
  line-height: 1;
}

.new-order-form .new-price {
  color: #000000;
  font-size: 65px;
  font-weight: 900;
  line-height: 1;
}

.new-order-form .today-offer {
  display: inline-block;
  background: #e60000;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  border-radius: 50px;
  padding: 14px 42px;
  margin: 0 auto 40px;
}

.new-order-form .form-control {
  width: 100%;
  height: 58px;
  border: 1px solid #777777;
  border-radius: 4px;
  background: #ffffff;
  font-size: 25px;
  color: #333333;
  padding: 10px 18px;
  margin: 0 0 26px;
  box-shadow: none;
}

.new-order-form .form-control::placeholder {
  color: #777777;
  opacity: 1;
}

.new-order-form .submit-button,
.new-order-form button[type="submit"] {
  height: 70px;
  background: #ff0000;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  margin: 0;
  cursor: pointer;
}

.new-order-form .submit-button:hover,
.new-order-form button[type="submit"]:hover {
  background: #df0000;
}

.new-order-form .blink-btn {
  animation: none;
}

#contactForm .modal-content {
  border: none !important;
  border-radius: 18px;
  box-shadow: none;
}

@media (max-width: 991px) {
  .order-main-heading {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .order-center-section {
    padding: 34px 0 55px;
  }

  .order-main-heading {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 24px;
  }

  .new-order-form {
    max-width: 100%;
    padding: 28px 20px 32px;
    border-radius: 16px;
  }

  .new-order-form .order-price-row {
    gap: 10px;
  }

  .new-order-form .old-price {
    font-size: 28px;
  }

  .new-order-form .new-price {
    font-size: 42px;
  }

  .new-order-form .today-offer {
    font-size: 20px;
    padding: 10px 26px;
    margin-bottom: 30px;
  }

  .new-order-form .form-control {
    height: 52px;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .new-order-form .submit-button,
  .new-order-form button[type="submit"] {
    height: 60px;
    font-size: 26px;
  }
}

@media (max-width: 380px) {
  .new-order-form .old-price {
    font-size: 24px;
  }

  .new-order-form .new-price {
    font-size: 36px;
  }

  .new-order-form .today-offer {
    font-size: 18px;
    padding: 10px 18px;
  }
}


/* Ingredient Section */
.ingredient-section {
  background: #f7f1e9;
  padding: 60px 0 45px;
}

.ingredient-main-heading {
  color: #8b001f;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.ingredient-sub-heading {
  color: #8b001f;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 36px;
}

.ingredient-card-row {
  justify-content: center;
}

.ingredient-card {
  background: #ffffff;
  border-radius: 8px;
  min-height: 390px;
  padding: 28px 18px 22px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.ingredient-img-box {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-img-box img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.ingredient-card h3 {
  color: #8b001f;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 0;
}

@media (max-width: 991px) {
  .ingredient-main-heading {
    font-size: 40px;
  }

  .ingredient-sub-heading {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .ingredient-section {
    padding: 45px 0 28px;
  }

  .ingredient-main-heading {
    font-size: 32px;
  }

  .ingredient-sub-heading {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .ingredient-card {
    min-height: 340px;
    padding: 24px 14px 20px;
  }

  .ingredient-img-box {
    height: 230px;
  }

  .ingredient-img-box img {
    max-height: 220px;
  }

  .ingredient-card h3 {
    font-size: 26px;
  }
}

/* ================= INGREDIENTS SECTION ================= */
.ingredients-section {
  width: 100%;
  background: #f6f1ea;
  padding: 55px 12px 65px;
  font-family: Arial, Helvetica, sans-serif;
}

.ingredients-heading-wrap {
  max-width: 1100px;
  margin: 0 auto 34px;
}

.ingredients-heading-wrap h1 {
  margin: 0 0 12px;
  color: #8b001f;
  font-size: 46px;
  line-height: 1.18;
  font-weight: 800;
}

.ingredients-heading-wrap h3 {
  margin: 0;
  color: #3b1a12;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 700;
}

.ingredients-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.ingredient-card {
  background: #ffffff;
  border-radius: 8px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 26px 15px 18px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.ingredient-img-box {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.ingredient-card h2 {
  margin: 14px 0 0;
  color: #8b001f;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  text-shadow: 1px 2px 2px rgba(0,0,0,.18);
}

@media (max-width: 991px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ingredients-heading-wrap h1 {
    font-size: 36px;
  }
  .ingredients-heading-wrap h3 {
    font-size: 21px;
  }
}

@media (max-width: 575px) {
  .ingredients-section {
    padding: 38px 10px 45px;
  }
  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ingredient-card {
    min-height: 330px;
    padding: 22px 12px 16px;
  }
  .ingredient-img-box {
    height: 245px;
  }
  .ingredient-card h2 {
    font-size: 25px;
  }
  .ingredients-heading-wrap h1 {
    font-size: 30px;
  }
  .ingredients-heading-wrap h3 {
    font-size: 18px;
  }
}

/* ================= OLD SECTIONS - MATCH NEW DESIGN ================= */
:root {
  --page-bg-soft: #f6f1ea;
  --page-maroon: #8b001f;
  --page-dark-text: #3b1a12;
  --page-card-bg: #ffffff;
  --page-red: #e30000;
}

body {
  background: var(--page-bg-soft) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  color: var(--page-dark-text) !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: Arial, Helvetica, sans-serif !important;
  color: var(--page-maroon) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body p,
body li,
body div {
  font-family: Arial, Helvetica, sans-serif !important;
}

p {
  color: var(--page-dark-text) !important;
  font-weight: 600 !important;
}

.health-secret-section,
.hero,
.feature,
.about,
.class,
.schedule,
.ingredient-section,
.ingredients-section {
  background-color: var(--page-bg-soft) !important;
}

.health-header {
  background: var(--page-red) !important;
  color: #ffffff !important;
}

.health-header *,
.health-title,
.health-logo {
  color: #ffffff !important;
}

.health-badge {
  background: #ffffff !important;
  color: var(--page-maroon) !important;
}

.health-content,
.health-content p,
.health-note,
.health-note p {
  color: var(--page-dark-text) !important;
}

.hero {
  background-image: linear-gradient(rgba(246,241,234,.86), rgba(246,241,234,.92)), url('../images/back3.webp') !important;
  min-height: auto !important;
  padding: 60px 0 !important;
}

.section-one .heading-one,
.section-one .heading-two,
.section-one .heading-three,
.section-one .heading-four {
  color: var(--page-maroon) !important;
  background: transparent !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

.color-red,
.text-white .color-red,
span.color-red {
  color: var(--page-maroon) !important;
}

.feature .class-thumb,
.class .carousel,
.about .card,
.about section .card,
.schedule .container,
.class-info {
  background: var(--page-card-bg) !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.08) !important;
  overflow: hidden;
}

.feature h2,
.feature h3,
.feature p,
.schedule h1,
.schedule h2,
.schedule h3,
.schedule p,
.schedule .text-white,
.about h1,
.about h2,
.about h3,
.about p,
.class h1,
.class h2,
.class h3,
.class p {
  color: var(--page-maroon) !important;
}

.feature .class-info p,
.about p,
.class p,
.schedule p {
  color: var(--page-dark-text) !important;
}

.feature .class-info img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 12px;
}

.btn-red-color,
.btn-gold-color,
.btn-warning,
.submit-button,
.order-scroll {
  background: var(--page-red) !important;
  border-color: var(--page-red) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
}

.site-footer,
.site-footer.bg-dark {
  background: var(--page-maroon) !important;
  color: #ffffff !important;
}

.site-footer p,
.site-footer a,
.site-footer * {
  color: #ffffff !important;
}

.about section[style] {
  background-color: transparent !important;
}

@media (max-width: 991px) {
  .hero { padding: 45px 0 !important; }
  .section-one .heading-two { font-size: 44px !important; }
  .section-one .heading-three { font-size: 34px !important; }
}

@media (max-width: 767px) {
  h1 { font-size: 32px !important; }
  h2 { font-size: 26px !important; }
  h3 { font-size: 22px !important; }
  p { font-size: 16px !important; }
  .section { padding: 2.2rem 0 !important; }
  .section-one .heading-one { font-size: 28px !important; padding: 14px 8px !important; }
  .section-one .heading-two { font-size: 34px !important; }
  .section-one .heading-three { font-size: 28px !important; }
  .section-one .heading-four { font-size: 20px !important; line-height: 1.35 !important; }
  .feature { padding: 2.8rem 0 !important; }
  .feature .class-thumb { margin-bottom: 16px; }
  .btn-red-color { font-size: 18px !important; }
}


.trial-pack-section{
    background:#fff;
    padding:60px 20px;
}

.trial-pack-container{
    max-width:950px;
    margin:auto;
    background:#fff;
    border-radius:15px;
    padding:25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.offer-banner{
    background:#e60000;
    color:#fff;
    font-size:42px;
    font-weight:700;
    padding:18px;
    border-radius:8px;
    margin-bottom:45px;
}

.trial-price{
    font-size:72px;
    font-weight:800;
    color:#000;
    margin-bottom:40px;
}

.trial-price span{
    font-weight:900;
}

.trial-image img{
    max-width:420px;
    width:100%;
    height:auto;
}

.trial-btn{
    display:inline-block;
    margin-top:35px;
    background:#007a2f;
    color:#fff;
    text-decoration:none;
    padding:18px 45px;
    border-radius:50px;
    font-size:28px;
    font-weight:700;
    transition:.3s;
}

.trial-btn:hover{
    background:#046625;
}

@media(max-width:768px){

.offer-banner{
    font-size:26px;
    padding:14px;
}

.trial-price{
    font-size:52px;
}

.trial-image img{
    max-width:300px;
}

.trial-btn{
    font-size:22px;
    padding:15px 35px;
}

}

@media(max-width:480px){

.trial-pack-section{
    padding:40px 15px;
}

.offer-banner{
    font-size:20px;
    line-height:1.4;
}

.trial-price{
    font-size:42px;
}

.trial-image img{
    max-width:240px;
}

.trial-btn{
    width:100%;
    max-width:280px;
    font-size:20px;
}

}

/* ===========================
   HEADER
=========================== */

.top-header{
    width:100%;
    background:#e00000;
    padding:14px 20px;
    box-sizing:border-box;
}

.header-container{
    max-width:1400px;
    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.header-logo{
    flex:0 0 auto;
}

.header-logo img{
    display:block;
    width:auto;
    height:100px;
    max-width:100%;
}

.header-title{
    flex:1;
    text-align:center;
}

.header-title h1{
    margin:0;
    color:#fff;

    font-size:68px;
    font-weight:900;

    font-family:
    "Arial Black",
    Arial,
    Helvetica,
    sans-serif;

    line-height:1.1;
    letter-spacing:1px;
    text-transform:none;
}


/* ===========================
   Tablet
=========================== */

@media (max-width:991px){

    .header-logo img{
        height:80px;
    }

    .header-title h1{
        font-size:48px;
    }

}


/* ===========================
   Mobile
=========================== */

@media (max-width:767px){

    .top-header{
        padding:12px;
    }

    .header-container{
        gap:10px;
    }

    .header-logo img{
        height:52px;
    }

    .header-title h1{
        font-size:28px;
        line-height:1.2;
    }

}


/* ===========================
   Small Mobile
=========================== */

@media (max-width:480px){

    .header-logo img{
        height:44px;
    }

    .header-title h1{
        font-size:22px;
    }

}

/* ===========================
   HEADER
=========================== */

.top-header{
    width:100%;
    background:#e00000;
    padding:14px 20px;
    box-sizing:border-box;
}

.header-container{
    max-width:1400px;
    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.header-logo{
    flex:0 0 auto;
}

.header-logo img{
    display:block;
    width:auto;
    height:100px;
    max-width:100%;
}

.header-title{
    flex:1;
    text-align:center;
}

.header-title h1{
    margin:0;
    color:#fff;

    font-size:68px;
    font-weight:900;

    font-family:
    "Arial Black",
    Arial,
    Helvetica,
    sans-serif;

    line-height:1.1;
    letter-spacing:1px;
    text-transform:none;
}


/* ===========================
   Tablet
=========================== */

@media (max-width:991px){

    .header-logo img{
        height:80px;
    }

    .header-title h1{
        font-size:48px;
    }

}


/* ===========================
   Mobile
=========================== */

@media (max-width:767px){

    .top-header{
        padding:12px;
    }

    .header-container{
        gap:10px;
    }

    .header-logo img{
        height:52px;
    }

    .header-title h1{
        font-size:28px;
        line-height:1.2;
    }

}


/* ===========================
   Small Mobile
=========================== */

@media (max-width:480px){

    .header-logo img{
        height:44px;
    }

    .header-title h1{
        font-size:22px;
    }

}

/* ===== Optimized responsive landing page styles ===== */
:root{--brand-red:#e00000;--dark:#16120f;--gold:#f2b533;--cream:#fff8ec;--accent:#7b001f;--green:#176b2c}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:#fff8ec;color:#1d1d1d;font-family:Arial,Helvetica,sans-serif;overflow-x:hidden;padding:0!important}
img{max-width:100%;height:auto}
section{padding:48px 0}
.section{padding:48px 0!important}
.container,.container-fluid{position:relative;z-index:1}
.top-header{background:var(--brand-red);padding:12px 24px;position:relative;z-index:20}
.header-container{max-width:1320px;margin:auto;display:flex;align-items:center;justify-content:space-between;gap:18px}
.header-logo img{display:block;height:92px;width:auto;max-width:260px;object-fit:contain;border:0;border-radius:0}
.header-title{flex:1;text-align:center}
.header-title h1{margin:0;color:#fff;font-size:clamp(28px,5vw,72px);font-weight:900;line-height:1;letter-spacing:.5px;font-family:Arial Black,Impact,Arial,sans-serif;text-shadow:0 3px 0 rgba(0,0,0,.12)}
.hero{min-height:auto!important;padding:42px 0!important;background-position:center;background-size:cover}
.hero .row,.schedule .row{align-items:center}
.hero-text{margin:0!important;padding:12px 0}
.heading-one,.section-heading{font-weight:900;line-height:1.18;color:#7b001f;text-align:center;margin:0 0 18px;letter-spacing:-.4px}
.heading-one{color:#fff;font-size:clamp(28px,4.6vw,58px);text-shadow:0 3px 10px rgba(0,0,0,.35)}
.heading-four{font-size:clamp(18px,2.2vw,28px);line-height:1.45;font-weight:700}
.section-heading:after,.ingredients-heading-wrap h1:after,.faq-heading:after{content:'';display:block;width:90px;height:5px;background:linear-gradient(90deg,#e00000,#f2b533);border-radius:30px;margin:14px auto 0}
.order-center-section{background:#fff;padding:42px 0!important}
.order-main-heading{font-size:clamp(24px,4vw,42px);font-weight:900;color:#7b001f;line-height:1.25;margin-bottom:20px}
.new-order-form{background:#fff;border-radius:22px;padding:22px;box-shadow:0 12px 35px rgba(0,0,0,.13);border:1px solid rgba(123,0,31,.12)}
.form-control{height:auto;min-height:52px;border-radius:12px;margin-bottom:14px;font-size:18px}
.submit-button,.btn-gold-color{background:linear-gradient(135deg,#f2b533,#d98f00)!important;border:0!important;color:#111!important;font-weight:900!important;border-radius:999px!important;box-shadow:0 8px 20px rgba(217,143,0,.35)}
.old-price{text-decoration:line-through;color:#777;font-size:28px;font-weight:800;margin-right:12px}.new-price{color:#e00000;font-size:34px;font-weight:900}.today-offer{display:inline-block;background:#e00000;color:#fff;padding:7px 18px;border-radius:999px;font-weight:800;margin:0 0 16px}
.ingredients-section,.ingredient-section,.about,.class,.faq-section{background:#fff8ec}.ingredients-heading-wrap h1,.ingredient-main-heading,.faq-heading{font-size:clamp(28px,4.8vw,54px);font-weight:900;color:#7b001f;line-height:1.18;margin-bottom:12px}.ingredients-heading-wrap h3,.ingredient-sub-heading{font-size:clamp(18px,2.4vw,28px);font-weight:800;color:#176b2c;line-height:1.35;margin-bottom:26px}
.ingredients-grid,.ingredient-card-row{margin-top:22px}.ingredients-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;padding:0 16px}.ingredient-card,.class-thumb{height:100%;background:#fff;border-radius:22px;padding:18px;box-shadow:0 8px 24px rgba(0,0,0,.08);border:1px solid rgba(0,0,0,.06);transition:transform .25s ease,box-shadow .25s ease}.ingredient-card:hover,.class-thumb:hover{transform:translateY(-4px);box-shadow:0 15px 35px rgba(0,0,0,.13)}.ingredient-img-box{min-height:135px;display:flex;align-items:center;justify-content:center}.ingredient-card h2,.ingredient-card h3,.class-info h3{font-size:clamp(20px,2.1vw,28px);font-weight:900;color:#7b001f;line-height:1.25;margin:12px 0 6px}
.schedule{background:linear-gradient(135deg,#120b08,#4b110e)!important;color:#fff}.schedule h1{font-size:clamp(28px,4.2vw,52px);font-weight:900;line-height:1.2;color:#fff}.trial-pack-section{background:linear-gradient(180deg,#fff8ec,#fff);text-align:center;padding:44px 0!important}.trial-pack-container{max-width:920px;margin:auto;padding:0 18px}.offer-banner{display:inline-block;background:#e00000;color:#fff;font-size:clamp(20px,3vw,36px);font-weight:900;border-radius:18px;padding:12px 24px;margin-bottom:16px}.trial-price{font-size:clamp(28px,4vw,48px);font-weight:900;color:#7b001f}.trial-price span{color:#e00000}.trial-image img{max-height:380px;object-fit:contain}
.feature{background:linear-gradient(135deg,#12331b,#0b1f10)!important;color:#fff}.feature .section-heading,.feature h2{color:#fff!important;font-weight:900;line-height:1.25}.about h1,.about h2{font-weight:900;color:#7b001f;line-height:1.2}.about h3{font-weight:800;line-height:1.35}.about p{font-size:18px;line-height:1.75;color:#222}.color-red{color:#e00000!important}.class .carousel img{width:100%;height:auto;border-radius:18px}.faq-container{max-width:980px;margin:auto;padding:0 16px}.faq-wrapper{margin-top:24px}.faq-item{background:#fff;border-radius:18px;margin-bottom:14px;box-shadow:0 6px 20px rgba(0,0,0,.07);overflow:hidden;border:1px solid rgba(0,0,0,.06)}.faq-question{display:flex;align-items:center;gap:12px;padding:18px;cursor:pointer}.faq-question h3{font-size:clamp(18px,2.2vw,24px);font-weight:900;margin:0;color:#7b001f}.faq-icon{background:#176b2c;color:#fff;border-radius:50%;width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;flex:0 0 28px}.faq-answer{display:none;padding:0 20px 18px;font-size:17px;line-height:1.7}.faq-item.active .faq-answer{display:block}
.review-card{max-width:850px;margin:16px auto;background:#fff;border:1px solid #ececec;border-radius:16px;overflow:hidden;box-shadow:0 4px 15px rgba(0,0,0,.06)}.review-header{display:flex;justify-content:space-between;align-items:center;gap:10px;padding:14px;border-bottom:1px solid #f2f2f2}.review-user{display:flex;align-items:center;gap:12px}.avatar{width:46px;height:46px;border-radius:50%;overflow:hidden;flex:0 0 46px}.avatar img{width:100%;height:100%;object-fit:cover}.customer-name{font-weight:800}.blue-tick{color:#1da1f2}.review-time{font-size:13px;color:#777;white-space:nowrap}.review-body{padding:16px;line-height:1.75;font-size:17px}.review-images{padding:0 16px 16px;display:flex;flex-wrap:wrap;gap:8px}.review-images img{width:90px;height:90px;object-fit:cover;border-radius:10px;border:1px solid #ddd}.review-item{display:none}.read-more-wrap{text-align:center;margin:24px 0}.read-more-btn{padding:12px 28px;background:#e00000;color:#fff;border:none;border-radius:30px;cursor:pointer;font-weight:900}
.site-footer{padding:12px 0}.fixed-bottom{box-shadow:0 -8px 25px rgba(0,0,0,.18)}
@media(max-width:991px){section,.section{padding:38px 0!important}.header-logo img{height:70px;max-width:190px}.ingredients-grid{grid-template-columns:repeat(2,1fr)}.btn.w-50{width:70%!important}}
@media(max-width:767px){section,.section{padding:32px 0!important}.top-header{padding:10px}.header-container{gap:8px}.header-logo img{height:48px;max-width:90px}.header-title h1{font-size:26px;line-height:1.05}.hero{padding:30px 0!important}.hero img{margin-top:16px}.btn.w-50{width:100%!important}.ingredients-grid{grid-template-columns:1fr;gap:14px}.ingredient-card{padding:15px}.ingredient-img-box{min-height:110px}.order-main-heading{margin-bottom:16px}.new-order-form{padding:18px}.old-price{font-size:22px}.new-price{font-size:28px}.schedule .col-md-6+ .col-md-6{margin-top:18px}.review-header{align-items:flex-start}.site-footer.mobile-device img{height:72px!important}.site-footer.mobile-device .btn{width:100%!important}.web-device{display:none!important}}
@media(min-width:768px){.mobile-device{display:none!important}}
@media(max-width:420px){.header-logo img{height:42px;max-width:78px}.header-title h1{font-size:22px}.review-images img{width:74px;height:74px}}

.doctor-green-box{background:#28a745;border-radius:18px}
.modal-shell{padding:20px;background:#fff}
.offer-modal-content{border:2px dashed #111;display:block}

/* ===== Thank You Page ===== */
.thankyou-page{min-height:100vh;background:linear-gradient(180deg,#fff8ec,#fff);display:flex;flex-direction:column}
.thankyou-main{flex:1;display:flex;align-items:center;justify-content:center}
.thankyou-hero{width:100%;padding:56px 16px!important;background:radial-gradient(circle at top,#fff1d0 0,#fff8ec 42%,#fff 100%)}
.thankyou-card{max-width:820px;margin:auto;background:#fff;border-radius:28px;padding:42px 28px;text-align:center;box-shadow:0 18px 50px rgba(0,0,0,.14);border:1px solid rgba(123,0,31,.12)}
.success-icon{width:86px;height:86px;margin:0 auto 18px;background:linear-gradient(135deg,#176b2c,#2db84d);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:52px;font-weight:900;box-shadow:0 10px 24px rgba(23,107,44,.25)}
.thankyou-card h1{font-size:clamp(38px,6vw,72px);font-weight:900;color:#7b001f;line-height:1;margin:0 0 14px;font-family:Arial Black,Impact,Arial,sans-serif}
.thankyou-card h1:after{content:'';display:block;width:90px;height:5px;background:linear-gradient(90deg,#e00000,#f2b533);border-radius:30px;margin:16px auto 0}
.thankyou-card h2{font-size:clamp(22px,3vw,34px);font-weight:900;color:#176b2c;line-height:1.35;margin:0 0 16px}
.thankyou-card p{max-width:680px;margin:0 auto 24px;color:#222;font-size:clamp(17px,2vw,22px);font-weight:700;line-height:1.7}
.thankyou-info-box{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin:26px auto;max-width:620px}
.thankyou-info-box div{background:#fff8ec;border:1px solid rgba(224,0,0,.14);border-radius:18px;padding:16px}
.thankyou-info-box strong{display:block;color:#7b001f;font-size:18px;font-weight:900;margin-bottom:6px}
.thankyou-info-box span{display:block;color:#e00000;font-size:20px;font-weight:900}
.thankyou-btn{display:inline-block;background:linear-gradient(135deg,#f2b533,#d98f00);color:#111!important;text-decoration:none!important;font-weight:900;border-radius:999px;padding:14px 34px;box-shadow:0 8px 20px rgba(217,143,0,.35);font-size:18px}
.thankyou-footer{padding:16px 0!important}
@media(max-width:767px){.thankyou-hero{padding:38px 12px!important}.thankyou-card{padding:30px 18px;border-radius:22px}.thankyou-info-box{grid-template-columns:1fr}.success-icon{width:72px;height:72px;font-size:44px}.thankyou-btn{width:100%;padding:14px 20px}}
