/* ══════════════════════════════════════════════════════════
   InTheMoment Co — style.css  (updated)
   ══════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --purple: #6043ce;
  --purple-dark: #3d1a8c;
  --purple-btn: #5035b0;
  --red: #c8252b;
  --red-bright: #d42b2b;
  --hero-left: #ede7ff;
  --hero-right-1: #7a1452;
  --hero-right-2: #4a1280;
  --hero-right-3: #1c0a58;
  --pkg-bg: #f5f0ff;
  --footer-bg: #3b1888;
  --font: "Poppins", sans-serif;
  --script: "Dancing Script", cursive;
}

/* ── Base ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: #333;
  overflow-x: hidden;
}
.text-brand-purple {
  color: var(--purple) !important;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
#mainNav {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  transition: box-shadow 0.3s ease;
  z-index: 1000;
  border-bottom: 2.5px solid transparent;
  background-image:
    linear-gradient(white, white),
    linear-gradient(90deg, var(--purple), var(--red), var(--purple));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
#mainNav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

/* Logo Image */
.navbar-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav links */
.site-nav {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #777 !important;
  transition: color 0.2s;
  padding: 8px 14px !important;
  position: relative;
}
.site-nav::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--purple), var(--red));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.site-nav:hover {
  color: var(--purple) !important;
}
.site-nav:hover::after {
  transform: scaleX(1);
}
.site-nav.active {
  color: var(--red) !important;
}
.site-nav.active::after {
  transform: scaleX(1);
  background: var(--red);
}

/* Book Now Button (navbar) */
.btn-book-nav {
  background: linear-gradient(135deg, var(--red) 0%, #e63d44 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  border-radius: 50px;
  padding: 11px 28px;
  border: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(200, 37, 43, 0.3);
}
.btn-book-nav:hover {
  background: linear-gradient(135deg, #a81e23 0%, var(--red) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200, 37, 43, 0.42);
}

/* Mobile nav tweaks */
@media (max-width: 991.98px) {
  #navMenu {
    background: #fff;
    border-top: 1px solid #f0ebff;
    padding: 16px 0 12px;
    margin-top: 8px;
  }
  .site-nav {
    padding: 10px 20px !important;
  }
  .btn-book-nav {
    margin-left: 20px;
  }
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
/* ── Hero: Full-width background layout ── */
.hero { width: 100%; }

.hero-bg-full {
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 0, 30, 0.80) 0%,
    rgba(10, 0, 30, 0.55) 25%,
    rgba(10, 0, 30, 0.10) 50%
  );
  z-index: 1;
}

.sparkle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  z-index: 3;
  min-height: 92vh;
}

.hero-left {
  padding: 80px 0 80px;
  max-width: 580px;   /* keeps text from stretching full 12 cols */
}

.hero-content {
  /* keep existing styles, just ensure text is white */
  color: #fff;
}
.hero .row {
  height: 100%;
}

/* LEFT */
/* .hero-left {
  background: var(--hero-left);
  padding: 40px 20px 40px 0;
} */
.hero-content {
  position: relative;
  padding: 36px 44px 36px 0px;
}
.hc-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(96, 67, 206, 0.35);
  border-style: solid;
}
.hc-tl {
  top: 12px;
  left: 0px;
  border-width: 2.5px 0 0 2.5px;
}
.hc-br {
  bottom: 12px;
  right: 0px;
  border-width: 0 2.5px 2.5px 0;
}

/* Hero heading */
.hero-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hh-line {
  display: block;
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(2.4rem, 4.2vw, 3.3rem);
  letter-spacing: -0.5px;
}
.hh-capture {
  color: var(--purple);
}
.hh-share {
  color: var(--purple);
}
.hh-live {
  color: var(--red);
  position: relative;
  display: inline-flex;
  align-items: center;
}
.hh-live::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 68%;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
  opacity: 0.7;
}
.hero-heart {
  font-size: 1.6rem;
  color: var(--red);
  vertical-align: middle;
}

