:root {
  --blue: #1ea4a0;
  --sky: #0ea5e9;
  --navy: #1e293b;
  --body-bg: #f8fafc;
  --tint: #eff6ff;
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted2: #475569;
  --muted: #94a3b8;
  --grad: linear-gradient(135deg, #1ea4a0, #076966);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--body-bg);
  color: var(--text);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.font-jakarta {
  font-family: "Plus Jakarta Sans", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
}
.section-heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

#mainNav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
  z-index: 1050;
}
#mainNav.scrolled {
  box-shadow: 0 2px 16px rgba(27, 79, 216, 0.09);
}
.nav-logo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--blue);
  letter-spacing: -0.3px;
}
.navbar-nav .nav-link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 12px !important;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--blue);
}
.btn-cta-nav {
  background: var(--grad);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  padding: 7px 16px !important;
  border: none;
  transition: opacity 0.2s;
}
.btn-cta-nav:hover {
  opacity: 0.88;
  color: #fff !important;
}
.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  min-width: 180px;
}
.dropdown-item {
  font-size: 14px;
  color: var(--text);
  padding: 8px 16px;
}
.dropdown-item:hover {
  background: var(--tint);
  color: var(--blue);
}

.hero-swiper {
  width: 100%;
  height: min(88vh, 760px);
  min-height: 560px;
}
.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f172a;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroBgDrift 14s ease-in-out infinite alternate;
}
.hero-bg-1 {
  background-image: url("images/hero-slide.webp");
}
.hero-bg-2 {
  background-image: url("images/hero-slide2.webp");
}
.hero-bg-3 {
  background-image: url("images/hero-slide3.webp");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(7, 24, 28, 0.96) 0%,
    rgba(7, 24, 28, 0.88) 34%,
    rgba(7, 24, 28, 0.42) 58%,
    rgba(7, 24, 28, 0.08) 78%,
    transparent 100%
  );
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: 100%;
  min-height: inherit;
  padding-top: 40px;
  padding-bottom: 56px;
}
.hero-content {
  max-width: 560px;
  text-align: left;
  animation: heroContentIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-badge {
  display: inline-block;
  color: #9fe8e4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border-left: 3px solid var(--blue);
  padding-left: 12px;
}
.hero-h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  margin: 0 0 28px;
  line-height: 1.55;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-hero-primary {
  background: #fff;
  color: #076966;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  padding: 12px 22px;
  border: none;
  transition: transform 0.2s, background 0.2s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  background: #f0fffe;
  color: #076966;
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  color: #fff;
}

/* Right-side visual stage */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  animation: heroVisualIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.hero-visual-stage {
  position: relative;
  width: min(100%, 420px);
  min-height: 340px;
}
.hero-search-bar,
.hero-rank-item,
.hero-metric,
.hero-social-post,
.hero-platform-stack span,
.hero-chip,
.hero-timeline span {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.82);
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
  animation: heroFloat 5s ease-in-out infinite;
}
.hero-search-bar i:first-child {
  color: var(--blue);
  font-size: 18px;
}
.hero-search-bar i:last-child {
  margin-left: auto;
  color: #076966;
}
.hero-rank-list {
  display: grid;
  gap: 10px;
}
.hero-rank-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(15, 30, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
}
.hero-rank-item strong {
  display: block;
  font-size: 14px;
}
.hero-rank-item small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}
.hero-rank-item.is-top {
  background: rgba(30, 164, 160, 0.55);
  border-color: rgba(159, 232, 228, 0.55);
}
.hero-rank-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}
.hero-rank-item.is-top .hero-rank-num {
  background: #1ea4a0;
  color: #fff;
}
.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 24, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.hero-chip--a {
  top: 18%;
  right: -8px;
  animation: heroFloat 4.5s ease-in-out 0.4s infinite;
}
.hero-chip--b {
  bottom: 8%;
  left: -6px;
  animation: heroFloat 5.2s ease-in-out 0.8s infinite;
}
.hero-chip--c {
  bottom: 6%;
  left: -10px;
  animation: heroFloat 4.8s ease-in-out 0.5s infinite;
}

