:root {
  /* ================= Fonts ================= */
  /* --font-body: var(--font-inter);
  --font-heading: var(--font-playfair); */
  --bg-color: #000097;
}

/* =====================================
   Base Styles
===================================== */
html,
body {
    font-family: "Manrope", sans-serif;
    color: #000033;
    background-color: var(--brand-blush-soft, #fdf6f7);
    background-image: url(../../img/bg-1.jpg);
    background-size: cover;
    background-position: center;
}

.font-algerian {
  font-family: "Algerian", "Playfair Display", Georgia, serif;
}

/* =====================================
   Typography (Responsive)
===================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: var(--font-heading), serif; */
}

/* Mobile first */
h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
}

h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
}

h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}

/* Tablet */
@media (min-width: 768px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 26px;
  }
}

/* Body Text */
p {
  line-height: 25px;
  font-size: 16px;
   /* font-family: "Roboto", sans-serif; */
}

@media (max-width: 640px) {
  p {
    font-size: 14px;
  }
}

.companey-name {
  font-family: "Vast Shadow", serif;
  font-size: 55px;
  color: #2d2db3;
  text-shadow: 0 1px 0 #CCCCCC, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, .1), 0 0 5px rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .3), 0 3px 5px rgba(0, 0, 0, .2), 0 5px 10px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .2), 0 20px 20px rgba(0, 0, 0, .15);
}

.contact input,
.contact textarea {
  border: 1px solid #e5e7eb;
  width: 100%;
  border-radius: 2px;
  margin-bottom: 13px;
  background-color: #f0f0f0;
  padding: 15px 15px;
}

/* ================= Quick Enquiry Form ================= */
.enquiry-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 51, 0.08);
  box-shadow:
    0 4px 6px rgba(0, 0, 51, 0.04),
    0 18px 40px rgba(0, 0, 51, 0.08);
  overflow: hidden;
}