/* Hero sub-text */
.hero-sub {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

/* Hero CTA button */
.btn-hero-cta {
  background: var(--purple-btn);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  padding: 14px 34px;
  border: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(80, 53, 176, 0.3);
}
.btn-hero-cta:hover {
  background: var(--purple-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(96, 67, 206, 0.45);
}

/* RIGHT */
/* .hero-right {
  background: linear-gradient(
    140deg,
    var(--hero-right-1) 0%,
    var(--hero-right-2) 45%,
    var(--hero-right-3) 100%
  );
  position: relative;
} */

/* Sparkle canvas */
.sparkle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Photo Strip ── */
.photo-strip-wrap {
  position: absolute;
  left: 6%;
  top: 5%;
  transform: translateY(-52%) rotate(-3deg);
  z-index: 2;
}
.photo-strip {
  background: #fff;
  padding: 8px 8px 26px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 152px;
}
.ps-img-wrap {
  width: 100%;
  height: 118px;
  overflow: hidden;
}
.ps-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s;
}
.photo-strip:hover .ps-img-wrap img {
  transform: scale(1.04);
}
.ps-brand {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: #444;
  margin-top: 5px;
  letter-spacing: 0.2px;
}
.ps-brand-co {
  font-family: var(--script);
  font-size: 0.95rem;
  color: var(--red);
}

/* ── Neon Circle ── */
.neon-circle {
  position: absolute;
  left: 33%;
  top: 50%;
  transform: translate(-50%, -54%);
  width: 165px;
  height: 165px;
  border-radius: 50%;
  border: 2.5px solid #ff6fb8;
  box-shadow:
    0 0 14px #ff6fb8,
    0 0 30px rgba(255, 111, 184, 0.35),
    inset 0 0 20px rgba(255, 111, 184, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  color: #ff6fb8;
  text-shadow: 0 0 8px #ff6fb8;
  padding: 14px;
  animation: neonPulse 2.5s ease-in-out infinite;
}
.nc-line1 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
}
.nc-line2 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.nc-heart {
  font-size: 1rem;
  margin-top: 4px;
}
@keyframes neonPulse {
  0%,
  100% {
    box-shadow:
      0 0 14px #ff6fb8,
      0 0 30px rgba(255, 111, 184, 0.35),
      inset 0 0 20px rgba(255, 111, 184, 0.08);
  }
  50% {
    box-shadow:
      0 0 22px #ff6fb8,
      0 0 50px rgba(255, 111, 184, 0.55),
      inset 0 0 30px rgba(255, 111, 184, 0.15);
  }
}

/* ── Hero Image Collage (replaces kiosk) ── */
.hero-img-collage {
  position: absolute;
  right: 5%;
  top: 15%;
  transform: translateY(-50%);
  z-index: 2;
  width: 215px;
}
/* Main tall image */
.hic-main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 0 0 3px rgba(255, 111, 184, 0.55),
    0 0 22px rgba(255, 111, 184, 0.35),
    0 22px 60px rgba(0, 0, 0, 0.55);
}
.hic-main img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hic-main:hover img {
  transform: scale(1.04);
}
.hic-main-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Small polaroid overlapping bottom-left */
.hic-polaroid {
  position: absolute;
  bottom: -28px;
  left: -45px;
  background: #fff;
  padding: 5px 5px 20px;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  transform: rotate(-5deg);
  width: 128px;
  z-index: 4;
  transition: transform 0.3s ease;
}
.hic-polaroid:hover {
  transform: rotate(-2deg) translateY(-4px);
}
.hic-polaroid img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.hic-polaroid-label {
  display: block;
  text-align: center;
  font-family: var(--script);
  font-size: 0.75rem;
  color: #555;
  margin-top: 6px;
  line-height: 1;
}

