/* CSS Document */

    /* =========================
   RESET
========================= */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #fff;
      color: #171717;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
    }

    .container {
      width: 92%;
      max-width: 1200px;
      margin: auto;
    }

    /* =========================
   RATING
========================= */

    .rating {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 25px;
    }

    .rating-stars {
      color: #ffc400;
      font-size: 21px;
      letter-spacing: 2px;
    }

    .rating-text {
      font-size: 14px;
      color: #ccc;
    }


    /* =========================
   CALL BUTTON
========================= */

    .call-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;

      background: #e00000;
      color: #fff;

      padding: 16px 34px;

      border-radius: 7px;

      font-size: 20px;
      font-weight: 800;

      box-shadow:
        0 8px 25px rgba(220, 0, 0, .35);

      transition: .3s;
      border: 2px solid white;
    }

    .call-btn:hover {
      background: #ff1111;
      transform: translateY(-3px);
    }

    .call-icon {
      font-size: 25px;
    }


    /* =========================
   HERO PRODUCT
========================= */

    .hero-product {
      position: relative;
      min-height: 600px;

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

    .product-glow {
      position: absolute;

      width: 430px;
      height: 430px;

      border-radius: 50%;

      background: rgba(220, 0, 0, .25);

      filter: blur(60px);
    }

    .hero-product img {
      position: relative;
      z-index: 2;

      width: 100%;
      max-width: 580px;

      object-fit: contain;

      filter:
        drop-shadow(0 30px 30px rgba(0, 0, 0, .7));
    }








    /* =========================
   EXPERT
========================= */

    .expert {
      padding: 75px 0;
    }

    .expert-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 50px;
      align-items: center;
    }

    .expert-image {
      background: #f2f2f2;
      border-radius: 18px;
      overflow: hidden;
    }

    .expert-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .expert-content h2 {
      font-size: 38px;
      margin-bottom: 15px;
    }

    .expert-content h2 span {
      color: #d00000;
    }

    .expert-content p {
      color: #666;
      font-size: 17px;
      margin-bottom: 15px;
    }

    .expert-points {
      list-style: none;
      margin-top: 20px;
    }

    .expert-points li {
      margin-bottom: 10px;
    }

    .expert-points li::before {
      content: "✓";
      color: #d00000;
      font-weight: bold;
      margin-right: 10px;
    }


    /* =========================
   REVIEWS
========================= */

    .reviews {
      background: #f7f7f7;
      padding: 75px 0;
    }

    .review-rating {
      text-align: center;
      margin-bottom: 40px;
    }

    .big-rating {
      font-size: 60px;
      font-weight: 900;
      color: #d00000;
    }

    .review-stars {
      color: #f5b900;
      font-size: 26px;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      border: 1px solid #eee;
    }

    .review-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #d90000;
      color: #fff;

      display: flex;
      align-items: center;
      justify-content: center;

      font-weight: bold;
    }

    .review h4 {
      font-size: 16px;
    }

    .review p {
      color: #666;
      font-size: 14px;
    }


    /* =========================
   FAQ
========================= */

    .faq {
      padding: 75px 0;
    }

    .faq-container {
      max-width: 850px;
      margin: auto;
    }

    .faq-item {
      border-bottom: 1px solid #ddd;
    }

    .faq-question {
      width: 100%;
      border: none;
      background: #fff;
      padding: 20px 5px;

      text-align: left;

      font-size: 17px;
      font-weight: 700;

      cursor: pointer;

      display: flex;
      justify-content: space-between;
    }

    .faq-answer {
      display: none;
      padding: 0 5px 20px;
      color: #666;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-question {
      color: #d00000;
    }


    /* =========================
   

        /* =========================
   FOOTER
========================= */

    footer {
      background: #050505;
      color: #999;
      text-align: center;
      padding: 28px 15px;
      font-size: 13px;
    }

    footer strong {
      color: #fff;
    }


    /* =========================
   MOBILE CALL BUTTON
========================= */

    .mobile-call {
      display: none;

      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;

      z-index: 9999;

      background: #d90000;
      padding: 9px;
    }

    .mobile-call a {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;

      background: #fff;
      color: #c00000;

      padding: 12px;

      border-radius: 6px;

      font-size: 18px;
      font-weight: 900;
    }


    /* =========================
   RESPONSIVE
========================= */

    @media(max-width:991px) {

      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 35px;
        padding-bottom: 45px;
      }

      .hero {
        min-height: auto;
      }

      .hero-inner {
        min-height: auto;
      }

      .hero-text {
        padding-bottom: 10px;
      }

      .hero-description {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-list {
        display: inline-block;
        text-align: left;
      }

      .hero-product {
        min-height: 450px;
      }

      .product-grid,
      .expert-grid {
        grid-template-columns: 1fr;
      }

      .benefit-grid,
      .ingredients-grid,
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-strip-inner {
        flex-direction: column;
        text-align: center;
      }

    }


    @media(max-width:767px) {

      body {
        padding-bottom: 62px;
      }

      .top-bar {
        font-size: 12px;
      }

      .hero h1 {
        font-size: 42px;
      }

      .hero-subtitle {
        font-size: 19px;
      }

      .hero-description {
        font-size: 15px;
      }

      .hero-product {
        min-height: 350px;
      }

      .hero-product img {
        max-width: 400px;
      }

      .product-grid {
        gap: 30px;
      }

      .product-info h2 {
        font-size: 31px;
      }

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

      .section-title {
        font-size: 30px;
      }

      .benefit-grid,
      .ingredients-grid,
      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .benefits,
      .ingredients,
      .expert,
      .reviews,
      .faq,
      .product-section {
        padding: 55px 0;
      }

      .expert-image img {
        height: 300px;
      }

      .expert-content h2 {
        font-size: 30px;
      }

      .cta-strip h2 {
        font-size: 27px;
      }

      .final-cta h2 {
        font-size: 34px;
      }

      .mobile-call {
        display: block;
      }

    }


    /* =========================
   SMALL MOBILE
========================= */

    @media(max-width:420px) {

      .container {
        width: 90%;
      }

      .hero h1 {
        font-size: 36px;
      }

      .call-btn {
        width: 100%;
        font-size: 18px;
      }

      .hero-product {
        min-height: 290px;
      }

      .new-price {
        font-size: 32px;
      }

    }

/* =====================================
   EXPERT VIEWS SECTION
===================================== */

.expert-views {
  background: #050505;
  color: #fff;
  padding: 35px 0;
  overflow: hidden;
}

.expert-heading {
  text-align: center;
  margin-bottom: 15px;
}

.expert-heading h2 {
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 6px;
}

.expert-heading h2 b {
  color: #e00000;
}

.expert-heading p {
  color: #aaa;
  font-size: 15px;
  margin: 0;
}


/* =====================================
   SLIDER WRAPPER
===================================== */

.expert-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.expert-slider {
  width: 100%;
  display: flex;
  gap: 18px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 5px 45px 10px;
  box-sizing: border-box;
}


/* =====================================
   VIDEO CARD
   DESKTOP HEIGHT = 350px
===================================== */