.hero-metric {
  background: rgba(15, 30, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  color: #fff;
  padding: 16px 18px;
}
.hero-metric--main {
  margin-bottom: 12px;
  animation: heroFloat 5.5s ease-in-out infinite;
}
.hero-metric-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 6px;
}
.hero-metric--main strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #9fe8e4;
  margin-bottom: 10px;
}
.hero-sparkline {
  width: 100%;
  height: 48px;
  color: #1ea4a0;
}
.hero-metric--side {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  width: calc(100% - 36px);
  margin-left: auto;
  animation: heroFloat 4.8s ease-in-out 0.35s infinite;
}
.hero-metric--side.hero-metric--delay {
  width: calc(100% - 72px);
  animation-delay: 0.7s;
}
.hero-metric--side i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(30, 164, 160, 0.28);
  color: #9fe8e4;
  font-size: 18px;
}
.hero-metric--side strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}
.hero-metric--side span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
}
.hero-timeline {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.hero-timeline span {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 6px;
  background: rgba(15, 30, 34, 0.68);
}
.hero-timeline span.is-active {
  color: #0f172a;
  background: #9fe8e4;
  border-color: #9fe8e4;
}

.hero-social-post {
  background: rgba(15, 30, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 14px;
  color: #fff;
  animation: heroFloat 5s ease-in-out infinite;
}
.hero-social-post-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1ea4a0, #076966);
}
.hero-social-post-top strong {
  display: block;
  font-size: 13px;
}
.hero-social-post-top small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}
.hero-social-media {
  height: 150px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(30, 164, 160, 0.35), rgba(7, 105, 102, 0.2)),
    rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
  font-size: 42px;
  color: rgba(255, 255, 255, 0.7);
}
.hero-social-stats {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.hero-social-stats i {
  margin-right: 4px;
}
.hero-platform-stack {
  position: absolute;
  top: 18px;
  right: -8px;
  display: grid;
  gap: 8px;
  animation: heroFloat 4.6s ease-in-out 0.45s infinite;
}
.hero-platform-stack span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(7, 24, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 18px;
}

@keyframes heroBgDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, 0, 0);
  }
}
@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: #fff;
  width: 42px;
  height: 42px;
  background: rgba(7, 24, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.hero-swiper .swiper-button-next {
  right: 18px;
}
.hero-swiper .swiper-button-prev {
  left: auto;
  right: 68px;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 14px;
}
.hero-swiper .swiper-pagination {
  text-align: left;
  padding-left: max(16px, calc((100% - 1140px) / 2 + 12px));
  bottom: 22px;
}
.hero-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.45;
  width: 8px;
  height: 8px;
}
.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #1ea4a0;
  width: 22px;
  border-radius: 999px;
}

.about-illustration {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 16px;
  height: 420px;
  position: relative;
  overflow: visible;
}
.about-badge {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(27, 79, 216, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 22px;
}
.ab-1 {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.ab-2 {
  top: 30px;
  left: -16px;
}
.ab-3 {
  top: 30px;
  right: -16px;
}
.ab-4 {
  bottom: 30px;
  left: -16px;
}
.ab-5 {
  bottom: 30px;
  right: -16px;
}
.ab-6 {
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.stat-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

#portfolio {
  background: var(--body-bg);
}

/* Work bento grid — full image cards */
.work-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
  height: 100%;
}
.work-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.work-card:hover .work-img {
  transform: scale(1.06);
}
.work-bg-1 {
  background-image: url("images/thedestinyvision/carousel1/1.webp");
}
.work-bg-2 {
  background: linear-gradient(135deg, var(--blue), var(--sky));
}
.work-bg-3 {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.work-bg-4 {
  background: linear-gradient(135deg, var(--sky), var(--navy));
}
.work-bg-5 {
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.work-bg-6 {
  background: linear-gradient(135deg, var(--navy), var(--sky));
}
.work-bg-7 {
  background: linear-gradient(135deg, var(--sky), var(--blue));
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.25) 45%,
    rgba(15, 23, 42, 0) 75%
  );
  z-index: 1;
}

.work-card-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
}

.work-card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.3;
}

.work-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  padding: 6px 14px;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}
.work-card:hover .work-card-btn {
  background: #fff;
  border-color: #fff;
  color: var(--blue);
}

@media (max-width: 991px) {
  .work-card {
    min-height: 260px;
  }
  .work-card-footer {
    padding: 14px;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(27, 79, 216, 0.13);
}
.project-img {
  height: 200px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.project-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.project-img-title {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.project-card:hover .project-overlay {
  opacity: 1;
}
.project-body {
  padding: 14px 16px 16px;
}
.project-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.project-desc {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tag-pill {
  display: inline-block;
  background: var(--tint);
  color: var(--blue);
  font-size: 11px;
  font-weight: 500;
  border-radius: 6px;
  padding: 2px 8px;
  margin-right: 4px;
  margin-bottom: 2px;
}

#services {
  background: #fff;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  height: 100%;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(27, 79, 216, 0.1);
}
.svc-icon {
  width: 44px;
  height: 44px;
  background: var(--grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 14px;
  transition: transform 0.2s;
}
.service-card:hover .svc-icon {
  transform: scale(1.1);
}
.svc-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.svc-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.5;
  margin-bottom: 14px;
}
.svc-link {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
}
.svc-link:hover {
  text-decoration: underline;
}

#testimonials {
  background: var(--tint);
}
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}
.testi-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.testi-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.testi-role {
  font-size: 12px;
  color: var(--muted);
}
.google-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  color: var(--muted);
}
.g-letter {
  font-weight: 700;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
}
.google-rating-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
}
.g-stars {
  color: #f59e0b;
  font-size: 16px;
}
.testimonial-swiper .swiper-pagination-bullet {
  background: var(--blue);
}

#logos {
  background: #fff;
}
.logos-swiper {
  width: 100%;
  overflow: hidden;
}
.logos-swiper img {
  height: 80px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  /* opacity: 0.75; */
  /* filter: grayscale(1); */
  transition: opacity 0.2s, filter 0.2s;
}
.logos-swiper img:hover {
  opacity: 1;
  filter: none;
}

#cta-band {
  background: var(--grad);;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
}
.cta-h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}
.cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}
.btn-cta-white {
  background: #fff;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  padding: 12px 26px;
  border: none;
  transition: transform 0.2s;
}
.btn-cta-white:hover {
  transform: translateY(-2px);
  color: var(--blue);
}
.btn-cta-outline-white {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  padding: 12px 26px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-cta-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  color: #fff;
}