/* Floating badge top-right */
.hic-badge {
  position: absolute;
  top: -18px;
  right: -14px;
  background: linear-gradient(135deg, var(--red), #e63d44);
  color: #fff;
  border-radius: 30px;
  padding: 7px 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 18px rgba(200, 37, 43, 0.5);
  white-space: nowrap;
  z-index: 5;
  animation: badgeBounce 3s ease-in-out infinite;
}
@keyframes badgeBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* ── Neon Lightning Bolt ── */
.neon-bolt {
  position: absolute;
  bottom: 10%;
  right: 28%;
  font-size: 2.8rem;
  color: #ff3b5c;
  text-shadow:
    0 0 12px #ff3b5c,
    0 0 28px rgba(255, 59, 92, 0.6);
  animation: boltFlicker 3s ease-in-out infinite;
  z-index: 2;
}
@keyframes boltFlicker {
  0%,
  100% {
    opacity: 1;
  }
  40% {
    opacity: 0.7;
  }
  42% {
    opacity: 1;
  }
  80% {
    opacity: 0.85;
  }
}

/* ══════════════════════════════════════════════════════════
   FEATURES BAR
══════════════════════════════════════════════════════════ */
.features-bar {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.feat-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feat-icon {
  font-size: 1.9rem;
  color: var(--purple);
}
.feat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--red);
  line-height: 1.4;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   PACKAGES & PRICING
══════════════════════════════════════════════════════════ */
.packages-section {
  background: #fff;
}
.section-heading {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sh-deco {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--red);
  font-size: 1rem;
}
.sh-deco i {
  font-size: 0.8rem;
}
.sh-dash {
  font-size: 1rem;
  letter-spacing: -2px;
  opacity: 0.7;
}

/* Package Cards */
.pkg-card {
  background: var(--pkg-bg);
  border-radius: 18px;
  padding: 30px 28px;
}
.pkg-card-title {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--purple);
}

/* Price Boxes */
.price-box {
  background: #fff;
  border: 1.5px solid rgba(96, 67, 206, 0.22);
  border-radius: 14px;
  padding: 16px 8px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.price-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(96, 67, 206, 0.18);
}
.price-clock {
  font-size: 1.65rem;
  color: var(--purple);
}
.price-hrs {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--purple);
}
.price-amt {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
}
.price-type {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.3px;
}

/* Feature list */
.pkg-features li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.pkg-check {
  color: var(--purple);
  font-size: 1rem;
  flex-shrink: 0;
}
.pkg-heart-deco {
  font-size: 1.5rem;
  color: var(--red);
  opacity: 0.7;
}

