/* Flash Exchange — modern sober UI overlay
   Ported from Buddy's latest layout system; keeps Flash branding and markup. */

:root {
  --font: "Roboto", sans-serif;
  --navy: #1a2228;
  --navy-soft: #263841;
  --ink: #1c2430;
  --muted: #5c6778;
  --paper: #f5f6f8;
  --white: #ffffff;
  --line: #e4e8ee;
  --gold: #f16725;
  --gold-hover: #d4551a;
  --teal: #f16725;
  --whatsapp: #45c655;
  --shadow: 0 12px 40px rgba(26, 34, 40, 0.08);
  --radius: 14px;
  --header-h: 84px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
}

body,
html {
  height: auto !important;
  min-height: 0;
  max-width: 100%;
}

body {
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  background: var(--paper);
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  display: flow-root;
  overflow: visible;
}

body,
h1, h2, h3, h4, h5, h6,
p,
.blog-list-wrap,
.about-page,
.contact-page,
.terms-conditions-wrap,
.faq-wrapper,
header,
footer,
.blog-list-heading,
.blog-list-date,
.listingn-button a,
.listingn-button-view-more a {
  font-family: var(--font) !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  float: none;
}

p {
  float: none;
  color: var(--muted);
  letter-spacing: 0;
  line-height: 1.7;
}

a {
  color: var(--teal);
}

.width100per {
  float: left;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  min-height: 0;
  margin-top: 0;
  overflow: visible;
  display: flow-root;
}

.container {
  width: 80%;
  max-width: none;
  margin: 0 auto;
}

/* Buttons */
.rainbow-btn {
  display: inline-flex;
  text-align: center;
  position: relative;
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  box-sizing: border-box;
  z-index: 2;
  overflow: hidden;
  padding: 0;
}

.rainbow-btn:before {
  display: none;
}

.rainbow-btn span {
  position: relative;
  z-index: 2;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--gold);
  color: var(--white);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease;
}

.rainbow-btn:hover span,
.rainbow-btn:focus span {
  background: var(--gold-hover);
}

.rainbow-btn:hover:before,
.rainbow-btn:focus:before {
  animation: none;
}

.get-button a,
.listingn-button a,
.listingn-button-view-more a,
.btn.btn-primary,
header .nav-wrap ul li:last-child a {
  background: var(--gold) !important;
  color: var(--white) !important;
  border: 0 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

.get-button a {
  display: inline-block;
  text-decoration: none;
  padding: 0.7rem 1.35rem !important;
  font-size: 0.95rem !important;
  font-weight: 500;
}

.whatsaap-button a.whatsapp {
  background: var(--whatsapp) !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  padding: 0.7rem 1.35rem !important;
  font-size: 0.95rem !important;
}

.get-button a:hover,
.listingn-button a:hover,
.listingn-button-view-more a:hover,
.btn.btn-primary:hover {
  background: var(--gold-hover) !important;
}

.whatsaap-button a.whatsapp {
  background: var(--whatsapp) !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: var(--white) !important;
}

/* Header */
header,
header.site-header {
  width: 100%;
  float: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0.7rem 0;
  background: rgba(26, 34, 40, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

header.active {
  --header-h: 62px;
  padding: 0.28rem 0;
  background: rgba(26, 34, 40, 0.98);
  box-shadow: 0 8px 24px rgba(26, 34, 40, 0.25);
}

header .container,
header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 0;
}

header .logo,
header .logoWrap {
  width: 132px;
  float: none;
  flex-shrink: 0;
  transition: width 0.25s ease;
}

header .logo img,
header .logoWrap img {
  display: block;
  width: 100%;
  height: auto;
}

header.active .logo,
header.active .logoWrap {
  width: 92px;
}

header.active .nav-wrap ul li a,
header.active .navWrap ul li a {
  padding: 0.4rem 0.7rem;
  font-size: 0.84rem;
}

header.active .nav-wrap ul li:last-child a,
header.active .navWrap ul li:last-child a {
  padding: 0.4rem 0.95rem !important;
  font-size: 0.84rem !important;
}

header .mobTigger {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

header .mobTigger .menu-icon {
  display: none;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

header .mobTigger ul {
  display: none;
}

header .nav-wrap,
header .navWrap {
  width: auto;
  float: none;
  padding: 0;
}

header .nav-wrap ul,
header .navWrap ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.15rem;
}

header .nav-wrap ul li,
header .navWrap ul li {
  width: auto;
  padding: 0;
  margin: 0;
}

header .nav-wrap ul li a,
header .navWrap ul li a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  border: 0;
}

header .nav-wrap ul li a:hover,
header .navWrap ul li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

header .nav-wrap ul li:last-child a,
header .navWrap ul li:last-child a,
header .navWrap ul li.dropDown a {
  margin-left: 0.4rem;
  padding: 0.55rem 1.15rem !important;
  font-size: 0.92rem !important;
  font-weight: 600;
}

header .nav-wrap ul li:last-child a:hover,
header .navWrap ul li:last-child a:hover,
header .navWrap ul li.dropDown a:hover {
  background: var(--gold-hover) !important;
}

.overlay {
  position: fixed;
  top: 72px;
  right: 8%;
  z-index: 200;
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 12px auto 0;
  padding: 1.25rem 1.5rem;
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  width: min(280px, 90vw);
  box-shadow: var(--shadow);
  position: relative;
  transition: opacity 0.2s ease;
}

.popup .close {
  position: absolute;
  top: 0;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.popup .content-pop a {
  display: block;
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.popup .content-pop a:hover {
  color: var(--gold);
}

.popup .close:hover {
  color: var(--gold);
}

.fixed-button-wrap,
.width100per .fixedWhatsapp,
.fixedWhatsapp {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  left: auto !important;
  top: auto !important;
  z-index: 999 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
}

.fixed-button-wrap img,
.fixedWhatsapp img {
  display: none !important;
}

.idWrap {
  display: none !important;
}

.wa-fixed-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  height: 52px;
  padding: 4px 4px 4px 1.2rem;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.wa-fixed-cta:hover,
.wa-fixed-cta:focus {
  background: #1ebe57;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.42);
  transform: translateY(-1px);
}

.wa-fixed-cta__text {
  font-family: var(--font), sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  padding-right: 0.15rem;
}

.wa-fixed-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: #25d366;
}

.wa-fixed-cta__icon i {
  font-size: 1.6rem;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .fixed-button-wrap,
  .width100per .fixedWhatsapp,
  .fixedWhatsapp {
    right: 14px !important;
    bottom: 14px !important;
  }

  .wa-fixed-cta {
    height: 46px;
    padding: 3px 3px 3px 1rem;
    gap: 0.5rem;
  }

  .wa-fixed-cta__text {
    font-size: 0.98rem;
  }

  .wa-fixed-cta__icon {
    width: 40px;
    height: 40px;
  }

  .wa-fixed-cta__icon i {
    font-size: 1.4rem;
  }
}

/* Hero */
.spotlight-wrap {
  float: none;
}

.spotlight-wrap .banner-wrap {
  background:
    linear-gradient(105deg, rgba(26, 34, 40, 0.92) 0%, rgba(26, 34, 40, 0.72) 48%, rgba(26, 34, 40, 0.45) 100%),
    url(../img/spotlight.jpg) center center no-repeat;
  background-size: cover;
  height: auto;
  min-height: 88vh;
  overflow: visible;
  float: none;
}

.spotlight-wrap .banner-wrap .banner-copy {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 2.5rem;
  float: none;
  padding: 7rem 0 3.5rem;
}

.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy,
.spotlight-wrap .banner-wrap .banner-copy .right-bannre-copy {
  float: none;
  width: 58%;
  padding: 0;
  min-width: 0;
}

.spotlight-wrap .banner-wrap .banner-copy .right-bannre-copy {
  width: 42%;
}

.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy h1,
.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy h2,
.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy h3,
.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy h4,
.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy h6 {
  color: var(--white) !important;
  float: none;
}

.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  max-width: 18ch;
  overflow-wrap: break-word;
}

.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy h2 {
  font-size: 1.15rem !important;
  font-weight: 500;
  color: var(--gold) !important;
  margin: 0 0 0.85rem;
  line-height: 1.4;
}

.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy h3 {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82) !important;
  margin: 0 0 1.5rem;
}

.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy .info-wrap {
  float: none;
  margin: 0 0 0.7rem;
}

.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy .info-wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.spotlight-wrap .banner-wrap .banner-copy .left-banner-copy .info-wrap ul li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--white);
  padding: 0.55rem 0.95rem;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
}