footer {
  position: relative;
  background: linear-gradient(165deg, #0a1628 0%, var(--navy) 45%, #0f2847 100%);
  color: var(--muted);
  padding: 0 0 0;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.footer-top-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--sky), #60a5fa, var(--blue));
  background-size: 200% 100%;
  animation: footerAccentShift 6s ease infinite;
}
@keyframes footerAccentShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.footer-container {
  position: relative;
  z-index: 1;
  padding-top: 56px;
  padding-bottom: 0;
}
.footer-brand-block {
  padding-right: 12px;
}
.footer-logo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 17px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin: 14px 0 22px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
}
.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}
.footer-newsletter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}
.footer-newsletter-form {
  display: flex;
  max-width: 340px;
}
.footer-menus-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 26px;
  height: 100%;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
.footer-menu-part {
  height: 100%;
}
@media (min-width: 576px) {
  .footer-menus-card .col-sm-6:last-child .footer-menu-part {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 24px;
  }
}
@media (max-width: 575px) {
  .footer-menus-card .col-sm-6:last-child .footer-menu-part {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}
.footer-contact-card {
  background: linear-gradient(145deg, rgba(27, 79, 216, 0.22), rgba(14, 165, 233, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 22px;
  height: 100%;
}
.footer-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-heading-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(27, 79, 216, 0.35);
  color: var(--sky);
  font-size: 16px;
  flex-shrink: 0;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li:last-child {
  margin-bottom: 0;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s, transform 0.2s;
}
.footer-links a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-links a:hover::before {
  opacity: 1;
  transform: scale(1);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.footer-contact-item:last-of-type {
  margin-bottom: 22px;
}
.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sky);
  font-size: 17px;
  flex-shrink: 0;
}
.footer-contact-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}
.footer-contact-item a {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: var(--sky);
}
.footer-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--grad);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 8px 24px rgba(27, 79, 216, 0.35);
}
.footer-cta-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 79, 216, 0.45);
}
.footer-newsletter-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px 0 0 10px;
  color: #fff;
  font-size: 13px;
  padding: 11px 14px;
  outline: none;
  flex: 1;
  transition: border-color 0.2s, background 0.2s;
}
.footer-newsletter-input:focus {
  border-color: rgba(14, 165, 233, 0.55);
  background: rgba(255, 255, 255, 0.1);
}
.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-newsletter-btn {
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 0 10px 10px 0;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.footer-newsletter-btn:hover {
  opacity: 0.9;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 48px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--sky);
}

#wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s;
}
#wa-float:hover {
  transform: scale(1.08);
}

#back-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.2s;
}
#back-top.visible {
  opacity: 1;
  pointer-events: all;
}
#back-top:hover {
  transform: translateY(-2px);
}

.py-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.btn-outline-blue {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
}

