/* ============================================
   RITOVEX – Exact Replica CSS
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fbfbfa;
  color: #111111;
}

body {
  overflow-x: clip;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  display: flex;
  align-items: center;
  height: 86px;
  padding: 0 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.88)),
    radial-gradient(circle at 8% 0%, rgba(83, 104, 255, 0.08), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(255, 129, 69, 0.08), transparent 30%);
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  position: sticky;
  top: 0;
  z-index: 999;
  max-width: 1510px;
  margin: 0 auto;
  box-shadow:
    0 18px 55px rgba(15, 23, 42, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.navbar::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(83, 104, 255, 0.32), rgba(255, 129, 69, 0.24), transparent);
  pointer-events: none;
}

/* LOGO */
.nav-logo-area {
  width: 230px;
  flex-shrink: 0;
  border-right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.logo:hover {
  background: rgba(255, 255, 255, 0.68);
  transform: translateY(-1px);
}

.logo-img {
  width: 122px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.logo-icon {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
}

.logo-text {
  font-size: 23px;
  font-weight: 800;
  color: #0f0f11;
  letter-spacing: -0.6px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
  padding-left: 0;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 44px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  color: #303544;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-item:hover {
  background: rgba(83, 104, 255, 0.08);
  color: #5368ff;
  transform: translateY(-1px);
  box-shadow: none;
}

.nav-item.active {
  min-width: 96px;
  background:
    linear-gradient(135deg, #111325 0%, #1b1f35 52%, #5368ff 100%);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow:
    0 14px 28px rgba(17, 19, 37, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-item.active:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(83, 104, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 250px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: 16px;
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

/* Invisible hover bridge to prevent menu from closing when cursor crosses the 8px top gap */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}


.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 10px;
  color: #242428;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: linear-gradient(135deg, #111325, #5368ff);
  color: #fff;
  transform: translateX(2px);
  outline: none;
}

/* NAV ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 230px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #111325;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-lock {
  overflow: hidden;
}

.inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #111325, #171a27 58%, #5368ff);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(17, 19, 37, 0.22);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-btn:hover {
  background: linear-gradient(135deg, #5368ff, #111325);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(83, 104, 255, 0.25);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 84px);
  max-width: 100vw;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #fbfafd;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: url("background.png") center / cover no-repeat;
  z-index: -3;
}

.hero::after {
  display: none;
}

/* LEFT */
.hero-content {
  flex: 0 0 auto;
  width: 548px;
  animation: slideInLeft 0.6s ease both;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* BADGE */
.hero-badge {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #151515;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 28px;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(16, 16, 16, 0.06);
}

/* HEADING */
.hero-heading {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2.4px;
  color: #121214;
  margin-bottom: 26px;
  animation: fadeUp 0.6s 0.1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SUBTEXT */
.hero-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: #565760;
  margin-bottom: 42px;
  max-width: 540px;
  animation: fadeUp 0.6s 0.18s ease both;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.6s 0.26s ease both;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  width: 148px;
  height: 56px;
  padding: 0;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.05px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: gap 0.2s;
}

.btn-ghost:hover {
  gap: 14px;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.3px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover .play-btn {
  background: #111;
}

.btn-ghost:hover .play-btn svg path {
  fill: #fff;
}

/* ============================================
   HERO IMAGE – Right Side
   ============================================ */
.hero-visual {
  flex: 0 0 632px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: static;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stack container */
.img-stack {
  position: relative;
  width: 632px;
  height: 590px;
  z-index: 1;
  animation: slideInRight 0.65s 0.05s ease both;
}

/* Background decorative block – peeks from top-right */
.img-bg {
  position: absolute;
  top: -28px;
  right: -34px;
  width: 82%;
  height: 82%;
  display: block;
  background: #111;
  border-radius: 26px;
  z-index: 0;
  opacity: 0.06;
}

/* Main image frame – sits bottom-left over the bg */
.img-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
  clip-path: polygon(3.5% 0, 49.5% 0, 49.5% 7.9%, 100% 7.9%, 100% 96.5%, 96.5% 100%, 53% 100%, 49.5% 96.5%, 49.5% 92.7%, 3.5% 92.7%, 0 89%, 0 3.5%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-frame:hover {
  transform: translate(-3px, -3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

#hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 50%;
  display: block;
  transition: transform 0.5s ease;
}

.img-frame:hover #hero-img {
  transform: scale(1.04);
}

.hero .logo-banner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.hero .logo-banner::before,
.hero .logo-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 3;
  pointer-events: none;
  display: block;
}

.hero .logo-banner::before {
  left: 0;
  background: linear-gradient(90deg, #fbfafd 0%, rgba(251, 250, 253, 0) 100%);
}

.hero .logo-banner::after {
  right: 0;
  background: linear-gradient(270deg, #fbfafd 0%, rgba(251, 250, 253, 0) 100%);
}

.hero .logo-row {
  width: 100%;
  overflow: hidden;
  transform: none;
}

.hero .logo-row:nth-child(even) {
  transform: none;
}

.hero .logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  animation: logoMarqueeLeft 24s linear infinite;
  will-change: transform;
}

.hero .logo-row-right .logo-track {
  animation-name: logoMarqueeRight;
  animation-duration: 28s;
}

.hero .logo-row:nth-child(3) .logo-track {
  animation-duration: 31s;
}

.hero .logo-row:nth-child(4) .logo-track {
  animation-duration: 34s;
}

.hero .logo-row:nth-child(5) .logo-track {
  animation-duration: 29s;
}

.hero .logo-row:nth-child(6) .logo-track {
  animation-duration: 33s;
}

.hero .logo-row:nth-child(7) .logo-track {
  animation-duration: 27s;
}

.hero .logo-row:nth-child(8) .logo-track {
  animation-duration: 35s;
}

.hero .logo-track img {
  width: 172px;
  height: 125px;
  object-fit: cover;
  display: block;
  flex: 0 0 auto;
}

.hero .logo-banner:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logoMarqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-25% - 2px));
  }
}

@keyframes logoMarqueeRight {
  from {
    transform: translateX(calc(-25% - 2px));
  }

  to {
    transform: translateX(0);
  }
}

/* ============================================
   HERO SERVICES SCROLLING MARQUEE
   ============================================ */
.hero-marquee {
  background: #111111;
  padding: 24px 0;
  width: 100vw;
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: hero-marquee-scroll 55s linear infinite;
}

.hero-marquee-group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.marquee-capsule {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 10px 24px;
  white-space: nowrap;
}

.marquee-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.marquee-star {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin: 0 10px;
}

@keyframes hero-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .hero-marquee {
    padding: 18px 0;
  }

  .marquee-capsule {
    font-size: 14px;
    padding: 8px 18px;
  }

  .marquee-arrow {
    width: 30px;
    height: 30px;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 86px;
  padding: 68px 84px;
  width: calc(100% - 48px);
  max-width: 1540px;
  background: #f8f9fc;
  border-radius: 24px;
  margin: 30px auto 60px auto;
  position: relative;
  overflow: hidden;
}

/* ---- LEFT: IMAGE COLLAGE ---- */
.about-images {
  flex: 0 0 auto;
  width: 560px;
  position: relative;
}

/* Dotted decorative pattern */
.about-dots {
  position: absolute;
  top: 50px;
  right: -20px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(circle, #f5a623 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 0;
  opacity: 0.7;
}

/* TOP LARGE IMAGE */
.about-img-main {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  transition: transform 0.35s ease;
}

.about-img-main:hover {
  transform: translateY(-4px);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

/* BOTTOM ROW */
.about-img-row {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.about-img-small {
  flex: 1;
  height: 190px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  transition: transform 0.35s ease;
}

.about-img-small:hover {
  transform: translateY(-4px);
}

.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-small:hover img {
  transform: scale(1.05);
}

/* 5+ YEARS BADGE */
.about-badge {
  position: absolute;
  bottom: 14px;
  left: -10px;
  background: linear-gradient(135deg, #6D28D9, #7C3AED);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.4);
  min-width: 110px;
  animation: badgePop 0.5s 0.4s ease both;
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.badge-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}

.badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
  text-align: center;
  line-height: 1.3;
}

/* ---- RIGHT: TEXT CONTENT ---- */
.about-content {
  flex: 1;
  max-width: 640px;
}

.about-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2563EB;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-heading {
  font-size: 2.55rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f0f0f;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.about-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 26px;
}

/* BULLET LIST */
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
}

.check-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* LEARN MORE BUTTON */
.about-learn-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1D4ED8;
  text-decoration: none;
  border: 1.5px solid #dde6f7;
  border-radius: 8px;
  padding: 12px 22px;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.about-learn-btn:hover {
  background: #EFF6FF;
  border-color: #2563EB;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .navbar {
    padding: 0 24px;
  }

  .nav-logo-area {
    width: 180px;
    padding-right: 0;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-actions {
    display: flex;
    width: 180px;
  }

  .hero {
    padding: 48px 40px;
    gap: 42px;
  }

  .hero-heading {
    font-size: 48px;
  }

  .hero-content {
    width: 460px;
  }

  .hero-visual {
    flex-basis: 420px;
  }

  .img-stack {
    width: 420px;
    height: 460px;
  }

  .logo-banner {
    width: 420px;
    height: 460px;
    gap: 14px;
  }

  .logo-track img {
    width: 96px;
    height: 72px;
    padding: 10px;
  }

  .about {
    gap: 42px;
    padding: 48px 40px;
    width: calc(100% - 32px);
  }

  .about-images {
    width: 430px;
  }

  .about-img-main {
    height: 220px;
  }

  .about-img-small {
    height: 155px;
  }

  .about-content {
    max-width: 500px;
  }

  .about-heading {
    font-size: 2.15rem;
  }
}

@media (max-width: 820px) {
  .navbar {
    height: 76px;
    padding: 0 24px;
    justify-content: space-between;
    border-radius: 0 0 18px 18px;
  }

  .navbar::after {
    left: 20px;
    right: 20px;
  }

  .nav-logo-area {
    width: auto;
    padding-right: 0;
  }

  .logo {
    padding: 4px 0;
  }

  .logo-img {
    width: 108px;
    height: 54px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    max-height: calc(100vh - 100px);
    padding: 16px;
    border: 1px solid rgba(215, 223, 235, 0.95);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1002;
  }

  .nav-actions {
    display: flex;
    width: auto;
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    flex-shrink: 0;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-item,
  .nav-item.active {
    width: 100%;
    min-width: 0;
    height: 46px;
    justify-content: flex-start;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    color: #273244;
    background: transparent;
    box-shadow: none;
  }

  .nav-item.active {
    background: #eef2ff;
    color: #3f46d9;
  }

  .nav-dropdown {
    display: block;
    height: auto;
  }

  .nav-dropdown-toggle::after {
    margin-left: auto;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 8px;
    border-radius: 12px;
    box-shadow: none;
    background: #f8fafc;
    border: 1px solid #e7edf5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    overflow: hidden;
    transition: max-height 0.22s ease, opacity 0.18s ease, visibility 0.18s ease, margin-top 0.18s ease;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown.dropdown-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 390px;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto;
  }

  .nav-dropdown.dropdown-open .nav-dropdown-toggle::after {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 750;
    color: #2c3340;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus {
    background: #eef2ff;
    color: #3f46d9;
    transform: none;
  }

  .inquiry-btn {
    min-width: auto;
    height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero {
    flex-direction: column;
    padding: 48px 24px 58px;
    min-height: auto;
    text-align: center;
    gap: 42px;
  }

  .hero::before {
    background-position: center;
  }

  .hero::after {
    content: "";
  }

  .hero-content {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-heading {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-visual {
    justify-content: center;
  }

  .img-stack {
    width: min(100%, 360px);
    height: 400px;
  }

  .logo-banner {
    width: min(100%, 360px);
    height: 400px;
    gap: 12px;
  }

  .logo-banner::before,
  .logo-banner::after {
    width: 52px;
  }

  .logo-track {
    gap: 12px;
  }

  .logo-track img {
    width: 82px;
    height: 62px;
    padding: 8px;
    border-radius: 14px;
  }

  .about {
    flex-direction: column;
    width: calc(100% - 24px);
    padding: 34px 20px;
    gap: 34px;
    border-radius: 18px;
    text-align: left;
  }

  .about-images,
  .about-content {
    width: 100%;
    max-width: 100%;
  }

  .about-img-main {
    height: 210px;
  }

  .about-img-small {
    height: 145px;
  }

  .about-heading {
    font-size: 2rem;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  position: relative;
  background: linear-gradient(145deg, #F5F3FF 0%, #EFF6FF 40%, #F0F9FF 70%, #F5F3FF 100%);
  padding: 80px 40px 60px;
  overflow: hidden;
  text-align: center;
}

/* --- Background Decorations --- */
.svc-deco {
  position: absolute;
  pointer-events: none;
}

/* Purple circle top-left */
.svc-deco-circle-tl {
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4B5FD, #A78BFA);
  opacity: 0.5;
}

/* Dotted grid top-right */
.svc-deco-dots-tr {
  top: 20px;
  right: 60px;
  width: 130px;
  height: 100px;
  background-image: radial-gradient(circle, #94A3B8 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.35;
}

/* Blue blob bottom-right */
.svc-deco-blob-br {
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #93C5FD, #60A5FA);
  opacity: 0.4;
}

/* Wave lines right side */
.svc-deco-lines-r {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 80px;
  height: 200px;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 8px, #C7D2FE 8px, #C7D2FE 9px);
  opacity: 0.3;
  border-radius: 4px;
}

/* Dotted bottom-left */
.svc-deco-dots-bl {
  bottom: 20px;
  left: 60px;
  width: 100px;
  height: 80px;
  background-image: radial-gradient(circle, #F59E0B 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.35;
}

/* --- Header --- */
.svc-header {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.svc-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0f0f0f;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.svc-title-gradient {
  background: linear-gradient(90deg, #7C3AED, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-sub {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.svc-divider {
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #EC4899, #7C3AED);
  margin: 0 auto;
}

/* --- Carousel Wrapper --- */
.svc-carousel-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 16px 0 20px;
}

.svc-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 10px 10px;
  justify-content: center;
}

.svc-track::-webkit-scrollbar {
  display: none;
}

/* --- Service Card --- */
.svc-card {
  flex: 0 0 210px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 22px 24px;
  text-align: left;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1.5px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

/* Dotted corner in each card */
.svc-card-dots {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 50px;
  height: 40px;
  background-image: radial-gradient(circle, #CBD5E1 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.6;
}

/* ACTIVE card */
.svc-card-active {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #A78BFA, #818CF8, #60A5FA) border-box;
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.18);
  transform: translateY(-8px);
  flex: 0 0 220px;
}

.svc-card-active:hover {
  transform: translateY(-14px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.22);
}

/* Icon wrapper circle */
.svc-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-card-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Card Footer */
.svc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-learn {
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.svc-learn:hover {
  opacity: 0.75;
}

.svc-arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-arrow-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- Carousel Navigation --- */
.svc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.svc-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #D1D5DB;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s, transform 0.2s;
}

.svc-nav-btn:hover {
  border-color: #7C3AED;
  transform: scale(1.08);
}

.svc-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.svc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D1D5DB;
  display: block;
  transition: background 0.2s, transform 0.2s;
}

.svc-dot.active {
  background: #7C3AED;
  transform: scale(1.2);
}

/* ============================================
   SERVICES – Dark Card Redesign
   ============================================ */

.services {
  position: relative;
  background: linear-gradient(145deg, #F5F3FF 0%, #EFF6FF 40%, #F0F9FF 70%, #F5F3FF 100%);
  padding: 80px 0 70px;
  overflow: hidden;
  text-align: center;
}

/* BG Decorations */
.svc-deco-circle-tl {
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4B5FD, #A78BFA);
  opacity: 0.5;
}

.svc-deco-blob-br {
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #93C5FD, #60A5FA);
  opacity: 0.4;
}

/* Header – dark text on light bg */
.svc-badge {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  color: #111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.svc-title {
  color: #0f0f0f;
}

.svc-sub {
  color: #555;
}

/* Carousel track – centered display */
.svc-carousel-wrap {
  position: relative;
  z-index: 1;
  padding: 20px 0 30px;
}

.svc-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: visible;
  padding: 30px 20px 30px;
  position: relative;
}

/* BASE CARD */
.svc-card {
  flex: 0 0 230px;
  width: 230px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin: 0 -18px;
  opacity: 0.5;
  transform: scale(0.82);
  filter: brightness(0.7) saturate(0.6);
  box-shadow: none;
}

/* Card image area */
.svc-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Card text body */
.svc-card-body {
  padding: 20px 18px 24px;

  /* Service detail page link */
  .svc-card-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #051b3c;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: opacity 0.2s ease;
  }

  .svc-card-link:hover {
    opacity: 0.7;
  }

  background: #fff;
  text-align: center;
}

.svc-card .svc-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 8px;
}

.svc-card .svc-card-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Side-1: immediately adjacent to active */
.svc-card-side1 {
  opacity: 0.7;
  transform: scale(0.88);
  filter: brightness(0.85) saturate(0.75);
}

/* Side-2: two away from active */
.svc-card-side2 {
  opacity: 0.5;
  transform: scale(0.8);
  filter: brightness(0.65) saturate(0.5);
}

/* Far cards - Hidden in carousel to prevent horizontal layout breaks when card count is 10 */
.svc-card-far {
  display: none !important;
}

/* ACTIVE CENTER CARD */
.svc-card-active {
  opacity: 1 !important;
  transform: scale(1.08) !important;
  filter: none !important;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  margin: 0 -10px;
  border-radius: 22px;
}

/* Nav buttons – dark on light bg */
.svc-nav-btn {
  background: #fff;
  border: 1.5px solid #D1D5DB;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.svc-nav-btn:hover {
  border-color: #7C3AED;
  transform: scale(1.08);
}

/* Dot colors on light bg */
.svc-dot {
  background: #D1D5DB;
}

.svc-dot.active {
  background: #7C3AED;
  transform: scale(1.2);
}

/* ============================================
   SERVICES - Stacked Showcase Style
   ============================================ */

.services {
  background:
    radial-gradient(circle at 18% 12%, rgba(40, 67, 95, 0.36), transparent 28%),
    radial-gradient(circle at 78% 92%, rgba(36, 66, 89, 0.28), transparent 24%),
    #0e2433;
  padding: 86px 24px 78px;
  color: #fff;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1.5px),
    linear-gradient(135deg, transparent 0 47%, rgba(255, 255, 255, 0.04) 47% 48%, transparent 48% 100%);
  background-size: 18px 18px, 420px 420px;
  opacity: 0.35;
  pointer-events: none;
}

.svc-deco-circle-tl,
.svc-deco-blob-br {
  display: none;
}

.svc-header {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.svc-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: none;
}

.svc-title {
  color: #fff;
}

.svc-title-gradient {
  background: linear-gradient(90deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.svc-sub {
  color: rgba(255, 255, 255, 0.72);
}

.svc-divider {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
}

.svc-carousel-wrap {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  height: 380px;
  margin: 0 auto;
  padding: 0;
}

.svc-track {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
  perspective: 1200px;
}

.svc-card {
  flex: 0 0 260px;
  width: 260px;
  height: 250px;
  margin: 0 -20px;
  border-radius: 13px;
  overflow: hidden;
  background: #eef1f3;
  border: 2px solid rgba(255, 255, 255, 0.28);
  opacity: 0.48;
  filter: grayscale(0.25) brightness(0.72);
  transform: scale(0.82);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.svc-card-img {
  height: 165px;
  background: #eef1f3;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-card-body {
  min-height: 85px;
  padding: 16px 18px 18px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
}

.svc-card .svc-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #17202a;
  margin-bottom: 7px;
}

.svc-card .svc-card-desc {
  max-width: 210px;
  margin: 0 auto;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #7a8088;
}

.svc-card-side1 {
  opacity: 0.62;
  filter: grayscale(0.18) brightness(0.78);
  transform: scale(0.92);
  z-index: 2;
}

.svc-card-side2 {
  opacity: 0.52;
  filter: grayscale(0.28) brightness(0.68);
  transform: scale(0.82);
  z-index: 1;
}

.svc-card-far {
  opacity: 0.34;
  filter: grayscale(0.38) brightness(0.58);
  transform: scale(0.74);
  z-index: 0;
}

.svc-card-active {
  flex-basis: 340px;
  width: 340px;
  height: 350px;
  margin: 0 -8px;
  border-radius: 18px;
  opacity: 1 !important;
  filter: none !important;
  transform: translateY(-8px) scale(1) !important;
  z-index: 10;
  background: #fff;
  border: 2px solid rgba(15, 36, 51, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
}

.svc-card-active .svc-card-img {
  height: 235px;
  background: #f8fafb;
}

.svc-card-active .svc-card-img img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-card-active .svc-card-body {
  min-height: 115px;
  padding: 22px 26px 24px;
}

.svc-card-active .svc-card-title {
  font-size: 1.18rem;
}

.svc-card-active .svc-card-desc {
  max-width: 260px;
  font-size: 0.84rem;
}

.svc-nav {
  position: relative;
  z-index: 2;
  margin-top: 18px;
}

.svc-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.svc-nav-btn svg path {
  stroke: #fff;
}

.svc-dot {
  background: rgba(255, 255, 255, 0.28);
}

.svc-dot.active {
  background: #f59e0b;
}

.svc-track {
  position: relative;
}

.svc-track .svc-card {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  pointer-events: auto;
  will-change: transform, opacity, filter;
}

.svc-slot-0 {
  transform: translate(-50%, -50%) translateX(0) translateY(-8px) scale(1) !important;
  z-index: 10;
}

.svc-slot--1 {
  transform: translate(-50%, -50%) translateX(-245px) scale(0.92) !important;
  z-index: 3;
}

.svc-slot--2 {
  transform: translate(-50%, -50%) translateX(-455px) scale(0.82) !important;
  z-index: 2;
}

.svc-slot-1 {
  transform: translate(-50%, -50%) translateX(245px) scale(0.92) !important;
  z-index: 3;
}

.svc-slot-2 {
  transform: translate(-50%, -50%) translateX(455px) scale(0.82) !important;
  z-index: 2;
}

@media (max-width: 820px) {
  .services {
    padding: 64px 16px 58px;
  }

  .svc-carousel-wrap {
    height: auto;
  }

  .svc-track {
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 12px 8px 26px;
  }

  .svc-card,
  .svc-card-active {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 270px;
    width: 270px;
    height: 310px;
    margin: 0;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    scroll-snap-align: center;
  }

  .svc-card-img,
  .svc-card-active .svc-card-img {
    height: 205px;
  }
}

/* Service polish: cleaner stage + readable carousel cards */
.services {
  background:
    radial-gradient(circle at 50% 34%, rgba(245, 158, 11, 0.18), transparent 18%),
    radial-gradient(circle at 18% 18%, rgba(59, 130, 246, 0.2), transparent 26%),
    radial-gradient(circle at 84% 76%, rgba(20, 184, 166, 0.12), transparent 24%),
    linear-gradient(135deg, #091927 0%, #102b3e 52%, #081722 100%);
  padding: 72px 24px 86px;
}

.services::before {
  background-image:
    linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, 0.045) 46% 47%, transparent 47% 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.075) 1px, transparent 1.5px);
  background-size: 460px 460px, 22px 22px;
  opacity: 0.45;
}

.svc-carousel-wrap {
  height: 430px;
  margin-top: 4px;
}

.svc-card {
  width: 278px;
  height: 282px;
  border-radius: 16px;
}

.svc-card-img {
  height: 172px;
}

.svc-card-body {
  min-height: 110px;
  padding: 16px 18px 18px;
}

.svc-card .svc-card-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.svc-card-active {
  width: 360px;
  height: 398px;
  border-radius: 20px;
}

.svc-card-active .svc-card-img {
  height: 230px;
}

.svc-card-active .svc-card-body {
  min-height: 168px;
  padding: 22px 30px 28px;
}

.svc-card-active .svc-card-title {
  margin-bottom: 10px;
}

.svc-card-active .svc-card-desc {
  display: block;
  overflow: visible;
  max-width: 288px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.svc-slot--1 {
  transform: translate(-50%, -50%) translateX(-270px) scale(0.91) !important;
}

.svc-slot--2 {
  transform: translate(-50%, -50%) translateX(-500px) scale(0.8) !important;
}

.svc-slot-1 {
  transform: translate(-50%, -50%) translateX(270px) scale(0.91) !important;
}

.svc-slot-2 {
  transform: translate(-50%, -50%) translateX(500px) scale(0.8) !important;
}

@media (max-width: 820px) {
  .svc-carousel-wrap {
    height: auto;
  }

  .svc-card,
  .svc-card-active {
    width: 280px;
    height: 340px;
  }

  .svc-card-img,
  .svc-card-active .svc-card-img {
    height: 205px;
  }

  .svc-card-body,
  .svc-card-active .svc-card-body {
    min-height: 135px;
    padding: 18px 20px 22px;
  }

  .svc-card-active .svc-card-desc {
    font-size: 0.82rem;
  }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 670px) minmax(520px, 680px);
  align-items: center;
  justify-content: center;
  gap: 72px;
  padding: 92px 64px 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 74%, rgba(255, 138, 46, 0.14) 0 92px, transparent 93px),
    radial-gradient(circle at 99% 8%, transparent 0 82px, rgba(255, 138, 46, 0.11) 83px 144px, transparent 145px),
    linear-gradient(135deg, #ffffff 0%, #fffaf4 54%, #fff3e7 100%);
}

.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 122, 47, 0.55) 2px, transparent 2.5px),
    radial-gradient(circle, rgba(7, 16, 43, 0.16) 2px, transparent 2.5px);
  background-size: 18px 18px, 20px 20px;
  background-position: 22px calc(100% - 150px), 45% 70px;
  mask-image:
    radial-gradient(circle at 58px calc(100% - 126px), #000 0 78px, transparent 80px),
    radial-gradient(circle at 43% 86px, #000 0 86px, transparent 88px);
  -webkit-mask-image:
    radial-gradient(circle at 58px calc(100% - 126px), #000 0 78px, transparent 80px),
    radial-gradient(circle at 43% 86px, #000 0 86px, transparent 88px);
  opacity: 0.85;
  pointer-events: none;
}

.why-deco {
  position: absolute;
  pointer-events: none;
}

.why-deco-waves {
  left: -10px;
  bottom: 14px;
  width: 230px;
  height: 86px;
  opacity: 0.35;
  background: repeating-radial-gradient(ellipse at left bottom, transparent 0 12px, rgba(255, 139, 49, 0.48) 13px 14px, transparent 15px 26px);
}

.why-visual {
  position: relative;
  z-index: 1;
  min-height: 690px;
}

.why-img-frame {
  position: absolute;
  left: 0;
  top: 36px;
  width: 640px;
  height: 690px;
  border-radius: 26px;
  overflow: hidden;
  clip-path: polygon(0 0, 55% 0, 55% 11%, 100% 11%, 100% 100%, 68% 100%, 68% 91%, 0 91%);
  box-shadow: 0 30px 70px rgba(22, 18, 10, 0.17);
}

.why-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
  display: block;
}

.why-star {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 104px;
  height: 104px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff7a2f, #ffbd45);
  box-shadow: 0 20px 40px rgba(255, 122, 47, 0.34);
  z-index: 2;
}

.why-content {
  position: relative;
  z-index: 1;
}

.why-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #9a5939;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.why-label span {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-image: radial-gradient(circle, #ff9f25 2px, transparent 2.5px);
  background-size: 8px 8px;
}

.why-title {
  margin: 0 0 24px;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: #07102b;
  font-weight: 900;
}

.why-title span {
  color: #ff7433;
}

.why-desc {
  max-width: 520px;
  margin: 0 0 40px;
  color: #4f5671;
  font-size: 19px;
  line-height: 1.55;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 38px;
}

.why-stat-card {
  min-height: 178px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 128, 49, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(33, 23, 12, 0.06);
  backdrop-filter: blur(10px);
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff0e8;
}

.why-stat-card strong {
  display: block;
  margin: -2px 0 10px;
  color: #07102b;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.2px;
}

.why-stat-card h3 {
  margin: 0 0 12px;
  color: #202744;
  font-size: 17px;
  font-weight: 800;
}

.why-stat-card p {
  margin: 0;
  color: #596078;
  font-size: 16px;
  line-height: 1.48;
}

.why-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.why-more-btn {
  width: 258px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 999px;
  color: #fff;
  background: #07102b;
  box-shadow: 0 18px 36px rgba(7, 16, 43, 0.22);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.why-phone {
  min-width: 292px;
  height: 78px;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  padding: 12px 24px 12px 16px;
  border: 1px solid #dfe3eb;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  color: #07102b;
  text-decoration: none;
}

.why-phone span {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff4ec;
}

.why-phone small {
  font-size: 16px;
  font-weight: 800;
}

.why-phone strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

@media (max-width: 1180px) {
  .why-choose {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 72px 28px 82px;
  }

  .why-visual {
    min-height: 560px;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }

  .why-img-frame {
    width: 100%;
    height: 560px;
  }

  .why-content {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .why-choose {
    padding: 54px 18px 64px;
  }

  .why-visual {
    min-height: 430px;
  }

  .why-img-frame {
    height: 430px;
    clip-path: none;
    border-radius: 22px;
  }

  .why-title {
    font-size: 38px;
  }

  .why-desc {
    font-size: 16px;
  }

  .why-stats {
    grid-template-columns: 1fr;
  }

  .why-stat-card {
    grid-template-columns: 62px 1fr;
    min-height: auto;
    padding: 24px 20px;
  }

  .why-icon {
    width: 58px;
    height: 58px;
  }

  .why-stat-card strong {
    font-size: 34px;
  }

  .why-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .why-more-btn,
  .why-phone {
    width: 100%;
    min-width: 0;
  }
}

/* Why Choose compact sizing */
.why-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 0;
}

.why-desc {
  margin-bottom: 30px;
  font-size: 17px;
}

.why-stats {
  gap: 14px;
  margin-bottom: 30px;
}

.why-stat-card {
  min-height: 142px;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
}

.why-icon {
  width: 54px;
  height: 54px;
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-stat-card strong {
  margin-bottom: 8px;
  font-size: 34px;
  font-weight: 800;
}

.why-stat-card h3 {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
}

.why-stat-card p {
  font-size: 14px;
  line-height: 1.45;
}

.why-actions {
  gap: 18px;
}

.why-more-btn {
  width: 220px;
  height: 58px;
  font-size: 16px;
}

.why-phone {
  min-width: 250px;
  height: 66px;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  padding: 10px 20px 10px 14px;
}

.why-phone span {
  width: 46px;
  height: 46px;
}

.why-phone small {
  font-size: 14px;
}

.why-phone strong {
  font-size: 19px;
}

@media (max-width: 720px) {
  .why-title {
    font-size: 34px;
  }

  .why-stat-card {
    grid-template-columns: 54px 1fr;
    padding: 20px;
  }
}

/* ============================================
   PORTFOLIO GRID SECTION
   ============================================ */
.portfolio-section {
  position: relative;
  padding: 100px 24px;
  background: #fbfbfa;
  overflow: hidden;
  z-index: 2;
}

/* Background glowing gradient blooms */
.port-deco-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.05;
  z-index: 1;
}

.port-deco-glow-1 {
  top: -120px;
  left: -80px;
  background: #3b82f6;
}

.port-deco-glow-2 {
  bottom: -150px;
  right: -80px;
  background: #8b5cf6;
}

.portfolio-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 45px;
}

.port-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.port-badge svg {
  stroke: #111;
}

.port-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 46px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0;
  line-height: 1.2;
}

.port-title-accent {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio-categories {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.port-cat-btn {
  background: #ffffff;
  border: 1.5px solid #ececec;
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.port-cat-btn:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.port-cat-btn.active {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.16);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 42px auto 0;
  position: relative;
  z-index: 2;
}

.port-grid-card {
  background: #ffffff;
  border: 1.5px solid #ececec;
  border-radius: 24px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.port-grid-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.08), 0 1px 3px rgba(0, 0, 0, 0.01);
}

.port-grid-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #fbfbfc;
  border: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.port-grid-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.port-grid-card:hover .port-grid-img-wrap img {
  transform: scale(1.06);
}

.port-grid-info {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.port-grid-info h3 {
  font-size: 19px;
  font-weight: 700;
  color: #111111;
  transition: color 0.3s ease;
}

.port-grid-card:hover .port-grid-info h3 {
  color: #3b82f6;
}

.port-grid-info p {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.port-grid-card.hide {
  display: none;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.port-grid-card.show-anim {
  animation: fadeInScale 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.mobile-logo-showcase {
  display: none;
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 16px;
  }

  .port-title {
    font-size: 36px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .port-grid-card {
    padding: 16px;
    border-radius: 20px;
  }

  .port-grid-img-wrap {
    border-radius: 12px;
  }

  .port-grid-img-wrap img {
    padding: 16px;
  }

  .port-grid-info h3 {
    font-size: 17px;
  }

  .port-grid-info p {
    font-size: 13px;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 100px 0 60px;
  max-width: 100vw;
  overflow: hidden;
  background: #ffffff;
}

.test-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 24px;
}

.test-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.test-badge stroke {
  stroke: #111;
}

.test-title {
  font-size: 46px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 16px;
  letter-spacing: -1.2px;
  line-height: 1.2;
}

.test-subtitle {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

/* Marquee Scroll Styles */
.test-marquee-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
  /* Premium fade-out effect on the edges */
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  padding: 20px 0;
}

.test-marquee-track {
  display: flex;
  width: max-content;
  animation: test-marquee-scroll 32s linear infinite;
}

.test-marquee-track:hover {
  animation-play-state: paused;
  /* Pause scrolling on hover for user accessibility */
}

.test-group {
  display: flex;
  gap: 30px;
  padding-right: 30px;
  /* Match the gap spacing */
}

/* Testimonial Card Styles */
.test-card {
  width: 440px;
  background: #f8f9fc;
  border: 1px solid #eef0f5;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
  background: #ffffff;
}

/* Image-based reviews */
.review-img {
  height: 260px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #eef0f5;
  background: #ffffff;
  padding: 8px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.review-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  border-color: rgba(99, 102, 241, 0.25);
}


.test-stars {
  color: #111111;
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.test-text {
  font-size: 16px;
  color: #333333;
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 500;
}

.test-divider {
  border-top: 1px dashed #e2e8f0;
  margin-bottom: 24px;
}

.test-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #e2e8f0;
}

.test-username {
  font-size: 17px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 4px;
}

.test-userrole {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

@keyframes test-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Mobile responsive */
@media (max-width: 820px) {
  .testimonials-section {
    padding: 60px 0 40px;
  }

  .test-title {
    font-size: 34px;
  }

  .test-card {
    width: 320px;
    padding: 24px;
  }

  .test-text {
    font-size: 14px;
  }

  .test-marquee-track {
    animation-duration: 25s;
    /* Slightly faster on smaller tracks */
  }
}

/* ============================================
   CALL TO ACTION SECTION
   ================================/* ============================================
   CALL TO ACTION SECTION (Side-by-Side)
   ============================================ */
.cta-section {
  padding: 60px 24px 100px;
  max-width: 1540px;
  margin: 0 auto;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, #070b15 0%, #03050a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  padding: 70px 80px;
  /* Reduced vertical padding for shorter height, increased horizontal padding */
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}

/* Faint Dark Mesh Grid */
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

/* Background glows and shapes */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 2;
}

.cta-glow-tr {
  width: 500px;
  height: 500px;
  top: -180px;
  right: -80px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, transparent 70%);
}

.cta-glow-bl {
  width: 500px;
  height: 500px;
  bottom: -220px;
  left: -120px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
}

.cta-ring-tr {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.2);
  pointer-events: none;
  z-index: 2;
}

.cta-ring-tr::after {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.08);
}

.cta-ring-bl {
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 3px solid rgba(139, 92, 246, 0.15);
  pointer-events: none;
  z-index: 2;
}

.cta-dots {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.cta-dots-tl {
  top: 30px;
  left: 30px;
}

.cta-dots-br {
  bottom: 30px;
  right: 30px;
}

/* Flex Container Layout */
.cta-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Left Column */
.cta-text-side {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.cta-line {
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0) 0%, rgba(139, 92, 246, 0.8) 50%, rgba(59, 130, 246, 0.8) 100%);
}

.cta-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #818cf8;
  letter-spacing: 2px;
}

.cta-title {
  font-size: 58px;
  /* Compact font size to fit side-by-side */
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -2px;
  line-height: 1.1;
  text-align: left;
}

.cta-title-gradient {
  background: linear-gradient(135deg, #a78bfa 30%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-desc {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  text-align: left;
  max-width: 580px;
  font-weight: 400;
}

/* Right Column */
.cta-action-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-shrink: 0;
}

.cta-btn-container {
  position: relative;
  display: inline-block;
  z-index: 5;
}

.cta-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.55);
}

.cta-btn-icon-wrapper {
  display: flex;
  align-items: center;
}

.cta-btn-icon {
  width: 20px;
  height: 20px;
  transform: none;
  transition: transform 0.3s ease;
}

.cta-btn:hover .cta-btn-icon {
  transform: scale(1.08);
}

.cta-btn-outline {
  position: absolute;
  z-index: 1;
  inset: -6px;
  border: 1.5px dashed rgba(99, 102, 241, 0.5);
  border-radius: 20px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.cta-btn:hover+.cta-btn-outline {
  inset: -9px;
  border-color: rgba(167, 139, 250, 0.8);
}

.cta-reply-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Caveat', cursive;
  font-size: 23px;
}

.cta-reply-arrow {
  transform: translateY(-6px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .cta-card {
    padding: 60px 32px;
    border-radius: 28px;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }

  .cta-text-side {
    align-items: center;
    text-align: center;
  }

  .cta-subtitle-wrapper {
    justify-content: center;
  }

  .cta-title {
    text-align: center;
    font-size: 46px;
  }

  .cta-desc {
    text-align: center;
  }

  .cta-dots {
    display: none;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 120px 0;
  background: linear-gradient(140deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

/* Faint Premium Mesh Grid Overlay */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(99, 102, 241, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 102, 241, 0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

/* Background glowing blur gradients */
.faq-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 1;
}

.faq-glow-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
}

.faq-glow-2 {
  width: 600px;
  height: 600px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
}

.faq-glow-3 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.08) 0%, transparent 70%);
}

/* Dot Grid Decorations */
.faq-deco-dots {
  position: absolute;
  width: 100px;
  height: 80px;
  background-image: radial-gradient(circle, #e5e7eb 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.faq-deco-dots-tl {
  top: 60px;
  left: 60px;
}

.faq-deco-dots-br {
  bottom: 60px;
  right: 60px;
}

/* Wavy Doodle Vector overlay */
.faq-deco-doodle {
  position: absolute;
  top: 180px;
  right: 28%;
  z-index: 2;
  opacity: 0.65;
  pointer-events: none;
}

/* Centered Header Area */
.faq-header {
  max-width: 800px;
  margin: 0 auto 64px auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.faq-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.faq-badge-line {
  width: 24px;
  height: 1.5px;
  background: #6366f1;
}

.faq-badge-text {
  font-size: 14px;
  font-weight: 700;
  color: #6366f1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.faq-title {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #0f0f11;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-desc-main {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 4px;
}

.faq-desc-sub {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.5;
  font-weight: 400;
}

/* Main Grid */
.faq-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.85fr 1.15fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Accordion Columns */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid #f3f4f6;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.faq-item:hover {
  border-color: #e5e7eb;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
}

.faq-item.active {
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.02);
}

/* Trigger Button */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 22px 28px;
  cursor: pointer;
  text-align: left;
  gap: 18px;
}

.faq-trigger-text {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  flex: 1;
  transition: color 0.2s ease;
}

.faq-trigger:hover .faq-trigger-text {
  color: #6366f1;
}

/* Left circle icons */
.faq-icon-left {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

/* Right indicator icon (no background circle) */
.faq-icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* SVG Line Transitions */
.faq-icon-svg {
  transition: transform 0.3s ease;
}

.faq-icon-svg .line-vertical {
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform-origin: center;
}

/* Active transitions: Hides vertical line to transform + to - */
.faq-item.active .line-vertical {
  opacity: 0;
  transform: scaleY(0);
}

/* Left Icon background styles */
.faq-icon-purple {
  background: #8b5cf6;
}

.faq-icon-blue {
  background: #3b82f6;
}

.faq-icon-orange {
  background: #f97316;
}

.faq-icon-green {
  background: #10b981;
}

.faq-icon-pink {
  background: #ec4899;
}

.faq-icon-violet {
  background: #6366f1;
}

/* Right Icon color styles */
.faq-color-purple {
  color: #8b5cf6;
}

.faq-color-blue {
  color: #3b82f6;
}

.faq-color-orange {
  color: #f97316;
}

.faq-color-green {
  color: #10b981;
}

.faq-color-pink {
  color: #ec4899;
}

.faq-color-violet {
  color: #6366f1;
}

/* Answer Content area */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-content-inner {
  padding: 0 28px 22px 78px;
}

.faq-content-inner p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.65;
  font-weight: 500;
  margin: 0;
}

/* Highlights */
.faq-highlight-blue {
  color: #6366f1;
  font-weight: 700;
}

.faq-highlight-orange {
  color: #f97316;
  font-weight: 700;
}

/* RIGHT COLUMN: Sidebar */
.faq-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-side-card {
  background: #ffffff;
  border: 1.5px solid #f3f4f6;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.faq-support-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 24px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-support-gradient-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
  opacity: 0.12;
}

.faq-support-icon {
  color: #6366f1;
  position: relative;
  z-index: 2;
}

.faq-side-title {
  font-size: 19px;
  font-weight: 800;
  color: #0f0f11;
  margin-bottom: 6px;
}

.faq-side-subtitle {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(90deg, #6366f1 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.faq-side-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 28px;
}

.faq-side-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6366f1 0%, #3b82f6 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-side-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
}

.faq-side-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 32px 0 24px 0;
}

.faq-trust-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.faq-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-trust-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f5f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-trust-text h5 {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.faq-trust-text p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-title {
    font-size: 34px;
  }

  .faq-deco-dots-tl,
  .faq-deco-dots-br,
  .faq-deco-doodle {
    display: none;
  }

  .faq-section {
    padding: 80px 0;
  }
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
  background: linear-gradient(135deg, #070d19 0%, #0d1527 100%);
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
  color: #94a3b8;
}

/* Background Glowing Accents */
.footer-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.05;
  z-index: 1;
}

.footer-glow-left {
  bottom: -100px;
  left: -150px;
  background: #8b5cf6;
}

.footer-glow-right {
  top: -100px;
  right: -150px;
  background: #3b82f6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Top Area: Logo & Newsletter */
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-brand-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-img {
  width: 190px;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 6px 15px rgba(139, 92, 246, 0.45));
}

.footer-brand-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 520px;
}

/* Social Media Buttons */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

/* Newsletter styling */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-newsletter-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.footer-newsletter-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-newsletter-form {
  margin-top: 10px;
}

.footer-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
  width: 100%;
  max-width: 460px;
  transition: all 0.3s ease;
}

.footer-input-wrap:focus-within {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.footer-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 14.5px;
}

.footer-input::placeholder {
  color: #64748b;
}

.footer-newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0f172a;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Dividers */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
}

/* Middle Columns */
.footer-middle {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1fr 1.2fr;
  gap: 60px;
  padding: 0 0 56px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-links-col:hover .footer-col-title::after {
  width: 48px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.footer-links-list a {
  font-size: 14.5px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
  position: relative;
}

.footer-links-list a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-links-list a::before {
  content: "→";
  position: absolute;
  left: -10px;
  opacity: 0;
  transition: all 0.25s ease;
  color: #8b5cf6;
}

.footer-links-list a:hover::before {
  left: -2px;
  opacity: 1;
}

/* Contact Column details */
.footer-contact-col {
  gap: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease;
}

.footer-contact-item:hover {
  transform: translateX(4px);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  color: #8b5cf6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}

.footer-contact-item small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 14.5px;
  font-weight: 600;
  color: #f1f5f9;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: #8b5cf6;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}

.footer-copyright {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Back to Top link */
.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8b5cf6 !important;
  font-weight: 700;
}

.footer-back-to-top svg {
  transition: transform 0.3s ease;
}

.footer-back-to-top:hover svg {
  transform: translateY(-4px);
}

/* Responsive adjustment */
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0;
  }

  .footer-links-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Mobile footer redesign */
@media (max-width: 768px) {
  .footer-section {
    padding: 54px 0 28px;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-middle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    padding: 0 0 32px;
  }

  .footer-links-col {
    gap: 12px;
    min-width: 0;
  }

  .footer-links-col:first-child,
  .footer-contact-col {
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
  }

  .footer-brand-area {
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .footer-logo-img {
    width: 150px;
    max-height: 72px;
  }

  .footer-brand-desc {
    max-width: 320px;
    margin: 8px auto 12px !important;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .footer-socials {
    justify-content: center;
    gap: 10px;
  }

  .footer-social-btn {
    width: 38px;
    height: 38px;
  }

  .footer-col-title {
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 0.7px;
  }

  .footer-col-title::after {
    width: 28px;
  }

  .footer-links-list {
    gap: 9px;
  }

  .footer-links-list a {
    font-size: 13.5px;
    line-height: 1.25;
  }

  .footer-contact-col {
    gap: 14px;
  }

  .footer-contact-col .footer-col-title {
    margin-bottom: 2px;
  }

  .footer-contact-item {
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
  }

  .footer-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .footer-contact-item small {
    font-size: 10px;
    letter-spacing: 0.7px;
  }

  .footer-contact-item a,
  .footer-contact-item span {
    font-size: 13px;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    gap: 14px;
    padding-top: 24px;
  }

  .footer-copyright {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .footer-bottom-links a {
    font-size: 12.5px;
  }
}

@media (max-width: 420px) {
  .footer-container {
    padding: 0 14px;
  }

  .footer-middle {
    gap: 16px 12px;
  }

  .footer-links-col:first-child,
  .footer-contact-col {
    padding: 16px;
  }

  .footer-links-list a {
    font-size: 13px;
  }
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
  padding: 0 24px;
  max-width: 1240px;
  margin: -55px auto 50px;
  /* Pulls stats card up to overlap the About Us section slightly */
  position: relative;
  z-index: 10;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(245, 243, 255, 0.9) 50%, rgba(238, 242, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.18);
  /* Premium tinted border */
  border-radius: 28px;
  padding: 50px 40px;
  box-shadow: 0 30px 65px rgba(99, 102, 241, 0.09), 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.stats-container::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  top: -50px;
  left: 20%;
  pointer-events: none;
}

.stats-container::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  bottom: -50px;
  right: 20%;
  pointer-events: none;
}

.stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-num-wrapper {
  font-size: 54px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-feature-settings: "tnum";
}

.stat-count {
  background: linear-gradient(135deg, #1e293b 30%, #475569 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-suffix {
  background: linear-gradient(135deg, #6366f1 30%, #4f46e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 2px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(226, 232, 240, 0) 0%, rgba(226, 232, 240, 1) 50%, rgba(226, 232, 240, 0) 100%);
  flex-shrink: 0;
}

/* Responsive stats */
@media (max-width: 768px) {
  .stats-container {
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 30px 0;
  }

  .stat-item {
    flex: 0 0 50%;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .stat-item {
    flex: 0 0 100%;
  }

  .stat-num-wrapper {
    font-size: 44px;
  }
}

/* ============================================
   WORKING PROCESS SECTION (Beige Reference Design)
   ============================================ */
.process-section {
  padding: 120px 24px;
  background: #fbfafd;
  background:
    radial-gradient(circle at 15% 15%, rgba(139, 92, 246, 0.09) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.09) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 20% 85%, rgba(236, 72, 153, 0.09) 0%, transparent 40%),
    radial-gradient(circle at 80% 85%, rgba(16, 185, 129, 0.07) 0%, transparent 40%),
    linear-gradient(135deg, #fffdfb 0%, #f6f8fd 50%, #f3faf9 100%);
  position: relative;
  overflow: hidden;
}

/* Faint Premium Mesh Grid Overlay (Beige Gold Tint) */
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(197, 168, 128, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(197, 168, 128, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(197, 168, 128, 0.09) 1.2px, transparent 1.2px);
  background-size: 50px 50px, 50px 50px, 25px 25px;
  pointer-events: none;
  z-index: 1;
}

.process-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  opacity: 0.3;
  z-index: 2;
}

.process-glow-tr {
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.16) 0%, transparent 75%);
}

.process-glow-bl {
  bottom: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.14) 0%, transparent 75%);
}

.process-header {
  position: relative;
  z-index: 5;
  text-align: center;
}

.process-badge-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.process-badge-line {
  width: 30px;
  height: 1.5px;
  background: #c5a880;
}

.process-badge-text {
  font-size: 13px;
  font-weight: 800;
  color: #c5a880;
  letter-spacing: 2.5px;
}

.process-title {
  font-size: 48px;
  font-weight: 800;
  color: #3a2e2b;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.process-desc-main {
  font-size: 17.5px;
  color: #7c7267;
  max-width: 680px;
  margin: 0 auto 90px;
  line-height: 1.6;
}

/* Process Grid (6 Cards Side-by-Side) */
.process-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  max-width: 1540px;
  margin: 0 auto;
  z-index: 5;
  position: relative;
  padding: 40px 10px 0;
}

.process-card {
  flex: 1;
  min-width: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 20px;
  border: 1.5px solid rgba(197, 168, 128, 0.18);
  padding: 55px 20px 35px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(197, 168, 128, 0.04);

  /* Entrance transition states */
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.process-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(197, 168, 128, 0.16);
  border-color: #c5a880;
}

/* Overlapping Circular Icon wrapper */
.process-card-icon-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: #ffffff;
  border-radius: 50%;
  border: 1.5px solid #c5a880;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(197, 168, 128, 0.12);
  z-index: 10;
  transition: all 0.4s ease;
}

.process-card-icon-wrap::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid #e2d4c0;
  border-radius: 50%;
}

.process-card:hover .process-card-icon-wrap {
  transform: translate(-50%, -50%) scale(1.1) rotate(8deg);
  border-color: #a88e67;
}

.process-svg-icon {
  position: relative;
  z-index: 5;
  transition: transform 0.3s ease;
}

/* Gold star ornament */
.process-ornament {
  font-size: 11px;
  color: #c5a880;
  margin-bottom: 12px;
  margin-top: 10px;
  transition: transform 0.4s ease;
}

.process-card:hover .process-ornament {
  transform: scale(1.2) rotate(45deg);
}

.process-card-title {
  font-size: 17.5px;
  font-weight: 700;
  color: #4a3e31;
  margin-bottom: 12px;
  line-height: 1.35;
}

.process-card-desc {
  font-size: 13.5px;
  color: #7c7267;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Small card step numbers at bottom */
.process-card-num {
  position: absolute;
  bottom: 15px;
  right: 18px;
  font-size: 13px;
  font-weight: 700;
  color: #d4cbbd;
  transition: color 0.3s ease;
}

.process-card:hover .process-card-num {
  color: #8c7355;
}

.process-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.process-footer-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
}

.process-footer-text {
  text-align: left;
}

.process-footer-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}

.process-footer-text p {
  font-size: 14.5px;
  color: #64748b;
  margin: 0;
}

.process-footer-arrow {
  position: absolute;
  left: calc(50% + 180px);
  top: 10px;
  transform: rotate(-5deg);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .process-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 30px;
  }

  .process-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 260px;
  }

  .process-footer-arrow {
    display: none;
  }
}

@media (max-width: 991px) {
  .process-grid {
    gap: 50px 24px;
  }

  .process-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .process-grid {
    gap: 50px 0;
  }

  .process-card {
    flex: 0 0 100%;
  }

  .process-title {
    font-size: 36px;
  }
}

/* Bottom Icons styling in Process Cards */
.process-card-bottom-icon {
  margin-top: auto;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.process-card-bottom-icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.process-card:hover .process-card-bottom-icon svg {
  transform: scale(1.1);
}

/* Outline colors matching each stage's aesthetic */
.process-card-bottom-icon.icon-purple {
  background: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
}

.process-card-bottom-icon.icon-blue {
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

.process-card-bottom-icon.icon-orange {
  background: rgba(249, 115, 22, 0.08);
  color: #f97316;
}

.process-card-bottom-icon.icon-green {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.process-card-bottom-icon.icon-pink {
  background: rgba(236, 72, 153, 0.08);
  color: #ec4899;
}

.process-card-bottom-icon.icon-violet {
  background: rgba(99, 102, 241, 0.08);
  color: #6366f1;
}

/* Card SVG icons theme transition */
.process-svg-icon {
  color: #ffffff;
  /* Default is white inside colored circles */
  transition: transform 0.3s ease;
}

/* Card specific borders, backgrounds and hover styles */

/* purple - step 1 */
.process-card.card-purple {
  border-color: rgba(139, 92, 246, 0.22);
}

.process-card.card-purple .process-card-icon-wrap {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 6px 15px rgba(139, 92, 246, 0.15);
}

.process-card.card-purple .process-card-icon-wrap::after {
  border-color: rgba(255, 255, 255, 0.25);
}

.process-card.card-purple:hover {
  border-color: rgba(139, 92, 246, 0.7);
  box-shadow:
    0 20px 40px rgba(139, 92, 246, 0.15),
    0 0 15px rgba(139, 92, 246, 0.08);
}

.process-card.card-purple:hover .process-card-icon-wrap {
  border-color: #8b5cf6;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

.process-card.card-purple:hover .process-card-title {
  color: #8b5cf6;
}

/* blue - step 2 */
.process-card.card-blue {
  border-color: rgba(59, 130, 246, 0.22);
}

.process-card.card-blue .process-card-icon-wrap {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.15);
}

.process-card.card-blue .process-card-icon-wrap::after {
  border-color: rgba(255, 255, 255, 0.25);
}

.process-card.card-blue:hover {
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow:
    0 20px 40px rgba(59, 130, 246, 0.15),
    0 0 15px rgba(59, 130, 246, 0.08);
}

.process-card.card-blue:hover .process-card-icon-wrap {
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.process-card.card-blue:hover .process-card-title {
  color: #3b82f6;
}

/* orange - step 3 */
.process-card.card-orange {
  border-color: rgba(249, 115, 22, 0.22);
}

.process-card.card-orange .process-card-icon-wrap {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 6px 15px rgba(249, 115, 22, 0.15);
}

.process-card.card-orange .process-card-icon-wrap::after {
  border-color: rgba(255, 255, 255, 0.25);
}

.process-card.card-orange:hover {
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow:
    0 20px 40px rgba(249, 115, 22, 0.15),
    0 0 15px rgba(249, 115, 22, 0.08);
}

.process-card.card-orange:hover .process-card-icon-wrap {
  border-color: #f97316;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.process-card.card-orange:hover .process-card-title {
  color: #f97316;
}

/* green - step 4 */
.process-card.card-green {
  border-color: rgba(16, 185, 129, 0.22);
}

.process-card.card-green .process-card-icon-wrap {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.15);
}

.process-card.card-green .process-card-icon-wrap::after {
  border-color: rgba(255, 255, 255, 0.25);
}

.process-card.card-green:hover {
  border-color: rgba(16, 185, 129, 0.7);
  box-shadow:
    0 20px 40px rgba(16, 185, 129, 0.15),
    0 0 15px rgba(16, 185, 129, 0.08);
}

.process-card.card-green:hover .process-card-icon-wrap {
  border-color: #10b981;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.process-card.card-green:hover .process-card-title {
  color: #10b981;
}

/* pink - step 5 */
.process-card.card-pink {
  border-color: rgba(236, 72, 153, 0.22);
}

.process-card.card-pink .process-card-icon-wrap {
  background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 0 6px 15px rgba(236, 72, 153, 0.15);
}

.process-card.card-pink .process-card-icon-wrap::after {
  border-color: rgba(255, 255, 255, 0.25);
}

.process-card.card-pink:hover {
  border-color: rgba(236, 72, 153, 0.7);
  box-shadow:
    0 20px 40px rgba(236, 72, 153, 0.15),
    0 0 15px rgba(236, 72, 153, 0.08);
}

.process-card.card-pink:hover .process-card-icon-wrap {
  border-color: #ec4899;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.35);
}

.process-card.card-pink:hover .process-card-title {
  color: #ec4899;
}

/* violet - step 6 */
.process-card.card-violet {
  border-color: rgba(99, 102, 241, 0.22);
}

.process-card.card-violet .process-card-icon-wrap {
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 6px 15px rgba(99, 102, 241, 0.15);
}

.process-card.card-violet .process-card-icon-wrap::after {
  border-color: rgba(255, 255, 255, 0.25);
}

.process-card.card-violet:hover {
  border-color: rgba(99, 102, 241, 0.7);
  box-shadow:
    0 20px 40px rgba(99, 102, 241, 0.15),
    0 0 15px rgba(99, 102, 241, 0.08);
}

.process-card.card-violet:hover .process-card-icon-wrap {
  border-color: #6366f1;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.process-card.card-violet:hover .process-card-title {
  color: #6366f1;
}

/* Make card titles darker for readability */
.process-card-title {
  font-family: "Inter", sans-serif;
  font-size: 17.5px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
  position: relative;
  padding: 140px 24px 70px;
  background:
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.07) 0%, transparent 40%),
    #ffffff;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.about-hero-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 56px;
  font-weight: 600;
  color: #111111;
  max-width: 900px;
  margin: 0 auto 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.about-hero-desc {
  font-size: 18px;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.about-hero-title-main {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -2px;
  margin: 0 auto 24px;
  line-height: 1.1;
}

.about-hero-desc-main {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 19px;
  color: #374151;
  max-width: 850px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

.about-hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.about-btn-primary {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #111111;
  transition: all 0.25s ease;
}

.about-btn-primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.about-btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #111111;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #cccccc;
  transition: all 0.25s ease;
}

.about-btn-secondary:hover {
  border-color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Glowing background blobs for About Hero */
.about-hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  opacity: 0.055;
  z-index: 1;
}

.about-hero-glow-1 {
  top: -100px;
  left: 10%;
  background: #3b82f6;
}

.about-hero-glow-2 {
  bottom: -150px;
  right: 10%;
  background: #8b5cf6;
}

/* About Stats Section */
.about-stats-container {
  max-width: 1200px;
  margin: -50px auto 70px;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-stat-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.08);
}

.about-stat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: all 0.3s ease;
}

.about-stat-card:hover .about-stat-icon {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
}

.about-stat-info {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.about-stat-desc {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 500;
  line-height: 1.35;
}

/* About Priority Section ("Your Success, Our Priority") */
.about-priority-section {
  padding: 100px 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 45%),
    #f9fafc;
  position: relative;
  z-index: 2;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.about-priority-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-priority-media {
  position: relative;
  width: 100%;
}

.about-priority-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 40px 140px 40px 80px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
  border: 6px solid #ffffff;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-priority-img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.1);
}

.about-priority-text {
  display: flex;
  flex-direction: column;
}

.about-priority-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 20px;
  width: fit-content;
}

.about-priority-badge svg {
  color: #3b82f6;
}

.about-priority-title {
  font-size: 42px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.about-priority-desc {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 30px;
  font-weight: 500;
}

.about-priority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
  border-top: 1px solid #e5e7eb;
  padding-top: 30px;
  margin-bottom: 40px;
  position: relative;
}

.about-priority-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #e5e7eb;
  transform: translateY(-50%);
}