.enquiry-card__header {
  padding: 1.35rem 1.5rem 1.25rem;
  background: linear-gradient(135deg, #0b0bd8 0%, #2484fe 100%);
  color: #fff;
}

.enquiry-card__title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.enquiry-card__subtitle {
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.enquiry-card__body {
  padding: 1.5rem;
}

.enquiry-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .enquiry-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.enquiry-field--full {
  grid-column: 1 / -1;
}

.enquiry-input {
  display: block;
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: #000033;
  padding: 0.9rem 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.enquiry-input::placeholder {
  color: #94a3b8;
}

.enquiry-input:hover {
  border-color: #cbd5e1;
  background: #fff;
}

.enquiry-input:focus {
  outline: none;
  border-color: #2484fe;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(36, 132, 254, 0.16);
}

.enquiry-textarea {
  min-height: 130px;
  resize: vertical;
}

.enquiry-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enquiry-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(11, 11, 216, 0.28);
}

.enquiry-submit:disabled {
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

.enquiry-form .form-success {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  font-size: 0.9rem;
  line-height: 1.5;
}

.enquiry-form .form-error {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.9rem;
  line-height: 1.5;
}

.enquiry-form .recaptcha-notice {
  font-size: 0.75rem;
  line-height: 1.55;
  color: #94a3b8;
  text-align: center;
}

.enquiry-form .recaptcha-notice a {
  color: #2484fe;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 1024px) {
  .enquiry-card {
    position: sticky;
    top: calc(var(--site-header-height, 148px) + 1.25rem);
  }
}


/* =====================================
   Inputs & Labels
===================================== */


@media (max-width: 767px) {

  input,
  textarea,
  select {
    font-size: 16px;
    padding: 10px;
  }
}

/* =====================================
   Utilities
===================================== */
.bg-blush {
  background: #000097;
  background: linear-gradient(0deg, #0b0bd8 0%, #020919 100%);
  color: #fff;
}

/* =====================================
   Container (unchanged, correct)
===================================== */
.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1250px;
  }
}

/* span{
  color: var(--text-primary);
  font-family: var(--font-heading), serif;
} */


/* ================= Site Header ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  max-width: none;
  padding-top: env(safe-area-inset-top, 0);
}

.site-header .container {
  width: 100%;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .site-header .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1200px) {
  .site-header .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.site-header--inner {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.9) 100%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.site-header--home {
  background: linear-gradient(287deg, rgb(0 0 0) 0%, rgb(251 235 236) 100%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.site-header--home .site-header__top,
.site-header--home .site-header__top a {
  color: #111;
}

.site-header--home .site-header__top a:hover {
  color: #007bff;
}

.site-header__tagline-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-header--home .site-header__tagline {
  color: #fff;
  border-bottom-color: #fff;
}

.site-header__tagline {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.35;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
}

.site-header nav {
  padding: 0.35rem 0;
}

.site-header .logo img {
  max-height: 72px;
}

.site-header .logo .site-brand-name {
  display: inline-block;
  font-family: "Algerian", "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #0067b8;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.site-header__social {
  gap: 0.55rem;
}

.site-header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 9999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.site-header__social-link:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  filter: brightness(1.08);
}

.site-header__social-link svg {
  width: 1.2rem;
  height: 1.2rem;
}

.site-header__social-link--facebook svg {
  width: 1.28rem;
  height: 1.28rem;
}

.site-header__social-link--facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0f5bd7 100%);
}

.site-header__social-link--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}

.site-header__social-link--linkedin {
  background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
}

.site-header__social-link--youtube {
  background: linear-gradient(135deg, #ff4040 0%, #cc0000 100%);
}

.site-header__social-link--whatsapp {
  background: linear-gradient(135deg, #34eb7a 0%, #128c7e 100%);
}

.page-breadcrumb-inner {
  padding-top: calc(var(--site-header-height, 148px) + 1.75rem);
  padding-bottom: 4.5rem;
  background: rgba(0, 0, 0, 0.86);
}

@media (max-width: 1023px) {
  .page-breadcrumb-inner {
    padding-bottom: 3.25rem;
  }

  .site-header .logo img {
    max-height: 56px;
  }
}

@media (max-width: 639px) {
  .page-breadcrumb-inner {
    padding-top: calc(var(--site-header-height, 70px) + 1.25rem);
    padding-bottom: 2.5rem;
  }
}

nav ul li {
  position: relative;
  font-size: 15px;
  padding: 15px 0;
  color: #343434;
}

.page-inner nav ul li > a {
  color: #fff;
}

.page-inner nav ul li:hover > a {
  color: #007bff;
}

.site-header .has-dropdown:hover > a {
  color: #007bff !important;
}

nav ul li:hover {
  color: #000097;
}

.sub-menu {
  position: absolute;
  left: 0;
  top: 200%;
  background: #fff;
  border-radius: 8px;
  margin-top: 10px;
  width: max-content;
  min-width: 230px;
  max-width: min(320px, 90vw);
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 1100;
  opacity: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 6px 0;
}

@media (max-width: 1023px) {
  .sub-menu {
    display: none !important;
  }
}

.sub-menu li {
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eee;
  transition: all 0.5s ease;
  position: relative;
}

.sub-menu li:last-child {
  border-bottom: none;
}

.sub-menu li a {
  display: block;
  padding: 10px 30px;
  color: #333 !important;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 2;
  text-decoration: none;
}

nav ul li:hover>.sub-menu {
  top: 85%;
  visibility: visible;
  z-index: 1100;
  opacity: 1;
}

.sub-menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0%;
  width: 100%;
  background: linear-gradient(0deg, #0b0bd8 0%, #020919 100%);
  transition: all 0.5s ease;
  z-index: 1;
}

nav .sub-menu li:hover > a {
  color: #fff !important;
}

.sub-menu li:hover::after {
  height: 100%;
}

.sub-menu .sub-menu {
  left: 101%;
  top: 0 !important;
}


.select_service:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50%;
  height: 1px;
  background-color: #E6E6E6;
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq.open .faq-answer {
  max-height: 200px;
}

.faqs .faq .faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  transition: all 0.2s ease;
}

.faqs .faq.open .faq-question::after {
  content: "-";
}

.main-title {
  font-size: 35px;
  display: block;
  /* background: -webkit-linear-gradient(#2484fe, #000097); */
  background-color: #2484fe;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   font-family: "Merienda", cursive;
  /* text-shadow: 1px 1px 2px #3800ff70; */
  margin-bottom: 10px;
}

.main-title-2 {
  background: -webkit-linear-gradient(top, rgb(255 255 255), rgb(255 255 255)) text;
  -webkit-text-fill-color: transparent;
  text-shadow: rgb(255 255 255 / 52%) 1px 1px 2px;
  margin-bottom: 10px;
   font-family: "Merienda", cursive;
  font-size: 35px;
  display: block;
}

.btn {
  display: inline-block;
  padding: 11px 33px;
  background-color: #000097;
  background: linear-gradient(0deg, #0b0bd8 0%, #2484fe 100%);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background-color: #000097;
  background: linear-gradient(0deg, #2484fe 0%, #0b0bd8 100%);
}

.heroBannner {
  overflow: hidden;
  max-width: 100%;
}

.heroBannner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000078;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.419) 0%, rgba(0, 0, 0, 0.761) 100%);
  z-index: 9;
}

.banner_title {
  top: 42%;
  transform: translateY(120px);
  opacity: 0;
  font-family: "Afacad", sans-serif;
}

.hero-banner-heading {
  font-size: clamp(1.35rem, 4.5vw, 3.75rem);
  line-height: 1.2;
}

.hero-banner-subtitle {
  font-size: clamp(0.875rem, 2.2vw, 1.25rem);
  line-height: 1.5;
}

.hero-banner-img {
  min-height: 240px;
  height: 55vw;
  max-height: 520px;
}

@media (min-width: 768px) {
  .hero-banner-img {
    min-height: 420px;
    height: auto;
    max-height: 520px;
  }

  .banner_title {
    top: 40%;
  }
}

.hero .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-active img {
  animation: bannerimg 10s ease-in-out;
  transform-origin: center center;
}

@media (max-width: 767px) {
  .hero .swiper-slide img,
  .hero-banner-img {
    animation: none !important;
    transform: none !important;
  }
}

.hero .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-active .banner_title {
  animation: stickySlideDown 1.5s ease-in-out forwards;
}

