/* Font import for modern look */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: #fff;
}

/* Ensure sections are not hidden behind the fixed vertical navbar */
section {
  padding-left: 240px;
  scroll-margin-left: 240px;
}

/* Fix: Prevent hero and footer from being cut under the navbar */
section,
.footer-section-jpg {
  padding-left: 240px;
  scroll-margin-left: 240px;
}

/* On mobile, remove left padding and use top margin for anchor scroll */
@media (max-width: 768px) {
  section,
  .footer-section-jpg {
    padding-left: 0;
    scroll-margin-left: 0;
    scroll-margin-top: 80px;
  }
}

/* --- Redesigned Vertical Navbar --- */
.navbar-jpg {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: none;
}

.navbar-logo-jpg {
  padding-top: 38px;
  padding-bottom: 36px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 32px;
}

.navbar-logo-jpg svg {
  width: 44px;
  height: 44px;
  display: block;
}

.navbar-links-jpg {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
  flex: 1 1 auto;
}

.navbar-links-jpg li {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

/* --- Nav Link --- */
.nav-link-jpg {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 18px 24px 18px 28px; /* 18px top/bottom, 24px right, 28px left */
  color: #1b1b1b;
  background: none;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  min-width: 0;
  position: relative;
  transition: background 0.25s ease, color 0.25s, font-weight 0.25s;
  box-shadow: none;
}

.nav-link-jpg .nav-icon-jpg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #8f00ff;
  font-size: 20px;
  transition: color 0.25s;
}

.nav-link-jpg .nav-text-jpg {
  font-size: 15px;
  color: #1b1b1b;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.25s, font-weight 0.25s;
  white-space: nowrap;
}

/* --- Hover State --- */
.nav-link-jpg:hover,
.nav-link-jpg:focus {
  background: #f5edff;
  color: #1b1b1b;
  box-shadow: none;
}

.nav-link-jpg:hover .nav-icon-jpg,
.nav-link-jpg:focus .nav-icon-jpg {
  color: #8f00ff;
}

.nav-link-jpg:hover .nav-text-jpg,
.nav-link-jpg:focus .nav-text-jpg {
  color: #1b1b1b;
}

/* --- Active State --- */
.nav-link-jpg.nav-active-jpg,
.nav-link-jpg.nav-active-jpg:hover,
.nav-link-jpg.nav-active-jpg:focus {
  background: #8f00ff0d;
  color: #1b1b1b;
  font-weight: 600;
  box-shadow: none;
}

.nav-link-jpg.nav-active-jpg .nav-icon-jpg,
.nav-link-jpg.nav-active-jpg:hover .nav-icon-jpg,
.nav-link-jpg.nav-active-jpg:focus .nav-icon-jpg {
  color: #8f00ff;
}

.nav-link-jpg.nav-active-jpg .nav-text-jpg,
.nav-link-jpg.nav-active-jpg:hover .nav-text-jpg,
.nav-link-jpg.nav-active-jpg:focus .nav-text-jpg {
  color: #1b1b1b;
  font-weight: 600;
}

/* --- Left Active Indicator --- */
.nav-link-jpg.nav-active-jpg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  bottom: 13px;
  width: 3px;
  border-radius: 2px;
  background: #8f00ff;
  transition: background 0.25s;
}

/* Remove legacy gradient/hover/active styles for nav-link-jpg */
.nav-link-jpg:hover,
.nav-link-jpg:focus,
.nav-link-jpg.nav-active-jpg,
.nav-link-jpg.nav-active-jpg:hover,
.nav-link-jpg.nav-active-jpg:focus {
  /* Remove gradient, pill, shadow */
  background-image: none !important;
  border-radius: 10px;
  box-shadow: none !important;
  border: none;
}

/* Remove legacy .side-navbar-jpg nav-link-jpg styles */
.side-navbar-jpg .nav-link-jpg,
.side-navbar-jpg .nav-link-jpg:hover,
.side-navbar-jpg .nav-link-jpg:focus,
.side-navbar-jpg .nav-link-jpg.nav-active-jpg {
  /* ...existing code... */
  background: none;
  box-shadow: none;
  border-radius: 10px;
  border: none;
}