.bg-white-section {
  background: #fff;
}
.about-graphic-wrap {
  position: absolute;
  inset: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-heading-limit {
  max-width: 480px;
}
.about-copy {
  color: var(--muted2);
  font-size: 16px;
}
.about-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
}
.project-bg-1 {
  background-image: url("images/thedestinyvision/carousel1/1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  width: 100%;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.project-bg-2 {
  background: linear-gradient(135deg, #1b4fd8, #0ea5e9);
}
.project-bg-3 {
  background: linear-gradient(135deg, #0f172a, #1b4fd8);
}
.project-bg-4 {
  background: linear-gradient(135deg, #312e81, #0ea5e9);
}
.project-bg-5 {
  background: linear-gradient(135deg, #0ea5e9, #1e293b);
}
.project-bg-6 {
  background: linear-gradient(135deg, #1b4fd8, #312e81);
}
.project-bg-7 {
  background: linear-gradient(135deg, #0f172a, #0ea5e9);
}
.project-bg-8 {
  background: linear-gradient(135deg, #1e293b, #1b4fd8);
}
.project-bg-9 {
  background: linear-gradient(135deg, #0ea5e9, #312e81);
}
.google-review-title {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}
.google-letter-blue {
  color: #4285f4;
}
.google-letter-red {
  color: #ea4335;
}
.google-letter-yellow {
  color: #fbbc05;
}
.google-letter-green {
  color: #34a853;
}
.google-letter-bold {
  font-weight: 700;
}
.google-review-score {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}
.google-review-meta {
  font-size: 11px;
  color: #94a3b8;
}
.testimonial-pagination {
  position: relative;
  margin-top: 28px !important;
}
.logos-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.logos-eyebrow-muted {
  color: var(--muted);
}
.logo-slide-auto {
  width: auto;
}
.cta-content-wrap {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 28px;
    padding-bottom: 72px;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 24, 28, 0.94) 0%,
      rgba(7, 24, 28, 0.82) 42%,
      rgba(7, 24, 28, 0.55) 70%,
      rgba(7, 24, 28, 0.35) 100%
    );
  }
  .hero-visual {
    justify-content: flex-start;
  }
  .hero-visual-stage {
    width: min(100%, 380px);
    min-height: 280px;
  }
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-swiper {
    height: auto;
    min-height: 640px;
  }
  .hero-chip--a,
  .hero-chip--b,
  .hero-platform-stack {
    display: none;
  }
  .section-heading {
    font-size: 28px;
  }
  .cta-h2 {
    font-size: 28px;
  }
  .about-badge {
    display: none;
  }
}

.portfolio-logo-img img {
  height: 40px;
  width: auto;
}

.navbar-nav .nav-link.nav-active {
  color: var(--blue) !important;
  font-weight: 600;
}

.project-hero {
  height: 300px;
  /* background: linear-gradient(135deg, #1e293b 0%, #1b4fd8 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-hero.has-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 6, 12, 0.295) 0%,
    rgba(4, 12, 31, 0.514) 100%
  );
  z-index: 1;
}
.project-hero.has-banner .project-hero-geo {
  opacity: 0.04;
  z-index: 1;
}
.project-hero--asklepia-health-tech {
  background: url("images/project-hero-banners/asklepia-health-tech-hero-banner.png") center / cover no-repeat;
}
.project-hero--pitrashish {
  background: url("images/project-hero-banners/pitrashis-hero-banner.jfif") center / cover no-repeat;
}
.project-hero--bags-planet {
  background: url("images/project-hero-banners/bags-planet-hero-banner.jfif") center / cover no-repeat;
}
.project-hero--sharma-finserve {
  background: url("images/project-hero-banners/sharma-finserve-hero-banner.png") center / cover no-repeat;
}
.project-hero--gurgaon-pg {
  background: url("images/project-hero-banners/gurgaon-pg-hero-banner.png") center / cover no-repeat;
}
.project-hero--velocity-ventures {
  background: url("images/project-hero-banners/velocity-ventures-hero-banner.jfif") center / cover no-repeat;
}
.project-hero--thedestinyvision {
  background: url("images/project-hero-banners/thedestinyvision-hero-banner.jfif") center / cover no-repeat;
}
.project-hero--fabullory {
  background: url("images/project-hero-banners/fabullary-hero-banner.jfif") center / cover no-repeat;
}
.project-hero--chennai-stationery {
  background: url("images/project-hero-banners/chennai-stationery-hero-banner.jfif") center / cover no-repeat;
}
.project-hero--roy-management-group {
  background: url("images/project-hero-banners/roy-management-group-hero-banner.jfif") center / cover no-repeat;
}
.project-hero--pool-villas {
  background: url("images/project-hero-banners/pool-villas.jfif") center / cover no-repeat;
}
.project-hero--pistos-interiors {
  background: url("images/project-hero-banners/pistos-interiors-hero-banner.png") center / cover no-repeat;
}
.project-hero--ott-travels {
  background: url("images/project-hero-banners/ott-travels-hero-banner.png") center / cover no-repeat;
}
.project-hero--osteospinecare {
  background: url("images/project-hero-banners/osteospine-hero-banner.jfif") center / cover no-repeat;
}
.project-hero--swadeshi-sanchaar {
  background: url("images/project-hero-banners/hero-banner.webp") center / cover no-repeat;
}
.project-hero--foresto-interiors {
  background: url("images/project-hero-banners/hero-banner.webp") center / cover no-repeat;
}
.project-hero--bansal-classes {
  background: url("images/project-hero-banners/hero-banner.webp") center / cover no-repeat;
}
.project-hero--unzziptruth {
  background: linear-gradient(135deg, #1a0a2e 0%, #6b21a8 55%, #b45309 100%);
}
.project-hero--dimension-rendering {
  background: linear-gradient(135deg, #0f172a 0%, #334155 50%, #0ea5e9 100%);
}
.project-hero-geo {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
}
.project-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 16px;
}
.project-hero-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-tag-pill {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  padding: 4px 14px;
  margin: 0 4px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
}
.project-breadcrumb {
  margin-top: 14px;
}
.project-breadcrumb .breadcrumb {
  justify-content: center;
  margin: 0;
}
.project-breadcrumb .breadcrumb-item,
.project-breadcrumb .breadcrumb-item a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", sans-serif;
}
.project-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}
.project-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
}

/* Image-only project hero (pool-villas prototype) */
.project-page-header--image .project-hero-image {
  width: 100%;
  line-height: 0;
}
.project-page-header--image .project-hero-img {
  width: 100%;
  height: auto;
  display: block;
}
.project-breadcrumb-bar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 0;
}
.project-breadcrumb-bar-inner {
  max-width: 1140px;
}
.project-breadcrumb--bar {
  margin-top: 0;
}
.project-breadcrumb--bar .breadcrumb {
  justify-content: flex-start;
  margin: 0;
}
.project-breadcrumb--bar .breadcrumb-item,
.project-breadcrumb--bar .breadcrumb-item a {
  font-size: 13px;
  color: #64748b;
}
.project-breadcrumb--bar .breadcrumb-item a:hover {
  color: var(--blue);
}
.project-breadcrumb--bar .breadcrumb-item.active {
  color: var(--navy);
  font-weight: 500;
}
.project-breadcrumb--bar .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #94a3b8;
}

.sidebar-column {
  align-self: stretch;
}
.sidebar-sticky {
  position: sticky;
  top: 90px;
}
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-card:last-child {
  margin-bottom: 0;
}
.sb-services-header {
  background: var(--tint);
  padding: 14px 20px;
  border-radius: 12px 12px 0 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-bottom: 1px solid var(--border);
}
.sb-service-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #f1f5ff;
  transition: background 0.15s;
  cursor: pointer;
  gap: 10px;
}
.sb-service-item:last-child {
  border-bottom: none;
}
.sb-service-item:hover {
  background: #f8fafc;
}
.sb-service-item.active {
  background: var(--tint);
}
.sb-service-item.active .sb-svc-name {
  color: var(--blue);
  font-weight: 600;
}
.sb-service-item.active .sb-svc-icon {
  color: var(--blue);
}
.sb-svc-icon {
  font-size: 16px;
  color: var(--blue);
  flex-shrink: 0;
}
.sb-svc-name {
  font-size: 14px;
  color: var(--text);
  flex: 1;
}
.sb-svc-arrow {
  font-size: 14px;
  color: var(--muted);
  margin-left: auto;
}

.sb-contact-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.sb-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 10px;
}
.sb-contact-item i {
  color: var(--blue);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}
.btn-sidebar-cta {
  display: block;
  width: 100%;
  background: var(--grad);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  border: none;
  margin-top: 16px;
  transition: opacity 0.2s;
}
.btn-sidebar-cta:hover {
  opacity: 0.88;
  color: #fff;
}

.sb-preview-img {
  width: 100%;
  height: 180px;
  background-image: url("images/thedestinyvision/carousel1/1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.3px;
}
.sb-preview-img.pistos-interiors {
  background-image: url("images/pistos-interiors/carousel-designs/1/1.webp");
}
.sb-preview-img.gurgaon-pg {
  background-image: url("images/gurgaon-pg/website/homepage.webp");
}
.sb-preview-img.pool-villas {
  background-image: url("images/pool-villas/carousel-designs/carousel-1/1.jpg");
}
.sb-preview-img.pitrashish {
  background-image: url("images/pitrashish/website/1.jpg");
}
.sb-preview-img.osteospinecare {
  background-image: url("images/osteospinecare/website/1.jpg");
}
.sb-preview-img.bags-planet {
  background-image: url("images/bags-planet/website/home.webp");
}
.sb-preview-img.sharma-finserve {
  background-image: url("images/sharma-finserve/website/home.webp");
}
.sb-preview-img.chennai-stationery {
  background-image: url("images/chennai-stationery/product-creatives/1.webp");
}
.sb-preview-img.fabullory {
  background-image: url("images/fabullory/creative-designs/creative-deisgn-2/1.jpg");
}
.sb-preview-img.ott-travels {
  background-image: url("images/ott-travels/carousel-designs/carousel-1/1.webp");
}
.sb-preview-img.swadeshi-sanchaar {
  background-image: url("images/swadeshi-sanchaar/profile-management/swadeshi-screenshot.png");
}
.sb-preview-img.foresto-interiors {
  background-image: url("images/foresto-interiors/post-designs/1.webp");
}
.sb-preview-img.bansal-classes {
  background-image: url("images/bansal-classes/post-designs/1.jpg");
}
.sb-preview-img.unzziptruth {
  background-color: #1a0a2e;
  background-image: url("images/logos/unzziptruth.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sb-preview-img.dimension-rendering {
  background-color: #0f172a;
  background-image: url("images/logos/dimension-rendering.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sb-preview-caption {
  padding: 14px 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.sb-gallery-link {
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
  display: inline-block;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.sb-gallery-link:hover {
  opacity: 0.75;
  color: var(--blue);
}

.content-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.content-divider-small {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.content-section {
  margin-bottom: 10px;
}

.eyebrow-label {
  display: inline-block;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-family: "Inter", sans-serif;
  margin-bottom: 14px;
}
.cs-h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.overview-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.overview-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.overview-value a {
  color: var(--blue);
}
.overview-value a:hover {
  text-decoration: underline;
}

.cs-h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.cs-body {
  font-size: 15px;
  color: var(--muted2);
  line-height: 1.75;
  margin-bottom: 0;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.mini-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.mini-card:hover {
  border-color: rgba(27, 79, 216, 0.25);
  box-shadow: 0 4px 16px rgba(27, 79, 216, 0.08);
}
.mini-card-icon {
  font-size: 24px;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: inline-block;
}
.mini-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.mini-card-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.5;
  margin: 0;
}

.gmb-showcase {
  display: block;
  position: relative;
  margin-top: 22px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.gmb-showcase:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}
.gmb-showcase-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.gmb-showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.08),
    rgba(15, 23, 42, 0.84)
  );
}
.gmb-showcase-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 12px;
  backdrop-filter: blur(8px);
}
.gmb-showcase-content {
  max-width: 420px;
  background: rgba(15, 23, 42, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(10px);
}
.gmb-showcase-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
}
.gmb-showcase-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.gmb-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(30, 164, 160, 0.92),
    rgba(7, 105, 102, 0.92)
  );
  box-shadow: 0 10px 24px rgba(7, 105, 102, 0.28);
}
.gmb-showcase-link::after {
  content: "↗";
  font-size: 12px;
}

.gmb-tabs {
  margin-top: 20px;
}
.gmb-tab-nav {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gmb-tab-nav::-webkit-scrollbar {
  display: none;
}
.gmb-tab-btn {
  flex: 1 1 0;
  min-width: max-content;
  border: none;
  background: transparent;
  color: var(--muted2);
  font-size: 13px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.gmb-tab-btn:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.65);
}
.gmb-tab-btn.active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 2px 10px rgba(27, 79, 216, 0.12);
}
.gmb-tab-panel {
  display: none;
  animation: gmbTabFade 0.25s ease;
}
.gmb-tab-panel.active {
  display: block;
}
@keyframes gmbTabFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gmb-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gmb-image-grid:has(.gmb-image-item:only-child) {
  grid-template-columns: 1fr;
}
.gmb-image-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: zoom-in;
}
.gmb-image-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}
.gmb-image-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* aspect-ratio: 16 / 10; */
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.stat-card {
  background: var(--tint);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}