@keyframes stickySlideDown {
  0% {
    transform: translateY(120px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bannerimg {
  0% {

    transform: scale(1);
  }

  100% {

    transform: scale(1.2);
  }
}

.quality-video {
  position: relative;
  padding: 80px 0px;
}

.play-now .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 65px;
  width: 65px;
  text-align: center;
  line-height: 65px;
  background-color: #1c63b8;
  color: #fff;
  z-index: 1;
  font-size: 20px;
  padding-left: 5px;
  display: block;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
}


.ripple,
.ripple:before,
.ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 65px;
  width: 65px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 #2d2db3;
  -moz-box-shadow: 0 0 0 0 #2d2db3;
  -ms-box-shadow: 0 0 0 0 #2d2db3;
  -o-box-shadow: 0 0 0 0 #2d2db3;
  box-shadow: 0 0 0 0 #2d2db3;
  -webkit-animation: ripple 3s infinite;
  -moz-animation: ripple 3s infinite;
  -ms-animation: ripple 3s infinite;
  -o-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.ripple {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  max-width: 600px;
  margin: 0px auto;
  background-color: #2d2db3;
  z-index: -1;
}



@keyframes ripple {
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.mfp-video {
  text-align: center;
  margin: auto;
  display: flex;
  justify-content: center;
}

.fontFamily {
 font-family: "Playfair Display", serif;
}

.slide_1 .swiper-slide-active {
  border: 2px solid #fff;
  padding: 5px;
  transition: ease-in-out .5s;
  border-radius: 20px;
}

.counter_img {
  margin: 0 0 0 auto;
}

.countBox {
  text-align: left;
}

/* ================= Home Product Section ================= */
.home-products-showcase {
  position: relative;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(36, 132, 254, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(0, 0, 151, 0.18) 0%, transparent 50%),
    linear-gradient(165deg, #070b12 0%, #0f1623 45%, #121a28 100%);
}

.home-products-showcase__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-products-showcase__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.home-products-showcase__orb--one {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: rgba(36, 132, 254, 0.35);
}

.home-products-showcase__orb--two {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -60px;
  background: rgba(0, 0, 151, 0.4);
}

.home-products-showcase__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
}

.home-products-showcase__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.home-products-showcase__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7ec3ff;
  background: rgba(36, 132, 254, 0.12);
  border: 1px solid rgba(36, 132, 254, 0.25);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.home-products-showcase__title {
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, #ffffff 0%, #7ec3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-products-showcase__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.home-products-showcase__stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .home-products-showcase__stage {
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    gap: 3rem;
    align-items: center;
  }
}

.home-products-showcase__content {
  display: flex;
  flex-direction: column;
}

.home-products-showcase__tabs-wrap {
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.home-products-showcase__tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.25rem 0.15rem 0.55rem;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.home-products-showcase__tabs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .home-products-showcase__tabs {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    gap: 0.5rem;
    padding-bottom: 0.25rem;
  }
}

.home-product-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  scroll-snap-align: start;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-product-tab:hover {
  border-color: rgba(126, 195, 255, 0.4);
  color: #fff;
  background: rgba(36, 132, 254, 0.1);
}

.home-product-tab.is-active {
  background: linear-gradient(135deg, rgba(36, 132, 254, 0.85) 0%, rgba(0, 0, 151, 0.75) 100%);
  border-color: rgba(126, 195, 255, 0.55);
  color: #fff;
  box-shadow: 0 4px 16px rgba(36, 132, 254, 0.35);
  transform: translateY(-1px);
}

.home-products-showcase__panel {
  position: relative;
  background: linear-gradient(145deg, rgba(22, 30, 42, 0.95) 0%, rgba(12, 17, 26, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.home-products-showcase__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2484fe 0%, #000097 100%);
}

.home-products-showcase__panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.home-products-showcase__counter {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.home-products-showcase__counter [data-field="index"] {
  color: #7ec3ff;
  font-size: 1.1rem;
}

.home-products-showcase__counter-sep {
  margin: 0 0.2rem;
  opacity: 0.45;
}

.home-products-showcase__chip {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7ec3ff;
  background: rgba(36, 132, 254, 0.12);
  border: 1px solid rgba(36, 132, 254, 0.22);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.home-products-showcase__name {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 1rem;
}

.home-products-showcase__desc,
.home-products-showcase__desc p,
.home-products-showcase__desc div,
.home-products-showcase__desc span,
.home-products-showcase__desc b,
.home-products-showcase__desc strong,
.home-products-showcase__desc ul li {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.96rem;
  line-height: 1.7;
}

.home-products-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.home-products-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 0.92rem;
}

.home-products-showcase__cta svg {
  width: 1rem;
  height: 1rem;
}

.home-products-showcase__nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.home-products-showcase__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.home-products-showcase__nav-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.home-products-showcase__nav-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #0d111a;
}

.home-products-showcase__visual {
  position: relative;
  min-width: 0;
}

.home-products-showcase__frame {
  position: relative;
  padding: 1rem;
}

.home-products-showcase__frame-ring {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(126, 195, 255, 0.25);
  background: linear-gradient(135deg, rgba(36, 132, 254, 0.08) 0%, transparent 50%);
  transform: rotate(-2deg);
  pointer-events: none;
}

.home-product-swiper {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.home-products-showcase__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (min-width: 640px) {
  .home-products-showcase__img {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .home-products-showcase__img {
    height: 380px;
  }
}

.home-products-showcase__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 11, 18, 0.75) 100%);
  pointer-events: none;
}

.home-product-slide-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
}

.home-product-slide-frame.is-active {
  box-shadow: 0 0 0 2px rgba(126, 195, 255, 0.45);
}

.home-products-showcase__thumbs {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.home-product-thumb {
  width: 4.5rem;
  height: 3.25rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  background: none;
}

.home-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-product-thumb.is-active,
.home-product-thumb:hover {
  opacity: 1;
  border-color: #7ec3ff;
  transform: translateY(-3px);
}

.home-products-showcase__footer {
  text-align: center;
  margin-top: 2.5rem;
}

.home-products-showcase__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(126, 195, 255, 0.35);
  padding-bottom: 0.2rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.home-products-showcase__view-all svg {
  width: 1rem;
  height: 1rem;
}

.home-products-showcase__view-all:hover {
  color: #7ec3ff;
  border-color: #7ec3ff;
}

/* Legacy aliases kept for JS hooks */
.home-product-section {
  color: #fff;
}

.home-product-card {
  display: none;
}

.home-product-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1rem;
}

.home-product-section .home-product-desc.pd-detail-short p,
.home-product-section .home-product-desc.pd-detail-short div,
.home-product-section .home-product-desc.pd-detail-short span,
.home-product-section .home-product-desc.pd-detail-short b,
.home-product-section .home-product-desc.pd-detail-short strong,
.home-product-section .home-product-desc.pd-detail-short h1,
.home-product-section .home-product-desc.pd-detail-short h2,
.home-product-section .home-product-desc.pd-detail-short h3,
.home-product-section .home-product-desc.pd-detail-short h4,
.home-product-section .home-product-desc.pd-detail-short h5,
.home-product-section .home-product-desc.pd-detail-short h6,
.home-product-section .home-product-desc.pd-detail-short ul li,
.home-product-section .home-product-desc.pd-detail-short ul {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-product-card .home-product-btn {
  margin-top: 1.5rem;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
}

.home-product-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(13, 17, 26, 0.72);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.home-product-nav-btn svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.home-product-nav-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #0d111a;
}

/* ================= Why Choose Us ================= */
.why-choose-section {
  overflow: hidden;
}

.why-choose-grid {
  align-items: stretch;
}

.why-choose-heading {
  display: block;
  margin-bottom: 1.75rem;
}

.why-choose-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-choose-card:hover {
  transform: translateY(-6px);
  border-color: #4b5563;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
}

.why-choose-card-icon {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.why-choose-card-title {
  font-family: "Playfair Display", serif;
  color: #fff;
}

.why-counter-panel {
  position: relative;
}

.why-counter-grid {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(13, 17, 26, 0.62) 100%);
}

.why-counter-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-counter-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-counter-item:nth-child(2) { transition-delay: 0.1s; }
.why-counter-item:nth-child(3) { transition-delay: 0.2s; }
.why-counter-item:nth-child(4) { transition-delay: 0.3s; }

.countBox {
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-counter-item:hover .countBox {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.countBox .num {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.02em;
  color: #0d111a;
}

.countBox-label {
  color: #0d111a;
  font-weight: 600;
}

.countBox::after {
  content: "";
  border: 10px solid #fff;
  border-color: #fff #fff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  position: absolute;
  bottom: -19px;
  right: 0;
}

.prodetaisls ul {
  padding-left: 15px;
  margin-left: 10px;
}
.prodetaisls ul li{
  list-style: disc;
  font-weight: 600;
  margin: 4px 0;
}

/* ================= Product Detail Page ================= */
.product-detail-page {
  background:
    radial-gradient(ellipse 70% 55% at 10% 0%, rgba(251, 235, 236, 0.95) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(245, 228, 230, 0.85) 0%, transparent 55%),
    linear-gradient(180deg, var(--brand-blush-soft, #fdf6f7) 0%, var(--brand-blush, #fbebec) 52%, var(--brand-blush-soft, #fdf6f7) 100%);
}

.product-detail-page .container {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0 3rem;
  align-items: start;
}

.product-detail-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .product-detail-split {
    grid-template-columns: minmax(340px, 48%) minmax(0, 1fr);
    gap: 2.5rem 3rem;
  }
}

.product-detail-split__media {
  min-width: 0;
  perspective: 1400px;
}

@media (min-width: 992px) {
  .product-detail-split__media {
    position: sticky;
    top: calc(var(--site-header-height, 148px) + 1.25rem);
    align-self: start;
  }
}

.product-detail-split__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-detail-split__content .product-detail-mosaic__content {
  margin-top: 0;
}

.product-detail-split .product-detail-features {
  flex: none;
  width: 100%;
}

.product-detail-enquiry {
  margin-top: 2.75rem;
}

.product-detail-enquiry .enquiry-card {
  border-radius: 22px;
  border: 1px solid rgba(36, 132, 254, 0.14);
  box-shadow:
    0 12px 36px rgba(15, 23, 42, 0.1),
    0 4px 14px rgba(36, 132, 254, 0.08);
  overflow: hidden;
}

@media (min-width: 992px) {
  .product-detail-enquiry .enquiry-card {
    display: grid;
    grid-template-columns: minmax(260px, 30%) minmax(0, 1fr);
  }

  .product-detail-enquiry .enquiry-card__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.1rem;
  }

  .product-detail-enquiry .enquiry-card__body {
    padding: 2rem 2.25rem;
  }

  .product-detail-enquiry .enquiry-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-detail-main {
  min-width: 0;
}

.product-detail-intro {
  margin-bottom: 1.35rem;
  padding: 0 0 0.25rem;
}

.product-detail-intro__lead {
  margin: 0;
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: none;
}

.product-detail-mosaic {
  color: #374151;
  line-height: 1.75;
}

.product-detail-mosaic__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
}

.product-detail-mosaic__image {
  flex: 0 0 300px;
  width: 300px;
  max-width: 100%;
  margin: 0;
  line-height: 0;
}

.product-detail-features {
  flex: 1 1 280px;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  align-content: start;
}

.product-detail-features-below {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  width: 100%;
  margin-top: 0.75rem;
}

.product-detail-features-below:empty {
  display: none;
  margin-top: 0;
}

.product-detail-mosaic__content {
  margin-top: 1.25rem;
  width: 100%;
}

.product-detail-mosaic__content--beside {
  flex: 1 1 280px;
  min-width: 0;
  margin-top: 0;
}

.product-detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.product-detail-feature__icon {
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2484fe;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 132, 254, 0.18);
  box-shadow: 0 4px 12px rgba(36, 132, 254, 0.08);
}

.product-detail-feature__icon svg {
  width: 1rem;
  height: 1rem;
}

.product-detail-feature__text {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 500;
  padding-top: 0.2rem;
}

.product-detail-flow {
  color: #374151;
  line-height: 1.75;
}

.product-detail-mosaic.detail-page p,
.product-detail-mosaic.detail-page div,
.product-detail-mosaic.detail-page span,
.product-detail-mosaic.detail-page b,
.product-detail-mosaic.detail-page strong,
.product-detail-mosaic.detail-page h1,
.product-detail-mosaic.detail-page h2,
.product-detail-mosaic.detail-page h3,
.product-detail-mosaic.detail-page h4,
.product-detail-mosaic.detail-page h5,
.product-detail-mosaic.detail-page h6,
.product-detail-mosaic.detail-page ul li,
.product-detail-mosaic.detail-page ul {
  color: #374151;
}

.product-detail-mosaic.detail-page h2,
.product-detail-mosaic.detail-page h3 {
  color: #111827;
  margin-top: 1.25rem;
}

.product-detail-mosaic.detail-page img {
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
  border-radius: 12px;
}

.product-detail-figure__img {
  width: auto;
  max-width: min(100%, 320px);
  height: auto;
  max-height: min(52vh, 420px);
  display: block;
  object-fit: contain;
  object-position: top left;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0, 0, 0, 0.35) 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0, 0, 0, 0.35) 88%, transparent 100%);
}