.spotlight-wrap .banner-wrap .seperator-wrapper {
  display: none;
}

.spotlight-wrap .banner-wrap .container .p-info-wrap {
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0 0 3rem;
  max-width: 42rem;
}

/* Shared rainbow-kill on inner pages and bands */
.passion-wrap,
.consider-wrap,
.home-page,
.media-coverage-wrap,
.about-page,
.contact-page,
.terms-conditions-wrap,
.blog-list-wrap,
.faq-wrapper,
.aboutPageWrap,
.mediaWrap,
.privacyPageWrap {
  background: var(--paper) !important;
  animation: none !important;
  filter: none !important;
  float: none;
  display: flow-root;
}

.guied-wrap {
  background: var(--navy) !important;
  float: none;
}

/* Passion */
.passion-wrap .passion-details {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 4rem;
  float: none;
  padding: 5.5rem 0;
}

.passion-wrap .passion-details .left-detail,
.passion-wrap .passion-details .right-detail {
  float: none;
  width: 48%;
}

.passion-wrap .passion-details .left-detail h3 {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.85rem;
  float: none;
  margin: 0 0 1rem;
}

.passion-wrap .passion-details .left-detail p,
.passion-wrap .passion-details .left-detail p a {
  color: var(--muted) !important;
  font-size: 1.05rem;
  float: none;
}

.passion-wrap .passion-details .left-detail p a {
  color: var(--navy) !important;
  font-weight: 500;
  text-decoration: none;
}

.passion-wrap .passion-details .passion-info {
  float: none;
  display: inline-flex;
  background: var(--navy);
  border-radius: 999px;
  color: var(--white);
  padding: 0.45rem 0.95rem;
  margin: 1.15rem 0 0;
  font-size: 0.88rem;
  font-weight: 500;
}

.passion-wrap .passion-details .passion-info-copy {
  float: none;
  color: var(--muted);
  font-size: 1rem;
  margin: 0.4rem 0 0;
}

.passion-wrap .passion-details .right-detail .cricket-wrap {
  float: none;
  padding-top: 0;
}

/* Guide / how-to */
.guied-wrap .guied-detail {
  float: none;
  padding: 5rem 0;
}

.guied-wrap .guied-detail h2,
.guied-wrap .guied-detail h2 a,
.guied-wrap .guied-detail h3 {
  color: var(--white) !important;
  text-align: center;
  font-size: 1.85rem !important;
  font-weight: 700;
  float: none;
}

.guied-wrap .guied-detail .slide-wrap {
  float: none;
  margin: 2.5rem 0;
}

.guied-wrap .guied-detail .slide-wrap ul li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.guied-wrap .guied-detail .guied-copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  letter-spacing: 0;
  max-width: 46rem;
  margin: 0 auto;
  float: none;
}

/* Why consider */
.consider-wrap {
  padding-bottom: 4rem;
}

.consider-wrap .consider-detail {
  float: none;
  padding: 5rem 0 8rem;
}

.consider-wrap .consider-detail .consider-head,
.consider-wrap .consider-detail .consider-head a {
  color: var(--navy) !important;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
}

.consider-wrap .consider-detail .consider-slider {
  float: none;
}

