/* ============================================================
   STACKYZER — style.css
   Bootstrap-first, clean & fully responsive
   ============================================================ */

/* ─── CSS VARIABLES ────────────────────────────────────── */
:root {
  --green-light:  #9fd3b5;
  --green-mid:    #7cbe96;
  --green-dark:   #2ea36a;
  --green-dark2:  #022b17;
  --bg-surface:   #f6f6f6;
  --bg-card:      #ececec;
  --bg-card-alt:  #e4e4e4;
  --text-dark:    #111;
  --text-muted:   #666;
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    26px;
  --radius-xl:    36px;
  --shadow-sm:    0 4px 14px rgba(0,0,0,.06);
  --shadow-md:    0 10px 30px rgba(0,0,0,.10);
  --transition:   all .35s cubic-bezier(.25,.46,.45,.94);
}

/* ─── BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth;  }
body  {
  font-family: 'Inter', sans-serif;
  background: var(--bg-surface);
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
}
h1, h2, h3, h4, h5, h6 { font-family:  'Inter', sans-serif;}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; }

/* ─── UTILITY ──────────────────────────────────────────── */
.bg-surface    { background: var(--bg-surface) !important; }
.text-green    { color: var(--green-dark) !important; }
.section-pad   { padding: 50px 0; }
.section-heading {
  font-size: clamp(15px, 4vw, 25px); 
  font-weight: 700;
  line-height: 1.15;
}
.object-fit-cover { object-fit: cover; }

/* ─── PAGE LOADER ──────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-card);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-dot {
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  margin: 0 6px;
  animation: loaderBounce .8s ease-in-out infinite alternate;
}
.loader-dot:nth-child(2) { animation-delay: .2s; }
.loader-dot:nth-child(3) { animation-delay: .4s; }
@keyframes loaderBounce {
  from { transform: translateY(0);     opacity: .4; }
  to   { transform: translateY(-16px); opacity: 1;  }
}

/* ─── CUSTOM CURSOR ────────────────────────────────────── */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--green-dark);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, background .2s ease;
}
.custom-cursor.hovered {
  transform: translate(-50%, -50%) scale(2);
  background: rgba(46, 163, 106, .15);
}

/* ─── HERO REVEAL ──────────────────────────────────────── */
.hero-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.hero-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SCROLL TO TOP ────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--green-dark);
  transform: translateY(-4px);
}

/* ═══════════════════════════════════
   HOVER DROPDOWN (DESKTOP ONLY)
═══════════════════════════════════ */

@media (min-width: 992px) {

  .navbar .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .22s ease;
    display: block; /* important override */
    pointer-events: none;
  }

  .navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Optional: keep menu open when hovering inside */
  .navbar .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
  }

}
/* ─── BADGE PILL ───────────────────────────────────────── */
.badge-pill {
  display: inline-block;
  background: rgba(0,0,0,.07);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}
.pill-tag {
  display: inline-block;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  padding: 7px 15px;
  font-size: 13px;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  font-family: 'Manrope', sans-serif;
}
.pill-tag:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn-dark-custom {
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  border: none;
  transition: var(--transition);
}
.btn-dark-custom:hover {
  background: #222;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-light-custom {
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  border: 1.5px solid #ddd;
  transition: var(--transition);
}
.btn-light-custom:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ─── HERO SECTION ─────────────────────────────────────── */

.hero-section {
    /* background: linear-gradient(160deg, #cac9c9 0%, #ccc 100%); */
    background: linear-gradient(160deg, #cac9c900 0%, #ccc 100%);
    padding: 100px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  font-family: 'DM Serif Display', serif;
}
.hero-title em { font-style: italic; font-weight: 400; }

.hero-img-wrap { position: relative; }
.hero-img {
  border-radius: var(--radius-xl);
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}
@media (max-width: 575px) { .hero-img { max-height: 320px; } }

/* ─── WHO WE ARE ───────────────────────────────────────── */
.who-img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  max-height: 460px;
  transition: transform .5s ease;
}
.who-img:hover { transform: scale(1.01); }

/* ─── AVATARS ──────────────────────────────────────────── */
.avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -8px;
  object-fit: cover;
}

/* ── SERVICES SECTION ─────────────────────────────────────── */

.services-section {
  background: #f0f2f1;
}

.services-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3dbb7e;
  background: rgba(61,187,126,0.10);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.services-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a2e22;
  margin-bottom: 12px;
}

.services-subtitle {
  color: #5a7566;
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.97rem;
  line-height: 1.7;
}

.service-link {
  text-decoration: none;
}