.product-detail-sidebar {
  min-width: 0;
}

@media (min-width: 992px) {
  .product-detail-sidebar {
    position: sticky;
    top: calc(var(--site-header-height, 148px) + 1.25rem);
  }
}

.product-detail-sidebar .enquiry-card {
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.08),
    0 24px 48px rgba(15, 23, 42, 0.06);
}

.product-detail-layout--showcase {
  gap: 2.5rem 3rem;
}

@media (min-width: 992px) {
  .product-detail-layout--showcase {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  }
}

.product-detail-layout--showcase .product-detail-intro__lead {
  max-width: none;
  font-size: 1.02rem;
}

.product-detail-mosaic--showcase .product-detail-mosaic__top {
  display: grid;
  grid-template-columns: minmax(320px, 44%) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.product-detail-mosaic--showcase .product-detail-mosaic__image--showcase,
.product-detail-split .product-detail-mosaic__image--showcase {
  position: relative;
  flex: none;
  width: 100%;
  margin: 0;
  padding: 0.75rem 0.5rem 1.25rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.product-detail-split .product-detail-mosaic__image--showcase::before {
  content: "";
  position: absolute;
  inset: 10% 8% 2% 12%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 214, 102, calc(0.38 * var(--light-intensity, 0.72))) 0%, transparent 46%),
    linear-gradient(145deg, rgba(36, 132, 254, 0.14) 0%, rgba(251, 235, 236, 0.55) 55%, rgba(255, 255, 255, 0.35) 100%);
  transform: rotate(-3deg) translateZ(-20px);
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.12);
  z-index: 0;
  transition: background 0.25s ease;
}