.about-priority-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-priority-item h5 {
  font-size: 16.5px;
  font-weight: 800;
  color: #111111;
}

.about-priority-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  font-weight: 500;
}

.about-priority-btn {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #111111;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}

.about-priority-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

/* About Story Section */
.about-story-section {
  padding: 100px 24px;
  background:
    radial-gradient(circle at 15% 15%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.06) 0%, transparent 40%),
    #ffffff;
  position: relative;
  z-index: 2;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.about-story-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-story-text {
  display: flex;
  flex-direction: column;
}

.about-story-subtitle {
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  color: #3b82f6;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.about-story-title {
  font-size: 40px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 24px;
  line-height: 1.25;
  letter-spacing: -0.8px;
}

.about-story-desc {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 500;
}

/* Story Highlights */
.about-story-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-bullet-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.about-bullet-content h5 {
  font-size: 16px;
  font-weight: 750;
  color: #111111;
  margin-bottom: 4px;
}

.about-bullet-content p {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.5;
  font-weight: 500;
}

/* Image Stack Layout */
.about-story-media {
  position: relative;
  width: 100%;
}

.about-img-stack {
  position: relative;
  width: 100%;
  height: 480px;
}

.about-stack-img {
  position: absolute;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  object-fit: cover;
  border: 5px solid #ffffff;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.about-stack-img-1 {
  width: 78%;
  height: 330px;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}

.about-stack-img-2 {
  width: 72%;
  height: 300px;
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
  z-index: 1;
}

.about-stack-img:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 3;
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.12);
}

