:root {
  --header-bg: rgba(255,255,255,0.22);
  --header-bg-scrolled: rgba(255,255,255,0.52);
  --header-blur: blur(24px) saturate(1.8);
  --header-blur-scrolled: blur(32px) saturate(2);
  --header-border: 1px solid rgba(255,255,255,0.45);
  --header-border-scrolled: 1px solid rgba(255,255,255,0.60);
  --header-shadow: 0 2px 24px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.55);
  --header-shadow-scrolled: 0 4px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.65);
  --header-radius: 9999px;
  --transition-speed: 300ms;
  --color-pink-start: #f43f5e;
  --color-pink-mid: #ec4899;
  --color-pink-end: #c026d3;
  --text-black: #000;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}


body {
  font-family: 'Montserrat', sans-serif;
  max-width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

.font-clash { font-family: 'Clash Display', sans-serif; }
.text-black { color: var(--text-black); }

/* Clip both axes — prevents AOS translate and absolute elements from causing scroll */
section {
  overflow: hidden;
}

/* About page sections */
.banner-section,
.about-section,
.principles-section,
.process-section,
.testimonial-section,
.values-section,
.story-section,
.cta-section {
  overflow: hidden;
}

/* ── Header ── */
.header-section .header-glass {
  background: var(--header-bg);
  backdrop-filter: var(--header-blur);
  -webkit-backdrop-filter: var(--header-blur);
  border: var(--header-border);
  box-shadow: var(--header-shadow);
}

/* ── Hero ── */
.hero-section .hero-bg {
  background: linear-gradient(
    130deg,
    rgba(252,228,236,0.92) 0%,
    rgba(255,214,200,0.88) 25%,
    rgba(253,232,245,0.85) 55%,
    rgba(237,224,255,0.82) 80%,
    rgba(220,212,255,0.80) 100%
  );
}
.hero-section .hero-glow {
  background: radial-gradient(ellipse 60% 50% at 60% 50%, rgba(236,72,153,0.18) 0%, transparent 70%);
}
.hero-section .hero-right-glow {
  background: radial-gradient(circle at center, rgba(249,115,22,0.35) 0%, rgba(236,72,153,0.25) 40%, transparent 70%);
}
.hero-section .text-grad-pink {
  background: linear-gradient(90deg, var(--color-pink-start) 0%, var(--color-pink-mid) 40%, var(--color-pink-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

span.hero-banner-hd {
    background: linear-gradient(90deg, #C626A3 0%, #FC888B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
span.hero-banner-subhd {
    background: linear-gradient(90deg, #1F1B1E 0%, #7B6E6F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Intelligence ── */
.intelligence-section {
  background: #ffffff;
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 60%, rgba(251, 222, 253, 1) 100%);  
}
.intelligence-section .text-grad-pink {
  background: linear-gradient(90deg, var(--color-pink-start) 0%, var(--color-pink-mid) 40%, var(--color-pink-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intelligence-section .text-grad-stat {
  background: linear-gradient(90deg, #FC888B 0%, #C626A3 100%) !important;
background-clip: text !important;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.intelligence-section .intel-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
}
.intelligence-section .intel-card__visual {
  flex: 1;
  padding: 20px 20px 12px;
  display: flex;
  flex-direction: column;
}
.intelligence-section .intel-card__stat {
  padding: 12px 20px 20px;
}
.intelligence-section .intel-stat-num {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}
.intelligence-section .intel-stat-label {
    font-size: 35px;
    font-weight: 500;
    line-height: 1;
    margin-top: 4px;
}

/* Card 1 – app mockup */
.intelligence-section .intel-app-mockup {
  background: #f5f4fb;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.intelligence-section .intel-app-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 12px;
  border: 1px solid #ededf5;
}
.intelligence-section .intel-app-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
}
.intelligence-section .intel-app-name {
  flex: 1;
  font-size: 11px;
  color: #374151;
  font-weight: 500;
}
.intelligence-section .intel-app-val {
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
}

/* Card 2 – bar chart */
.intelligence-section .intel-chart-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 10px;
}
.intelligence-section .intel-chart-body {
  display: flex;
  gap: 14px;
  align-items: stretch;
  flex: 1;
}
.intelligence-section .intel-chart-img {
  width: 100%;
  height: 100%;
  max-height: 250px;
  object-fit: contain;
  object-position: center;
  display: block;
}
.intelligence-section .intel-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  flex: 1;
  height: 100px;
}
.intelligence-section .intel-bar {
  flex: 1;
  background: #bfdbfe;
  border-radius: 3px 3px 0 0;
}
.intelligence-section .intel-bar--mid { background: #60a5fa; }
.intelligence-section .intel-bar--dark { background: #2563eb; }
.intelligence-section .intel-metrics {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.intelligence-section .intel-metric {
  display: flex;
  align-items: center;
  gap: 5px;
}
.intelligence-section .intel-metric__name {
  font-size: 9px;
  color: #9ca3af;
  min-width: 52px;
}
.intelligence-section .intel-metric__val {
  font-size: 10px;
  font-weight: 700;
  color: #374151;
}
.intelligence-section .intel-metric__tag {
  font-size: 8px;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 4px;
}
.intelligence-section .intel-metric__tag--green { background: #dcfce7; color: #16a34a; }
.intelligence-section .intel-metric__tag--pink  { background: #fce7f3; color: #be185d; }
.intelligence-section .intel-metric__tag--blue  { background: #dbeafe; color: #1d4ed8; }

/* Card 3 – pink planning */
.intelligence-section .intel-card--pink {
border: 1px solid #FC888B;
background: linear-gradient(180deg, #FC888B 0%, #C626A3 100%);
  display: flex;
  flex-direction: column;
  min-height: 250px;
}
.intelligence-section .intel-card__visual--row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.intelligence-section .intel-planning-heading {
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
}
.intelligence-section .intel-dash-widget {
  background: rgba(0,0,0,0.30);
  border-radius: 12px;
  padding: 12px 10px 8px;
  width: 88px;
  flex-shrink: 0;
}
.intelligence-section .intel-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}
.intelligence-section .intel-dash-bar {
  flex: 1;
  background: rgba(255,255,255,0.25);
  border-radius: 2px 2px 0 0;
}
.intelligence-section .intel-dash-bar--accent { background: #facc15; }
.intelligence-section .intel-card__stat--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.intelligence-section .intel-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.intelligence-section .intel-score-arc {
  width: 52px;
  height: 30px;
}
.intelligence-section .intel-score-num {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.intelligence-section .intel-score-denom {
  font-size: 10px;
  opacity: 0.65;
}


/* ── Primary Button ── */
.primary-btn {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.primary-btn:hover {
  box-shadow: 0 6px 28px rgba(198, 38, 163, 0.30);
}
.primary-btn:active {
  box-shadow: none;
}
.primary-btn .btn-label {
  background: #111111;
  color: #ffffff;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Shine sweep on label */
.primary-btn .btn-label::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transition: left 0.45s ease;
}
.primary-btn:hover .btn-label::after {
  left: 160%;
}
.primary-btn .btn-arrow {
  background: #C626A3;
  color: #ffffff;
  padding: 13px 18px;
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}
.primary-btn:hover .btn-arrow {
  background: #FC888B;
background: linear-gradient(90deg,rgba(252, 136, 139, 1) 0%, rgba(198, 38, 163, 1) 100%);
}
/* Arrow icon slides right on hover */
.primary-btn .btn-arrow i {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* ── Featured ── */
.featured-bg {
  background: linear-gradient(130deg, #fff0f6 0%, #fce8ff 40%, #ede4ff 70%, #e0f0ff 100%);
}


/* ── Services carousel ── */
#svc-track { user-select: none; -webkit-user-select: none; touch-action: pan-y; }
#svc-track img { pointer-events: none; }

.svc-track-wrapper {
  position: relative;
}
.svc-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.services-section:hover .svc-nav-btn {
  opacity: 1;
  pointer-events: auto;
}
.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  padding: 0;
}
.svc-dot--active {
  width: 28px;
  background: linear-gradient(90deg, #ff4d8d, #ff7a59);
}

/* ── Utilities ── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ── Footer – handled entirely by Tailwind inline classes ── */
.container {
  max-width: 1726px !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  
}
.hero-left-image {
  position: absolute;
  left: -5%;
  bottom: 10%;
  transform: translate(-18%, 12%);
  width: 520px;
  z-index: 5;
}
.stroke-text {
  -webkit-text-stroke: 1.5px rgba(255, 77, 141, 0.85);
  color: transparent;
  background: linear-gradient(90deg, #ff4d8d, #ff7a59);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255, 77, 141, 0.35));
}
.more-btn {
  border: 1px dashed #FC888B;
}
.more-btn i {
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
  font-size: 20px;
}
.more-btn:hover i{
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
h3.counter {
    font-weight: 700;
    color: #0f0f0f;
    -webkit-text-stroke: 1px #d946ef;
    text-shadow: 0 0 4px rgba(216, 70, 239, 0.144),
    0 0 10px rgba(217, 70, 239, 0.25);
}
.counter-sec {
  position: relative;
}
.counter-sec:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: 0F0F10(0, 0, 0, 2.8);
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 15, 16, 1) 99%);
    height: 100%;
    z-index: 9;
    width: 100%;
}

/* CARD BASE */
.product-card {
  border-radius: 20px;
  padding: 2px;
  background: #fcfcfc;
}

/* INNER CARD */
.product-card-inner {
  background: #ffffff;
  border-radius: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 6px 14px rgba(0,0,0,0.04);
}

@media (min-width: 1024px) {
  .product-card      { border-radius: 28px; }
  .product-card-inner{ border-radius: 26px; }
  .product-media     { border-radius: 0 0 26px 26px; }
}

/* IMAGE AREA */
.product-media {
  margin-top: auto;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  display: block;
}
.product-media img {
    object-position: top;
    max-height: 500px;
}

/* HOVER EFFECT (very subtle like design) */
.product-card-inner:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 10px 24px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}


.portfolio-filter {
  background: transparent;
  border: none;
  border-bottom: 1px solid #dcdcdc;
  font-size: 13px;
  padding: 6px 20px 6px 0;
  color: #444;
  outline: none;
  cursor: pointer;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.portfolio-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.36s ease;
}
@media (min-width: 360px) {
  .portfolio-image img { height: 230px; }
}
@media (min-width: 480px) {
  .portfolio-image img { height: 350px; }
}
@media (min-width: 640px) {
  .portfolio-image img { height: 230px; }
}

@media (min-width: 768px) {
  .portfolio-image img { height: 250px; }
}
@media (min-width: 990px) {
  .portfolio-image img { height: 340px; }
}
@media (min-width: 1024px) {
  .portfolio-image img { height: 250px; }
}
@media (min-width: 1280px) {
  .portfolio-image img { height: 420px; }
}
@media (min-width: 1480px) {
  .portfolio-image img { height: 380px; }
}
.portfolio-card:hover .portfolio-image img {
  transform: scale(1.04);
}



.portfolio-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 15px 15px;

}

.portfolio-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.portfolio-tags span {
  font-size: 12px;
  background:  transparent;
  padding: 4px 12px;
  border-radius: 999px;
  color: #252525;
  font-weight: 600;
  border: 1px solid #e0e0e0;
}

.portfolio-content h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .portfolio-content h3 { font-size: 20px; }
}

@media (min-width: 1024px) {
  .portfolio-content h3 { font-size: 24px; }
}

.portfolio-content p {
  font-size: 13px;
  color: #534E4E;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .portfolio-content p { font-size: 14px; }
}

@media (min-width: 1024px) {
  .portfolio-content p { font-size: 16px; }
}

/* ── Logo marquee ── */
.logo-marquee-track {
  overflow: hidden;
  width: 100%;
}

.logo-marquee-row {
  display: flex;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.logo-marquee-set {
  display: flex;
  align-items: center;
}

.logo-marquee-set img {
  height: 32px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 40px;
  /* filter: brightness(0) invert(1);
  opacity: 0.85; */
  transition: opacity 0.2s ease;
}

@media (min-width: 768px) {
  .logo-marquee-set img { height: 42px; margin-right: 60px; }
}

@media (min-width: 1024px) {
  .logo-marquee-set img { height: 52px; margin-right: 80px; }
}

.logo-marquee-set img:hover {
  opacity: 1;
}


/* Portfolio Detail Hero Refinement */

.portfolio-detail-hero {
  background: #f4f4f4;
}

.portfolio-hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Optional subtle edge softness (matches Figma feel) */
.portfolio-hero-image-wrapper img {
  display: block;
}
/* Keep minimal & scoped */

.portfolio-image-grid img {
  display: block;
}
.solution-section h2 {
  letter-spacing: -0.5px;
}

.contact-section input,
.contact-section textarea,
.contact-section select {
  border-radius: 2px;
}

.contact-section h2 {
  letter-spacing: -0.5px;
}
/* JOIN CARD MICRO DETAIL */
.join-card {
  background: radial-gradient(circle at 50% 80%, rgba(255,255,255,0.08), transparent 60%);
}
/* TEAM CARD */
.team-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}

/* IMAGE (cutout feel) */
.team-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

/* GRADIENT */
.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

/* TEXT */
.team-content {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  color: #fff;
}

.team-content h4 {
  font-size: 22px;
  font-weight: 600;
}

.team-content p {
  font-size: 14px;
}

/* ── Team grid rows ── */
.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.team-row > .team-card {
  width: calc(50% - 8px); /* 2 per row on mobile */
}
@media (min-width: 640px) {
  .team-row {
    gap: 22px;
  }
  .team-row > .team-card {
    width: calc(25% - 17px); /* 4 per row on sm+ */
  }
}
@media (min-width: 1024px) {
  .team-row-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .team-row-2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
  }
  .team-row-1 > .team-card,
  .team-row-2 > .team-card {
    width: auto;
  }
}

@media (max-width: 1023px) {
  .team-card        { height: 220px; }
  .team-content h4  { font-size: 15px; }
  .team-content p   { font-size: 11px; }
}
@media (max-width: 639px) {
  .team-card        { height: 200px; }
  .team-content h4  { font-size: 14px; }
}

@keyframes life-float-left {
  0%, 100% { transform: rotate(-12deg) translateY(0px) scale(1);    }
  50%       { transform: rotate(-8deg)  translateY(-22px) scale(1.08); }
}
@keyframes life-float-right {
  0%, 100% { transform: rotate(12deg) translateY(0px) scale(1);    }
  50%       { transform: rotate(8deg)  translateY(-20px) scale(1.08); }
}
@keyframes icon-bob {
  0%, 100% { transform: translateY(0px) rotate(0deg);    }
  40%       { transform: translateY(-14px) rotate(4deg); }
  70%       { transform: translateY(-7px) rotate(-2deg); }
}

.life-img-left {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 140px;
  height: 180px;
  overflow: hidden;
  border-radius: 20px;
  animation: life-float-left 5s ease-in-out infinite;
  will-change: transform;
}

.life-img-right {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 170px;
  height: 220px;
  overflow: hidden;
  border-radius: 20px;
  animation: life-float-right 6s ease-in-out infinite;
  will-change: transform;
}

.team-lft-icon {
  animation: icon-bob 4s ease-in-out infinite;
  will-change: transform;
}
.fun-big {
  grid-row: span 2;
  height: 100%;
}

.fun-big img {
  height: 100%;
}
section.team-story-section::before {
  content: '';
  background: #FFF5FD;
  height: 20%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
section.portfolio-detail-overview ul {
    padding-left: 20px;
    margin-top: 20px;
}
section.portfolio-detail-overview li {
    list-style: disc !important;
    font-size: 16px;
    margin: 5px 0;
    font-weight: 500;
    color: #534E4E;
}
label.contact-error {
    font-size: 12px;
    color: red;
}
.sweet-alert p {
    margin-bottom: 10px !important;
}
/* Responsiveness */

/* container-section-start */

@media (min-width: 1536px) {
    .container {
        max-width: 1726px !important;
    }
}

/* ≥ 640px (sm) */
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

/* ≥ 768px (md) */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

/* ≥ 1024px (lg) */
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

/* ≥ 1280px (xl) */
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* ≥ 1536px (2xl) */
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

/* ≥ 1728px (custom large screens) */
@media (min-width: 1728px) {
  .container {
    max-width: 1726px;
  }
}

/* ≥ 1920px (full HD & above) */
@media (min-width: 1920px) {
  .container {
    max-width: 1840px;
  }
}

/* container-section-end */

section.products-section {
  position: relative;
}
section.products-section::before {
  content: '';
  background: #f3f3f3;
  height: 20%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
footer {
  border: 1px solid #C2C2C2;
}
.sweet-alert button {
  background-color: #C626A3 !important;
  color: #fff !important;
}
.feature-bg {
  border-radius: 0 28px 28px 0;
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST OVERRIDES
   ════════════════════════════════════════════ */

/* ── Mobile nav dropdown transition ── */
#mobile-menu {
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Hamburger bar transition ── */
#nav-toggle .nav-bar-line {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1279px) {
  .intelligence-section .intel-stat-num {font-size: 50px;}
  .intelligence-section .intel-card--pink .intel-card__visual--row {padding-left: 0;}
  .intelligence-section .intel-card--pink .intel-card__stat {padding-left: 0;}
  .intelligence-section .intel-card--pink {min-height: 400px;}
  .team-card { height: 230px; }
  .team-content h4 {font-size: 18px; line-height: 20px;}
  .team-content p {font-size: 13px;}
  .life-img-right { width: 140px; height: 180px; }
  .life-img-left { width: 110px; height: 140px; top: 100px; }
  .intelligence-section .intel-planning-heading { font-size: 32px; line-height: 1; }
  .intelligence-section .intel-stat-label { font-size: 30px; }
}

/* ── ≤ 1023px (tablet) ── */
@media (max-width: 1023px) {

  /* Intel stat scaling */
  .intelligence-section .intel-stat-num  { font-size: 56px; }
  .intelligence-section .intel-stat-label { font-size: 26px; }
  .intelligence-section .intel-planning-heading { font-size: 28px; }
  /* Counter */
  .feature-bg {border-radius: 0 0 28px 28px;}
}




/* ── ≤ 767px (mobile) ── */
@media (max-width: 767px) {

  /* ── Header ── */
  .header-glass { padding: 10px 16px !important; }

  /* ── Hero ── */
  .hero-left-image { display: none !important; }

  /* ── Intel cards: stat sizes ── */
  .intelligence-section .intel-stat-num   { font-size: 48px; }
  .intelligence-section .intel-stat-label { font-size: 22px; }
  .intelligence-section .intel-planning-heading { font-size: 26px; }

  /* Pink card image: contain on mobile */
  .intel-card--pink img.absolute { max-height: 330px !important;}
  section.portfolio-detail-overview li {font-size: 14px;}
}

@media (max-width: 575px) {
  .featured-section img {
    max-width: 65%;
  }
  section.portfolio-detail-overview li {font-size: 15px;}
  .portfolio-image img {
    height: 350px !important;
  }
}

@media (max-width: 400px) {
  .featured-section img {
    max-width: 80%;
  }
  .portfolio-image img { height: 230px !important; }
}

@keyframes dot-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(1.5deg); }
  66%       { transform: translateY(-6px) rotate(-1deg); }
}

.dot-anime {
  animation: dot-float 4s ease-in-out infinite;
  will-change: transform;
}