/* Industrial hanging bulb spotlight */
.product-detail-spotlight {
  position: relative;
  --bulb-swing: 0deg;
  --light-intensity: 0.72;
}

.product-detail-spotlight__rig {
  position: absolute;
  top: -0.15rem;
  right: 1.5rem;
  z-index: 5;
  transform-origin: top center;
  transform: rotate(var(--bulb-swing));
  pointer-events: none;
  animation: productBulbIdle 5.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .product-detail-spotlight__rig {
    animation: none;
  }
}

@keyframes productBulbIdle {
  0%, 100% { transform: rotate(calc(var(--bulb-swing) - 1.5deg)); }
  50% { transform: rotate(calc(var(--bulb-swing) + 1.5deg)); }
}

.product-detail-spotlight__wire {
  display: block;
  width: 2px;
  height: 3.4rem;
  margin: 0 auto;
  background: linear-gradient(180deg, #334155 0%, #64748b 55%, #475569 100%);
  border-radius: 999px;
  box-shadow:
    1px 0 0 rgba(255, 255, 255, 0.12),
    -1px 0 2px rgba(15, 23, 42, 0.18);
}

.product-detail-spotlight__bulb {
  position: relative;
  width: 2.25rem;
  height: 2.85rem;
  margin: -1px auto 0;
}

.product-detail-spotlight__cap {
  display: block;
  width: 1.2rem;
  height: 0.58rem;
  margin: 0 auto;
  background: linear-gradient(180deg, #94a3b8 0%, #475569 45%, #334155 100%);
  border-radius: 4px 4px 0 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.product-detail-spotlight__glass {
  position: relative;
  display: block;
  width: 2.25rem;
  height: 2.1rem;
  margin: 0 auto;
  border-radius: 48% 48% 52% 52%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.85) 0%, transparent 38%),
    linear-gradient(160deg, rgba(255, 248, 220, 0.98) 0%, rgba(255, 203, 84, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 0 calc(22px * var(--light-intensity)) rgba(255, 190, 60, 0.9),
    0 0 calc(42px * var(--light-intensity)) rgba(255, 160, 0, 0.35),
    inset 0 -10px 16px rgba(245, 158, 11, 0.28);
  transition: box-shadow 0.2s ease;
}

.product-detail-spotlight__filament {
  position: absolute;
  left: 50%;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.72rem;
  transform: translateX(-50%);
  border: 2px solid rgba(251, 191, 36, 0.95);
  border-bottom: none;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 0 calc(8px * var(--light-intensity)) rgba(255, 200, 80, 0.95);
  opacity: calc(0.55 + var(--light-intensity) * 0.45);
}

.product-detail-spotlight__halo {
  position: absolute;
  left: 50%;
  top: 1.45rem;
  width: 5.5rem;
  height: 5.5rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 210, 90, calc(0.62 * var(--light-intensity))) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.product-detail-spotlight__beam {
  position: absolute;
  top: 3.2rem;
  right: 0.25rem;
  width: min(72%, 340px);
  height: min(62%, 440px);
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 80% at 92% 6%, rgba(255, 230, 140, calc(0.5 * var(--light-intensity))) 0%, rgba(255, 196, 64, calc(0.22 * var(--light-intensity))) 32%, transparent 74%);
  mix-blend-mode: soft-light;
  opacity: calc(0.55 + var(--light-intensity) * 0.45);
  transition: opacity 0.2s ease;
}

.product-detail-spotlight .product-detail-figure__img {
  filter: brightness(calc(0.97 + var(--light-intensity) * 0.07)) contrast(1.02);
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.16),
    0 10px 24px rgba(36, 132, 254, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset -24px 24px 48px rgba(255, 196, 64, calc(0.08 * var(--light-intensity)));
}

.product-detail-split .product-detail-mosaic__image--showcase::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0.35rem;
  height: 1.75rem;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.16) 0%, transparent 72%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.product-detail-mosaic--showcase .product-detail-figure__img,
.product-detail-split .product-detail-figure__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  max-height: min(78vh, 720px);
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(253, 246, 247, 0.15) 100%);
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.16),
    0 10px 24px rgba(36, 132, 254, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  -webkit-mask-image: none;
  mask-image: none;
}