/* Core Values Section */
.about-values-section {
  padding: 100px 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 55px;
}

.about-value-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(229, 231, 235, 0.7);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.about-value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.08);
  background: #ffffff;
}

.about-value-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
  color: #3b82f6;
  transition: all 0.3s ease;
}

.about-value-card:hover .about-value-icon-box {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  transform: scale(1.05);
}

.about-value-card h4 {
  font-size: 20px;
  font-weight: 750;
  color: #111111;
  margin-bottom: 12px;
}

.about-value-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  font-weight: 500;
}

/* Stats Margins Override for About Page */
.about-stats-section {
  margin: 40px auto 100px !important;
}

/* Responsive Styles for About Page */
@media (max-width: 991px) {
  .about-priority-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-priority-img {
    height: 400px;
  }

  .about-story-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-img-stack {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-stack-img-1 {
    height: 280px;
  }

  .about-stack-img-2 {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 16px 60px;
  }

  .about-hero-title-main {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .about-hero-desc-main {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .about-priority-section {
    padding: 60px 16px;
  }

  .about-priority-title {
    font-size: 32px;
  }

  .about-priority-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-priority-grid::after {
    display: none;
  }

  .about-priority-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
  }

  .about-priority-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .about-story-section {
    padding: 60px 16px;
  }

  .about-story-title {
    font-size: 30px;
  }

  .about-values-section {
    padding: 60px 16px;
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
  position: relative;
  padding: 150px 24px 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 60%, #ede9fe 100%);
  text-align: center;
  overflow: hidden;
  z-index: 2;
}

/* Large decorative purple/blue gradient blobs */
.contact-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(139, 92, 246, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -120px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.contact-hero>* {
  position: relative;
  z-index: 1;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 28px;
}

.contact-hero-badge svg {
  color: #4f46e5;
}

.contact-hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -2px;
  max-width: 850px;
  margin: 0 auto 22px;
  line-height: 1.15;
}

.contact-hero-title span {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-desc {
  font-size: 17px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 500;
}

/* Decorative Background Elements */
.contact-deco-dots {
  position: absolute;
  top: 42%;
  left: 6%;
  width: 70px;
  height: 70px;
  background-image: radial-gradient(#c7d2fe 2px, transparent 2.5px);
  background-size: 14px 14px;
  opacity: 0.8;
  z-index: 1;
}

.contact-deco-star {
  position: absolute;
  top: 38%;
  right: 8%;
  z-index: 1;
  animation: float-sparkle 6s ease-in-out infinite alternate;
}

@keyframes float-sparkle {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-10px) rotate(12deg);
  }
}

/* Contact Grid Layout */
.contact-grid-section {
  padding: 70px 24px 120px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #ede9fe 0%, #f5f3ff 15%, #f8f9fc 40%, #ffffff 100%);
  position: relative;
  z-index: 2;
}

.contact-grid-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

/* Info side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #e8eaef;
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.06);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ede9fe;
  color: #6d28d9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #ffffff;
  transform: scale(1.06);
}

.contact-card-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-card-details h4 {
  font-size: 15.5px;
  font-weight: 750;
  color: #111111;
  margin-bottom: 1px;
}

.contact-card-details p,
.contact-card-details a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.45;
}

.contact-card-details a {
  color: #4f46e5;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-card-details a:hover {
  color: #7c3aed;
  text-decoration: underline;
}

/* Map Card */
.contact-map-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8eaef;
  border-radius: 16px;
  overflow: hidden;
  padding: 8px;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  height: 250px;
  display: flex;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
}

.contact-map-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  color: #4f46e5;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.contact-map-btn:hover {
  background: #f5f3ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

/* Form side */
.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  padding: 40px 38px;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.06), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.contact-form-title {
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 0;
}

.contact-form-title::after {
  display: none;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.contact-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  text-transform: none;
  letter-spacing: normal;
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  background: #ffffff;
  font-size: 14.5px;
  color: #111111;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.25s ease;
  outline: none;
  box-sizing: border-box;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #9ca3af;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.08);
}

.contact-textarea {
  height: 110px;
  resize: vertical;
}

.contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 15px;
  padding-right: 38px;
}

