.topNav {
  background-color: #ff0000;
}

.topNav p {
  padding: 10px;
  text-align: center;
  font-size: 25px;
  color: var(--white-color);
  font-weight: 600;
  max-width: max-content;
  margin: 0 auto;
  animation: hilling infinite 0.5s;
}

.whatsapp_fixed img {
  position: fixed;
  right: 1rem;
  bottom: 4rem;
  z-index: 999;
  animation: hilling infinite 0.5s;
}

@keyframes hilling {
  0% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.topNav p a {
  color: var(--white-color);
}

.vr_wrapper {
  background-color: var(--black-color);
  padding: 10px 0;
}

.custom-marquee {
  overflow-x: hidden;
}

.track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-20%);
  }
}

.vr_wrapper span {
  font-size: 22px;
  font-weight: 700;
  color: var(--white-color);
  margin-left: 10px !important;
  /* background: -webkit-linear-gradient(-90deg, #BB5617, #210754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
  text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.15);
}

.myNav_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.menu ul {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.menu ul li a {
  color: var(--black-color);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}

.logo img {
  width: 223px;
}

.myNav {
  border-bottom: 1px solid #ccc;
}

/* banner_content */

.banner_img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.banner_img img {
  width: 100%;
  height: 100%;
}

.banner_form button {
  background-color: var(--white-color);
  color: var(--main-color) !important;
}

.banner_img img {
  width: 100%;
}

/* about */
.global_wrapper {
  padding: 80px 0;
}

.global_content {
  margin-top: 3rem;
}

.about_wrapper__left,
.about_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about_wrapper__left img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

.about_right {
  padding-left: 2rem;
}

.about_right h2 {
  text-transform: capitalize;
  font-size: 44px;
  color: var(--main-color);
}

.about_right p {
  font-size: 18px;
  margin-top: 12px;
}

.counter_row {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.counter_box h3 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: var(--main-color);
  position: relative;
  /* display: inline-block;
    text-shadow: 1px 1px 0 #6d6f72, -1px -1px 0 #6d6f72, 1px -1px 0 #6d6f72, -1px 1px 0 #6d6f72, 1px 1px 0 #6d6f72;
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke-width: 0; */
}

.counter_box p {
  text-align: left;
  text-transform: capitalize;
  font-size: 18px;
  letter-spacing: 1px;
}

/* best_wrapper */
.best_wrapper {
  border-top: 1px solid #ccc;
}

.main_heading,
.points_heading {
  text-align: center;
}

.main_heading h2 {
  text-transform: capitalize;
  font-size: 44px;
  color: var(--main-color);
}

.points_heading h2 {
  font-size: 33px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--main-color);
}

.main_heading p {
  margin: 0 auto;
  max-width: 768px;
  margin-top: 10px !important;
  color: #434343;
  font-size: 18px;
}

.product_box__img img {
  width: 100%;
}

.product_box__content {
  margin-top: 10px;
}

.product_box__content a {
  color: var(--black-color);
}

.rating {
  display: flex;
  gap: 3px;
  margin: 7px 0;
}

.rating i {
  color: gold;
}

.price h6 {
  font-size: 21px;
}

.price button {
  display: block;
  margin-top: 14px;
  background-color: var(--main-color);
  padding: 7px 30px;
  color: var(--white-color);
  font-size: 18px;
  border: none;
  outline: none;
  text-transform: capitalize;
  width: 100%;
}

/* shipping_box */
.shipping_wrapper {
  background-color: var(--main-color);
}

.zoom-btn {
  animation: zoomPulse 1.3s infinite;
}

@keyframes zoomPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.shipping_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid #111b1d;
  padding: 2rem;
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.shipping_box img {
  width: 100px;
  aspect-ratio: 3/2;
  object-fit: contain;
}

.shipping_box h3 {
  font-size: 22px;
  margin-top: 1rem;
  text-align: center;
}

.shipping_box p {
  margin-top: 12px;
  color: #434343;
  font-size: 15px;
  text-align: center;
}

/* populor_img */
.populor_img img {
  width: 100%;
  margin-bottom: 28px;
  border-radius: 10px;
}

/* doctor_wrapper */
.doctor_wrapper {
  border-top: 1px solid #ccc;
}

.doctor_box {
  background-color: var(--main-color);
  padding: 2rem;
  border-radius: 1rem;
  color: var(--white-color);
}

.doctor_box__parra p {
  font-size: 1.25rem;
  line-height: 2.5rem;
}

.doctor_info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2rem;
}

.doctor_img img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
  object-position: right;
}

.doctor_name h6 {
  font-size: 24px;
}

.doctor_name p {
  font-size: 16px;
}