.product-detail-split__media:hover .product-detail-figure__img {
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg) translateY(-6px) translateZ(12px);
  box-shadow:
    0 36px 70px rgba(15, 23, 42, 0.2),
    0 14px 32px rgba(36, 132, 254, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase,
.product-detail-mosaic--showcase .product-detail-mosaic__content,
.product-detail-split .product-detail-mosaic__content {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.68) 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 1.65rem 1.85rem;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  font-size: 0.96rem;
  line-height: 1.78;
}

.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase > :first-child,
.product-detail-mosaic--showcase .product-detail-mosaic__content > :first-child,
.product-detail-split .product-detail-mosaic__content > :first-child {
  margin-top: 0;
}

.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase h2,
.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase h3,
.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase h4,
.product-detail-mosaic--showcase .product-detail-mosaic__content h2,
.product-detail-mosaic--showcase .product-detail-mosaic__content h3,
.product-detail-mosaic--showcase .product-detail-mosaic__content h4,
.product-detail-split .product-detail-mosaic__content h2,
.product-detail-split .product-detail-mosaic__content h3,
.product-detail-split .product-detail-mosaic__content h4 {
  font-family: "Manrope", sans-serif !important;
  font-weight: 700 !important;
  color: #111827 !important;
  text-shadow: none !important;
  font-size: 1.2rem !important;
  line-height: 1.35 !important;
  margin: 1.35rem 0 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(36, 132, 254, 0.14);
}

.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase h2:first-child,
.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase h3:first-child,
.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase h4:first-child,
.product-detail-mosaic--showcase .product-detail-mosaic__content h2:first-child,
.product-detail-mosaic--showcase .product-detail-mosaic__content h3:first-child,
.product-detail-mosaic--showcase .product-detail-mosaic__content h4:first-child,
.product-detail-split .product-detail-mosaic__content h2:first-child,
.product-detail-split .product-detail-mosaic__content h3:first-child,
.product-detail-split .product-detail-mosaic__content h4:first-child {
  margin-top: 0;
}

.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase p,
.product-detail-mosaic--showcase .product-detail-mosaic__content p,
.product-detail-split .product-detail-mosaic__content p {
  margin-bottom: 1rem;
  font-size: 0.96rem !important;
  color: #374151 !important;
}

.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase ul,
.product-detail-mosaic--showcase .product-detail-mosaic__content ul,
.product-detail-split .product-detail-mosaic__content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  display: grid;
  gap: 0.7rem;
}

.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase ul li,
.product-detail-mosaic--showcase .product-detail-mosaic__content ul li,
.product-detail-split .product-detail-mosaic__content ul li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.94rem !important;
  color: #374151 !important;
  line-height: 1.6;
}

.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase ul li::before,
.product-detail-mosaic--showcase .product-detail-mosaic__content ul li::before,
.product-detail-split .product-detail-mosaic__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2484fe 0%, #0b0bd8 100%);
  box-shadow: 0 0 0 3px rgba(36, 132, 254, 0.12);
}

.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase strong,
.product-detail-mosaic--showcase .product-detail-mosaic__content--showcase b,
.product-detail-mosaic--showcase .product-detail-mosaic__content strong,
.product-detail-mosaic--showcase .product-detail-mosaic__content b,
.product-detail-split .product-detail-mosaic__content strong,
.product-detail-split .product-detail-mosaic__content b {
  color: #111827 !important;
  font-weight: 700 !important;
}

.product-detail-mosaic--showcase .product-detail-features,
.product-detail-split .product-detail-features {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(8px);
}