.expert-video-card {
  position: relative;

  flex: 0 0 calc((100% - 36px) / 3);

  /*
   Fixed desktop height.
   Width remains responsive.
  */
  height: 350px;

  background: #111;

  border: 2px solid #242424;

  border-radius: 18px;

  overflow: hidden;

  cursor: pointer;

  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;

  box-sizing: border-box;
}

.expert-video-card:hover {
  transform: translateY(-4px);
  border-color: #d90000;

  box-shadow:
    0 15px 40px rgba(220, 0, 0, .20);
}


/* =====================================
   VIDEO THUMBNAIL
===================================== */

.expert-video-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}


/* =====================================
   DARK OVERLAY
===================================== */

.video-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, .18);

  transition: .3s;
}

.expert-video-card:hover .video-overlay {
  background: rgba(0, 0, 0, .38);
}


/* =====================================
   PLAY BUTTON
===================================== */

.play-btn {
  width: 65px;
  height: 65px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, .60);

  border: 3px solid rgba(255, 255, 255, .8);

  color: #fff;

  font-size: 25px;

  padding-left: 4px;

  transition: .3s;
}

.expert-video-card:hover .play-btn {
  background: #d90000;
  border-color: #d90000;

  transform: scale(1.08);
}


/* =====================================
   SLIDER ARROWS
===================================== */

.expert-arrow {
  position: absolute;
  z-index: 5;

  width: 45px;
  height: 45px;

  border-radius: 50%;

  border: 1px solid #444;

  background: rgba(0, 0, 0, .9);

  color: #fff;

  font-size: 20px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: .3s;
}

.expert-arrow:hover {
  background: #d90000;
  border-color: #d90000;
}

.expert-prev {
  left: 5px;
}

.expert-next {
  right: 5px;
}


/* =====================================
   DOTS
===================================== */

.expert-dots {
  display: flex;
  justify-content: center;

  gap: 8px;

  margin-top: 10px;
}

.expert-dot {
  width: 8px;
  height: 8px;

  background: #444;

  border-radius: 50%;

  cursor: pointer;

  transition: .3s;
}

.expert-dot.active {
  width: 25px;

  border-radius: 10px;

  background: #d90000;
}


/* =====================================
   VIDEO MODAL
===================================== */

.video-modal {
  position: fixed;

  inset: 0;

  z-index: 999999;

  background: rgba(0, 0, 0, .94);

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  animation: modalFade .25s ease;
}

.video-modal.active {
  display: flex;
}

@keyframes modalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* =====================================
   MODAL VIDEO
===================================== */

.video-modal-content {
  position: relative;

  width: min(700px, 82vw);
  height: min(88vh, 850px);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 3;
}

.video-modal-content video {
  width: 100%;
  height: 100%;

  object-fit: contain;

  border-radius: 5px;

  background: #000;

  box-shadow:
    0 20px 70px rgba(0, 0, 0, .8);
}


/* =====================================
   CLOSE BUTTON
===================================== */

.video-close {
  position: absolute;

  top: 20px;
  right: 25px;

  width: 45px;
  height: 45px;

  border: none;

  background: transparent;

  color: #fff;

  font-size: 40px;

  line-height: 1;

  cursor: pointer;

  z-index: 10;
}

.video-close:hover {
  color: #e00000;
}


/* =====================================
   MODAL ARROWS
===================================== */

.modal-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  width: 52px;
  height: 52px;

  border-radius: 50%;

  border: 1px solid #555;

  background: rgba(0, 0, 0, .7);

  color: #fff;

  font-size: 25px;

  cursor: pointer;

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

.modal-arrow:hover {
  background: #d90000;
  border-color: #d90000;
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}


/* =====================================
   TABLET
   768px - 991px
===================================== */

@media (max-width: 991px) {

  .expert-views {
    padding: 30px 0;
  }

  .expert-heading h2 {
    font-size: 34px;
  }

  .expert-slider {
    gap: 16px;

    padding-left: 50px;
    padding-right: 50px;
  }

  /*
   2 videos on tablet
  */
  .expert-video-card {
    flex: 0 0 calc((100% - 16px) / 2);

    height: 350px;
  }

  .expert-prev {
    left: 8px;
  }

  .expert-next {
    right: 8px;
  }

  .expert-arrow {
    background: rgba(0, 0, 0, .9);
  }
}


/* =====================================
   MOBILE
   481px - 767px
===================================== */

@media (max-width: 767px) {

  .expert-views {
    padding: 25px 0;
  }

  .expert-heading {
    padding: 0 10px;
    margin-bottom: 12px;
  }

  .expert-heading h2 {
    font-size: 29px;
  }

  .expert-heading p {
    font-size: 13px;
  }


  /* SLIDER */

  .expert-slider {
    gap: 12px;

    padding-left: 35px;
    padding-right: 35px;
  }


  /*
   One video on mobile.
   Height scales with viewport width
   but remains within a sensible range.
  */

  .expert-video-card {
    flex: 0 0 100%;

    height: clamp(260px, 75vw, 350px);

    border-radius: 14px;
  }


  /* ARROWS */

  .expert-arrow {
    width: 40px;
    height: 40px;

    font-size: 18px;
  }

  .expert-prev {
    left: 3px;
  }

  .expert-next {
    right: 3px;
  }


  /* PLAY BUTTON */

  .play-btn {
    width: 58px;
    height: 58px;

    font-size: 22px;
  }


  /* =================================
     MODAL MOBILE
  ================================= */

  .video-modal {
    padding: 0;
  }

  .video-modal-content {
    width: 100vw;
    height: 100vh;
  }

  .video-modal-content video {
    width: 100%;
    height: 100%;

    border-radius: 0;
  }

  .video-close {
    top: 12px;
    right: 15px;

    width: 40px;
    height: 40px;

    font-size: 35px;
  }

  .modal-arrow {
    width: 40px;
    height: 40px;

    font-size: 18px;

    background: rgba(0, 0, 0, .55);
  }

  .modal-prev {
    left: 8px;
  }

  .modal-next {
    right: 8px;
  }
}


/* =====================================
   SMALL MOBILE
   <= 480px
===================================== */

@media (max-width: 480px) {

  .expert-views {
    padding: 22px 0;
  }

  .expert-heading h2 {
    font-size: 26px;
  }

  .expert-heading p {
    font-size: 12px;
  }

  .expert-slider {
    gap: 10px;

    padding-left: 32px;
    padding-right: 32px;
  }

  /*
   Smaller mobile:
   approximately 280px - 340px
  */

  .expert-video-card {
    flex: 0 0 100%;

    height: clamp(250px, 78vw, 340px);

    border-radius: 12px;
  }

  .expert-arrow {
    width: 36px;
    height: 36px;

    font-size: 16px;
  }

  .expert-prev {
    left: 2px;
  }

  .expert-next {
    right: 2px;
  }

  .play-btn {
    width: 54px;
    height: 54px;

    font-size: 20px;
  }
}


/* =====================================
   VERY SMALL MOBILE
   <= 380px
===================================== */