/* cta_wrapper */
.cta_wrapper {
  background-color: var(--main-color);
  padding: 30px 0;
}

.cta_wrapper__content {
  text-align: center;
}

.cta_wrapper__content h2 {
  font-size: 55px;
  color: var(--white-color);
}

.cta_wrapper__content a {
  margin-top: 2rem;
  padding: 10px 30px;
  font-size: 18px;
  text-transform: capitalize;
  border: 1px solid var(--main-color);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  font-weight: 500;
  color: var(--main-color);
  background-color: var(--white-color);
  animation: hilling infinite 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: max-content;
  margin: 0 auto;
}

/* testimonial */
.user_profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
}

.testimonial_img img {
  width: 100%;
}

.user_profile__img img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
}

.testimonial_box {
  border: 2px solid var(--main-color);
  padding: 2rem;
  margin-right: 12px;
  border-radius: 10px;
}

.user_rating {
  display: flex;
  gap: 3px;
  align-items: center;
}

.user_rating i {
  color: goldenrod;
}

.review p {
  font-size: 17px;
  margin-top: 1rem;
  text-align: justify;
  line-height: 1.65;
}

.testimonial_slider .slick-dots {
  line-height: 0 !important;
  bottom: -3rem;
}

.testimonial_slider .slick-dots li {
  height: 16px;
  width: 16px;
  border-radius: 100%;
  background-color: #ddd;
}

.testimonial_slider .slick-dots li.slick-active {
  background-color: var(--main-color);
  transition: 0.3s ease-in;
}

.testimonial_slider .slick-dots li button::before {
  display: none !important;
}

/* screenshot_wrapper__img */
.screenshot_wrapper {
  border-top: 1px solid #ccc;
}

.screenshot_wrapper__img img {
  width: 100%;
  height: 100%;
}

/* footer */
.footer_wrapper__box {
  text-align: center;
}