.stat-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.stat-time {
  font-size: 11px;
  color: var(--muted);
}

.creative-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.creative-carousel-header .cs-h4 {
  margin-bottom: 0;
}
.creative-carousel-nav {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.creative-carousel-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    opacity 0.2s;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.creative-carousel-arrow:hover:not(:disabled) {
  background: var(--tint);
  border-color: rgba(27, 79, 216, 0.25);
  color: var(--blue);
}
.creative-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.creative-carousel {
  position: relative;
}
.creative-carousel-header:has(+ .creative-carousel--slider) .creative-carousel-nav {
  display: flex;
}
.creative-carousel--slider .creative-grid {
  display: flex;
  columns: unset;
  column-gap: unset;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 16px;
  margin-top: 14px;
  padding-bottom: 4px;
}
.creative-carousel--slider .creative-grid::-webkit-scrollbar {
  display: none;
}
.creative-carousel--slider .creative-tile {
  break-inside: unset;
  flex: 0 0 85%;
  scroll-snap-align: start;
  height: 260px;
  margin-bottom: 0;
}
.creative-carousel--slider .creative-tile-img {
  object-fit: contain;
  background: #f8fafc;
}
@media (min-width: 768px) {
  .creative-carousel--slider .creative-tile {
    flex: 0 0 calc((100% - 32px) / 3);
    height: 300px;
  }
}
.creative-grid {
  columns: 3;
  column-gap: 10px;
  margin-top: 20px;
}
.creative-tile {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 10px;
  height: 300px;
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
  overflow: hidden;
  position: relative;
}
@media (min-width: 367px) and (max-width: 787px) {
  .creative-tile {
    height: 450px;
  }
  .creative-tile {
    flex: 0 0 78%;
    flex-basis: 84%;
    max-width: 90%;
    scroll-snap-align: start;
    margin-bottom: 0;
    height: 400px;
  }
  .video-frame {
    aspect-ratio: 9 / 16;
    height: auto;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
}
.creative-tile:hover {
  opacity: 0.9;
  transform: scale(1.01);
}
.creative-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.creative-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 28px 14px 12px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.72));
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.creative-gallery-hidden {
  display: none;
}
.creative-caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

