body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #071c24, #0f2f3a, #123f4d);
      display: flex;
      justify-content: center;
      padding: 40px 15px;
    }

   .main-card {
  width: 430px;
  max-width: 100%;
  padding: 35px 30px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  overflow: hidden;
}

/* ✨ Moving Golden Side Shimmer */

.main-card::before,
.main-card::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(
    to bottom,
    rgba(255,215,0,0) 0%,
    rgba(255,215,0,0.8) 50%,
    rgba(255,215,0,0) 100%
  );
  animation: sideShimmer 3s linear infinite;
}

.main-card::before {
  left: 0;
}

.main-card::after {
  right: 0;
}

/* Animation */

@keyframes sideShimmer {
  0% {
    background-position: 0 -200px;
  }
  100% {
    background-position: 0 200px;
  }
}

.footer-logo {
  width: 25px;        /* small size */
  height: 25px;
  margin-right: 2px;
  vertical-align: middle;
}

    /* HEADING */

    .title {
  font-size: 28px;   /* 38px se kam kiya */
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
}

    .subtitle {
  font-size: 15px;
  color: #d0e7f1;
  margin-bottom: 8px;   /* gap kam */
}

    /* BIGGER QR */

.review-image {
  position: relative;
  border-radius: 22px;
  padding: 8px;                 /* thoda spacing */
  background: rgba(255,255,255,0.06);
  border: 4px solid #d4af37;    /* Luxury gold */
}



    .review-btn {
      display: inline-block;
      margin-top: 28px;
      padding: 14px 38px;
      font-size: 18px;
      font-weight: 600;
      color: white;
      border-radius: 50px;
      text-decoration: none;
      background: linear-gradient(90deg, #00c6ff, #0072ff);
      box-shadow: 0 10px 25px rgba(0,114,255,0.5);
      transition: 0.3s ease;
    }

    .review-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 35px rgba(0,114,255,0.7);
    }

.review-text {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.35);
}

    .review-subtext {
      margin-top: 6px;
      font-size: 15px;
      color: #aabdc5;
      font-style: italic;
    }

    /* SECTION HEADING */

    .section-heading {
      margin-top: 40px;
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      position: relative;
      display: inline-block;
      padding-bottom: 8px;
    }

    .section-heading::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60%;
      height: 3px;
      border-radius: 10px;
      background: linear-gradient(90deg, #00c6ff, #0072ff);
    }

    /* ICON GRID 4-4 */

    .icon-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);   /* 4 per row */
      gap: 14px;
      margin-top: 25px;
    }

    .icon-item {
      text-decoration: none;
      color: white;
      font-size: 11px;          /* Smaller text */
    }

    .icon-box {
      width: 60px;              /* Smaller icons */
      height: 60px;
      border-radius: 16px;
      overflow: hidden;
      margin: auto;
      margin-bottom: 6px;
      background: rgba(255,255,255,0.08);
      box-shadow: 0 6px 18px rgba(0,0,0,0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .icon-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .icon-item:hover .icon-box {
      transform: scale(1.18);
      box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    }

.footer {
  display: block;
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.powered-text {
  font-size: 14px;
  color: #cfd8dc;
  letter-spacing: 1px;
}

.company-name {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
   white-space: nowrap;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.footer:hover .company-name {
  filter: brightness(1.3);
}
    .qr-wrapper {
  display: inline-block;
  text-decoration: none;
}

.review-image {
  width: 250px;
  margin: auto;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  padding: 15px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.7);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-image img {
  width: 100%;
  border-radius: 20px;
}

/* 🔥 Hover Zoom Effect */
.qr-wrapper:hover .review-image {
  transform: scale(1.08);
  box-shadow: 0 35px 70px rgba(0,0,0,0.8);
}

.clock-icon {
  color: #fff;
  margin-right: 3px;
  font-size: 16px;
}


    .stars {
  margin-top: 4px;   
  margin-bottom: 2px;
  font-size: 22px;
  letter-spacing: 3px;
  color: #FFD700;   
}

.feedback-line {
  margin-top: 2px;   
  margin-bottom: 8px;
  font-size: 13px;
  color: #cfe3ea;
  font-style: italic;
}



    @media (max-width: 480px) {

      .review-image {
        width: 220px;
      }

      .icon-box {
        width: 55px;
        height: 55px;
      }

      .icon-item {
        font-size: 10px;
      }

    }






    /* Review Page Css */



    body {
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #0f2f3a, #123f4d);
      color: white;
      text-align: center;
      margin: 0;
      padding: 20px;
    }

    h2 {
      margin-top: 20px;
      font-weight: 500;
    }

    .review-box {
      background: rgba(255,255,255,0.08);
      margin: 18px auto;
      padding: 18px;
      width: 90%;
      border-radius: 14px;
      backdrop-filter: blur(8px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
      transition: 0.3s ease;
    }

    .review-box:hover {
      transform: translateY(-4px);
    }

    button {
      padding: 8px 18px;
      background: #00c6ff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      color: white;
      margin-top: 10px;
      transition: 0.3s;
    }

    button:hover {
      background: #0072ff;
    }

    .write-own {
      margin-top: 25px;
      background: #28a745;
    }

    .write-own:hover {
      background: #1e7e34;
    }