.social_media {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.social_media img {
  width: 350px;
}

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

.footer_wrapper__box h2 {
  font-size: 44px;
  font-weight: 600;
  text-transform: capitalize;
}

.copyright {
  background-color: var(--black-color);
  padding: 14px 0;
  text-align: center;
  color: var(--white-color);
}

.copyright h6 {
  font-size: 28px;
  text-transform: capitalize;
  margin-bottom: 12px !important;
}

.copyright p {
  font-size: 18px;
}

.copyright p a {
  color: var(--white-color);
}

.form_body input::placeholder,
.form_body textarea::placeholder {
  color: var(--black-color);
}

.modal_heading h5 {
  background-color: rgb(255 255 255);
  /* background-color: rgb(12, 17, 23); */
  padding: 12px;
  /* color: var(--white-color); */
  color: #000;
  line-height: 55px;
  font-size: 2rem;
  font-weight: 700;
  border: 8px solid blue;
  text-align: center;
}

.form_body {
  padding: 1rem;
  background-color: var(--main-color);
}
.form_body form {
  background: blue;
  padding: 1.5rem 1rem;
  border-radius: 10px;
}

.form_body form button {
  background-color: red;
}

.global_btn,
.form_body button {
  background-color: #000000;
  color: #ffffff !important;
  border-radius: 30px !important; /* 👈 add this */
  width: 120px;
}

.global_btn:hover {
  background-color: #111b1d !important;
  color: white !important;
}

.modal-header {
  background-color: #ff0000;
  color: var(--white-color) !important;
}

.btn-close {
  color: var(--white-color) !important;
  opacity: 1 !important;
  background: url("../images/close.png") !important;
}

.modal-header h5 {
  font-size: 20px;
  text-transform: capitalize;
}

.modal-body {
  padding: 0 !important;
}

.form_body input,
.form_body textarea {
  margin-bottom: 10px;
  width: 100%;
  padding: 9px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 1rem;
}

.global_btn,
.form_body button {
  width: 100%;
}

.form_body span {
  text-align: center;
  display: block;
  font-size: 13px;
  margin-top: 4px;
  color: var(--white-color);
}

.phone-wp-main {
  padding-left: 1rem;
  row-gap: 1rem;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.phone-conteiner {
  padding: 1rem 1.5rem;
  padding-bottom: 0.8rem;
  background-color: #db1919;
  display: flex;
  gap: 10px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.phone-conteiner a {
  font-size: 25px;
  color: var(--white-color);
}

.wp-conteiner {
  padding: 1rem 1.5rem;
  padding-bottom: 0.8rem;
  background-color: #12a05c;
  display: flex;
  width: 40px;
  border-radius: 6px;
  text-justify: center;
}

.bottom_nav {
  display: none;
}

/* benefit_wrapper */
.benefit_wrapper {
  border-top: 1px solid #ccc;
}

.benefit_box {
  padding: 30px 10px;
  background-color: var(--main-color);
  margin-right: 12px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.benefit_box__content p {
  text-align: center;
  color: var(--white-color);
  margin-top: 12px;
  font-size: 22px;
}

/* contact_wrapper */
.contact_wrapper {
  border-top: 1px solid #ccc;
}

/* Make row columns same height */
.contact_wrapper .row {
  display: flex;
  align-items: stretch;
}

/* Image wrapper full height */
.contact_wrapper__img {
  height: 100%;
}

/* Image should cover full height */
.contact_wrapper__img img {
  margin-top: 7%;
  width: 100%;
  /* height: 100%; */
  /* object-fit: contain;   */
}

/* Form full height & center content */
.contact_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 30px;
}

/* point_wrapper */
.point_wrapper {
  border-top: 1px solid #ccc;
  align-items: stretch; /* makes columns equal height */
}

.point_wrapper__box {
  height: 100%;
  padding: 2rem;
  background-color: var(--main-color);
}

.red_box {
  background-color: #16272a !important;
}

.point_wrapper__box h3 {
  font-size: 24px;
  margin-bottom: 10px !important;
  line-height: 1.6;
  color: var(--white-color);
}

.form_poppup {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999;
}

.form_poppup.form_poppup__active {
  display: block;
  overflow: auto;
}

.form_poppup__modal {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}

.form_poppup__modal .modal_form {
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  position: relative;
  width: 100%;
  max-width: 420px; /* 👈 perfect for desktop */
  padding: 0;
  height: 100%;
}

.modal_img {
  position: relative;
}

.modal_heading .cancel_form {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(206, 206, 206, 0.6);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal_img .cancel_form i {
  color: #fff;
  font-size: 20px;
}

.content-limited p {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem !important;
  font-weight: 700;
  text-align: justify;
}

/* .form_poppup__modal .modal_form .cancel_form i {
    height: 40px;
    width: 40px;
    background: var(--white-color);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    font-size: 26px;

} */

.modal_img {
  background-color: #000000;
  width: 100%;
  display: block;
}

.modal-header {
  margin-top: 2rem;
}

.modal_img img {
  width: 100%;
  height: auto;
  max-height: 370px;
  display: block;
  object-fit: contain;
}

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

.form--header {
  padding: 1rem;
  background-color: var(--main-color);
}

.myheader h4 {
  color: var(--white-color);
  font-size: 44px;
  max-width: max-content;
  animation: hilling infinite 0.5s;
}

.myheader h4 {
  font-size: 30px;
}
@media (max-width: 1200px) {
  .benefit_box {
    margin-bottom: 25px;
  }

  .menu ul {
    gap: 2rem;
  }

  .about_right {
    padding-left: 0;
  }

  .product_box {
    margin-bottom: 30px;
  }

  .cta_wrapper__content h2 {
    font-size: 44px;
  }

  .footer_box {
    margin-top: 3rem;
    padding-left: 0;
  }
}

@media (max-width: 992px) {
  .points_heading h2 {
    font-size: 26px;
  }

  .red_box {
    margin-top: 1rem;
  }

  .menu ul {
    display: none;
  }

  .myNav_content {
    padding: 13px 0;
  }

  .about_right {
    margin-top: 1rem;
  }

  .about_right h2,
  .counter_box h3 {
    font-size: 36px;
  }

  .counter_box p {
    margin-top: 6px;
  }

  .shipping_box {
    padding: 1rem;
  }

  .shipping_box h3 {
    font-size: 18px;
  }

  .shipping_box p {
    font-size: 16px;
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  .modal-header {
    margin-top: 0;
  }

  .myheader h4 {
    font-size: 28px;
  }

  .form_poppup__modal .modal_form {
    padding: 0;
  }
  .form_poppup__modal {
    height: 100%;
    align-items: center;
    padding: 15px;
  }

  .fixed_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  }

  .banner_wrapper {
    margin-top: 2.9rem;
  }

  .doctor_box {
    padding: 1rem;
    border-radius: 5px;
  }

  .doctor_box__parra p {
    font-size: 17px;
    line-height: 30px;
  }

  .doctor_info {
    margin-top: 22px;
  }

  .doctor_img img {
    width: 70px;
    height: 70px;
  }

  .doctor_name p {
    font-size: 13px;
  }

  .doctor_name h6 {
    font-size: 20px;
  }

  .copyright {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }

  .point_wrapper__box {
    padding: 1rem;
  }

  .point_wrapper__box h3 {
    font-size: 21px;
  }

  .points_heading h2 {
    font-size: 22px;
  }

  .footer_wrapper__box h2 {
    font-size: 28px;
  }

  .social_media {
    margin-top: 1rem;
  }

  .copyright h6 {
    font-size: 22px;
  }

  .copyright p {
    font-size: 16px;
  }

  .footer_wrapper {
    padding: 30px 0 !important;
  }

  .social_media img {
    width: 170px;
  }

  .benefit_box__content p {
    font-size: 20px;
  }

  .vr_wrapper span {
    font-size: 18px;
  }

  .topNav p {
    font-size: 22px;
  }

  .bottom_nav {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    padding: 10px 0;
    background-color: #ff0000;
  }

  .bottom_nav button {
    color: var(--white-color);
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    background-color: transparent;
    outline: none;
    border: none;

    width: 100%;
  }

  .bottom_nav a:hover {
    color: var(--white-color);
  }

  .phone-wp-main {
    display: none;
    padding-left: 0;
    row-gap: 1rem;
    position: fixed;
    top: inherit;
    transform: none;
    z-index: 1000;
    bottom: 0;
    /* display: flex; */
    justify-content: space-between;
    width: 100%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  }

  .phone-conteiner {
    width: 50%;
    border-radius: 0;
    padding: 1.5rem 0;
    margin-top: 0;
  }

  .phone-conteiner a {
    font-size: 30px;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .global_wrapper {
    padding: 30px 0;
  }

  .global_content {
    margin-top: 2rem;
  }

  .about_wrapper__left img {
    height: auto;
    border-radius: 4px;
  }

  .main_heading h2 {
    font-size: 32px;
  }

  .counter_box p {
    font-size: 16px;
  }

  .about_right p,
  .main_heading p {
    font-size: 16px;
    margin-top: 6px;
    line-height: 25px;
  }

  .price h6 {
    font-size: 17px;
  }

  .shipping_box {
    margin-bottom: 10px;
  }

  .about_right h2,
  .counter_box h3 {
    font-size: 30px;
  }

  .populor_img img {
    margin-bottom: 12px;
    border-radius: 5px;
  }

  .cta_wrapper__content h2 {
    font-size: 32px;
  }

  .cta_wrapper__content button {
    margin-top: 1rem;
  }

  .footer_links {
    gap: 10px;
    margin-top: 16px;
  }
}

@media (max-width: 576px) {
  .myheader h4 {
    font-size: 23px;
  }

  .form--header {
    padding: 3px;
  }
  .modal_img img {
    height: auto;
  }

  .point_wrapper__box h3 {
    font-size: 18px;
  }

  .benefit_box {
    margin-right: 5px;
  }

  .benefit_box__content p {
    font-size: 18px;
  }

  .logo p {
    margin-top: 12px;
    font-size: 14px;
  }

  .shipping_box img {
    width: 75px;
  }

  .cta_wrapper__content h2 {
    font-size: 25px;
  }

  .logo img {
    width: 120px;
  }

  .myNav_content {
    padding: 6px 0;
  }

  .about_wrapper {
    padding: 30px 0 50px 0;
  }

  .about_right {
    margin-top: 10px;
  }

  .counter_row {
    margin-top: 1rem;
  }

  .about_right h2,
  .counter_box h3 {
    font-size: 25px;
  }

  .counter_box h3 {
    line-height: 30px;
  }

  .testimonial_box {
    padding: 1rem;
    margin-right: 4px;
  }

  .review p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 24px;
  }

  .footer_box {
    margin-top: 2rem;
  }

  .footer_box h3 {
    font-size: 20px;
  }

  .footer_links a {
    font-size: 16px;
  }

  .user_profile {
    margin-top: 1rem;
  }
}

@media (max-width: 400px) {
  .banner_wrapper {
    margin-top: .3rem;
  }

  .logo img {
    width: 100px;
  }

  .social_media img {
    width: 122px;
  }

  .product_box__content a {
    font-size: 14px;
    line-height: 22px;
  }

  .about_right p,
  .main_heading p {
    font-size: 15px;
  }
}

/* Hide on desktop */
.mobile-call-bar {
  display: none;
}

/* Mobile only */
@media (max-width: 767px) {
  .mobile-call-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 52px;
    left: 0;
    width: 100%;
    height: 21px;

    animation: colorChange 2s infinite;
  }

  .mobile-call-bar a {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
  }

  body {
    padding-top: 48px;
  }
}

/* Color animation */
@keyframes colorChange {
  0% {
    background: #ff0000; /* red */
  }
  50% {
    background: #ffc107; /* yellow */
  }
  100% {
    background: #ff0000; /* red */
  }
}