/* GLightbox — prev/next arrows visible on mobile for Creative Set popups */
@media (max-width: 767px) {
  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    opacity: 1;
  }
  .glightbox-clean .gprev {
    left: 10px;
  }
  .glightbox-clean .gnext {
    right: 10px;
  }
  .glightbox-clean .gprev path,
  .glightbox-clean .gnext path {
    fill: var(--navy) !important;
  }
  .glightbox-clean .gprev.disabled,
  .glightbox-clean .gnext.disabled {
    opacity: 0.3;
  }
}

.feed-showcase {
  margin-top: 18px;
}
.feed-placeholder {
  width: 100%;
  min-height: 420px;
  background-image: url("images/thedestinyvision/thedestinyvision-instagram-short.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 18px;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  margin-top: 16px;
}
.feed-placeholder.asklepia-health-tech {
  background-image: url("images/asklepia-health-tech/profile-optimization/1.jfif");
}
.feed-placeholder.pistos-interiors {
  background-image: url("images/pistos-interiors/profile-management/1.png");
}
.feed-placeholder.gurgaon-pg {
  background-image: url("images/gurgaon-pg/creative-designs/carousel1/1.jpg");
}
.feed-placeholder.chennai-stationery {
  background-image: url("images/chennai-stationery/profile-management-feed-overview/Screenshot%202026-06-20%20170714.png");
}
.feed-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.18) 0%,
    rgba(15, 23, 42, 0.86) 100%
  ); */
}
.feed-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}
.feed-overlay {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
}
.feed-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 12px;
  backdrop-filter: blur(10px);
}
.feed-overlay-content {
  max-width: 440px;
  background: rgba(15, 23, 42, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(10px);
}
.feed-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 6px;
}
.feed-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
}
.feed-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 30rem;
}
.feed-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.feed-stat {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.feed-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 8px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(30, 164, 160, 0.92),
    rgba(7, 105, 102, 0.92)
  );
  box-shadow: 0 10px 24px rgba(7, 105, 102, 0.28);
}
.feed-link::after {
  content: "↗";
  font-size: 12px;
}

.video-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.video-thumb-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.video-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-frame--post {
  aspect-ratio: 1 / 1;
  max-width: 360px;
  margin: 0 auto;
}
.video-row--ig-posts .video-thumb-wrap {
  max-width: 360px;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.ytmVideoInfoVideoTitle {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  line-height: 1.4 !important;
}
.video-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.video-dur {
  font-size: 12px;
  color: var(--muted);
}

.citation-table {
  width: 100%;
  border-collapse: collapse;
}
.citation-table thead th {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--tint);
}
.citation-table tbody tr {
  border-bottom: 1px solid #f1f5ff;
  transition: background 0.15s;
}
.citation-table tbody tr:last-child {
  border-bottom: none;
}
.citation-table tbody tr:hover {
  background: #f8fafc;
}
.citation-table td {
  padding: 12px 14px;
  font-size: 14px;
  color: var(--muted2);
}
.citation-table td:first-child {
  color: var(--navy);
  font-weight: 500;
}
.status-badge {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  padding: 3px 10px;
}
.citation-table a.view-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.citation-table a.view-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.related-section {
  background: var(--body-bg);
  padding: 60px 0;
}
.related-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 36px;
}