.product-detail-mosaic--showcase .product-detail-features-below {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.05);
}

.product-detail-layout--showcase .product-detail-sidebar .enquiry-card {
  border-radius: 22px;
  border-color: rgba(36, 132, 254, 0.14);
  box-shadow:
    0 12px 36px rgba(15, 23, 42, 0.1),
    0 4px 14px rgba(36, 132, 254, 0.08);
}

.product-detail-sidebar .enquiry-card__header {
  padding: 1.45rem 1.6rem 1.35rem;
}

.product-detail-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0067b8;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 103, 184, 0.12);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.product-detail-title {
  font-family: "Merienda", cursive;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #2484fe;
  margin: 0 0 1rem;
}

.product-detail-image-frame--thumb {
  max-width: none;
  padding: 0.65rem;
}

/* ================= Related Products ================= */
.related-products-section {
  padding: 2.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(251, 235, 236, 0.85) 0%, transparent 55%),
    linear-gradient(180deg, rgba(253, 246, 247, 0.95) 0%, var(--brand-blush, #fbebec) 100%);
}

.related-products-section__head {
  margin-bottom: 1.75rem;
}

.related-products-section__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0067b8;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 103, 184, 0.12);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.related-products-section__title {
  margin: 0;
  font-family: "Merienda", cursive;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #2484fe;
  line-height: 1.2;
}

.related-products-section__slider {
  position: relative;
  padding: 0 2.75rem;
}

.related-products-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(36, 132, 254, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #2484fe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.related-products-nav svg {
  width: 1.15rem;
  height: 1.15rem;
}

.related-products-nav:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 12px 28px rgba(36, 132, 254, 0.16);
  background: #fff;
}

.related-products-nav--prev {
  left: 0;
}

.related-products-nav--next {
  right: 0;
}

.related-swiper {
  padding: 0.35rem 0 0.75rem;
}

.related-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.related-product-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0;
  width: 100%;
  height: 280px;
  min-height: 280px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}

.related-product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.85rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.related-product-card__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}

.related-product-card:hover .related-product-card__media img {
  transform: scale(1.03);
}

.related-product-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 1.25rem 1.35rem;
  overflow: hidden;
}

.related-product-card__title {
  margin: 0 0 0.55rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-product-card__title a {
  color: #111827;
  text-decoration: none;
}

.related-product-card__title a:hover {
  color: #2484fe;
}

.related-product-card__text {
  margin: 0;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 0.85rem;
  color: #2484fe;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
}

.related-product-card__link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.related-product-card__link:hover svg {
  transform: translateX(3px);
}

.quality p{
  font-size: 14px;
  margin-bottom: 10px;
}
.quality ul{
  padding-left: 15px;
  margin: 20px 0;
  margin-left: 10px;
}
.quality ul li{
  list-style: disc;
  font-weight: 600;
  margin: 8px 0;
  font-size: 15px;
}

@media only screen and (max-width: 550px) {
  .main-title,.main-title-2{
    font-size: 25px;
  }
}
.detail-page p,
.detail-page div,
.detail-page span,
.detail-page b,
.detail-page strong,
.detail-page h1,
.detail-page h2,
.detail-page h3,
.detail-page h4,
.detail-page h5,
.detail-page h6,
.detail-page ul li,
.detail-page ul{
  background: transparent !important;
}

/* ================= Site Footer ================= */
.footer-contact-grid {
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.footer-contact-item__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2484fe 0%, #0067b8 100%);
  box-shadow: 0 6px 16px rgba(36, 132, 254, 0.22);
}

.footer-contact-item__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-contact-item__content {
  flex: 1;
  min-width: 0;
  padding-top: 0;
}

.footer-contact-link,
.footer-contact-text {
  display: block;
  color: #afaa9d;
  font-size: 0.92rem;
  line-height: 1.6;
  word-break: break-word;
}

.footer-contact-link + .footer-contact-link {
  margin-top: 0.2rem;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-contact-text {
  margin: 0;
}

.site-footer .footer-logo {
  max-width: 120px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-footer p {
  max-width: 36rem;
  line-height: 1.6;
}

.pd-detail-short p,
.pd-detail-short div,
.pd-detail-short span,
.pd-detail-short b,
.pd-detail-short strong,
.pd-detail-short h1,
.pd-detail-short h2,
.pd-detail-short h3,
.pd-detail-short h4,
.pd-detail-short h5,
.pd-detail-short h6,
.pd-detail-short ul li,
.pd-detail-short ul{
  color: rgb(168, 165, 165) !important;
}

:root {
  --brand-blush: #fbebec;
  --brand-blush-soft: #fdf6f7;
  --brand-blush-deep: #f5e4e6;
}

.aboutpage {
  background: var(--brand-blush-soft);
}

/* ================= About Page Sections ================= */
.aboutpage p{
  font-size: 15px;
  line-height: 1.7;
}

.about-subheading {
  display: block;
  font-size: 1.45rem;
  font-weight: 600;
  color: #0d111a;
  margin: 1.25rem 0 0.5rem;
}

.about-subheading--sm {
  font-size: 1.15rem;
  color: #0067b8;
  margin-top: 0.35rem;
}

.about-ceo-quote {
  position: relative;
  background: #fff;
  color: #111827;
  border-radius: 16px;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid rgba(0, 103, 184, 0.15);
  border-left: 4px solid #0067b8;
  box-shadow: 0 12px 32px rgba(13, 17, 26, 0.08);
  overflow: hidden;
}

.about-ceo-quote::before {
  content: none;
}

.about-ceo-quote__icon {
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(0, 103, 184, 0.2);
  margin-bottom: -0.5rem;
}

.about-ceo-quote__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 1rem;
}

.about-ceo-quote__author {
  margin: 0;
  font-size: 0.9rem;
}

.about-ceo-quote__author strong {
  display: block;
  color: #0d111a;
  font-size: 1rem;
}

.about-ceo-quote__author span {
  color: #0067b8;
  font-size: 0.85rem;
}

.about-section-head {
  margin-bottom: 2.5rem;
}

.about-section-head--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about-section-head__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0067b8;
  background: rgba(0, 103, 184, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.about-section-head__title {
  margin-bottom: 0.75rem;
}

.about-section-head__desc {
  margin: 0;
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-section-head__desc--light {
  color: #cbd5e1;
}

.about-highlights {
  position: relative;
  overflow: hidden;
}

.about-highlights__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(36, 132, 254, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, var(--brand-blush-soft) 0%, var(--brand-blush) 55%, var(--brand-blush-soft) 100%);
  z-index: 0;
}

.about-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 768px) {
  .about-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.65rem;
  }

  .about-highlight-card:last-child {
    grid-column: 1 / -1;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-highlight-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 1.65rem;
  box-shadow: 0 10px 30px rgba(13, 17, 26, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.about-highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(36, 132, 254, 0.45), rgba(0, 103, 184, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.about-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(13, 17, 26, 0.12);
}

.about-highlight-card:hover::after {
  opacity: 1;
}

.about-highlight-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.about-highlight-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0067b8 0%, #2484fe 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 103, 184, 0.28);
}

.about-highlight-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.about-highlight-card__num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 103, 184, 0.12);
  letter-spacing: -0.03em;
}

.about-highlight-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d111a;
  margin-bottom: 0.7rem;
  line-height: 1.35;
  font-family: "Playfair Display", serif;
}