/* ── Card: column layout so header row sits above description ── */
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8e5;
  border-radius: 18px;
  padding: 28px 24px;

  /* column: header on top, description below, arrow at bottom */
  display: flex;
  flex-direction: column;
  gap: 6px;

  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: #3dbb7e;
  box-shadow: 0 8px 32px rgba(61,187,126,0.14);
  transform: translateY(-4px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(61,187,126,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::before {
  opacity: 1;
}

/* ── Header row: icon LEFT, title RIGHT ─────────────────────── */
.service-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-icon-wrap {
  width: 46px;
  height: 46px;
  min-width: 46px;            /* prevents icon from shrinking */
  border-radius: 12px;
  background: rgba(61,187,126,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-wrap i {
  font-size: 20px;
  color: #3dbb7e;
  line-height: 1;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e22;
  margin: 0;               /* remove default heading margin */
  line-height: 1.25;
}

/* ── Description sits below the header row ─────────────────── */
.service-card p {
  font-size: 0.875rem;
  color: #6b8577;
  line-height: 1.65;
  margin: 0;
  flex: 1;                 /* pushes arrow to the bottom */
}

/* ── Arrow sits at the very bottom ─────────────────────────── */
.service-arrow {
  font-size: 1rem;
  color: #3dbb7e;
  margin-top: auto;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  align-self: flex-start;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── APART SECTION ────────────────────────────────────────── */

.apart-section {
  background: #f4f7f5;
}

.apart-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2ea36a;
  margin-bottom: 10px;
}

.apart-card {
  background: #ffffff;
  border-radius: 16px;
  border-left: 4px solid #2ea36a;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.apart-card:hover {
  box-shadow: 0 8px 32px rgba(46,163,106,0.12);
  transform: translateY(-3px);
}

.apart-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(46,163,106,0.08);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

.apart-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(46,163,106,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.apart-icon-wrap i {
  font-size: 22px;
  color: #2ea36a;
  line-height: 1;
}

.apart-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e22;
  margin-bottom: 6px;
}

.apart-text {
  font-size: 0.875rem;
  color: #5a7566;
  line-height: 1.65;
  margin: 0;
}
/* ─── WORK SECTION ─────────────────────────────────────── */
.work-stack-outer { position: relative; }
.work-stack-inner {
  max-width: 1000px;
  padding: 0 20px 60px;
}
.work-stack-item {
  position: sticky;
  top: 100px;
  margin-bottom: 28px;
  will-change: transform, opacity;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94), opacity .5s ease;
}
.work-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 18px;
  cursor: pointer;
  transform-origin: top center;
}
.work-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.work-img {
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform .7s ease;
  display: block;
}
.work-card:hover .work-img { transform: scale(1.04); }
 
.expand-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 2;
  color: #111;
}
.expand-btn:hover,
.work-card:hover .expand-btn {
  background: var(--green-dark);
  color: #fff;
  transform: scale(1.1) rotate(15deg);
}
.work-tags-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}
.work-tag {
  background: #dff3e6;
  color: #2e7d5b;
  font-size: 12px;
  padding: 5px 13px;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}
.work-body { padding: 20px 24px; }
.work-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  display: block;
  margin-bottom: 8px;
  opacity: .5;
  font-family: 'Manrope', sans-serif;
}
.work-body-link h4 {
  color: var(--green-dark) !important;
}
@media (max-width: 767px) {
  .work-stack-item  { position: relative; top: auto; margin-bottom: 20px; }
  .work-img         { height: 240px; }
  .work-stack-inner { padding-bottom: 40px; }
}
 /* ─── APPROACH ─────────────────────────────────────────── */
.approach-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 900px;
}
@media (max-width: 575px) { .approach-card { padding: 36px 24px; } }
 
.case-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 1000px;
}
@media (max-width: 575px) { .case-card { padding: 30px 20px; } }
 
.stat-box {
  background: var(--bg-card-alt);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: var(--transition);
}
.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.stat-box h4 {
  font-size: 28px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}
 
.testimonial-box {
  background: var(--bg-card-alt);
  border-radius: var(--radius-md);
  padding: 28px;
  height: 100%;
}
.profile-card { border-radius: var(--radius-md); }
.profile-card img {
  border-radius: var(--radius-md);
  transition: transform .5s ease;
}
.profile-card:hover img { transform: scale(1.03); }
.profile-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
 
/* ─── EXECUTE ──────────────────────────────────────────── */
.execute-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.execute-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.step-num {
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 52px;
  font-weight: 800;
  color: rgba(0,0,0,.05);
  font-family: 'Manrope', sans-serif;
  line-height: 1;
}
 