@media (max-width: 575px) {
  .project-hero-title {
    font-size: 28px;
  }
  .project-hero {
    height: auto;
    min-height: 280px;
    padding: 40px 0;
  }
  .mini-card-grid {
    grid-template-columns: 1fr;
  }
  .feed-placeholder,
  .feed-overlay {
    min-height: 360px;
  }
  .feed-overlay {
    padding: 18px;
  }
  .feed-text {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .creative-carousel-nav {
    display: flex;
  }
  .creative-carousel-header {
    margin-bottom: 0;
  }
  .creative-grid {
    display: flex;
    columns: unset;
    column-gap: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    margin-top: 14px;
    padding-bottom: 4px;
  }
  .creative-grid::-webkit-scrollbar {
    display: none;
  }
  
  .video-row {
    grid-template-columns: 1fr;
  }
  .video-frame {
    aspect-ratio: 9 / 16;
    height: auto;
    max-width: 320px;
    margin: 0 auto;
  }
  .cta-h2 {
    font-size: 26px;
  }
  .related-heading {
    font-size: 24px;
  }
  .gmb-tab-btn {
    flex: 0 0 auto;
    font-size: 12px;
    padding: 9px 12px;
  }
  .gmb-image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .sidebar-column {
    align-self: auto;
  }
  .sidebar-sticky {
    position: static;
  }
}
.footer-logo-img img {
  height: 52px;
  padding: 6px;
  background-color: #fff;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.footer-logo-img:hover img {
  transform: translateY(-2px);
}

/* ── Homepage: Intro, Compare, Process, Services Detail, Portfolio Cards ── */
.intro-section {
  padding-top: 48px;
  padding-bottom: 48px;
}
.intro-h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.intro-sub {
  font-size: 16px;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 720px;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table thead th {
  background: var(--tint);
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--muted2);
  vertical-align: middle;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
}
.compare-yes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #059669;
  font-weight: 600;
}
.compare-yes::before {
  content: "✓";
  font-weight: 700;
}
.compare-no {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dc2626;
  font-weight: 500;
}
.compare-no::before {
  content: "✕";
  font-weight: 700;
}

.process-steps {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 8px;
}
.process-track {
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--blue));
  opacity: 0.22;
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 6px;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: transform 0.2s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: none;
}
.process-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--card-bg), 0 8px 20px rgba(27, 79, 216, 0.18);
}
.process-body {
  width: 100%;
}
.process-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}
.process-desc {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.55;
  margin: 0;
}

.service-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-detail-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(27, 79, 216, 0.1);
}
.service-detail-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-detail-desc {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.7;
  margin: 0;
}

.project-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.project-card-link:hover {
  color: inherit;
}
.project-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.project-card:hover .project-img-cover {
  transform: scale(1.05);
}
.project-img {
  height: 220px;
}
.project-status {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 10px;
  backdrop-filter: blur(6px);
}
.status-completed {
  background: rgba(5, 150, 105, 0.92);
  color: #fff;
}
.status-ongoing {
  background: rgba(27, 79, 216, 0.92);
  color: #fff;
}
.status-scaling {
  background: rgba(245, 158, 11, 0.92);
  color: #fff;
}
.status-launched {
  background: rgba(14, 165, 233, 0.92);
  color: #fff;
}
.status-hold {
  background: rgba(100, 116, 139, 0.92);
  color: #fff;
}
.project-media-placeholder {
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}
.project-media-placeholder i {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
  color: #94a3b8;
}
.project-hero-image--placeholder {
  background: linear-gradient(135deg, #1e293b 0%, #7c3aed 100%);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-hero-placeholder {
  text-align: center;
  color: #fff;
  padding: 32px 16px;
}
.project-hero-placeholder i {
  font-size: 40px;
  margin-bottom: 12px;
  opacity: 0.9;
}
.project-hero-placeholder span {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}
.project-hero-placeholder small {
  font-size: 13px;
  opacity: 0.8;
}
.bento-img--placeholder {
  background: linear-gradient(135deg, #1e293b 0%, #7c3aed 100%);
  object-fit: cover;
}
.bento-img--logo {
  object-fit: contain;
  padding: 24px;
  background: linear-gradient(135deg, #1a0a2e 0%, #4c1d95 100%);
}
.bento-img--logo-dark {
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
}
.project-hero--the-pakshi {
  background: linear-gradient(135deg, #1e293b 0%, #7c3aed 100%);
}
.project-img-fallback {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.project-img-fallback-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.project-img-fallback-inner i {
  font-size: 36px;
  opacity: 0.85;
}
.project-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.project-highlights {
  font-size: 13px;
  color: var(--muted2);
  padding-left: 18px;
  margin: 0 0 10px;
  line-height: 1.6;
}
.project-highlights li {
  margin-bottom: 2px;
}
.project-result {
  font-size: 13px;
  color: var(--navy);
  background: var(--tint);
  border-radius: 8px;
  padding: 10px 12px;
  line-height: 1.55;
  margin-bottom: 12px;
}
.project-view-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.project-card:hover .project-view-link {
  text-decoration: underline;
}

.visibility-copy {
  font-size: 15px;
  color: var(--muted2);
  line-height: 1.75;
  text-align: center;
}

@media (max-width: 991px) {
  .process-steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding: 8px 4px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .process-track {
    display: none;
  }
  .process-step {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 14px;
  }
  .process-step:hover {
    border-color: rgba(27, 79, 216, 0.35);
    box-shadow: 0 8px 24px rgba(27, 79, 216, 0.08);
  }
  .process-num {
    width: 42px;
    height: 42px;
    box-shadow: 0 0 0 4px var(--card-bg), 0 6px 16px rgba(27, 79, 216, 0.15);
  }
}

@media (max-width: 575px) {
  .process-step {
    flex: 0 0 78vw;
  }
  .project-img {
    height: 200px;
  }
}

/* ============================================================
   PORTFOLIO — Bento Grid, Filters & Quick View Modal
   (new creative layout, doesn't touch old .project-card / .work-card
   classes in case sub-pages still rely on them)
   ============================================================ */

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 16px 8px 18px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filter-pill span {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--tint);
  border-radius: 10px;
  padding: 1px 7px;
  min-width: 20px;
  text-align: center;
}
.filter-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.filter-pill.active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}
.filter-pill.active span {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.portfolio-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 18px;
}
.bento-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  isolation: isolate;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.bento-card.span-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-card.span-2x1 {
  grid-column: span 2;
}
.bento-card.is-filtering-out {
  opacity: 0;
  transform: scale(0.92);
}
.bento-card.is-hidden {
  display: none;
}

.bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bento-card:hover .bento-img {
  transform: scale(1.08);
}
.bento-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.bento-fallback i {
  font-size: 42px;
  color: rgba(255, 255, 255, 0.5);
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8, 16, 32, 0.92) 0%,
    rgba(8, 16, 32, 0.35) 45%,
    rgba(8, 16, 32, 0) 72%
  );
  transition: background 0.3s ease;
}

.bento-status {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 10px;
  backdrop-filter: blur(6px);
}

.bento-quickview {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.bento-card:hover .bento-quickview {
  opacity: 1;
  transform: translateY(0);
}
.bento-quickview:hover {
  background: #fff;
  color: var(--blue);
}

.bento-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px 18px;
  display: block;
}
.bento-industry {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 3px;
}
.bento-name {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  line-height: 1.25;
}
.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.35s ease;
}
.bento-card:hover .bento-tags {
  max-height: 60px;
  opacity: 1;
  margin-top: 8px;
}
.bento-tags span {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  padding: 3px 10px;
}