.consider-wrap .consider-detail .consider-slider ul li .slide-detail {
  float: none;
  padding: 1.4rem 1.3rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 250px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consider-wrap .consider-detail .consider-slider ul li .slide-detail .slide-head {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 700;
}

.consider-wrap .consider-detail .consider-slider ul li .slide-detail .slide-copy {
  color: var(--muted);
  font-size: 0.95rem;
}

/* About band on home */
.about-wrap {
  background: var(--white);
  float: none;
}

.about-wrap .about-detail {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  float: none;
}

.about-wrap .about-detail .about-left,
.about-wrap .about-detail .about-right {
  float: none;
  width: 50%;
}

.about-wrap .about-detail .about-left {
  padding: 5.5rem 2.5rem 5.5rem 10vw;
  display: flex;
  align-items: center;
}

.about-wrap .about-detail .about-left .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-wrap .about-detail .about-left h3 {
  color: var(--navy);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  float: none;
  margin: 0 0 1rem;
}

.about-wrap .about-detail .about-left p {
  color: var(--muted);
  font-size: 1.05rem;
  float: none;
}

.about-wrap .about-detail .about-left .info-wrap {
  float: none;
}

.about-wrap .about-detail .about-left .info-wrap ul li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.95rem;
}

.about-wrap .about-detail .about-right .right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer,
footer.site-footer {
  width: 100%;
  float: none;
  clear: both;
  position: relative;
  background: var(--navy);
  padding: 3.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.4fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
}

footer h6 {
  float: none;
  width: auto;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0 0 1rem;
}

footer .footer-logo {
  width: 150px;
  margin: 0 0 1.1rem;
}

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

footer .social-icon ul {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

footer .social-icon ul li {
  padding: 0;
}

footer .social-icon ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  text-decoration: none;
}

footer .social-icon ul li a:hover {
  background: var(--gold);
  color: var(--navy);
}

footer .footer-links ul li {
  display: block;
  padding: 0;
  margin: 0 0 0.55rem;
}

footer .footer-links ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

footer .footer-links ul li a:hover {
  color: var(--gold);
}

footer .footer-disclaimer p {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.7;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
}

footer .footer-bottom .sitemap {
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Inner pages */
.about-page .heading,
.contact-page .heading,
.terms-conditions-wrap .heading,
.faq-wrapper .heading,
.blog-list-wrap .heading,
.media-coverage-wrap .heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1.5rem;
  text-align: center;
}

.media-coverage-wrap .media-detail,
.about-page .about-page-detail,
.contact-page .contact-detail,
.terms-conditions-wrap .terms-conditions-detail,
.blog-list-wrap .blog-list,
.faq-wrapper .faq-section {
  float: none;
  padding: 8.5rem 0 5rem;
}

.media-coverage-wrap .media-detail {
  text-align: center;
}

.media-coverage-wrap .media-detail .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.media-coverage-wrap .media-detail .celeb-wrap {
  float: none;
  width: 100%;
  max-width: 920px;
  margin: 0 auto 2rem;
}

.media-coverage-wrap .media-detail .celeb-wrap ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  justify-content: center;
  justify-items: center;
}

.media-coverage-wrap .media-detail .celeb-wrap ul li {
  width: 100%;
  max-width: 280px;
  padding: 0;
  margin: 0;
  float: none;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.media-coverage-wrap .media-detail .celeb-wrap ul li a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none !important;
  background: var(--white);
  border: 1px solid var(--line);
}

.media-coverage-wrap .media-detail .celeb-wrap ul li img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.media-coverage-wrap .media-detail .celeb-wrap ul li .celeb-detail {
  float: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 0;
  height: auto;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-coverage-wrap .media-detail .celeb-wrap ul li .celeb-detail .celeb-name .name-wrap {
  border: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.95rem;
  top: -22px;
}

.media-coverage-wrap .media-detail .about-button-wrap {
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
  margin: 0 auto;
}

.media-coverage-wrap .media-detail .about-button-wrap .get-button,
.media-coverage-wrap .media-detail .about-button-wrap .whatsaap-button {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  box-shadow: none;
}

.media-coverage-wrap .media-detail .about-button-wrap .whatsaap-button a,
.media-coverage-wrap .media-detail .about-button-wrap .whatsaap-button a.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none !important;
  border: 0 !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none;
}

.media-coverage-wrap .media-detail .about-button-wrap .whatsaap-button a span {
  border: none;
  border-bottom: none;
  box-shadow: none;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
}

.about-page .about-page-detail .about-copy {
  text-align: left;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 48rem;
  margin: 0 auto 1.25rem;
}