/* Party Card */
.pkg-card-party {
  padding: 30px 28px;
}
.pkg-party-title {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--purple);
}
.pkg-party-sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--red);
}
.party-svc-icon {
  font-size: 2rem;
  color: var(--purple);
}
.party-svc-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #333;
}
.party-min-lbl {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--purple-dark);
}
.party-price {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.btn-party-cta {
  background: var(--purple-btn);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  padding: 14px 22px;
  border: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-party-cta:hover {
  background: var(--purple-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 26, 140, 0.35);
}

/* ══════════════════════════════════════════════════════════
   BOOKING SECTION
══════════════════════════════════════════════════════════ */
.booking-section {
  position: relative;
  padding-bottom: 70px !important;
}
.book-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
}
.book-tagline {
  font-size: 1rem;
  color: #555;
}
.book-contact li {
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
}
.book-contact .fa-solid,
.book-contact .fa-regular,
.book-contact .fa-brands {
  color: var(--purple);
  width: 20px;
  flex-shrink: 0;
}

/* Form Inputs */
.booking-input,
.booking-input.form-select {
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #999;
  padding: 13px 18px;
  background: #fff;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.booking-input:focus,
.booking-input.form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(96, 67, 206, 0.12);
  color: #333;
}
.booking-input::placeholder {
  color: #bbb;
}

/* Input group (date field) */
.booking-input-group .booking-input {
  border-radius: 10px;
}
.booking-ig-text {
  border: 1.5px solid #ddd;
  border-left: none;
  border-radius: 0 10px 10px 0;
  background: #fff;
  color: var(--purple);
  cursor: pointer;
  transition: border-color 0.2s;
  padding: 0 16px;
}
.booking-input-group:focus-within .booking-input,
.booking-input-group:focus-within .booking-ig-text {
  border-color: var(--purple);
}

/* Submit Button */
.btn-submit-booking {
  background: var(--red);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 10px;
  padding: 16px 24px;
  border: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-submit-booking:hover {
  background: #a81e23;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 37, 43, 0.4);
}

/* ══════════════════════════════════════════════════════════
   DOUBLE WAVE — Gray + Purple stacked
══════════════════════════════════════════════════════════ */
.pre-footer-waves {
  position: relative;
  height: 84px;
  background: #fff; /* white page behind */
  overflow: visible;
  pointer-events: none;
}

/* Gray wave — slightly higher, lighter */
.pfw-gray {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: rgba(160, 130, 210, 0.22);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0,56 C180,10 360,56 540,28 C720,0 900,48 1080,28 C1260,8 1350,46 1440,30 L1440,56 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0,56 C180,10 360,56 540,28 C720,0 900,48 1080,28 C1260,8 1350,46 1440,30 L1440,56 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Purple wave — footer color, sitting right at the bottom */
.pfw-purple {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: var(--footer-bg);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0,56 C240,0 480,56 720,28 C960,0 1200,56 1440,22 L1440,56 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0,56 C240,0 480,56 720,28 C960,0 1200,56 1440,22 L1440,56 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--footer-bg);
  position: relative;
  margin-top: 0;
}

/* Footer Logo Image */
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* make logo white for dark bg */
  opacity: 0.92;
}

.footer-nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-link:hover {
  color: #fff;
}
.footer-nav-active {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* .footer-hr { border-color: rgb(255,255,255); } */

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-soc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.footer-soc:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
══════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .hero {
    height: auto;
    max-height: none;
    min-height: auto;
  }
  .hero-left {
    padding: 50px 20px;
  }
  .hero-content {
    padding: 26px 30px;
  }
  .hero-right {
    min-height: 500px;
    height: 500px;
  }
  .hic-main img {
    height: 320px;
  }
  .hero-img-collage {
    width: 170px;
  }
  .photo-strip {
    width: 125px;
  }
  .ps-img-wrap {
    height: 95px;
  }
}

@media (max-width: 767.98px) {
  .hh-line {
    font-size: 2.4rem;
  }
  .book-title {
    font-size: 2.2rem;
  }
  .section-heading {
    font-size: 1.35rem;
    letter-spacing: 0.8px;
  }
  .party-price {
    font-size: 3.2rem;
  }
  .hero-right {
    min-height: 420px;
    height: 420px;
  }
  .photo-strip {
    width: 105px;
  }
  .ps-img-wrap {
    height: 80px;
  }
  .neon-circle {
    width: 130px;
    height: 130px;
  }
  .nc-line1,
  .nc-line2 {
    font-size: 0.6rem;
  }
  .hero-img-collage {
    width: 140px;
    right: 3%;
  }
  .hic-main img {
    height: 270px;
  }
  .hic-polaroid {
    display: none;
  }
  .neon-bolt {
    font-size: 2rem;
    right: 20%;
  }
}

@media (max-width: 575.98px) {
  .hero-right {
    min-height: 360px;
    height: 360px;
  }
  .neon-bolt {
    font-size: 1.8rem;
  }
  .hero-img-collage {
    width: 118px;
    right: 2%;
  }
  .hic-main img {
    height: 230px;
  }
  .hic-badge {
    font-size: 0.55rem;
    padding: 5px 10px;
    top: -14px;
    right: -8px;
  }
  .neon-circle {
    left: 35%;
    width: 118px;
    height: 118px;
  }
  .photo-strip {
    width: 92px;
  }
  .ps-img-wrap {
    height: 68px;
  }
  .navbar-logo-img {
    height: 46px;
  }
}