@media (hover: none) {
  .bento-quickview {
    opacity: 1;
    transform: none;
  }
  .bento-tags {
    max-height: 60px;
    opacity: 1;
    margin-top: 8px;
  }
}

@media (max-width: 991px) {
  .portfolio-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }
}
@media (max-width: 575px) {
  .portfolio-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
    gap: 14px;
  }
  .bento-card.span-2x2,
  .bento-card.span-2x1 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .portfolio-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    margin-bottom: 24px;
  }
  .filter-pill {
    flex-shrink: 0;
  }
}

/* Quick View Modal */
.case-quickview-modal .modal-content {
  border: none;
  border-radius: 18px;
  overflow: hidden;
}
.case-quickview-modal .qv-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.qv-media {
  height: 260px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qv-media i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.5);
}
.qv-body {
  padding: 26px 28px 30px;
}
.qv-industry {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.qv-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
}
.qv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.qv-highlights {
  font-size: 14px;
  color: var(--muted2);
  padding-left: 20px;
  margin: 0 0 16px;
  line-height: 1.7;
}
.qv-result {
  font-size: 14px;
  color: var(--navy);
  background: var(--tint);
  border-radius: 10px;
  padding: 12px 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.qv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--grad);
  border-radius: 30px;
  padding: 10px 20px;
}
@media (max-width: 575px) {
  .qv-body {
    padding: 20px;
  }
  .qv-media {
    height: 180px;
  }
}
/* -- Proposal Modal -- */
.proposal-modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
}
.proposal-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 18px;
  background: linear-gradient(135deg, #076966, #1ea4a0);
  color: #fff;
}
.proposal-modal-eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.proposal-modal-title {
  margin: 0 0 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.proposal-modal-sub {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 420px;
}
.proposal-modal-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.proposal-modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.proposal-modal-body {
  padding: 24px 28px 28px;
  background: #fff;
}
.proposal-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.proposal-label span {
  color: #dc2626;
}
.proposal-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.proposal-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 164, 160, 0.15);
}
.proposal-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 256 256'%3E%3Cpath fill='%23475569' d='M213.66 101.66l-80 80a8 8 0 0 1-11.32 0l-80-80a8 8 0 0 1 11.32-11.32L128 164.69l74.34-74.35a8 8 0 0 1 11.32 11.32Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.proposal-textarea {
  resize: vertical;
  min-height: 110px;
}
.proposal-modal-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.btn-proposal-primary {
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-proposal-primary:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
}
.btn-proposal-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-proposal-secondary {
  background: #fff;
  color: var(--muted2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
}
.btn-proposal-secondary:hover {
  background: var(--body-bg);
  color: var(--text);
}
.proposal-form-status {
  margin-top: 16px;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
}
.proposal-form-status.is-success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.proposal-form-status.is-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
@media (max-width: 575px) {
  .proposal-modal-header,
  .proposal-modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }
  .proposal-modal-title {
    font-size: 22px;
  }
  .proposal-modal-actions {
    flex-direction: column-reverse;
  }
  .btn-proposal-primary,
  .btn-proposal-secondary {
    width: 100%;
  }
}