/* ─── TESTIMONIAL WRAPPER ──────────────────────────────── */
.testimonial-wrapper {
  background: #ebebeb;
  border-radius: var(--radius-xl);
  max-width: 980px;
}
.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.rating-badge {
  background: #ddd;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
}
.brand-logos span {
  font-weight: 800;
  font-size: 17px;
  color: #aaa;
  letter-spacing: .05em;
  cursor: default;
  transition: color .3s ease;
  font-family: 'Manrope', sans-serif;
}
.brand-logos span:hover { color: var(--green-dark); }

/* ─── CONTACT INFO CARDS (redesigned) ─────────────────── */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.contact-info-icon {
  width: 60px;
  height: 60px;
  background: #eaf7f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--green-dark);
}
.contact-info-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0;
}
.contact-info-value a {
  color: var(--green-dark);
  text-decoration: none;
}
.contact-info-value a:hover {
  text-decoration: underline;
}
/* ─── FOOTER ───────────────────────────────────────────── */
.footer-section {
  /* background: linear-gradient(90deg, #000000, #575353);; */
   background: linear-gradient(90deg, #3f3e3e, #9c9797);
  border-top: 1px solid #ddd;
}
.footer-contact {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 6px;
}
.footer-heading {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
  color:#4fbd6b
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #ffffff;
  font-size: 14px;
  transition: color .25s ease;
}
.footer-links a:hover  { color: var(--green-dark); }
.footer-bottom         { border-top: 1px solid #ddd; }
.footer-policy         { color: #ffffff; transition: color .25s ease; }
.footer-policy:hover   { color: var(--green-dark); }

/* ─── CASE STUDY MODAL ─────────────────────────────────── */
.cs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  transition: background .45s ease;
}
.cs-overlay.open {
  background: rgba(0,0,0,.55);
  pointer-events: all;
  backdrop-filter: blur(4px);
}
.cs-panel {
  width: 100%;
  max-width: 680px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  box-shadow: -20px 0 60px rgba(0,0,0,.15);
}
.cs-overlay.open .cs-panel { transform: translateX(0); }
.cs-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #f0f0f0;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}
.cs-close:hover {
  background: #000;
  color: #fff;
  transform: rotate(90deg);
}
.cs-body { padding: 0 36px 60px; clear: both; }
.cs-hero-img {
  width: calc(100% + 72px);
  margin-left: -36px;
  height: 300px;
  object-fit: cover;
  display: block;
  margin-bottom: 32px;
}
.cs-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.cs-tags span {
  background: #dff3e6;
  color: #2e7d5b;
  font-size: 12px;
  padding: 5px 13px;
  border-radius: 999px;
  font-weight: 600;
}
.cs-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cs-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.cs-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}
.cs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.cs-stat {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
}
.cs-stat h3 {
  font-size: 26px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.cs-stat p { font-size: 12px; color: #888; margin: 0; }
.cs-section-title {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  margin: 28px 0 10px;
}
.cs-list { list-style: none; padding: 0; margin: 0 0 24px; }
.cs-list li {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 10px;
}
.cs-list li::before {
  content: '✦';
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.cs-quote {
  background: var(--bg-card);
  border-left: 4px solid var(--green-dark);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 26px;
  margin-bottom: 32px;
}
.cs-quote p {
  font-size: 15px;
  font-style: italic;
  color: #444;
  line-height: 1.8;
  margin-bottom: 10px;
}
.cs-quote cite { font-size: 13px; font-weight: 600; color: #888; font-style: normal; }
.cs-cta {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  transition: var(--transition);
}
.cs-cta:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
body.modal-open-cs { overflow: hidden; }

@media (max-width: 600px) {
  .cs-panel    { max-width: 100%; }
  .cs-body     { padding: 0 18px 40px; }
  .cs-stats    { grid-template-columns: repeat(2, 1fr); }
  .cs-hero-img { width: calc(100% + 36px); margin-left: -18px; }
}

/* ─── WORK PROGRESS DOTS ───────────────────────────────── */
.work-progress {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 500;
  opacity: 0;
  transition: opacity .3s ease;
}
@media (max-width: 767px) { .work-progress { display: none !important; } }

/* ─── AOS ──────────────────────────────────────────────── */
[data-aos]             { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
      

/* ─── TESTIMONIAL CAROUSEL ───────────────────────────── */

.testimonial-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 55px;
}

.testimonial-carousel .carousel-inner {
  overflow: hidden;
  border-radius: 32px;
}

.testimonial-carousel .carousel-item {
  transition: transform 0.7s ease-in-out;
}

/* Outer card — gradient background */
.testi-card-wide {
  background: linear-gradient(135deg, #f0f9f4 0%, #e8f5ee 100%);
  border: 1.5px solid #c8e6d5;
  border-radius: 32px;
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 340px;
  padding: 48px 44px;
  gap: 36px;
  overflow: visible;
  box-shadow: 0 12px 40px rgba(46,163,106,0.10);
}

/* Left white stats box */
.testi-stats-panel {
  background: #ffffff;
  padding: 32px 26px;
  width: 220px;
  min-width: 220px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid #e8f0eb;
}

/* Green accent bar on left of stats panel */
.testi-stats-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 4px;
  background: linear-gradient(180deg, #2ea36a, #9fd3b5);
  border-radius: 0 4px 4px 0;
}

/* Green circle accent */
.testi-stats-panel::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 48px;
  width: 22px;
  height: 22px;
  border: 3px solid #2ea36a;
  background: #f0f9f4;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(46,163,106,0.25);
}

.testi-stat-label {
  font-size: 12px;
  color: #7a8c82;
  margin: 0 0 4px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.testi-stat-val {
  font-size: 32px;
  font-weight: 800;
  color: #2ea36a;
  margin: 0 0 16px;
  font-family: 'Manrope', sans-serif;
  line-height: 1.1;
}

.testi-stat-small {
  font-size: 22px;
  line-height: 1.15;
}

/* Right content */
.testi-content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Quote mark decoration */
.testi-content::before {
  content: "\201C";
  font-size: 80px;
  color: #2ea36a;
  opacity: 0.15;
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

/* Main text */
.testi-content .testi-text {
  font-size: 16px;
  color: #1a2e22;
  line-height: 1.85;
  text-align: left;
  margin: 0 0 24px;
  font-style: italic;
}

/* Stars */
.testi-content .testi-stars {
  color: #f4b400;
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-align: left;
}

/* Footer */
.testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid #d4e8dc;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ea36a, #9fd3b5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46,163,106,0.30);
}

.testi-avatar i {
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  color: #1a2e22;
  font-weight: 700;
  margin-bottom: 3px;
}

.testi-author span {
  display: block;
  font-size: 12px;
  color: #5a7566;
}

.testi-rating {
  background: linear-gradient(135deg, #2ea36a, #228a58);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(46,163,106,0.30);
}

/* Carousel dots */
.testi-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
}

.testi-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50%;
  background-color: #2ea36a !important;
  opacity: 0.30;
  border: none !important;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}

.testi-indicators button.active {
  opacity: 1;
  width: 24px !important;
  border-radius: 999px !important;
}

/* Carousel arrows */
.testi-control {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1.5px solid #c8e6d5;
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0 6px 20px rgba(46,163,106,0.15);
  transition: all 0.3s ease;
}

.testi-control span {
  font-size: 30px;
  line-height: 1;
  color: #2ea36a;
  margin-top: -4px;
}

.testi-prev { left: -24px; }
.testi-next { right: -24px; }

.testi-control:hover {
  background: linear-gradient(135deg, #2ea36a, #228a58);
  border-color: #2ea36a;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(46,163,106,0.30);
}

.testi-control:hover span {
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-carousel {
    max-width: 100%;
    padding: 0 12px 48px;
  }

  .testi-card-wide {
    flex-direction: column;
    padding: 28px 22px;
    border-radius: 24px;
    min-height: auto;
    gap: 24px;
  }

  .testi-stats-panel {
    width: 100%;
    min-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }

  .testi-stats-panel::before { display: none; }

  .testi-stats-panel::after {
    right: 18px;
    bottom: -10px;
  }

  .testi-content::before {
    font-size: 60px;
    margin-bottom: 4px;
  }

  .testi-content .testi-text {
    font-size: 15px;
  }

  .testi-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testi-control { display: none; }
}
/* ── LIGHTBOX ──────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-box {
  position: relative;
  max-width: 80vw;
  max-height: 85vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5),
              0 0 0 1.5px rgba(255,255,255,0.08);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
}

.lightbox-overlay.active .lightbox-box {
  transform: scale(1) translateY(0);
}

.lightbox-box img {
  display: block;
  max-width: 80vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease, transform 0.25s ease;
  line-height: 1;
}

.lightbox-close:hover {
  background: #2ea36a;
  transform: rotate(90deg);
}

/* Cursor pointer on lightbox images */
.lightbox-trigger {
  cursor: zoom-in;
}

/* Mobile */
@media (max-width: 767px) {
  .lightbox-box {
    max-width: 95vw;
  }
  .lightbox-box img {
    max-width: 95vw;
    max-height: 80vh;
  }
}