.about-highlight-card__text {
  margin: 0;
  color: #5b6472;
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-info-section {
  background: linear-gradient(180deg, var(--brand-blush-soft) 0%, var(--brand-blush) 50%, var(--brand-blush-soft) 100%);
  position: relative;
  overflow: hidden;
}

.about-info-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 132, 254, 0.08) 0%, transparent 70%);
  top: -120px;
  right: -100px;
  pointer-events: none;
}

.about-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .about-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.65rem;
  }
}

.about-info-card {
  position: relative;
  background: #fff;
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--card-accent, #2484fe);
  border-radius: 20px;
  padding: 1.85rem;
  box-shadow: 0 10px 30px rgba(13, 17, 26, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  height: 100%;
  overflow: hidden;
}

.about-info-card__glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--card-accent, #2484fe) 18%, transparent) 0%, transparent 70%);
  transition: transform 0.4s ease;
}

.about-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 40px rgba(13, 17, 26, 0.12);
}

.about-info-card:hover .about-info-card__glow {
  transform: scale(1.35);
}

.about-info-card--mission { --card-accent: #2484fe; }
.about-info-card--vision { --card-accent: #10b981; }
.about-info-card--strengths { --card-accent: #f59e0b; }
.about-info-card--features { --card-accent: #8b5cf6; }

.about-info-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eef2f7;
}

.about-info-card__badge {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--card-accent, #2484fe) 0%, color-mix(in srgb, var(--card-accent, #2484fe) 75%, #1e3a8a) 100%);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--card-accent, #2484fe) 35%, transparent);
}

.about-info-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.3;
  color: #0d111a;
}

.about-info-card__text {
  margin: 0;
  color: #4b5563;
  line-height: 1.8;
  font-size: 0.96rem;
}

.about-info-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-info-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-info-card__list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  background: var(--card-accent, #2484fe);
  margin-top: 0.15rem;
}

.about-info-card__list li:last-child {
  margin-bottom: 0;
}

.about-factsheet {
  background: linear-gradient(180deg, var(--brand-blush) 0%, var(--brand-blush-soft) 100%);
}

.about-factsheet__title {
  margin-bottom: 0.5rem;
}

.about-factsheet__subtitle {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 560px;
}

.about-factsheet__groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-factsheet__groups {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

.about-factsheet-group {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 36px rgba(13, 17, 26, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-factsheet-group:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(13, 17, 26, 0.12);
}

.about-factsheet-group__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 1.15rem 1.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #1b232d 0%, #2a3a4f 100%);
}

.about-factsheet-group__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #93c5fd;
}

.about-factsheet-group__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.about-factsheet-group__items {
  padding: 0.5rem 0;
}

.about-factsheet-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 0.95rem 1.35rem;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.25s ease;
}

.about-factsheet-item:last-child {
  border-bottom: none;
}

.about-factsheet-item:hover {
  background: #f8fbff;
}

.about-factsheet-item__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}

.about-factsheet-item__value {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
}

.about-factsheet-item__value--pill {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(135deg, #0067b8 0%, #2484fe 100%);
  color: #fff;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.about-factsheet-item__value--code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e40af;
  background: #eff6ff;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  width: fit-content;
  word-break: break-all;
}

@media (min-width: 640px) {
  .about-factsheet-item {
    grid-template-columns: 42% 1fr;
    align-items: center;
    gap: 1rem;
  }

  .about-factsheet-item__label {
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    color: #374151;
  }
}

@media (max-width: 639px) {
  .about-highlight-card:last-child {
    max-width: none;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #808080;
  text-align: left;
  padding: 8px;
  font-size: 14px;
}

/* tr:nth-child(even) {
  background-color: #f0f0f0;
} */