.about-page .about-page-detail .about-guied-wrap ul {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.about-page .about-page-detail .about-guied-wrap ul li {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  border-radius: 999px;
  margin: 0;
  font-size: 0.92rem;
}

.contact-page .contact-detail {
  float: none;
  width: 100%;
  padding: clamp(5rem, 9vw, 8.5rem) 0 clamp(5rem, 9vw, 8.5rem);
  box-sizing: border-box;
}

.contact-page .contact-detail .container {
  float: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.contact-page .heading {
  text-align: center;
  float: none;
  width: 100%;
  margin: 0 0 1.5rem;
}

.contact-page .contact-detail .contact-wrap {
  float: none;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-page .contact-detail .contact-wrap .form-wrap {
  width: min(560px, 100%);
  float: none;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

.contact-page .contact-detail .contact-wrap .form-wrap .form-detail .about-button-wrap {
  float: none;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 0 0;
}

.contact-page .contact-detail .contact-wrap .form-wrap .form-heading,
.contact-page .contact-detail .contact-wrap .form-wrap .form-copy {
  color: var(--navy);
}

.contact-page .contact-detail .contact-wrap .form-wrap .form-copy {
  color: var(--muted);
}

.contact-page .contact-detail .contact-wrap .form-wrap .form-detail .row .input-wrap input,
.contact-page .contact-detail .contact-wrap .form-wrap .form-detail .row .input-wrap textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font);
}

.btn.btn-primary {
  font-family: var(--font);
  cursor: pointer;
  padding: 0.7rem 1.4rem !important;
}

.terms-conditions-wrap .terms-conditions-detail .container .term-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.terms-conditions-wrap .terms-conditions-detail .container .term-copy p.head {
  color: var(--navy);
  font-weight: 700;
}

/* Blog */
.blog-list-wrap {
  float: none !important;
  width: 100% !important;
  background: var(--paper) !important;
  background-image: none !important;
  animation: none !important;
}

.blog-list-wrap .blog-list {
  float: none !important;
  width: 100% !important;
  padding: 8.5rem 0 5rem !important;
  box-sizing: border-box;
}

.blog-list-wrap .heading {
  text-align: center;
  float: none;
  width: 100%;
  margin: 0 auto 1.5rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.blog-list-wrap .container {
  width: min(1120px, 90%);
  max-width: 1120px;
  margin: 0 auto;
  float: none;
}

.blog-list-heading {
  font-size: 1.35rem !important;
  font-weight: 700;
  color: var(--navy) !important;
  margin: 0 0 1.25rem;
  float: none;
  width: auto;
  font-family: var(--font) !important;
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 420px;
  width: 100%;
  margin: 0 auto 2.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

.blog-search span {
  color: var(--muted);
}

.blog-search input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
}

.blog-list-wrap .blog-list .blog-list-section {
  display: block !important;
  float: none !important;
  width: 100% !important;
}

.blog-list-wrap .blog-list .blog-list-section .left-section {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}

.right-section {
  display: none !important;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .featured-section,
.blog-list-wrap .blog-list .blog-list-section .left-section .latest-section {
  background: transparent !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
  margin-bottom: 2.75rem;
}

.featured-main,
.blog-list-item-wrap ul li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-list-wrap .blog-list .blog-list-section .left-section .featured-section .featured-blog {
  float: none;
  width: 100%;
  padding: 0;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .featured-section .featured-blog .featured-main {
  border: 1px solid var(--line) !important;
  float: none !important;
  width: 100% !important;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .featured-section .featured-blog .featured-main .featured-img-wrap {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .featured-section .featured-blog .featured-main .featured-img-wrap img {
  width: 100%;
  max-width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .featured-section .featured-blog .featured-main .featured-copy-wrap {
  width: 100% !important;
  float: none !important;
  padding: 1.5rem 1.75rem 1.75rem !important;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .featured-section .featured-blog .featured-main .featured-copy-wrap h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  float: none;
  width: auto;
  font-family: var(--font) !important;
  color: var(--navy);
}

.blog-list-date {
  display: block !important;
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  padding: 0.25rem 0 0.5rem !important;
  float: none !important;
  width: auto !important;
  font-family: var(--font) !important;
}

.listingn-button a,
.listingn-button-view-more a {
  display: inline-block;
  border-radius: 8px;
  font-weight: 500;
}

.listingn-button-view-more {
  text-align: center;
  margin-top: 1.5rem;
}

.blog-list-item-wrap {
  float: none !important;
  width: 100% !important;
  overflow: visible;
}

.blog-list-item-wrap ul {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.blog-list-item-wrap ul li {
  display: flex !important;
  flex-direction: column !important;
  float: none !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 0 1.15rem !important;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 0;
  height: auto !important;
}

.blog-list-item-wrap ul li .item-img,
.blog-list-item-wrap ul li h3,
.blog-list-item-wrap ul li p,
.blog-list-item-wrap ul li .blog-list-date,
.blog-list-item-wrap ul li .listingn-button {
  float: none !important;
  width: 100% !important;
}

.blog-list-item-wrap ul li .item-img img {
  width: 100% !important;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-list-item-wrap ul li h3 {
  font-size: 1.08rem !important;
  padding: 0.9rem 1.1rem 0 !important;
  margin: 0 !important;
  line-height: 1.35;
  color: var(--navy);
  float: none !important;
  font-family: var(--font) !important;
}

.blog-list-item-wrap ul li p,
.blog-list-item-wrap ul li .blog-list-date {
  padding-left: 1.1rem !important;
  padding-right: 1.1rem !important;
}

.blog-list-item-wrap ul li p {
  font-size: 0.95rem !important;
  color: var(--muted) !important;
  letter-spacing: 0 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

.blog-list-item-wrap ul li .listingn-button {
  padding: 0.6rem 1.1rem 0.35rem !important;
  margin-top: auto;
}

.page-navigation {
  text-align: center;
  padding: 1rem 0 0;
}

.page-navigation a,
.page-numbers.dots,
.page-numbers.current {
  background: var(--navy);
  font-family: var(--font);
  border-radius: 8px;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog {
  background: var(--white) !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.75rem 3rem 3rem !important;
  box-shadow: var(--shadow);
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 2.5rem !important;
  box-sizing: border-box;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog h1 {
  float: none;
  width: auto;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--navy);
  margin: 0 0 0.5rem;
  font-family: var(--font) !important;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog .blog-detail-main-img {
  width: 100%;
  float: none;
  margin: 1.25rem 0 1.5rem;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog .blog-detail-main-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog p,
.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog li {
  float: none;
  width: auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0;
  font-family: var(--font) !important;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog .button-section {
  float: none;
  width: 100%;
  margin-top: 2rem;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog .button-section .left-buttons {
  float: none;
  width: 100% !important;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog .button-section .left-buttons .share-button {
  float: none;
  width: fit-content;
  max-width: 100%;
  display: inline-block;
  box-sizing: border-box;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog .button-section .left-buttons .share-button ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: auto;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog .button-section .left-buttons .share-button ul li {
  float: none;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--navy);
  font-size: 0.95rem;
  font-family: var(--font) !important;
}

.blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog .button-section .left-buttons .share-button ul li a {
  color: var(--navy);
  font-size: 1.35rem;
  text-decoration: none;
}

/* FAQ */
.accordion-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
}

.accordion button {
  font-family: var(--font);
  color: var(--navy);
}

.accordion .accordion-content p {
  color: var(--muted);
}

@media (min-width: 1025px) {
  .nav-wrap.openMenu,
  .navWrap.openMenu {
    display: block;
  }

  header .mobTigger,
  header .mobTigger .menu-icon {
    display: none !important;
  }
}

/* Slider arrows */
.slick-prev:before,
.slick-next:before {
  background: var(--white) !important;
  color: var(--navy) !important;
  border: 1px solid var(--line) !important;
  border-radius: 50%;
  font-size: 22px !important;
  padding: 8px 12px !important;
}

/* Mobile */
@media only screen and (max-width: 1024px) {
  header,
  header.site-header {
    background: var(--navy);
  }

  header .logo,
  header .logoWrap {
    width: 110px;
    padding-left: 0;
  }

  header.active .logo,
  header.active .logoWrap {
    width: 86px;
  }

  header .container,
  header .header-inner {
    position: static;
  }

  header .mobTigger {
    display: flex !important;
    align-items: center;
    margin-left: auto;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    padding: 0.35rem 0.2rem;
    z-index: 21;
  }

  header .mobTigger .menu-icon {
    display: inline-block;
  }

  header .mobTigger ul {
    display: none;
  }

  header .nav-wrap,
  header .navWrap {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    height: auto;
    max-height: calc(100vh - var(--header-h));
    overflow-x: hidden;
    overflow-y: auto;
    float: none;
    background: var(--navy);
    padding: 0.75rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(26, 34, 40, 0.35);
    z-index: 20;
  }

  header .nav-wrap.openMenu,
  .nav-wrap.openMenu,
  header .navWrap.openMenu,
  .navWrap.openMenu {
    display: block !important;
  }

  header .nav-wrap ul,
  header .navWrap ul {
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    width: min(80%, 420px);
    margin: 0 auto;
    padding: 0;
  }

  header .nav-wrap ul li,
  header .navWrap ul li {
    width: 100%;
    float: none;
    display: block;
    padding: 0;
    margin: 0;
  }

  header .nav-wrap ul li a,
  header .navWrap ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.05rem;
    line-height: 1.4;
    padding: 0.9rem 0.5rem;
    white-space: normal;
  }

  header .nav-wrap ul li:last-child,
  header .navWrap ul li:last-child {
    display: block;
    margin-top: 0.35rem;
  }

  header .nav-wrap ul li:last-child a,
  header .navWrap ul li:last-child a {
    margin-left: 0;
    text-align: center;
  }

  .spotlight-wrap .banner-wrap {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .spotlight-wrap .banner-wrap .banner-copy {
    flex-direction: column-reverse;
    padding: 6.5rem 0 3rem;
    min-width: 0;
    width: 100%;
  }

  .spotlight-wrap .banner-wrap .banner-copy .left-banner-copy,
  .spotlight-wrap .banner-wrap .banner-copy .right-bannre-copy {
    width: 100%;
    max-width: 100%;
  }

  .passion-wrap .passion-details,
  .about-wrap .about-detail {
    flex-direction: column;
    gap: 2rem;
  }

  .passion-wrap .passion-details .left-detail,
  .passion-wrap .passion-details .right-detail,
  .about-wrap .about-detail .about-left,
  .about-wrap .about-detail .about-right {
    width: 100%;
    padding: 0;
  }

  .about-wrap .about-detail .about-left {
    padding: 2rem 0 4rem;
  }

  .about-wrap .about-detail .about-left .container {
    width: 80%;
    margin: 0 auto;
  }

  .media-coverage-wrap .media-detail .celeb-wrap ul,
  .mediaWrap .mediaItem ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .media-coverage-wrap .media-detail .celeb-wrap,
  .width100per .mediaWrap .mediaItem {
    max-width: 800px;
  }

  .media-coverage-wrap .media-detail .celeb-wrap ul li,
  .mediaWrap .mediaItem ul li {
    max-width: 240px;
  }

  .media-coverage-wrap .media-detail .celeb-wrap ul li .celeb-detail {
    height: auto;
  }

  .contact-page .contact-detail {
    padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  }

  footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-list-wrap .blog-list {
    padding: 7rem 0 4rem !important;
  }

  .blog-list-wrap .container {
    width: calc(100% - 48px);
  }

  .blog-list-wrap .blog-list .blog-list-section .left-section .detail-blog {
    padding: 2rem 1.5rem !important;
  }

  .blog-list-wrap .blog-list .blog-list-section {
    display: block;
  }

  .blog-list-item-wrap ul {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .about-page .about-page-detail .about-section,
  .aboutPageWrap .aboutSection {
    flex-direction: column;
  }

  .about-page .whoSection,
  .about-page .whySection,
  .aboutPageWrap .whoSection,
  .aboutPageWrap .whySection {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .container {
    width: calc(100% - 32px);
  }

  .spotlight-wrap .banner-wrap .banner-copy .right-bannre-copy {
    display: none;
  }

  .spotlight-wrap .banner-wrap .banner-copy .left-banner-copy h1 {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 1.4rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  .spotlight-wrap .banner-wrap .banner-copy .left-banner-copy h2,
  .spotlight-wrap .banner-wrap .banner-copy .left-banner-copy h3,
  .spotlight-wrap .banner-wrap .container .p-info-wrap {
    overflow-wrap: anywhere;
  }

  .blog-list-wrap .blog-list {
    padding: 6rem 0 3.5rem !important;
  }

  .blog-list-wrap .container {
    width: calc(100% - 32px);
  }

  .blog-list-item-wrap ul {
    grid-template-columns: 1fr !important;
  }

  .about-page .heading,
  .contact-page .heading,
  .terms-conditions-wrap .heading,
  .faq-wrapper .heading,
  .blog-list-wrap .heading,
  .media-coverage-wrap .heading {
    font-size: 2rem;
  }

  .media-coverage-wrap .media-detail .celeb-wrap ul,
  .mediaWrap .mediaItem ul {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 300px;
  }

  .media-coverage-wrap .media-detail .celeb-wrap,
  .width100per .mediaWrap .mediaItem {
    max-width: 300px;
  }

  .media-coverage-wrap .media-detail .celeb-wrap ul li,
  .mediaWrap .mediaItem ul li {
    max-width: 300px;
  }

  .about-page .about-page-detail .about-guied-wrap ul li {
    width: auto;
  }

  footer .footer-logo {
    width: 130px;
  }

  .about-page .about-page-detail .about-section {
    flex-direction: column;
  }

  .about-page .whoSection,
  .about-page .whySection {
    width: 100%;
  }

  .contact-page .contact-detail {
    padding: clamp(4rem, 7vw, 5.5rem) 0;
  }

  .contact-page .contact-detail .container {
    width: calc(100% - 32px);
  }

  .contact-page .contact-detail .contact-wrap .form-wrap {
    width: 100%;
  }
}

/* Spotlight: grow with copy + device mockup so nothing is cropped */
.width100per .spotlightWrap {
  width: 100%;
  max-width: 100%;
  float: left;
  height: auto;
  min-height: 100vh;
  overflow: hidden;
}

.width100per .spotlightWrap .spotlightImg {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  overflow: hidden;
}

.width100per .spotlightWrap .spotlightImg .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.width100per .spotlightWrap .spotlightImg .spotlightContant {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: none;
  box-sizing: border-box;
  padding-top: 96px;
  padding-bottom: 48px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.width100per .spotlightWrap .spotlightImg .spotlightContant .copySection {
  top: 0;
  max-width: 100%;
  box-sizing: border-box;
  display: flow-root;
  overflow: visible;
  z-index: 2;
}

.width100per .spotlightWrap .spotlightImg .spotlightContant .copySection .spotlightButtonWrap {
  position: relative;
  z-index: 3;
}

.width100per .spotlightWrap .spotlightImg .spotlightContant .mobileWrap {
  top: 0;
  max-height: none;
  display: flow-root;
  overflow: visible;
  z-index: 2;
}

.width100per .spotlightWrap .spotlightImg .spotlightContant .mobileWrap .imgmobile {
  float: none;
  width: 100%;
  margin-bottom: -458px;
}

.width100per .spotlightWrap .spotlightImg .spotlightContant .mobileWrap .imgmobile img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.width100per .spotlightWrap .spotlightImg .flash-img {
  max-height: 100%;
  z-index: 1;
}

.admin-bar .width100per .spotlightWrap,
.admin-bar .width100per .spotlightWrap .spotlightImg {
  min-height: calc(100vh - 32px);
  height: auto;
}

@media screen and (max-width: 782px) {
  .admin-bar .width100per .spotlightWrap,
  .admin-bar .width100per .spotlightWrap .spotlightImg {
    min-height: calc(100vh - 46px);
  }
}

@media only screen and (max-width: 1700px) {
  .width100per .spotlightWrap,
  .admin-bar .width100per .spotlightWrap,
  .width100per .spotlightWrap .spotlightImg,
  .admin-bar .width100per .spotlightWrap .spotlightImg {
    height: auto;
    min-height: 100vh;
  }
}

@media only screen and (max-width: 1500px) {
  .width100per .spotlightWrap,
  .admin-bar .width100per .spotlightWrap,
  .width100per .spotlightWrap .spotlightImg,
  .admin-bar .width100per .spotlightWrap .spotlightImg {
    height: auto;
    min-height: 100vh;
  }

  .width100per .spotlightWrap .spotlightImg .spotlightContant .mobileWrap .imgmobile {
    margin-bottom: -372px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .width100per .spotlightWrap,
  .admin-bar .width100per .spotlightWrap,
  .width100per .spotlightWrap .spotlightImg,
  .admin-bar .width100per .spotlightWrap .spotlightImg {
    height: auto;
    min-height: 100vh;
  }

  .width100per .spotlightWrap .spotlightImg .spotlightContant {
    display: flex;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .width100per .spotlightWrap .spotlightImg .spotlightContant .mobileWrap .imgmobile {
    margin-bottom: -358px;
  }
}

@media only screen and (max-width: 767px) {
  .width100per .spotlightWrap,
  .admin-bar .width100per .spotlightWrap,
  .width100per .spotlightWrap .spotlightImg,
  .admin-bar .width100per .spotlightWrap .spotlightImg {
    height: auto;
    min-height: 100vh;
  }

  .admin-bar .width100per .spotlightWrap,
  .admin-bar .width100per .spotlightWrap .spotlightImg {
    min-height: calc(100vh - 46px);
  }

  .width100per .spotlightWrap .spotlightImg .spotlightContant {
    position: relative;
    display: block;
    height: auto;
    min-height: 0;
    padding-top: 88px;
    padding-bottom: 28px;
    overflow: visible;
  }

  .width100per .spotlightWrap .spotlightImg .spotlightContant .mobileWrap .imgmobile {
    margin-bottom: 0;
  }
}

/* Inner pages only — do not restyle Home sections */
.about-page .heading,
.subpages {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  text-align: center;
  float: none;
  margin: 0 0 1.5rem;
}

.about-page .guidWrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page .guidWrap ul li {
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  float: none;
  width: auto;
  position: static;
}

.about-page .guidWrap ul li::after {
  display: none;
  content: none;
}

.about-page .guidWrap ul li a {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--navy) !important;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  line-height: 1.35;
  box-shadow: none;
}

.about-page .whoCopy,
.about-page .whyCopy,
.about-page .about-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.about-page .whoCopy p,
.about-page .whyCopy p,
.about-page .about-copy p {
  margin: 0 0 0.85rem;
  color: inherit;
  float: none;
}

.about-page .whoCopy p:last-child,
.about-page .whyCopy p:last-child,
.about-page .about-copy p:last-child {
  margin-bottom: 0;
}

.mediaWrap .mediaItem ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  justify-items: center;
}

.mediaWrap .mediaItem ul li {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  padding: 0;
  width: 100%;
  max-width: 280px;
  float: none;
}

.mediaWrap .mediaItem ul li img {
  width: 100%;
  height: auto;
  display: block;
}

.about-page .about-page-detail,
.media-coverage-wrap .media-detail,
.privacyPageWrap,
.aboutPageWrap {
  padding: 8.5rem 0 5rem;
}

.width100per .mediaWrap.media-coverage-wrap,
.width100per .media-coverage-wrap.mediaWrap {
  height: auto !important;
  min-height: 0;
  overflow: visible;
  float: none;
  width: 100%;
  padding: 0;
}

.width100per .mediaWrap .mediaItem {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: 100%;
  max-width: 920px;
  float: none;
  margin: 0 auto 2rem;
}

.about-page .about-page-detail .about-section,
.aboutPageWrap .aboutSection {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.about-page .whoSection,
.about-page .whySection,
.aboutPageWrap .whoSection,
.aboutPageWrap .whySection {
  width: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.about-page .whoSection .heading,
.about-page .whySection .heading {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin: 0 0 1rem;
  text-align: center;
}

.about-page .whoSection .about-button-wrap,
.about-page .whySection .guidWrap {
  margin-top: auto;
  padding-top: 1.5rem;
  width: 100%;
}

.about-page .whySection .guidWrap ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.about-page .whySection .guidWrap ul li {
  flex: 0 1 auto;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .about-page .whySection .guidWrap ul {
    gap: 0.65rem;
  }

  .about-page .whySection .guidWrap ul li a {
    font-size: 0.84rem;
    padding: 0.5rem 0.85rem;
  }
}

@media only screen and (max-width: 767px) {
  .about-page .whySection .guidWrap ul {
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(0.35rem, 2vw, 0.6rem);
    max-width: 100%;
  }

  .about-page .whySection .guidWrap ul li a {
    font-size: clamp(0.68rem, 2.8vw, 0.8rem);
    padding: 0.45rem clamp(0.45rem, 2.5vw, 0.75rem);
    text-align: center;
    white-space: nowrap;
  }
}

.about-button-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0 0;
}

.about-page .about-button-wrap .get-button,
.about-page .about-button-wrap .whatsaap-button {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.about-page .about-button-wrap .get-button a,
.about-page .about-button-wrap .whatsaap-button a,
.about-page .about-button-wrap .whatsaap-button a.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem !important;
  line-height: 1.2 !important;
  font-size: 0.95rem !important;
  font-weight: 500;
  box-sizing: border-box;
  vertical-align: middle;
}

.about-page .about-button-wrap .get-button a span,
.about-page .about-button-wrap .whatsaap-button a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  line-height: 1;
  float: none;
}

.about-page .about-button-wrap .get-button a i,
.about-page .about-button-wrap .whatsaap-button a i {
  line-height: 1;
  font-size: 1em;
}

.privacyWrap,
.term-copy {
  max-width: 48rem;
  margin: 0 auto;
}

.privacyWrap h1,
.privacyWrap h3,
.privacyWrap h4,
.term-copy p.head {
  color: var(--navy);
}

.privacyWrap p,
.privacyWrap li,
.term-copy p,
.term-copy li {
  color: var(--muted);
}

.thanksCopyImg,
.thanks-img {
  text-align: center;
}

.thanksCopy,
.contact-page .heading {
  color: var(--navy);
}

.fixedWhatsapp img {
  display: none !important;
}

header.site-header {
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (max-width: 1024px) {
  .media-coverage-wrap .media-detail .celeb-wrap ul,
  .mediaWrap .mediaItem ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Home sections after Spotlight: alternating white / dark grey */
.width100per .youtubeSection {
  background: #ffffff;
  background-image: none;
}

.width100per .youtubeSection .copytubeWrap .heading {
  color: #1a2228;
}

.width100per .youtubeSection .copytubeWrap .heading span {
  color: #f16725;
}

.width100per .indiaWrap {
  background: #2f363c;
  background-image: none;
}

.width100per .indiaWrap .leftWrap .heading {
  color: #ffffff;
}

.width100per .indiaWrap .leftWrap .subCopy {
  color: #e8eaed;
}

.width100per .indiaWrap .leftWrap .guidWrap ul li {
  color: #f0f2f4;
}

.width100per .indiaWrap .leftWrap .guidWrap ul li span {
  color: #ffffff;
}

.width100per .indiaWrap .leftWrap .spotlightButtonWrap .whatsButton a {
  border-color: rgba(255, 255, 255, 0.85);
}

.width100per .stadiumWrap {
  background: #ffffff;
  background-image: none;
}

.width100per .stadiumWrap .heading {
  color: #1a2228 !important;
}

/* How It Works — unified slide cards */
.width100per .stadiumWrap .flashSlider {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  overflow: visible;
  box-sizing: border-box;
}

.width100per .stadiumWrap .flashSlider .flashslideWrap.slick-slider {
  position: relative;
  padding-left: clamp(2.75rem, 5vw, 3.5rem);
  padding-right: clamp(2.75rem, 5vw, 3.5rem);
  box-sizing: border-box;
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .slick-list {
  overflow: hidden;
  border-radius: var(--radius);
  border: none;
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .slick-track {
  display: flex !important;
  align-items: stretch;
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .slick-slide {
  float: none;
  height: auto;
  display: flex !important;
  padding: 0 0.65rem;
  box-sizing: border-box;
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .rowslide {
  float: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0 auto;
  min-height: 100%;
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .rowslide .flashIMG {
  width: 100%;
  display: block;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 0;
  background: transparent;
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .rowslide .flashIMG img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  vertical-align: top;
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .rowslide .flashCopy {
  width: 100%;
  display: block;
  flex: 1 1 auto;
  margin: 0;
  padding: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem)
    clamp(1.25rem, 3vw, 1.75rem);
  border: none;
  box-sizing: border-box;
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .rowslide .flashCopy a {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  text-align: left;
  background: transparent;
  color: #1a2228;
  border: none;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  font-family: "gilroy-extrabold", sans-serif;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .rowslide .flashCopy a:hover {
  color: var(--gold);
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .slick-prev,
.width100per .stadiumWrap .flashSlider .flashslideWrap .slick-next {
  z-index: 3;
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .slick-prev {
  left: 0.15rem;
}

.width100per .stadiumWrap .flashSlider .flashslideWrap .slick-next {
  right: 0.15rem;
}

@media only screen and (max-width: 1024px) {
  .width100per .stadiumWrap .flashSlider {
    max-width: 100%;
  }

  .width100per .stadiumWrap .flashSlider .flashslideWrap.slick-slider {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .width100per .stadiumWrap .flashSlider .flashslideWrap .rowslide .flashCopy a {
    font-size: clamp(1rem, 2.4vw, 1.25rem);
  }
}

@media only screen and (max-width: 767px) {
  .width100per .stadiumWrap .flashSlider .flashslideWrap.slick-slider {
    padding-left: 2.35rem;
    padding-right: 2.35rem;
  }

  .width100per .stadiumWrap .flashSlider .flashslideWrap .slick-slide {
    padding: 0 0.35rem;
  }

  .width100per .stadiumWrap .flashSlider .flashslideWrap .rowslide .flashIMG img {
    aspect-ratio: 4 / 3;
  }

  .width100per .stadiumWrap .flashSlider .flashslideWrap .rowslide .flashCopy a {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.width100per .toofanWrap {
  background: #2f363c;
  background-image: none;
}

.width100per .toofanWrap .heading {
  color: #ffffff;
}

.width100per .toofanWrap .spotlightButtonWrap .whatsButton a {
  border-color: rgba(255, 255, 255, 0.85);
}

.width100per .casinoWrap {
  background: #ffffff;
  background-image: none;
}

.width100per .casinoWrap .heading {
  color: #1a2228;
}

.width100per .casinoWrap .bettingWrap ul li {
  color: #ffffff;
}

.width100per .casinoWrap .bettingWrap ul li h3,
.width100per .casinoWrap .bettingWrap ul li p {
  color: #ffffff;
}

.width100per .celebWrap {
  background: #2f363c;
  background-image: none;
}

.width100per .celebWrap .heading {
  color: #ffffff;
}

.width100per .countWrap {
  background: #ffffff;
  background-image: none;
}

.width100per .countWrap .heading {
  color: #1a2228;
}

.width100per .countWrap .subCopy {
  color: #5c6778;
}

.width100per .countWrap .counterWrap .copy,
.width100per .countWrap .copy {
  color: #1a2228;
}

.width100per .countWrap .counter-value {
  color: #f16725;
}

/* Home "Get Started" buttons — match header Register colors */
.home-page .getButton a,
.width100per .home-page .spotlightButtonWrap .getButton a,
.width100per .home-page .spotlightWrap .spotlightImg .spotlightContant .copySection .spotlightButtonWrap .getButton a,
.width100per .home-page .indiaWrap .leftWrap .spotlightButtonWrap .getButton a,
.width100per .home-page .toofanWrap .spotlightButtonWrap .getButton a {
  background: var(--gold) !important;
  background-image: none !important;
  color: var(--white) !important;
}

.home-page .getButton a:hover,
.width100per .home-page .spotlightButtonWrap .getButton a:hover,
.width100per .home-page .spotlightWrap .spotlightImg .spotlightContant .copySection .spotlightButtonWrap .getButton a:hover,
.width100per .home-page .indiaWrap .leftWrap .spotlightButtonWrap .getButton a:hover,
.width100per .home-page .toofanWrap .spotlightButtonWrap .getButton a:hover {
  background: var(--gold-hover) !important;
  background-image: none !important;
  color: var(--white) !important;
}

/* Home sections after Spotlight: consistent vertical rhythm */
.width100per .youtubeSection,
.width100per .indiaWrap,
.width100per .stadiumWrap,
.width100per .toofanWrap,
.width100per .casinoWrap,
.width100per .celebWrap,
.width100per .countWrap {
  min-height: 0 !important;
  height: auto;
  margin: 0;
  padding-top: clamp(3.25rem, 5.5vw, 5rem);
  padding-bottom: clamp(3.25rem, 5.5vw, 5rem);
  box-sizing: border-box;
}

.width100per .youtubeSection .copytubeWrap .heading,
.width100per .indiaWrap .leftWrap .heading,
.width100per .stadiumWrap .heading,
.width100per .toofanWrap .heading,
.width100per .casinoWrap .heading,
.width100per .celebWrap .heading,
.width100per .countWrap .heading {
  margin-top: 0;
}

@media only screen and (max-width: 1024px) {
  .width100per .youtubeSection,
  .width100per .indiaWrap,
  .width100per .stadiumWrap,
  .width100per .toofanWrap,
  .width100per .casinoWrap,
  .width100per .celebWrap,
  .width100per .countWrap {
    padding-top: clamp(2.5rem, 4.5vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 4.5vw, 3.5rem);
  }
}

@media only screen and (max-width: 767px) {
  .width100per .youtubeSection,
  .width100per .indiaWrap,
  .width100per .stadiumWrap,
  .width100per .toofanWrap,
  .width100per .casinoWrap,
  .width100per .celebWrap,
  .width100per .countWrap {
    padding-top: clamp(2rem, 4vw, 2.75rem);
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
  }
}