/* --- Responsive: Hide navbar, show hamburger on mobile --- */
@media (max-width: 768px) {
  .navbar-jpg {
    display: none;
  }
  .navbar-hamburger-jpg {
    display: flex;
  }
}

/* Hamburger for mobile */
.navbar-hamburger-jpg {
  display: none;
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  outline: none;
  z-index: 1100;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.navbar-hamburger-jpg span {
  display: block;
  width: 26px;
  height: 3px;
  background: #8f00ff;
  border-radius: 2px;
  margin: 3px 0;
  transition: background 0.18s;
}

/* Responsive: hide navbar, show hamburger */
@media (max-width: 768px) {
  .navbar-jpg {
    display: none;
  }
  .navbar-hamburger-jpg {
    display: flex;
  }
}

/* Hero section styles */
.hero-section-jpg {
  background: #fcf7ef;
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-fadein-jpg 1.2s ease;
}

@keyframes hero-fadein-jpg {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content-jpg {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 48px 24px;
  box-sizing: border-box;
  gap: 32px;
}

.hero-left-jpg {
  flex: 1 1 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.hero-heading-jpg {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #1b1b1b;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-subtext-jpg {
  font-size: 1.18rem;
  color: #555555;
  margin-bottom: 32px;
  font-family: "Montserrat", Arial, sans-serif;
}

.hero-buttons-jpg {
  display: flex;
  gap: 18px;
}

.hero-cta-jpg {
  display: inline-block;
  background: #8f00ff;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(143, 0, 255, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
}

.hero-cta-jpg:hover,
.hero-cta-jpg:focus {
  background: #00dfa2;
  color: #1b1b1b;
  box-shadow: 0 4px 18px 0 rgba(0, 223, 162, 0.13);
}

.hero-secondary-jpg {
  display: inline-block;
  background: transparent;
  color: #8f00ff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid #8f00ff;
  transition: background 0.2s, color 0.2s, border 0.2s;
  cursor: pointer;
}

.hero-secondary-jpg:hover,
.hero-secondary-jpg:focus {
  background: #8f00ff;
  color: #ffffff;
  border-color: #8f00ff;
}

.hero-right-jpg {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  z-index: 1;
}

.hero-svg-jpg {
  width: 320px;
  height: 240px;
  display: block;
  max-width: 100%;
  max-height: 320px;
  filter: drop-shadow(0 8px 32px rgba(143, 0, 255, 0.08));
}

/* --- Vertical Sidebar Navbar --- */
.side-navbar-jpg {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 100vh;
  background: #fcf7ef;
  box-shadow: 2px 0 16px 0 rgba(31, 0, 51, 0.04);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.side-navbar-inner-jpg {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 80px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  padding-top: 24px;
}

.side-navbar-logo-jpg {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 56px;
}

.side-navbar-links-jpg {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link-jpg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 0 12px 0;
  padding-left: 0;
  color: #1b1b1b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  background: none;
  outline: none;
  position: relative;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  width: 100%;
  justify-content: flex-start;
  border-radius: 0 20px 20px 0;
  min-height: 44px;
}

.nav-link-jpg:hover,
.nav-link-jpg:focus {
  background: #8f00ff;
  color: #fff;
}

.nav-link-jpg:hover .nav-icon-jpg svg,
.nav-link-jpg:focus .nav-icon-jpg svg {
  stroke: #fff;
  fill: #fff;
}

.nav-link-jpg:hover .nav-label-jpg,
.nav-link-jpg:focus .nav-label-jpg {
  color: #fff;
}

.nav-active-jpg {
  color: #8f00ff;
  background: #f5edff;
}

.nav-active-jpg .nav-icon-jpg svg {
  stroke: #8f00ff;
  fill: none;
}

.nav-active-jpg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 2px;
  background: #8f00ff;
  transition: background 0.2s;
}

.side-navbar-bottom-jpg {
  margin-top: auto;
  margin-bottom: 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger for mobile */
.side-navbar-hamburger-jpg {
  display: none;
  position: fixed;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  background: #fcf7ef;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(31, 0, 51, 0.06);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.side-navbar-hamburger-jpg span {
  display: block;
  width: 24px;
  height: 3px;
  background: #8f00ff;
  border-radius: 2px;
  margin: 3px 0;
  transition: all 0.3s;
}

/* Animated SVG background for sidebar */
.side-navbar-bgpattern-jpg {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  animation: sidebar-bgpattern-move 8s linear infinite alternate;
  opacity: 0.18;
}
@keyframes sidebar-bgpattern-move {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(24px);
  }
}

/* Main content area */
.main-content-jpg {
  margin-left: 80px;
  transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* What We Do Zigzag Section */
.zigzag-section-jpg {
  background: #fff;
  padding: 72px 0 48px 0;
  width: 100%;
}

.zigzag-title-wrap-jpg {
  text-align: center;
  margin-bottom: 48px;
}

.zigzag-heading-jpg {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp-jpg 0.7s 0.1s forwards;
}

.zigzag-subtext-jpg {
  font-size: 1.15rem;
  color: #555555;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp-jpg 0.7s 0.3s forwards;
}

@keyframes fadeInUp-jpg {
  to {
    opacity: 1;
    transform: none;
  }
}

.zigzag-services-jpg {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.service-block-jpg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 4px 32px 0 rgba(31, 0, 51, 0.04);
  opacity: 0;
  transform: translateX(60px);
  animation: zigzagFadeIn-jpg 0.8s forwards;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  transition: box-shadow 0.2s;
}

.service-block-jpg:nth-child(1) {
  animation-delay: 0.2s;
  flex-direction: row;
}
.service-block-jpg:nth-child(2) {
  animation-delay: 0.4s;
  flex-direction: row-reverse;
}
.service-block-jpg:nth-child(3) {
  animation-delay: 0.6s;
  flex-direction: row;
}
.service-block-jpg:nth-child(4) {
  animation-delay: 0.8s;
  flex-direction: row-reverse;
}

@keyframes zigzagFadeIn-jpg {
  to {
    opacity: 1;
    transform: none;
  }
}

.service-bg1-jpg {
  background: #fcf7ef;
}
.service-bg2-jpg {
  background: #effffa;
}
.service-bg3-jpg {
  background: #fff7e7;
}

.service-icon-jpg {
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
  margin-left: 0;
  min-width: 72px;
  min-height: 72px;
  background: none;
}
.service-block-jpg:nth-child(even) .service-icon-jpg {
  margin-left: 32px;
  margin-right: 0;
}

.service-icon-jpg svg {
  width: 48px;
  height: 48px;
  display: block;
}
.service-icon-jpg svg * {
  /* Accent color for icons */
  stroke: none;
}

.service-title-jpg {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 0.4rem;
}

.service-desc-jpg {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.service-content-jpg {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 900px) {
  .zigzag-section-jpg {
    padding: 48px 0 32px 0;
  }
  .zigzag-services-jpg {
    gap: 28px;
    max-width: 98vw;
  }
  .service-block-jpg {
    padding: 28px 16px;
  }
  .service-icon-jpg {
    min-width: 56px;
    min-height: 56px;
  }
  .service-icon-jpg svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .zigzag-section-jpg {
    padding: 32px 0 16px 0;
  }
  .zigzag-title-wrap-jpg {
    margin-bottom: 28px;
  }
  .zigzag-heading-jpg {
    font-size: 2rem;
  }
  .zigzag-services-jpg {
    gap: 18px;
  }
  .service-block-jpg,
  .service-block-jpg:nth-child(even),
  .service-block-jpg:nth-child(odd) {
    flex-direction: column !important;
    align-items: flex-start;
    text-align: left;
    padding: 20px 10px;
    box-shadow: 0 2px 12px 0 rgba(31, 0, 51, 0.03);
  }
  .service-icon-jpg {
    margin: 0 0 16px 0 !important;
    align-items: flex-start;
    min-width: 40px;
    min-height: 40px;
  }
  .service-icon-jpg svg {
    width: 32px;
    height: 32px;
  }
  .service-title-jpg {
    font-size: 1.1rem;
  }
}

/* --- Our Process Section --- */
.process-section-jpg {
  background: #fcf7ef;
  padding: 72px 0 56px 0;
  width: 100%;
  overflow-x: hidden;
}

.process-title-wrap-jpg {
  text-align: center;
  margin-bottom: 48px;
}

.process-heading-jpg {
  font-size: 2.3rem;
  font-weight: 800;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: processFadeInUp-jpg 0.7s 0.1s forwards;
}

.process-subtext-jpg {
  font-size: 1.15rem;
  color: #555555;
  max-width: 420px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  animation: processFadeInUp-jpg 0.7s 0.3s forwards;
}

@keyframes processFadeInUp-jpg {
  to {
    opacity: 1;
    transform: none;
  }
}

.process-steps-jpg {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.process-step-jpg {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(32px);
  animation: processStepFadeIn-jpg 0.8s forwards;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.process-step-jpg:nth-child(1) {
  animation-delay: 0.2s;
}
.process-step-jpg:nth-child(2) {
  animation-delay: 0.4s;
}
.process-step-jpg:nth-child(3) {
  animation-delay: 0.6s;
}
.process-step-jpg:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes processStepFadeIn-jpg {
  to {
    opacity: 1;
    transform: none;
  }
}

.process-step-iconcol-jpg {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  margin-right: 32px;
  position: relative;
}

.process-number-jpg {
  width: 48px;
  height: 48px;
  background: #effffa;
  color: #8f00ff;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(143, 0, 255, 0.06);
  z-index: 1;
  margin-bottom: 0;
}

.process-line-jpg {
  width: 4px;
  flex: 1 1 0;
  background: #8f00ff;
  margin-top: 8px;
  border-radius: 2px;
  min-height: 40px;
  max-height: 80px;
}

.process-step-content-jpg {
  flex: 1 1 0;
  min-width: 0;
  padding-top: 2px;
}

.process-step-title-jpg {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 0.3rem;
}

.process-step-desc-jpg {
  font-size: 1.05rem;
  color: #555555;
  margin: 0;
  line-height: 1.6;
}

/* Responsive: Stack number above text on mobile */
@media (max-width: 768px) {
  .process-section-jpg {
    padding: 40px 0 24px 0;
  }
  .process-title-wrap-jpg {
    margin-bottom: 28px;
  }
  .process-heading-jpg {
    font-size: 1.5rem;
  }
  .process-steps-jpg {
    gap: 32px;
    max-width: 98vw;
    padding: 0 8px;
  }
  .process-step-jpg {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .process-step-iconcol-jpg {
    flex-direction: row;
    align-items: flex-start;
    margin-right: 0;
    margin-bottom: 10px;
    min-width: 0;
  }
  .process-number-jpg {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0;
    margin-right: 12px;
  }
  .process-line-jpg {
    width: 3px;
    min-height: 32px;
    max-height: 48px;
    margin-top: 0;
    margin-left: 0;
  }
  .process-step-content-jpg {
    padding-top: 0;
  }
}

/* Responsive: Show labels and expand sidebar on desktop */
@media (min-width: 1024px) {
  .side-navbar-jpg {
    width: 220px;
  }
  .side-navbar-inner-jpg,
  .side-navbar-bgpattern-jpg {
    width: 220px;
  }
  .side-navbar-logo-jpg {
    width: 220px;
    justify-content: flex-start;
    padding-left: 32px;
  }
  .side-navbar-links-jpg {
    align-items: flex-start;
    padding-left: 8px;
  }
  .nav-link-jpg {
    padding-left: 24px;
    font-size: 1.08rem;
  }
  .nav-link-jpg .nav-label-jpg {
    display: inline;
    margin-left: 8px;
  }
  .side-navbar-bottom-jpg {
    justify-content: flex-start;
    padding-left: 16px;
  }
  .main-content-jpg {
    margin-left: 220px;
  }
}

/* Mobile: Hide sidebar, show hamburger */
@media (max-width: 1023px) {
  .side-navbar-jpg {
    transform: translateX(-100%);
  }
  .side-navbar-hamburger-jpg {
    display: flex;
  }
  .side-navbar-jpg.side-navbar-open-jpg {
    transform: translateX(0);
    box-shadow: 8px 0 32px 0 rgba(31, 0, 51, 0.1);
  }
  .main-content-jpg {
    margin-left: 0;
  }
}

/* Show sidebar by default on desktop */
@media (min-width: 768px) {
  .side-navbar-jpg {
    transform: translateX(0);
  }
  .side-navbar-hamburger-jpg {
    display: none;
  }
  .main-content-jpg {
    margin-left: 80px;
  }
}

/* Smooth transitions */
.side-navbar-jpg,
.main-content-jpg {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Highlights Section */
.highlights-section-jpg {
  background: #fff;
  padding: 64px 0 48px 0;
}

.highlights-title-wrap-jpg {
  text-align: center;
  margin-bottom: 2.5rem;
}

.highlights-heading-jpg {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.highlights-subtext-jpg {
  color: #333333;
  font-size: 1.15rem;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0.85;
}

/* Staggered Grid Layout */
.highlights-grid-jpg {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, minmax(120px, auto));
  gap: 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.highlight-card-jpg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1.25rem;
  box-shadow: 0 4px 18px 0 rgba(31, 0, 51, 0.07);
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  background: #fcf7ef;
  color: #333333;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  z-index: 1;
}

.highlight-card-jpg:hover,
.highlight-card-jpg:focus-within {
  transform: scale(1.05);
  box-shadow: 0 8px 32px 0 rgba(143, 0, 255, 0.13);
}

.highlight-icon-jpg {
  font-size: 2rem;
  color: #8f00ff;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.highlight-title-jpg {
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 0.3rem;
  color: #1b1b1b;
}

.highlight-desc-jpg {
  font-size: 1rem;
  opacity: 0.88;
  line-height: 1.5;
}

/* Unique backgrounds */
.highlight-bg1-jpg {
  background: #fcf7ef;
}
.highlight-bg2-jpg {
  background: #effffa;
}
.highlight-bg3-jpg {
  background: #fff7e7;
}
.highlight-bg4-jpg {
  background: #f5edff;
}
.highlight-bg5-jpg {
  background: #effffa;
}
.highlight-bg6-jpg {
  background: #fff7e7;
}

/* Staggered/asymmetric placement */
.highlights-grid-jpg > .highlight-card-jpg:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 1;
  align-self: start;
}
.highlights-grid-jpg > .highlight-card-jpg:nth-child(2) {
  grid-column: 3 / span 2;
  grid-row: 1 / span 1;
  align-self: end;
}
.highlights-grid-jpg > .highlight-card-jpg:nth-child(3) {
  grid-column: 1 / span 3;
  grid-row: 2 / span 1;
  align-self: end;
  margin-top: -1.5rem;
}
.highlights-grid-jpg > .highlight-card-jpg:nth-child(4) {
  grid-column: 4 / span 3;
  grid-row: 2 / span 1;
  align-self: start;
  margin-top: 1.5rem;
}
.highlights-grid-jpg > .highlight-card-jpg:nth-child(5) {
  grid-column: 2 / span 2;
  grid-row: 3 / span 1;
  align-self: start;
  margin-top: 0.5rem;
}
.highlights-grid-jpg > .highlight-card-jpg:nth-child(6) {
  grid-column: 5 / span 2;
  grid-row: 3 / span 1;
  align-self: end;
  margin-top: -0.5rem;
}

/* Responsive: stack vertically on mobile */
@media (max-width: 1024px) {
  .highlights-grid-jpg {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    gap: 1.25rem;
  }
  .highlights-grid-jpg > .highlight-card-jpg {
    grid-column: auto !important;
    grid-row: auto !important;
    margin-top: 0 !important;
    align-self: stretch;
  }
}

@media (max-width: 768px) {
  .highlights-section-jpg {
    padding: 40px 0 24px 0;
  }
  .highlights-title-wrap-jpg {
    margin-bottom: 1.25rem;
  }
  .highlights-heading-jpg {
    font-size: 1.35rem;
  }
  .highlights-subtext-jpg {
    font-size: 1rem;
  }
  .highlights-grid-jpg {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .highlight-card-jpg {
    padding: 1rem 0.9rem 0.9rem 0.9rem;
    font-size: 0.98rem;
    border-radius: 1rem;
  }
}

/* --- Game Genres Masonry Section --- */
.genres-section-jpg {
  background: #fff;
  padding: 64px 0 48px 0;
}

.genres-title-wrap-jpg {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.genres-heading-jpg {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.genres-subtext-jpg {
  color: #333333;
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 0;
}

/* Masonry grid using CSS columns */
.genres-masonry-jpg {
  column-count: 3;
  column-gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.genre-card-jpg {
  display: flex;
  flex-direction: column;
  align-items: center;
  break-inside: avoid;
  margin-bottom: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 2px 12px 0 rgba(31, 0, 51, 0.06);
  background: #fcf7ef;
  padding: 2.5rem 1.25rem 1.5rem 1.25rem;
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 220px;
  max-width: 340px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.genre-card-jpg.genre-bg1-jpg {
  background: #fcf7ef;
}
.genre-card-jpg.genre-bg2-jpg {
  background: #fff7e7;
}
.genre-card-jpg.genre-bg3-jpg {
  background: #f5edff;
}
.genre-card-jpg.genre-bg4-jpg {
  background: #effffa;
}

.genre-card-jpg:hover,
.genre-card-jpg:focus-within {
  box-shadow: 0 6px 24px 0 rgba(143, 0, 255, 0.13);
}

.genre-icon-jpg {
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.genre-card-jpg:hover .genre-icon-jpg,
.genre-card-jpg:focus-within .genre-icon-jpg {
  transform: scale(1.1);
}

.genre-icon-jpg svg {
  width: 48px;
  height: 48px;
  display: block;
}

.genre-title-jpg {
  font-size: 1.18rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.genre-desc-jpg {
  font-size: 1rem;
  color: #333333;
  opacity: 0.85;
  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.5;
}

/* Make cards different heights for asymmetry */
.genre-card-jpg:nth-child(1) {
  min-height: 210px;
}
.genre-card-jpg:nth-child(2) {
  min-height: 260px;
}
.genre-card-jpg:nth-child(3) {
  min-height: 230px;
}
.genre-card-jpg:nth-child(4) {
  min-height: 250px;
}
.genre-card-jpg:nth-child(5) {
  min-height: 200px;
}

/* Fade-in animation on scroll */
@media (prefers-reduced-motion: no-preference) {
  .genre-card-jpg {
    opacity: 0;
    transform: translateY(32px);
    animation: genreFadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--i, 0) * 0.12s);
  }
  .genres-masonry-jpg .genre-card-jpg:nth-child(1) {
    --i: 0;
  }
  .genres-masonry-jpg .genre-card-jpg:nth-child(2) {
    --i: 1;
  }
  .genres-masonry-jpg .genre-card-jpg:nth-child(3) {
    --i: 2;
  }
  .genres-masonry-jpg .genre-card-jpg:nth-child(4) {
    --i: 3;
  }
  .genres-masonry-jpg .genre-card-jpg:nth-child(5) {
    --i: 4;
  }
}

@keyframes genreFadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 1100px) {
  .genres-masonry-jpg {
    columns: 2 320px;
    column-gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .genres-section-jpg {
    padding: 40px 0 24px 0;
  }
  .genres-masonry-jpg {
    columns: 1 100%;
    column-gap: 0;
    max-width: 98vw;
  }
  .genre-card-jpg {
    max-width: 98vw;
    padding: 1.5rem 0.75rem 1.1rem 0.75rem;
    margin-bottom: 1.25rem;
  }
  .genre-icon-jpg svg {
    width: 38px;
    height: 38px;
  }
  .genre-title-jpg {
    font-size: 1.05rem;
  }
}
.genre-card-jpg:focus-within .genre-desc-jpg {
  color: #00dfa2;
}

.genre-card-jpg:hover .genre-thumb-jpg,
.genre-card-jpg:focus-within .genre-thumb-jpg {
  transform: scale(1.07);
}

/* Responsive: stack vertically on mobile */
@media (max-width: 1100px) {
  .genres-masonry-jpg {
    column-count: 2;
    column-gap: 1.2rem;
    max-width: 98vw;
    padding: 0 0.5rem;
  }
}

@media (max-width: 768px) {
  .genres-section-jpg {
    padding: 40px 0 32px 0;
  }
  .genres-title-wrap-jpg {
    margin-bottom: 1.5rem;
  }
  .genres-heading-jpg {
    font-size: 1.3rem;
  }
  .genres-subtext-jpg {
    font-size: 1rem;
  }
  .genres-masonry-jpg {
    column-count: 1;
    column-gap: 0;
    padding: 0 0.2rem;
  }
  .genre-card-jpg {
    margin-bottom: 1.1rem;
    border-radius: 1rem;
  }
  .genre-thumb-jpg {
    border-radius: 1rem 1rem 0 0;
    min-height: 70px;
    max-height: 110px;
  }
  .genre-title-jpg,
  .genre-desc-jpg {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}

/* Contact Us Section */
.contact-section-jpg {
  position: relative;
  background: #fcf7ef;
  padding: 0 0 0 0;
  overflow: hidden;
}

.contact-bgpattern-jpg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.contact-container-jpg {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 64px 24px;
  gap: 48px;
}

.contact-info-jpg {
  flex: 1 1 320px;
  background: transparent;
  color: #1b1b1b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 260px;
  max-width: 420px;
  padding: 0 0 0 0;
  animation: fadeInLeft-jpg 1s 0.1s both;
}

.contact-heading-jpg {
  font-size: 2rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.contact-subtext-jpg {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.contact-list-jpg {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list-jpg li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #1b1b1b;
  line-height: 1.5;
}

.contact-icon-jpg {
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-link-jpg {
  color: #8f00ff;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s;
}
.contact-link-jpg:hover,
.contact-link-jpg:focus {
  color: #00dfa2;
  text-decoration: underline;
}

.contact-form-jpg {
  flex: 1 1 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(31, 0, 51, 0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 260px;
  max-width: 440px;
  animation: fadeInRight-jpg 1s 0.2s both;
}

.contact-form-row-jpg {
  margin-bottom: 1.25rem;
  width: 100%;
}

.contact-input-jpg {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(31, 0, 51, 0.06);
  font-size: 1rem;
  color: #1b1b1b;
  outline: none;
  transition: box-shadow 0.2s, border 0.2s;
  font-family: inherit;
  resize: none;
}

.contact-input-jpg:focus {
  box-shadow: 0 4px 20px 0 rgba(143, 0, 255, 0.1);
  border: 1.5px solid #8f00ff;
}

.contact-input-jpg::placeholder {
  color: #999999;
  opacity: 1;
  font-size: 1rem;
}

.contact-button-jpg {
  width: 100%;
  padding: 0.9rem 0;
  border: none;
  border-radius: 999px;
  background: #8f00ff;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(143, 0, 255, 0.1);
  transition: background 0.22s, box-shadow 0.22s, color 0.22s;
  letter-spacing: 0.01em;
}

.contact-button-jpg:hover,
.contact-button-jpg:focus {
  background: #00dfa2;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(0, 223, 162, 0.13);
}

@media (max-width: 900px) {
  .contact-container-jpg {
    gap: 24px;
    padding: 48px 8px 48px 8px;
  }
  .contact-form-jpg,
  .contact-info-jpg {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .contact-container-jpg {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 40px 0.5rem 40px 0.5rem;
  }
  .contact-info-jpg,
  .contact-form-jpg {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    border-radius: 14px;
    box-shadow: none;
  }
  .contact-form-jpg {
    padding: 1.5rem 1rem 1rem 1rem;
    box-shadow: 0 2px 12px 0 rgba(31, 0, 51, 0.06);
  }
}

@media (max-width: 480px) {
  .contact-section-jpg {
    padding: 0;
  }
  .contact-form-jpg {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
}

/* Animations */
@keyframes fadeInLeft-jpg {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight-jpg {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* About Us Section */
.about-section-jpg {
  position: relative;
  background: #fff;
  padding: 64px 0 48px 0;
  overflow: hidden;
}

.about-bgpattern-jpg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  z-index: 0;
}

.about-inner-jpg {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 0 2rem;
}

.about-image-jpg {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.about-image-jpg svg {
  width: 180px;
  height: auto;
  display: block;
}

.about-content-jpg {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-title-jpg {
  font-size: 2rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.about-subtext-jpg {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 1.5rem;
}

.about-who-title-jpg {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}

.about-text-jpg {
  color: #555555;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-highlights-jpg {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-highlights-jpg li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: #1b1b1b;
  background: transparent;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  transition: box-shadow 0.18s, color 0.18s;
}

.about-highlights-jpg li:hover,
.about-highlights-jpg li:focus-within {
  color: #8f00ff;
  box-shadow: 0 2px 12px 0 rgba(143, 0, 255, 0.07);
}

.about-checkmark-jpg {
  display: inline-flex;
  align-items: center;
  margin-right: 0.5em;
  vertical-align: middle;
}

.about-checkmark-jpg svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 900px) {
  .about-inner-jpg {
    gap: 2rem;
    padding: 0 1rem;
  }
  .about-image-jpg {
    flex-basis: 140px;
  }
}

@media (max-width: 768px) {
  .about-inner-jpg {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 0.5rem;
  }
  .about-image-jpg {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
  .about-content-jpg {
    width: 100%;
  }
}

/* --- Footer Section --- */
.footer-section-jpg {
  background: #fcf7ef;
  color: #333333;
  padding: 50px 0 20px 0;
  position: relative;
  width: 100%;
  font-family: "Poppins", "Inter", "Outfit", "Open Sans", Arial, sans-serif;
  overflow: hidden;
}

.footer-bgpattern-jpg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 0;
  pointer-events: none;
}

.footer-inner-jpg {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 32px;
}

.footer-column-jpg {
  flex: 1 1 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-jpg {
  gap: 14px;
}

.footer-logo-svg-jpg {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-svg-jpg svg {
  width: 38px;
  height: 38px;
  display: block;
}

.footer-logo-text-jpg {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1b1b1b;
  letter-spacing: 0.01em;
}

.footer-tagline-jpg {
  font-size: 1rem;
  color: #555555;
  margin-top: 6px;
  font-weight: 400;
}

.footer-col-title-jpg {
  font-size: 1.13rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.footer-links-jpg ul,
.footer-contact-jpg ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-jpg a {
  color: #333333;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.16s;
}

.footer-links-jpg a:hover,
.footer-links-jpg a:focus {
  color: #8f00ff;
  text-decoration: underline;
}

.footer-contact-jpg li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: #333333;
  line-height: 1.5;
}

.footer-icon-jpg {
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-jpg a {
  color: #333333;
  text-decoration: none;
  transition: color 0.16s;
  word-break: break-all;
}

.footer-contact-jpg a:hover,
.footer-contact-jpg a:focus {
  color: #8f00ff;
  text-decoration: underline;
}

.footer-bottom-jpg {
  margin-top: 38px;
  width: 100%;
  text-align: center;
  position: relative;
}

.footer-divider-jpg {
  width: 100%;
  height: 1px;
  background: #ededed;
  margin-bottom: 18px;
}

.footer-copyright-jpg {
  font-size: 13px;
  color: #777777;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Responsive: stack columns on mobile */
@media (max-width: 900px) {
  .footer-inner-jpg {
    gap: 24px;
    padding: 0 12px;
  }
  .footer-column-jpg {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .footer-inner-jpg {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 0 8px;
  }
  .footer-column-jpg {
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
    gap: 10px;
  }
  .footer-logo-svg-jpg {
    gap: 10px;
  }
  .footer-bottom-jpg {
    margin-top: 28px;
  }
}

/* Fade-in animation on scroll (optional) */
@media (prefers-reduced-motion: no-preference) {
  .footer-section-jpg {
    opacity: 0;
    transform: translateY(32px);
    animation: footerFadeIn-jpg 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.1s;
  }
}
@keyframes footerFadeIn-jpg {
  to {
    opacity: 1;
    transform: none;
  }
}