@media (max-width: 380px) {

  .expert-views {
    padding: 20px 0;
  }

  .expert-heading h2 {
    font-size: 24px;
  }

  .expert-slider {
    padding-left: 30px;
    padding-right: 30px;
  }

  .expert-video-card {
    height: 280px;
  }

  .expert-arrow {
    width: 34px;
    height: 34px;

    font-size: 15px;
  }

  .play-btn {
    width: 50px;
    height: 50px;

    font-size: 19px;
  }
}

  .call-icon {
    display: inline-block;
    animation: phoneRing 1.2s infinite;
    transform-origin: center;
  }

  @keyframes phoneRing {

    0% {
      transform: rotate(0deg);
    }

    10% {
      transform: rotate(-15deg);
    }

    20% {
      transform: rotate(15deg);
    }

    30% {
      transform: rotate(-12deg);
    }

    40% {
      transform: rotate(12deg);
    }

    50% {
      transform: rotate(-8deg);
    }

    60% {
      transform: rotate(8deg);
    }

    70% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(0deg);
    }
  }
  
/* Top price section */
    .price-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 7px;
      white-space: nowrap;
    }

    .retail-price {
      font-size: 11px;
      color: #777;
    }

    .old-price {
      text-decoration: line-through;
      color: #777;
    }

    .sale-price {
      color: #bd171d;
      font-size: 24px;
      font-weight: 800;
    }

    .discount {
      background: #e8f8ed;
      color: #198b4b;
      font-size: 10px;
      font-weight: bold;
      padding: 6px 9px;
      border-radius: 4px;
    }

    /* Hindi urgency text */
    .urgency {
      text-align: center;
      color: #a51a1f;
      font-size: 12px;
      font-weight: 700;
      margin: 5px 0 12px;
    }

    /* Call card */
    .call-card {
      position: relative;
      overflow: hidden;
      border: 1px solid #efc9c9;
      border-radius: 14px;
      background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
      box-shadow: 0 2px 8px rgba(180, 30, 30, 0.08);
      width: min(325px, calc(100% - 30px));
      margin: 0 auto;
    }
    @media (max-width: 768px) {
      .call-card {
        margin-left: auto;
        margin-right: auto;
      }
    }
    .call-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: #c81d25;
    }

    .call-content {
      min-height: 75px;
      padding: 10px 12px 8px 14px;
      padding-right: 75px;
      text-align:left;
    }

    .available {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: #25894c;
      background: #effaf2;
      border-radius: 10px;
      padding: 3px 7px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .available-dot {
      width: 5px;
      height: 5px;
      background: #20a451;
      border-radius: 50%;
    }

    .info-text {
      font-size: 12px;
      color: #555;
      margin-bottom: 2px;
    }

    .phone-number {
      color: #bd171d;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.3px;
      text-decoration: none;
    }

    /* Green call button */
  .call-button {
  position: absolute;
  right: 13px;
  top: 18px;

  width: 40px;
  height: 40px;

  border: none;
  border-radius: 50%;

  /* Green circular button */
  background: #18a653;

  /* White calling icon */
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow: 0 4px 10px rgba(24, 166, 83, 0.3);

  /* Continuous calling animation */
  animation: callShake 1.2s infinite;
}

.call-button svg {
  width: 25px;
  height: 25px;

  /* White phone icon */
  fill: #fff;
}

  .call-button22 {
  position: absolute;
  right: 13px;
  top: 18px;

  width:80px;
  /* height: 40px; */

  border: none;
  border-radius: 10px;
    font-size: 15px;

  /* Green circular button */
  background: #18a653;
  text-decoration: none;
  /* White calling icon */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow: 0 4px 10px rgba(24, 166, 83, 0.3);
}
@media (max-width: 768px) {
    .call-button22 {
        right: 10px;
        top: 15px;
        min-width: 75px;
        height: 36px;
        padding: 0 10px;
        font-size: 14px;
    }
}
@keyframes callShake {
  0%, 55%, 100% {
    transform: rotate(0deg) scale(1);
  }

  60% {
    transform: rotate(-12deg) scale(1.08);
  }

  65% {
    transform: rotate(12deg) scale(1.08);
  }

  70% {
    transform: rotate(-12deg) scale(1.08);
  }

  75% {
    transform: rotate(12deg) scale(1.08);
  }

  80% {
    transform: rotate(0deg) scale(1);
  }
}

    .call-button:hover {
      background: #128d45;
    }

    /* Bottom call strip */
    .call-footer {
      height: 28px;
      border-top: 1px solid #f1dede;
      background: #fffafa;

      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;

      color: #f1e3e3;
      font-size: 11px;
    }

    .call-footer-icon {
      font-size: 14px;
      color: #f3dcdc;
    }

    .call-buttone {
  position: absolute;
  right: 13px;
  top: 18px;

  width: 40px;
  height: 40px;

  border: none;
  border-radius: 50%;

  /* Green circular button */
  background: #18a653;

  /* White calling icon */
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow: 0 4px 10px rgba(24, 166, 83, 0.3);

  /* Continuous calling animation */
  animation: callShake 1.2s infinite;
}

.call-buttone svg {
  width: 25px;
  height: 25px;

  /* White phone icon */
  fill: #fff;
}
  .call-footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

.call-footer-icon svg {
  width: 22px;
  height: 20px;
  fill: currentColor;
  animation: footerCall 1.2s infinite ease-in-out;
}

.order-btn {
    display: block;
    width: 300px;
    margin: 20px auto;
    border-radius: 56px;
    padding: 13px 20px;
    background: #F8A900;
    color: white;;
    color: #fff;

    border: none;
    border-radius: 50px;

    font-size: 20px;
    font-weight: 700;
    cursor: pointer;

    box-shadow: #F8A900;
    color: white;;
    transition: 0.2s ease;
}

.order-btn:hover {
    background: #F8A900;
    color: white;;
}

.order-btn:active {
    transform: scale(0.98);
}

    /* =========================================
   Staymanly HERO
    ========================================= */

    .pm-hero {
      position: relative;
      width: 100%;
      min-height: 760px;
      overflow: hidden;

      background:
        linear-gradient(90deg,
          rgba(0, 0, 0, .96) 0%,
          rgba(12, 10, 8, .90) 50%,
          rgba(0, 0, 0, .96) 100%);

      color: #fff;
      font-family: Arial, Helvetica, sans-serif;
    }


    /* =========================================
   MARQUEE
   ========================================= */

    .pm-marquee {
      width: 100%;
      height: 42px;
      overflow: hidden;

      background: #F8A900;
      color: #111;

      display: flex;
      align-items: center;

      white-space: nowrap;
    }

    .pm-marquee-track {
      display: inline-flex;
      align-items: center;

      width: max-content;

      animation: pmMarquee 20s linear infinite;
    }

    .pm-marquee-track span {
      font-size: 18px;
      font-weight: 700;

      padding: 0 28px;
    }

    @keyframes pmMarquee {

      0% {
        transform: translateX(0);
      }

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

    }


    /* =========================================
   HERO INNER
   ========================================= */

    .pm-hero-inner {

      max-width: 1400px;
      min-height: 718px;

      margin: auto;
      padding: 20px 40px 90px;

      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;

      align-items: center;

    }


    /* =========================================
   LEFT
========================================= */

    .pm-left {
      position: relative;
      height: 100%;

      display: flex;
      flex-direction: column;
      justify-content: center;
    }


    .pm-call {
      position: absolute;

      top: 0;
      left: 0;

      z-index: 5;
    }

    .pm-call span {
      font-size: 40px;
    }

    .pm-call-title {
      font-size: 30px;
      margin-bottom: 10px;
      text-decoration: none;
      color:white;
    }


    .pm-phone {

      display: inline-block;

      background: #F8A900;
      color: #111;

      padding: 9px 12px;

      border-radius: 5px;

      font-size: 25px;
      font-weight: 800;

      text-decoration: none;

      transition: .3s;
    }


    .pm-phone:hover {
      transform: scale(1.04);
    }


    /* =========================================
   PRODUCT
========================================= */

    .pm-product-area {

      position: relative;

      min-height: 550px;

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


    .pm-product {

      position: relative;

      width: min(650px, 90%);

      max-height: 600px;

      object-fit: contain;

      z-index: 3;

      filter:
        drop-shadow(0 25px 30px rgba(0, 0, 0, .8));

    }


    /* =========================================
   PRODUCT GLOW
========================================= */

    .pm-glow {

      position: absolute;

      border-radius: 50%;

      filter: blur(50px);

      background: rgba(255, 166, 0, .35);

      z-index: 1;
    }


    .pm-glow-1 {

      width: 220px;
      height: 220px;

      left: 25%;
      bottom: 20%;

    }


    .pm-glow-2 {

      width: 160px;
      height: 160px;

      right: 15%;
      top: 35%;

      opacity: .6;

    }


    /* =========================================
   RIGHT CONTENT
========================================= */

    .pm-right {

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


    .pm-content-card {

      width: 100%;
      max-width: 680px;

      padding: 30px 36px;

      border: 1px solid rgba(255, 255, 255, .35);

      border-radius: 25px;

      background:
        linear-gradient(135deg,
          rgba(255, 255, 255, .12),
          rgba(255, 255, 255, .03));

      backdrop-filter: blur(12px);

      box-shadow:
        0 20px 50px rgba(0, 0, 0, .4);

    }


    .pm-content-card h1 {

      margin: 0;

      text-align: center;

      font-size: clamp(34px, 4vw, 58px);

      line-height: 1.15;

      font-weight: 800;

    }


    .pm-subtitle {

      text-align: center;

      margin-top: 10px;

      font-size: clamp(19px, 2vw, 27px);

      color: #f2f2f2;

    }


    /* =========================================
   TEXT BOX
========================================= */

    .pm-text-box {

      margin-top: 28px;

      padding: 40px 35px;

      border: 3px solid #e00000;

      border-radius: 22px;

      background:
        linear-gradient(135deg,
          rgba(255, 255, 255, .08),
          rgba(0, 0, 0, .15));

      text-align: center;

    }


    .pm-text-box h2 {

      margin: 0;

      font-size: clamp(25px, 3vw, 38px);

      line-height: 1.3;

    }


    .pm-line {

      width: 100%;

      height: 1px;

      background: rgba(255, 255, 255, .5);

      margin: 25px 0;
    }


    .pm-text-box p {

      margin: 0 0 25px;

      font-size: 19px;

      line-height: 1.6;

      color: #eee;

    }


    /* =========================================
   MAIN BUTTON
========================================= */

    .pm-main-btn {

      display: inline-block;

      background: #F8A900;

      color: #111;

      padding: 14px 50px;

      border-radius: 35px;

      font-size: 25px;

      font-weight: 800;

      text-decoration: none;

      transition: .3s;

    }


    .pm-main-btn:hover {

      background: #ffc400;

      transform: translateY(-2px);

      box-shadow:
        0 8px 25px rgba(255, 174, 0, .3);
      color: #000 !important;

    }


    /* =========================================
   WHATSAPP
========================================= */

    .pm-whatsapp {

      position: fixed;

      right: 30px;
      bottom: 85px;

      width: 87px;
      height: 75px;

      border-radius: 50%;

      background: #16a34a;

      border: 4px solid #fff;

      display: flex;
      align-items: center;
      justify-content: center;

      color: #fff;

      text-decoration: none;

      z-index: 9999;

      box-shadow:
        0 5px 20px rgba(0, 0, 0, .4);

         /* Shake animation */
  animation: callShake 1.2s infinite;

    }


    .pm-whatsapp span {

      font-size: 28px;

    }


    /* =========================================
   BOTTOM CTA
========================================= */

    .pm-bottom-cta {

      position: fixed;

      left: 0;
      bottom: 0;

      width: 100%;

      height: 68px;

      background:
        rgba(10, 10, 10, .90);

      backdrop-filter: blur(8px);

      border: 1px solid rgba(255, 255, 255, .25);

      border-radius: 20px 20px 0 0;

      display: flex;

      justify-content: center;
      align-items: center;

      z-index: 9998;

    }


    .pm-bottom-cta a {

      background: #F8A900;

      color: white;

      padding: 14px 55px;

      border-radius: 30px;

      text-decoration: none;

      font-size: 18px;

      font-weight: 800;

      box-shadow:
        0 4px 15px rgba(255, 174, 0, .25);

    }


    /* =========================================
   TABLET
========================================= */

    @media (max-width: 900px) {

      .pm-hero {
        min-height: auto;
      }

      .pm-hero-inner {

        grid-template-columns: 1fr;

        padding:
          20px 25px 100px;

        gap: 10px;

      }

      .pm-left {
        min-height: 500px;
      }

      .pm-product-area {
        min-height: 460px;
      }

      .pm-right {
        margin-top: -20px;
      }

      .pm-content-card {
        max-width: 700px;
      }

    }


    /* =========================================
   MOBILE
========================================= */

    @media (max-width: 600px) {

      .pm-hero {
        min-height: 100vh;
      }


      /* MARQUEE */

      .pm-marquee {
        height: 35px;
      }

      .pm-marquee-track span {
        font-size: 14px;
        padding: 0 18px;
      }


      /* HERO */

      .pm-hero-inner {

        display: flex;

        flex-direction: column;

        padding:
          15px 10px 30px;

      }


      /* CALL */

      .pm-left {

        width: 100%;

        min-height: auto;

        display: flex;

        flex-direction: column;

      }


      .pm-call {

        position: relative;

        top: auto;
        left: auto;

        text-align: center;

        margin-bottom: 5px;

      }


      .pm-call-title {

        font-size: 35px;

        margin-bottom: 5px;

      }


      .pm-phone {

        font-size: 25px;

        padding: 8px 22px;

      }


      /* PRODUCT */

      .pm-product-area {

        width: 100%;

        min-height: 360px;

        margin-top: 0;

      }


      .pm-product {

        width: 95%;

        max-height: 390px;

      }


      /* RIGHT */

      .pm-right {

        width: 100%;

        margin-top: -10px;

      }


      .pm-content-card {

        padding: 18px 12px;

        border-radius: 20px;

      }


      .pm-content-card h1 {

        font-size: 36px;

      }


      .pm-subtitle {

        font-size: 34px;

        line-height: 1.35;

      }


      /* TEXT BOX */

      .pm-text-box {

        margin-top: 18px;

        padding: 25px 14px;

        border-width: 2px;

        border-radius: 18px;

      }


      .pm-text-box h2 {

        font-size: 26px;

        line-height: 1.3;

      }


      .pm-line {

        margin: 17px 0;

      }


      .pm-text-box p {

        font-size: 21px;

        line-height: 1.5;

        margin-bottom: 18px;

      }


      .pm-main-btn {

        padding: 12px 35px;

        font-size: 25px;

      }


      /* WHATSAPP */

      .pm-whatsapp {

        width: 87px;

        height: 75px;

        right: 20px;

        bottom: 78px;

      }


      /* BOTTOM CTA */

      .pm-bottom-cta {

        height: 62px;

        border-radius: 15px 15px 0 0;

      }


      .pm-bottom-cta a {

        padding: 12px 28px;

        font-size: 15px;

      }

    }


    /* =========================================
   VERY SMALL MOBILE
========================================= */

    @media (max-width: 380px) {

      .pm-product-area {
        min-height: 280px;
      }

      .pm-product {
        max-height: 340px;
      }

      .pm-content-card h1 {
        font-size: 30px;
        line-height: 40px;
      }

      .pm-subtitle {
        font-size: 28px;
      }

      .pm-text-box h2 {
        font-size: 22px;
      }

    }
    /* ==========================================
   Staymanly INFORMATION SECTION
    ========================================== */

    .playmore-info-section {
      width: 100%;
      box-sizing: border-box;

      padding: 30px 15px;

      background:
        linear-gradient(rgba(0, 0, 0, 0.45),
          rgba(0, 0, 0, 0.65)),
        url("images/Bedroom.webp");

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

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


    /* ==========================================
   GLASS CARD
========================================== */

    .playmore-info-card {
      width: 100%;
      max-width: 1400px;

      box-sizing: border-box;

      padding: 35px 55px;

      border-radius: 25px;

      border: 1px solid rgba(255, 255, 255, 0.35);

      background:
        linear-gradient(135deg,
          rgba(55, 55, 55, 0.65),
          rgba(25, 25, 25, 0.58));

      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);

      box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35);

      text-align: center;

      color: #ffffff;
    }


    /* ==========================================
   HINDI TEXT
========================================== */

    .playmore-hindi {
      max-width: 1150px;

      margin: 0 auto;
    }


    .playmore-hindi p {

      margin: 0 auto 20px;

      font-family:
        Arial,
        "Noto Sans Devanagari",
        sans-serif;

      font-size: clamp(20px, 2.1vw, 31px);

      line-height: 1.45;

      font-weight: 400;

      text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.7);

    }


    .playmore-hindi strong {
      font-weight: 800;
    }


    /* ==========================================
   ENGLISH TEXT
========================================== */

    .playmore-english {

      max-width: 1050px;

      margin: 30px auto 0;

    }


    .playmore-english p {

      margin: 0;

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

      font-size: clamp(18px, 1.7vw, 26px);

      line-height: 1.55;

      font-weight: 600;

      text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.7);

    }


    .playmore-english strong {
      font-weight: 800;
    }


    /* ==========================================
   TABLET
========================================== */

    @media (max-width: 900px) {

      .playmore-info-section {
        padding: 25px 15px;
      }

      .playmore-info-card {

        padding: 30px 35px;

        border-radius: 22px;

      }

      .playmore-hindi p {

        font-size: 23px;

      }

      .playmore-english {

        margin-top: 25px;

      }

      .playmore-english p {

        font-size: 19px;

      }

    }


    /* ==========================================
   MOBILE
========================================== */

    @media (max-width: 600px) {

      .playmore-info-section {

        padding: 15px 10px;

        background-position: center;

      }


      .playmore-info-card {

        padding: 22px 16px;

        border-radius: 18px;

        border-width: 1px;

      }


      .playmore-hindi p {

        font-size: 18px;

        line-height: 1.45;

        margin-bottom: 15px;

      }


      .playmore-english {

        margin-top: 20px;

      }


      .playmore-english p {

        font-size: 15px;

        line-height: 1.5;

      }

    }


    /* ==========================================
   SMALL MOBILE
========================================== */

    @media (max-width: 380px) {

      .playmore-info-section {
        padding: 12px 8px;
      }

      .playmore-info-card {
        padding: 18px 13px;
        border-radius: 16px;
      }

      .playmore-hindi p {
        font-size: 16px;
      }

      .playmore-english p {
        font-size: 14px;
      }

    }
      @media (max-width: 325px) {
        .call-card  {
          margin-left: 0px;
        }


    }


    /* =====================================
   EXPERT VIEWS
   ===================================== */

    .expert-views {
      background: #050505;
      color: #fff;
      padding: 80px 0;
      overflow: hidden;
    }

    .expert-heading {
      text-align: center;
      margin-bottom: 16px;
    }

    .expert-heading span {
      display: inline-block;
      color: #e00000;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 2px;
      margin-bottom: 8px;
    }

    .expert-heading h2 {
      font-size: 45px;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .expert-heading h2 b {
      color: #e00000;
    }

    .expert-heading p {
      color: #aaa;
      font-size: 16px;
    }


    /* SLIDER */

    .expert-slider-wrap {
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
    }

    .expert-slider {
      width: 100%;
      display: flex;
      gap: 22px;
      overflow: hidden;
      scroll-behavior: smooth;
      padding: 8px 5px 18px;
    }


    /* VIDEO CARD */

    .expert-video-card {
      position: relative;
      flex: 0 0 calc((100% - 44px) / 3);

      aspect-ratio: 9 / 14;

      background: #111;
      border: 2px solid #242424;

      border-radius: 18px;

      overflow: hidden;

      cursor: pointer;

      transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
    }

    .expert-video-card:hover {
      transform: translateY(-5px);
      border-color: #d90000;

      box-shadow:
        0 15px 40px rgba(220, 0, 0, .20);
    }

    .expert-video-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


    /* DARK OVERLAY */

    .video-overlay {
      position: absolute;
      inset: 0;

      display: flex;
      align-items: center;
      justify-content: center;

      background: rgba(0, 0, 0, .18);

      transition: .3s;
    }

    .expert-video-card:hover .video-overlay {
      background: rgba(0, 0, 0, .38);
    }


    /* PLAY BUTTON */

    .play-btn {
      width: 72px;
      height: 72px;

      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      background: rgba(0, 0, 0, .60);

      border: 3px solid rgba(255, 255, 255, .8);

      color: #fff;

      font-size: 27px;

      padding-left: 4px;

      transition: .3s;
    }

    .expert-video-card:hover .play-btn {
      background: #d90000;
      border-color: #d90000;

      transform: scale(1.08);
    }


    /* ARROWS */

    .expert-arrow {
      position: absolute;
      z-index: 5;

      width: 48px;
      height: 48px;

      border-radius: 50%;

      border: 1px solid #444;

      background: rgba(0, 0, 0, .9);

      color: #fff;

      font-size: 22px;

      cursor: pointer;

      display: flex;
      align-items: center;
      justify-content: center;

      transition: .3s;
    }

    .expert-arrow:hover {
      background: #d90000;
      border-color: #d90000;
    }

    .expert-prev {
      left: -25px;
    }

    .expert-next {
      right: -25px;
    }


    /* DOTS */

    .expert-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 15px;
    }

    .expert-dot {
      width: 8px;
      height: 8px;

      background: #444;

      border-radius: 50%;

      cursor: pointer;

      transition: .3s;
    }

    .expert-dot.active {
      width: 25px;
      border-radius: 10px;
      background: #d90000;
    }


    /* =====================================
   VIDEO MODAL
    ===================================== */

    .video-modal {
      position: fixed;

      inset: 0;

      z-index: 999999;

      background: rgba(0, 0, 0, .94);

      display: none;

      align-items: center;
      justify-content: center;

      padding: 20px;

      animation: modalFade .25s ease;
    }

    .video-modal.active {
      display: flex;
    }

    @keyframes modalFade {

      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }

    }


    /* VIDEO BOX */

    .video-modal-content {
      position: relative;

      width: min(700px, 82vw);
      height: min(88vh, 850px);

      display: flex;
      align-items: center;
      justify-content: center;

      z-index: 3;
    }

    .video-modal-content video {
      width: 100%;
      height: 100%;

      object-fit: contain;

      border-radius: 5px;

      background: #000;

      box-shadow:
        0 20px 70px rgba(0, 0, 0, .8);
    }


    /* CLOSE */

    .video-close {
      position: absolute;

      top: 20px;
      right: 25px;

      width: 45px;
      height: 45px;

      border: none;

      background: transparent;

      color: #fff;

      font-size: 40px;

      line-height: 1;

      cursor: pointer;

      z-index: 10;
    }

    .video-close:hover {
      color: #e00000;
    }


    /* MODAL ARROWS */

    .modal-arrow {
      position: absolute;

      top: 50%;

      transform: translateY(-50%);

      z-index: 10;

      width: 52px;
      height: 52px;

      border-radius: 50%;

      border: 1px solid #555;

      background: rgba(0, 0, 0, .7);

      color: #fff;

      font-size: 25px;

      cursor: pointer;

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

    .modal-arrow:hover {
      background: #d90000;
      border-color: #d90000;
    }

    .modal-prev {
      left: 30px;
    }

    .modal-next {
      right: 30px;
    }


    /* =====================================
   TABLET
   ===================================== */

    @media(max-width:991px) {

      .expert-video-card {
        flex: 0 0 calc((100% - 22px) / 2);
      }

      .expert-prev {
        left: 8px;
      }

      .expert-next {
        right: 8px;
      }

      .expert-arrow {
        background: rgba(0, 0, 0, .85);
      }

    }


    /* =====================================
   MOBILE
   ===================================== */

    @media(max-width:767px) {

      .expert-views {
        padding: 30px 0;
      }

      .expert-heading h2 {
        font-size: 29px;
      }

      .expert-heading p {
        font-size: 13px;
      }

      .expert-slider {
        gap: 12px;

        padding-left: 20px;
        padding-right: 20px;
      }

      .expert-video-card {
        flex: 0 0 78%;
        border-radius: 14px;
      }

      .expert-arrow {
        width: 40px;
        height: 40px;

        font-size: 18px;
      }

      .expert-prev {
        left: 3px;
      }

      .expert-next {
        right: 3px;
      }


      /* MODAL MOBILE */

      .video-modal {
        padding: 0;
      }

      .video-modal-content {
        width: 100vw;
        height: 100vh;
      }

      .video-modal-content video {
        width: 100%;
        height: 100%;

        border-radius: 0;
      }

      .video-close {
        top: 12px;
        right: 15px;

        width: 40px;
        height: 40px;

        font-size: 35px;
      }

      .modal-arrow {
        width: 40px;
        height: 40px;

        font-size: 18px;

        background: rgba(0, 0, 0, .55);
      }

      .modal-prev {
        left: 8px;
      }

      .modal-next {
        right: 8px;
      }

    }
    /* =========================================
   PLAY MORE WHY SECTION
    ========================================= */

    .pm-why-section {
      width: 100%;
      box-sizing: border-box;

      padding: 35px 20px 45px;

      color: #fff;

      background:
        linear-gradient(rgba(0, 0, 0, .60),
          rgba(0, 0, 0, .65)),
        url("images/Bedroom.webp");

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }


    .pm-why-container {
      width: 100%;
      max-width: 1200px;

      margin: 0 auto;
    }


    /* =========================================
   HEADING
     ========================================= */

    .pm-why-title {
      margin: 0;

      text-align: center;

      color: #ffad00;

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

      font-size: clamp(28px, 3.3vw, 43px);

      line-height: 1.2;

      font-weight: 800;
    }


    .pm-why-subtitle {

      max-width: 1000px;

      margin: 12px auto 35px;

      text-align: center;

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

      font-size: clamp(16px, 1.6vw, 22px);

      line-height: 1.4;

      color: #f5f5f5;

    }


    /* =========================================
   FEATURES GRID
========================================= */

    .pm-features {

      display: grid;

      grid-template-columns: 1fr 1fr;

      column-gap: 65px;

      row-gap: 38px;

    }


    /* =========================================
   FEATURE
========================================= */

    .pm-feature {

      display: flex;

      align-items: flex-start;

      gap: 18px;

    }


    /* =========================================
   ICON
========================================= */

    .pm-icon {

      width: 58px;
      min-width: 58px;

      height: 58px;

      display: flex;

      align-items: center;
      justify-content: center;

    }


    .pm-icon svg {

      width: 52px;
      height: 52px;

      fill: none;

      stroke: #fff;

      stroke-width: 2.5;

      stroke-linecap: round;

      stroke-linejoin: round;

    }


    /* =========================================
   FEATURE CONTENT
========================================= */

    .pm-feature-content {

      flex: 1;

    }


    .pm-feature-content h3 {

      margin: 0 0 5px;

      font-family:
        Arial,
        "Noto Sans Devanagari",
        sans-serif;

      font-size: clamp(17px, 1.5vw, 22px);

      line-height: 1.3;

      font-weight: 800;

      color: #fff;

    }


    .pm-feature-content p {

      margin: 0;

      font-family:
        Arial,
        "Noto Sans Devanagari",
        sans-serif;

      font-size: clamp(14px, 1.25vw, 18px);

      line-height: 1.45;

      color: #f2f2f2;

    }


    /* =========================================
   TABLET
========================================= */

    @media (max-width: 900px) {

      .pm-why-section {

        padding: 30px 20px 40px;

      }


      .pm-features {

        column-gap: 35px;

        row-gap: 32px;

      }


      .pm-icon {

        width: 50px;
        min-width: 50px;

      }


      .pm-icon svg {

        width: 46px;
        height: 46px;

      }

    }


    /* =========================================
   MOBILE
========================================= */

    @media (max-width: 650px) {

      .pm-why-section {
        padding: 28px 14px 35px;
        background-position: center;
      }

      /* MAIN HEADING */
      .pm-why-title {
        font-size: 25px;
        line-height: 1.25;
        text-align: center;
      }

      /* SUB HEADING */
      .pm-why-subtitle {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        margin: 12px auto 20px;
        max-width: 340px;
      }

      /* FEATURES */
      .pm-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }

      /* EACH FEATURE */
      .pm-feature {
        width: 100%;
        max-width: 350px;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        text-align: center;

        gap: 8px;
      }

      /* ICON */
      .pm-icon {
        width: 55px;
        min-width: 55px;
        height: 55px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0 auto 2px;
      }

      .pm-icon svg {
        width: 48px;
        height: 48px;
      }

      /* CONTENT */
      .pm-feature-content {
        width: 100%;
        text-align: center;
      }

      /* FEATURE HEADING */
      .pm-feature-content h3 {
        font-size: 17px;
        line-height: 1.35;

        text-align: center;

        margin: 0 auto 5px;

        font-weight: 800;
      }

      /* FEATURE DESCRIPTION */
      .pm-feature-content p {
        max-width: 330px;

        margin: 0 auto;

        font-size: 14px;
        line-height: 1.5;

        text-align: center;
      }
    }


    /* SMALL MOBILE */
    @media (max-width: 380px) {

      .pm-why-section {
        padding: 25px 10px 32px;
      }

      .pm-why-title {
        font-size: 23px;
        line-height: 1.25;
      }

      .pm-why-subtitle {
        font-size: 14px;
        max-width: 320px;
      }

      .pm-features {
        gap: 25px;
      }

      .pm-feature {
        max-width: 320px;
      }

      .pm-icon {
        width: 50px;
        min-width: 50px;
        height: 50px;
      }

      .pm-icon svg {
        width: 44px;
        height: 44px;
      }

      .pm-feature-content h3 {
        font-size: 16px;
      }

      .pm-feature-content p {
        font-size: 13px;
        max-width: 300px;
      }
    }

    /* =========================================
   ADVANTAGES SECTION
========================================= */

    .pm-advantages {
      width: 100%;
      box-sizing: border-box;

      padding: 45px 20px 70px;

      background:
        linear-gradient(rgba(0, 0, 0, .58),
          rgba(0, 0, 0, .65)),
        url("YOUR-BACKGROUND-IMAGE.jpg");

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      color: #fff;
    }


    /* =========================================
   GLASS CARD
========================================= */

    .pm-advantages-card {

      width: 100%;
      max-width: 1115px;

      margin: 0 auto;

      box-sizing: border-box;

      padding: 20px 65px 28px;

      border: 1px solid rgba(255, 255, 255, .35);

      border-radius: 25px;

      background:
        linear-gradient(135deg,
          rgba(55, 55, 55, .65),
          rgba(25, 25, 25, .58));

      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);

      box-shadow:
        0 15px 45px rgba(0, 0, 0, .3);
    }


    /* =========================================
   TITLE
========================================= */

    .pm-advantages-card h2 {

      margin: 0;

      text-align: center;

      color: #ffad00;

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

      font-size: clamp(38px, 4vw, 50px);

      line-height: 1.2;

      font-weight: 800;
    }


    /* =========================================
   INTRO
========================================= */

    .pm-advantages-intro {

      max-width: 900px;

      margin: 18px auto 35px;

      text-align: center;

      color: #fff;

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

      font-size: clamp(17px, 1.7vw, 21px);

      line-height: 1.45;

      font-weight: 500;
    }


    /* =========================================
   LIST
========================================= */

    .pm-advantages-list {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .pm-advantage {
      width: fit-content;
      max-width: 100%;

      display: flex;
      flex-direction: row;

      align-items: flex-start;
      justify-content: center;

      gap: 10px;

      margin: 0 auto;

      text-align: left;
    }

    .pm-check {
      flex-shrink: 0;

      width: auto;
      height: auto;

      color: #ffad00;

      font-size: 28px;
      font-weight: 900;
      line-height: 1.45;

      margin: 0;
    }

    .pm-advantage p {
      margin: 0;

      text-align: left;

      color: #fff;

      font-size: clamp(15px, 1.35vw, 18px);

      line-height: 1.45;
    }

    .pm-advantage strong {
      font-weight: 800;
    }


    /* =========================================
   TABLET
========================================= */

    @media (max-width: 900px) {

      .pm-advantages {

        padding: 35px 18px 60px;

      }

      .pm-advantages-card {

        padding: 25px 35px 30px;

      }

      .pm-advantages-card h2 {

        font-size: 40px;

      }

      .pm-advantages-intro {

        margin-bottom: 30px;

        font-size: 17px;

      }

      .pm-advantages-list {

        gap: 16px;

      }

    }


    /* =========================================
   MOBILE
========================================= */

    @media (max-width: 650px) {

      .pm-advantages {

        padding: 25px 10px 75px;

        background-position: center;

      }


      .pm-advantages-card {

        padding: 22px 16px 28px;

        border-radius: 20px;

      }


      /* TITLE */

      .pm-advantages-card h2 {

        font-size: 32px;

        line-height: 1.2;

      }


      /* INTRO */

      .pm-advantages-intro {

        max-width: 340px;

        margin: 12px auto 30px;

        font-size: 15px;

        line-height: 1.5;

        text-align: center;

      }


      /* LIST */

      .pm-advantages-list {

        gap: 18px;

      }


      /* ADVANTAGE */

      .pm-advantage {

        width: 100%;

        display: flex;

        align-items: flex-start;

        gap: 8px;

      }


      /* CHECK */

      .pm-check {

        width: 23px;
        min-width: 23px;

        height: 23px;

        font-size: 25px;

        margin-top: 0;

      }


      /* TEXT */

      .pm-advantage p {

        font-size: 14px;

        line-height: 1.5;

        text-align: left;

      }

    }


    /* =========================================
   SMALL MOBILE
========================================= */

    @media (max-width: 380px) {

      .pm-advantages {

        padding-left: 7px;
        padding-right: 7px;

      }


      .pm-advantages-card {

        padding: 20px 12px 25px;

        border-radius: 17px;

      }


      .pm-advantages-card h2 {

        font-size: 29px;

      }


      .pm-advantages-intro {

        font-size: 14px;

        max-width: 310px;

      }


      .pm-advantages-list {

        gap: 16px;

      }


      .pm-advantage {

        gap: 7px;

      }


      .pm-check {

        width: 21px;
        min-width: 21px;

        font-size: 23px;

      }


      .pm-advantage p {

        font-size: 13px;

        line-height: 1.45;

      }

    }

    .image-section {
    width: 100%;
    text-align: center;
}

.image-section img {
    width: 700px; /* Desktop image size */
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Mobile */
@media (max-width: 767px) {
    .image-section img {
        width: 98%; /* Mobile image size */
    }
}

    /* ==========================================
   STAYMANLY REVIEW SECTION
========================================== */

    .sm-review-section {
      width: 100%;
      background: #000;
      color: #fff;
      padding: 70px 40px 100px;
      font-family: Arial, Helvetica, sans-serif;
      box-sizing: border-box;
    }

    .sm-review-container {
      width: 100%;
      max-width: 1380px;
      margin: auto;
    }


    /* ==========================================
   RATING SUMMARY
========================================== */

    .sm-rating-summary {
      display: grid;

      grid-template-columns: 250px 1fr 130px;

      align-items: center;

      gap: 45px;

      margin-bottom: 65px;
      margin-top: 10px;
    }


    /* LEFT RATING */

    .sm-rating-overview h2 {
      margin: 0;

      color: #e00000;

      font-size: 44px;

      line-height: .95;

      font-weight: 800;
    }

    .sm-big-stars {
      color: #e00000;

      font-size: 31px;

      letter-spacing: 1px;

      /* margin-top: 22px; */
    }

    .sm-rating-overview p {
      color: #e00000;

      font-size: 16px;

      /* margin-top: 20px; */
    }


    /* ==========================================
   RATING BARS
========================================== */

    .sm-rating-bars {
      display: flex;

      flex-direction: column;

      gap: 12px;
    }

    .sm-rating-line {
      display: grid;

      grid-template-columns: 25px 35px 1fr 55px;

      align-items: center;

      gap: 10px;
    }

    .sm-rating-number {
      color: #fff;

      font-size: 17px;

      font-weight: 600;
    }

    .sm-star-small {
      color: #e00000;

      font-size: 25px;
    }

    .sm-bar {
      height: 16px;

      background: #e5dfd2;

      border-radius: 2px;

      overflow: hidden;
    }

    .sm-bar div {
      height: 100%;

      background: #e00000;
    }

    .sm-rating-count {
      color: #fff;

      font-size: 15px;

      font-weight: 600;
    }


    /* ==========================================
   RATE BUTTON
========================================== */

    .sm-rate-area {
      display: flex;

      justify-content: flex-end;
    }

    .sm-rate-btn {
      border: 0;

      background: #e00000;

      color: #000;

      padding: 12px 25px;

      border-radius: 4px;

      font-size: 15px;

      font-weight: 600;

      cursor: pointer;

      white-space: nowrap;

      transition: .25s;
    }

    .sm-rate-btn:hover {
      background: #fff;
      transform: translateY(-2px);
    }


    /* ==========================================
   REVIEWS GRID
========================================== */

    .sm-reviews-grid {
      display: grid;

      grid-template-columns: 1fr 1fr;

      gap: 20px;

      align-items: start;
    }


    /* ==========================================
   REVIEW CARD
========================================== */

    .sm-review-card {
      border: 1px solid #777;

      background: #000;

      padding: 25px 30px;

      box-sizing: border-box;

      color: #fff;

      transition: .25s;
    }

    .sm-review-card:hover {
      border-color: #e00000;
    }


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

    .sm-review-header {
      display: flex;

      align-items: center;

      gap: 13px;

      margin-bottom: 22px;
    }

    .sm-review-header img {
      width: 43px;
      height: 43px;

      border-radius: 50%;

      object-fit: cover;

      border: 2px solid #fff;

      flex-shrink: 0;
    }

    .sm-review-header h3 {
      margin: 0 0 5px;

      font-size: 18px;

      color: #fff;

      font-weight: 700;
    }

    .sm-stars {
      color: #e00000;

      font-size: 18px;

      letter-spacing: 1px;

      line-height: 1;
    }

    .sm-stars span {
      color: #888;
    }


    /* ==========================================
   REVIEW IMAGE
========================================== */

    .sm-review-photo {
      display: block;

      width: 100%;

      max-width: 500px;

      height: auto;

      max-height: 520px;

      object-fit: cover;

      margin-bottom: 18px;
    }


    /* ==========================================
   REVIEW TEXT
========================================== */

    .sm-review-card p {
      margin: 0;

      color: #fff;

      font-size: 16px;

      line-height: 1.55;
    }


    /* ==========================================
   TABLET
========================================== */

    @media (max-width: 1000px) {

      .sm-review-section {
        padding: 55px 25px 80px;
      }

      .sm-rating-summary {
        grid-template-columns: 200px 1fr;

        gap: 30px;
      }

      .sm-rate-area {
        grid-column: 1 / -1;

        justify-content: center;
      }

      .sm-reviews-grid {
        grid-template-columns: 1fr 1fr;
      }

    }


    /* ==========================================
   MOBILE
========================================== */

    @media (max-width: 700px) {

      .sm-review-section {
        padding: 45px 12px 70px;
      }


      /* RATING */

      .sm-rating-summary {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 40px;

        text-align: center;
      }

      .sm-rating-overview h2 {
        font-size: 40px;
      }

      .sm-big-stars {
        font-size: 28px;
      }


      .sm-rating-bars {
        width: 100%;
      }

      .sm-rating-line {
        grid-template-columns: 20px 28px 1fr 40px;

        gap: 7px;
      }

      .sm-rating-number {
        font-size: 14px;
      }

      .sm-star-small {
        font-size: 20px;
      }

      .sm-bar {
        height: 13px;
      }

      .sm-rating-count {
        font-size: 12px;
      }

      .sm-rate-area {
        justify-content: center;
      }


      /* REVIEWS */

      .sm-reviews-grid {
        grid-template-columns: 1fr;

        gap: 15px;
      }


      .sm-review-card {
        padding: 20px 16px;
      }

      .sm-review-header {
        margin-bottom: 17px;
      }

      .sm-review-header h3 {
        font-size: 16px;
      }

      .sm-stars {
        font-size: 16px;
      }

      .sm-review-card p {
        font-size: 14px;
      }

      .sm-review-photo {
        max-height: 300px;
      }

    }


    /* ==========================================
   SMALL MOBILE
========================================== */

    @media (max-width: 380px) {

      .sm-review-section {
        padding-left: 8px;
        padding-right: 8px;
      }

      .sm-review-card {
        padding: 17px 13px;
      }

      .sm-rating-overview h2 {
        font-size: 36px;
      }

    }


@keyframes callShake {
  0%, 100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-12deg);
  }

  20% {
    transform: rotate(12deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}
.neworderbutton {
    width: 200px;
    height: 50px;
    background: #F8A900;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin: -53px auto 0;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 174, 0, .25);
}

@media (max-width: 768px) {
    .neworderbutton {
        width: 180px;
        height: 48px;
        margin: 10px auto 0;
    }
}

@media (max-width: 480px) {
    .neworderbutton {
        width: calc(100% - 30px);
        max-width: 200px;
        height: 46px;
        margin: 1px auto 0;
    }
}