/* Budget Range Box Choice */
.contact-budget-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 2px;
}

.contact-budget-btn {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 11px 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-budget-btn:hover {
  border-color: #4f46e5;
  color: #4f46e5;
  background: #f5f3ff;
}

.contact-budget-btn.active {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.contact-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: #ffffff;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
  letter-spacing: 0.2px;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.25);
}

/* Responsive Rules for Contact */
@media (max-width: 991px) {
  .contact-grid-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-hero-title {
    font-size: 44px;
  }

  .contact-deco-dots,
  .contact-deco-star {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 16px 60px;
  }

  .contact-hero-title {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .contact-hero-desc {
    font-size: 15px;
  }

  .contact-grid-section {
    padding: 50px 16px 80px;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .contact-budget-container {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ===== CONTACT CTA BANNER ===== */
.contact-cta-section {
  position: relative;
  padding: 90px 24px;
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 20%, #ea580c 40%, #e11d48 70%, #be185d 100%);
  text-align: center;
  overflow: hidden;
  z-index: 2;
}

.contact-cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-cta-glow-1 {
  top: -80px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.35) 0%, transparent 60%);
}

.contact-cta-glow-2 {
  bottom: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 60%);
}

.contact-cta-container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.contact-cta-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.5px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-cta-title span {
  background: linear-gradient(135deg, #fbbf24, #fb923c, #fda4af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 500;
}

.contact-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.contact-cta-btn-primary {
  background: #ffffff;
  color: #c2410c;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-cta-btn-primary:hover {
  background: #fff7ed;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-cta-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.contact-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-cta-section {
    padding: 70px 16px;
  }

  .contact-cta-title {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .contact-cta-desc {
    font-size: 14.5px;
  }

  .contact-cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .contact-cta-btn {
    width: 100%;
    justify-content: center;
  }
}



/* ============================================
   INQUIRY MODAL (POPUP FORM)
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  width: min(520px, calc(100% - 32px));
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
  padding: 36px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  padding: 0;
}

.modal-close-btn:hover {
  background: #f1f5f9;
  color: #1e293b;
  transform: scale(1.05);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  color: #111325;
  margin-bottom: 8px;
}

.modal-header p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.modal-form-group {
  margin-bottom: 18px;
  text-align: left;
}

.modal-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

.modal-form-input {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  padding: 0 16px;
  font-size: 14px;
  color: #0f172a;
  background: #f8fafc;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.modal-form-input:focus {
  border-color: #5368ff;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(83, 104, 255, 0.12);
  outline: none;
}

textarea.modal-form-input {
  height: 100px;
  padding: 12px 16px;
  resize: none;
}

.modal-submit-btn {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #4d55ff, #7b5cff 55%, #ff8145);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(83, 104, 255, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(83, 104, 255, 0.3);
}

.modal-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  display: none;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
  animation: scaleInSuccess 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleInSuccess {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-success-state h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  color: #111325;
  margin-bottom: 12px;
}

.modal-success-state p {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */
@media (max-width: 820px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .navbar {
    width: 100%;
    max-width: 100%;
    min-height: 76px;
    padding: 0 18px;
    gap: 12px;
  }

  .logo-img {
    width: 96px;
    max-width: 30vw;
    height: auto;
    max-height: 54px;
  }

  .inquiry-btn {
    min-width: 108px;
    height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero-marquee {
    width: 100%;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 18px 0;
  }

  .hero-marquee-group {
    gap: 14px;
    padding-right: 14px;
  }

  .marquee-capsule {
    max-width: 190px;
    padding: 9px 18px;
    font-size: 14px;
    line-height: 1.15;
  }

  .marquee-arrow {
    width: 34px;
    height: 34px;
  }

  .marquee-star {
    margin: 0 4px;
  }

  .stats-section {
    width: 100%;
    max-width: 100%;
    margin: -34px auto 34px;
    padding: 0 16px;
  }

  .stats-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 28px 16px;
    border-radius: 24px;
  }

  .stat-item {
    min-width: 0;
    padding: 18px 8px;
  }

  .stat-num-wrapper {
    font-size: 42px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .stat-label {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 1px;
    overflow-wrap: anywhere;
  }

  .stat-divider {
    display: none;
  }

  .services {
    width: 100%;
    max-width: 100%;
    padding: 60px 14px 64px;
    overflow: hidden;
  }

  .svc-header {
    width: min(100%, 440px);
    margin: 0 auto 20px;
  }

  .svc-badge {
    padding: 7px 16px;
    font-size: 0.86rem;
  }

  .svc-title {
    font-size: 2.25rem;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .svc-sub {
    max-width: 340px;
    margin: 0 auto 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .svc-sub br {
    display: none;
  }

  .svc-carousel-wrap {
    width: 100%;
    height: auto;
    margin-top: 0;
    overflow: visible;
  }

  .svc-track {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 18px max(12px, calc((100vw - 300px) / 2)) 28px;
  }

  .svc-card,
  .svc-card-active {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 min(300px, calc(100vw - 42px));
    width: min(300px, calc(100vw - 42px));
    height: auto;
    min-height: 334px;
    margin: 0;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    scroll-snap-align: center;
    pointer-events: auto;
  }

  .svc-card-img,
  .svc-card-active .svc-card-img {
    height: 190px;
  }

  .svc-card-body,
  .svc-card-active .svc-card-body {
    min-height: 130px;
    padding: 18px 18px 20px;
  }

  .svc-card .svc-card-title,
  .svc-card-active .svc-card-title {
    font-size: 1rem;
    line-height: 1.25;
  }

  .svc-card .svc-card-desc,
  .svc-card-active .svc-card-desc {
    display: -webkit-box;
    max-width: none;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .svc-card-far {
    display: block !important;
  }

  .svc-nav {
    gap: 12px;
    margin-top: 8px;
  }

  .svc-dots {
    max-width: min(250px, 56vw);
    overflow: hidden;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 16px;
  }

  .logo-img {
    width: 88px;
  }

  .inquiry-btn {
    min-width: 106px;
    padding: 0 16px;
  }

  .stats-section {
    margin-top: -28px;
    padding: 0 14px;
  }

  .stats-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px 14px;
    gap: 10px;
    border-radius: 20px;
  }

  .stat-item {
    min-height: 118px;
    padding: 18px 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.56);
  }

  .stat-num-wrapper {
    font-size: 38px;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0.8px;
  }

  .services {
    padding: 56px 12px 60px;
  }

  .svc-title {
    font-size: 2.45rem;
  }

  .svc-track {
    padding-left: max(12px, calc((100vw - 286px) / 2));
    padding-right: max(12px, calc((100vw - 286px) / 2));
  }

  .svc-card,
  .svc-card-active {
    flex-basis: min(286px, calc(100vw - 36px));
    width: min(286px, calc(100vw - 36px));
  }
}

/* Contact form mobile polish */
@media (max-width: 768px) {
  .contact-grid-section {
    padding: 34px 12px 92px;
  }

  .contact-grid-container {
    gap: 28px;
  }

  .contact-form-card {
    width: 100%;
    border-radius: 18px;
    padding: 24px 18px 26px;
    box-shadow: 0 14px 34px rgba(79, 70, 229, 0.08);
  }

  .contact-form-title {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 22px;
  }

  .contact-form-group {
    gap: 6px;
    margin-bottom: 16px;
  }

  .contact-form-group label {
    font-size: 12.5px;
    line-height: 1.25;
  }

  .contact-input,
  .contact-select,
  .contact-textarea {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
  }

  .contact-select {
    background-position: right 14px center;
    padding-right: 36px;
  }

  .contact-budget-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-budget-btn {
    min-height: 44px;
    padding: 11px 8px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.15;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-budget-btn:last-child {
    grid-column: 1 / -1;
  }

  .contact-textarea {
    height: 96px;
    min-height: 96px;
  }

  .contact-submit-btn {
    min-height: 50px;
    padding: 13px;
    border-radius: 12px;
    font-size: 14px;
    margin-top: 4px;
  }

  .contact-info-card {
    padding: 18px;
    border-radius: 14px;
    align-items: flex-start;
  }

  .contact-card-icon {
    width: 42px;
    height: 42px;
  }

  .contact-map-card {
    height: 210px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 96px 14px 42px;
  }

  .contact-hero-badge {
    margin-bottom: 18px;
  }

  .contact-hero-title {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .contact-hero-title br {
    display: none;
  }

  .contact-hero-desc {
    font-size: 14px;
    line-height: 1.55;
  }

  .contact-form-card {
    padding: 22px 16px 24px;
  }

  .contact-form-title {
    font-size: 23px;
  }

  .contact-budget-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Cleaner mobile header layout */
@media (max-width: 820px) {
  .navbar {
    justify-content: flex-start;
    height: 72px;
    min-height: 72px;
    padding: 0 16px;
    gap: 10px;
  }

  .nav-logo-area {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo {
    padding: 0;
  }

  .logo-img {
    width: 112px;
    max-width: 36vw;
    max-height: 58px;
  }

  .nav-actions {
    order: 2;
    flex: 0 0 auto;
  }

  .inquiry-btn {
    min-width: 96px;
    height: 40px;
    padding: 0 16px;
    font-size: 13.5px;
    box-shadow: 0 10px 22px rgba(17, 19, 37, 0.16);
  }

  .nav-toggle {
    order: 3;
    width: 42px;
    height: 42px;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  }

  .nav-toggle span {
    width: 17px;
  }

  .nav-links {
    top: calc(100% + 8px);
  }
}

@media (max-width: 380px) {
  .navbar {
    padding: 0 12px;
    gap: 8px;
  }

  .logo-img {
    width: 96px;
    max-width: 32vw;
  }

  .inquiry-btn {
    min-width: 88px;
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

/* About page mobile polish */
@media (max-width: 768px) {
  .about-hero {
    padding: 92px 16px 42px;
    background:
      radial-gradient(circle at 16% 0%, rgba(59, 130, 246, 0.09) 0%, transparent 36%),
      radial-gradient(circle at 88% 82%, rgba(139, 92, 246, 0.08) 0%, transparent 38%),
      #ffffff;
  }

  .about-hero-title-main {
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: 0;
    margin-bottom: 18px;
  }

  .about-hero-desc-main {
    max-width: 430px;
    font-size: 15.5px;
    line-height: 1.58;
    margin-bottom: 24px;
    color: #26324a;
  }

  .about-hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .about-btn-primary,
  .about-btn-secondary {
    width: 100%;
    min-height: 48px;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .about-stats-container {
    width: 100%;
    max-width: 460px;
    margin: 0 auto 42px;
    padding: 0 16px;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-stat-card {
    min-width: 0;
    padding: 18px;
    border-radius: 16px;
    gap: 14px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  }

  .about-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .about-stat-number {
    font-size: 30px;
    line-height: 1;
  }

  .about-stat-desc {
    font-size: 13px;
    line-height: 1.32;
  }
}

@media (max-width: 430px) {
  .about-hero {
    padding: 86px 14px 36px;
  }

  .about-hero-title-main {
    font-size: 40px;
  }

  .about-hero-desc-main {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .about-hero-buttons {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .about-btn-primary,
  .about-btn-secondary {
    min-height: 46px;
  }

  .about-stats-container {
    padding: 0 14px;
  }
}

/* About lower sections mobile polish */
@media (max-width: 768px) {
  .about-priority-section {
    padding: 52px 16px 58px;
  }

  .about-priority-container {
    gap: 0;
  }

  .about-priority-media {
    display: none;
  }

  .about-priority-text {
    max-width: 430px;
    margin: 0 auto;
  }

  .about-priority-badge {
    padding: 7px 13px;
    font-size: 12.5px;
    margin-bottom: 18px;
  }

  .about-priority-title {
    max-width: 360px;
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 16px;
  }

  .about-priority-desc {
    font-size: 15px;
    line-height: 1.58;
    margin-bottom: 24px;
    color: #425066;
  }

  .about-priority-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    border-top: 0;
    padding-top: 0;
    margin-bottom: 24px;
  }

  .about-priority-grid::after {
    display: none;
  }

  .about-priority-item {
    gap: 6px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.035);
  }

  .about-priority-item:last-child {
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
  }

  .about-priority-item h5 {
    font-size: 16px;
    line-height: 1.25;
  }

  .about-priority-item p {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .about-priority-btn {
    width: 100%;
    min-height: 50px;
    max-width: 220px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    font-size: 14px;
  }

  .about-story-section {
    padding: 58px 16px;
  }

  .about-story-container {
    gap: 28px;
  }

  .about-story-text {
    max-width: 430px;
    margin: 0 auto;
  }

  .about-story-subtitle {
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
  }

  .about-story-title {
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: 0;
    margin-bottom: 18px;
  }

  .about-story-desc {
    font-size: 15px;
    line-height: 1.62;
    margin-bottom: 16px;
    color: #425066;
  }

  .about-story-bullets {
    gap: 12px;
    margin-top: 18px;
  }

  .about-bullet-item {
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    background: #f8fafc;
  }

  .about-bullet-content h5 {
    font-size: 15px;
  }

  .about-bullet-content p {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .about-img-stack {
    height: 260px;
    max-width: 360px;
  }

  .about-stack-img-1 {
    width: 82%;
    height: 180px;
  }

  .about-stack-img-2 {
    width: 78%;
    height: 170px;
  }

  .about-values-section {
    padding: 58px 16px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .about-value-card {
    padding: 24px 20px;
    border-radius: 18px;
    text-align: left;
  }

  .about-value-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 18px;
  }

  .about-value-card h4 {
    font-size: 18px;
    line-height: 1.25;
  }

  .about-value-card p {
    font-size: 14px;
    line-height: 1.55;
  }
}

@media (max-width: 430px) {
  .about-priority-section,
  .about-story-section,
  .about-values-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .about-priority-title {
    font-size: 30px;
  }

  .about-priority-desc,
  .about-story-desc {
    font-size: 14.25px;
  }

  .about-story-title {
    font-size: 28px;
  }

  .about-value-card {
    padding: 22px 18px;
  }
}

/* Home banner mobile fix */
@media (max-width: 820px) {
  .hero {
    min-height: 560px;
    height: 560px;
    padding: 0;
    gap: 0;
    background:
      linear-gradient(180deg, rgba(251, 250, 253, 0.88), rgba(251, 250, 253, 0.72)),
      #fbfafd;
  }

  .hero::before {
    background-position: center top;
    opacity: 0.92;
  }

  .hero .logo-banner {
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
  }

  .hero .logo-banner::before,
  .hero .logo-banner::after {
    width: 46px;
  }

  .hero .logo-row {
    display: block;
    width: 100%;
    flex: 0 0 auto;
  }

  .hero .logo-row:nth-child(n+7) {
    display: none;
  }

  .hero .logo-track {
    gap: 8px;
  }

  .hero .logo-track img {
    width: 132px;
    height: 94px;
    padding: 0;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  }

  .hero-marquee {
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 510px;
    height: 510px;
  }

  .hero .logo-banner {
    gap: 7px;
  }

  .hero .logo-track {
    gap: 7px;
  }

  .hero .logo-track img {
    width: 118px;
    height: 84px;
    border-radius: 11px;
  }
}

/* Home about mobile polish */
@media (max-width: 820px) {
  .about {
    width: 100%;
    margin: 0 auto 38px;
    padding: 46px 16px;
    border-radius: 0;
    background:
      radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.08), transparent 34%),
      radial-gradient(circle at 95% 78%, rgba(124, 58, 237, 0.07), transparent 34%),
      #f8fafc;
  }

  .about-images {
    display: none;
  }

  .about-content {
    width: 100%;
    max-width: 430px;
    padding: 24px 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
  }

  .about-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #eff6ff;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 1.2px;
  }

  .about-heading {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 16px;
  }

  .about-heading br {
    display: none;
  }

  .about-desc {
    font-size: 14.75px;
    line-height: 1.62;
    color: #475569;
    margin-bottom: 22px;
  }

  .about-list {
    gap: 10px;
    margin-bottom: 24px;
  }

  .about-list-item {
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    font-size: 14px;
    line-height: 1.38;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
  }

  .check-icon {
    margin-top: 1px;
  }

  .about-learn-btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    background: #ffffff;
  }
}

@media (max-width: 430px) {
  .about {
    padding: 38px 12px;
  }

  .about-content {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .about-heading {
    font-size: 28px;
  }

  .about-desc {
    font-size: 14px;
  }

  .about-list-item {
    padding: 11px;
    font-size: 13.5px;
  }
}

/* Services and portfolio mobile showcase polish */
@media (max-width: 820px) {
  .services {
    padding: 46px 12px 52px;
  }

  .svc-header {
    margin-bottom: 14px;
  }

  .svc-title {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: 38px;
    line-height: 1.05;
  }

  .svc-sub {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.5;
  }

  .svc-divider {
    margin-top: 4px;
  }

  .svc-carousel-wrap {
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .svc-track {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    height: auto;
    overflow-x: auto;
    overflow-y: visible;
    padding: 14px 14px 18px;
    scroll-snap-type: x mandatory;
    perspective: none;
  }

  .svc-track .svc-card,
  .svc-card,
  .svc-card-active {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 245px;
    width: 245px;
    height: auto;
    min-height: 275px;
    margin: 0;
    border-radius: 18px;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    scroll-snap-align: center;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  }

  .svc-card-far {
    display: block !important;
  }

  .svc-card-img,
  .svc-card-active .svc-card-img {
    height: 150px;
  }

  .svc-card-body,
  .svc-card-active .svc-card-body {
    min-height: 125px;
    padding: 16px;
  }

  .svc-card .svc-card-title,
  .svc-card-active .svc-card-title {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .svc-card .svc-card-desc,
  .svc-card-active .svc-card-desc {
    display: -webkit-box;
    max-width: none;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .svc-card-link {
    margin-top: 8px;
    font-size: 12px;
  }

  .svc-nav {
    display: none;
  }

  .portfolio-section {
    padding: 50px 12px 56px;
  }

  .portfolio-header {
    margin-bottom: 24px;
  }

  .port-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .portfolio-categories,
  .portfolio-grid {
    display: none;
  }

  .mobile-logo-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 430px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .mobile-logo-card {
    min-height: 132px;
    border: 1px solid #e6ebf3;
    border-radius: 18px;
    background:
      radial-gradient(circle at 20% 0%, rgba(59, 130, 246, 0.08), transparent 34%),
      #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .mobile-logo-card img {
    width: 100%;
    height: 100%;
    max-height: 132px;
    object-fit: contain;
    padding: 16px;
    display: block;
  }
}

@media (max-width: 430px) {
  .services {
    padding: 42px 10px 48px;
  }

  .svc-title {
    font-size: 33px;
  }

  .svc-track {
    padding-left: 10px;
    padding-right: 10px;
  }

  .svc-track .svc-card,
  .svc-card,
  .svc-card-active {
    flex-basis: 232px;
    width: 232px;
    min-height: 264px;
  }

  .svc-card-img,
  .svc-card-active .svc-card-img {
    height: 142px;
  }

  .mobile-logo-showcase {
    gap: 10px;
  }

  .mobile-logo-card {
    min-height: 118px;
    border-radius: 16px;
  }

  .mobile-logo-card img {
    max-height: 118px;
    padding: 12px;
  }
}

/* ============================================
   PREMIUM LOGO PROMO SECTION
   ============================================ */
.logo-promo-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e8eaef;
  border-bottom: 1px solid #e8eaef;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.logo-promo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}
.logo-promo-content {
  flex: 1;
  max-width: 550px;
}
.logo-promo-collage {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 500px;
  position: relative;
}
.logo-promo-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}
.logo-promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.08);
}
.logo-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}
.logo-promo-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .logo-promo-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .logo-promo-content {
    max-width: 100%;
  }
  .logo-promo-content ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto 30px !important;
  }
  .logo-promo-collage {
    max-width: 100%;
    width: 100%;
  }
}

.logo-explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.logo-explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.35) !important;
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */
/* Blog Hero */
.blog-hero {
  position: relative;
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, rgba(83, 104, 255, 0.03) 0%, rgba(255, 129, 69, 0.03) 100%);
  border-bottom: 1px solid rgba(83, 104, 255, 0.08);
  color: #111325;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}
.blog-hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(83, 104, 255, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.blog-hero-content h1 {
  font-size: 3.8rem;
  font-weight: 850;
  margin-bottom: 20px;
  letter-spacing: -1.2px;
  color: #0f0f11;
}
.blog-hero-content h1 span {
  background: linear-gradient(135deg, #5368ff, #ff8145);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-hero-content p {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Blog Content Grid */
.blog-page-content {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* Blog Cards */
.blog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(83, 104, 255, 0.08);
  border-color: rgba(83, 104, 255, 0.2);
}
.blog-card-image {
  height: 200px;
  margin: 12px 12px 0;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}
/* Premium Image Backgrounds */
.vastu-bg { 
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=600&q=80') center/cover no-repeat;
}
.numerology-bg { 
  background: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=600&q=80') center/cover no-repeat;
}
.astrology-bg { 
  background: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=600&q=80') center/cover no-repeat;
}

.blog-card-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  align-self: flex-start;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 8px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.blog-card-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 15px;
  line-height: 1.3;
}
.blog-card-body p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}
.blog-card-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}
.blog-card-list li {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.blog-card-list li::before {
  content: "•";
  color: #8b5cf6;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.2rem;
}
.blog-card-list li strong {
  margin-right: 4px;
  color: #111827;
}

