/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #4caba5;
  --teal-light: #72e8e3;
  --dark: #000421;
  --dark2: #0c1231;
  --white: #fefefe;
  --gray: #d7d7d7;
  --text-body: #d7d7d7;
  --accent: #4caba5;
  --border: rgba(76, 171, 165, 0.4);
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 95vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  border-radius: 100px;
  padding: 14px 12px 14px 30px;
  z-index: 1000;
  transition: top 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo img { height: 50px; width: auto; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 6px;
  text-transform: uppercase;
}

.nav-logo-text .sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--teal-light);
  letter-spacing: 6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal-light); }

.btn-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--teal);
  border-radius: 100px;
  padding: 14px 36px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-cta:hover { background: var(--teal-light); transform: scale(1.02); }
.btn-cta svg { flex-shrink: 0; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(76,171,165,0.12);
  border: 1px solid rgba(76,171,165,0.35);
  border-radius: 50%;
  cursor: pointer;
  padding: 10px;
  transition: background 0.2s;
}

.nav-hamburger:hover { background: rgba(76,171,165,0.25); }

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--teal-light);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,4,33,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 6vw, 36px);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--teal-light); }

.mobile-menu .mobile-cta {
  margin-top: 16px;
  font-size: clamp(16px, 4vw, 20px);
  padding: 16px 40px;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,4,33,0.6) 0%, rgba(0,4,33,0.75) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(76,171,165,0.12) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76,171,165,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,171,165,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridPan 20s linear infinite;
}

@keyframes gridPan {
  0%   { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 1100px;
  width: 100%;
}

.hero h1 {
  font-family: 'Rhodium Libre', serif;
  font-size: clamp(36px, 7vw, 80px);
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 50px;
  margin-bottom: 30px;
  animation: fadeUp 0.9s ease both;
}

.hero p {
  font-size: clamp(15px, 2vw, 22px);
  color: rgba(255,255,255,0.85);
  max-width: 900px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-btn {
  animation: fadeUp 0.9s 0.35s ease both;
  display: inline-flex;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION SHARED ── */
section { padding: 80px 0; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--teal);
  border-radius: 4px;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 54px);
  line-height: 1.2;
  color: var(--gray);
}

.section-title span { color: var(--teal-light); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  border-radius: 14px;
  padding: 14px 28px 14px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #161616;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.btn-outline:hover { background: var(--teal-light); transform: scale(1.02); }

/* ── SERVICES ── */
.services { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(120deg, rgba(76,171,165,0.18) 0%, rgba(0,72,68,0.18) 100%);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(76,171,165,0.18);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(219,217,217,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.service-icon img { width: 40px; height: 40px; object-fit: contain; }

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: capitalize;
}

.service-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  flex: 1;
}

.service-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(76,171,165,0.15);
  border: 1px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  align-self: flex-end;
  transition: background 0.2s;
}

.service-card:hover .service-arrow { background: var(--teal); }
.service-arrow svg { color: var(--teal-light); }
.service-card:hover .service-arrow svg { color: #fff; }

/* ── OUR WORK ── */
/* ── OUR WORK ── */
.work { background: var(--dark); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-card {
  background: #0b0f2a;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(76,171,165,0.15);
}

.work-placeholder {
  background: linear-gradient(135deg, #0c2040 0%, #0d3050 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.work-placeholder::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  font-size: 32px;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  background: rgba(0,0,0,0.55);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.work-placeholder:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.work-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.work-placeholder:hover img {
  transform: scale(1.04);
}

.work-body { padding: 30px; }

.work-body h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}

.work-body p { font-size: 14px; color: var(--gray); line-height: 1.7; }


/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-container {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: block;
}

.lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  letter-spacing: 0.5px;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lightbox-container {
    max-width: 95vw;
  }

  .lightbox-close {
    top: -12px;
    right: -8px;
  }
}

/* ── CREATIVE TOOLS ── */
.tools { background: #04071a; }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.tool-item {
  display: block;
  align-items: center;
  gap: 16px;
  background: rgba(76,171,165,0.06);
  border: 1px solid rgba(76,171,165,0.15);
  border-radius: 12px;
  padding: 16px 18px;
  transition: background 0.2s, border-color 0.2s;
}

.tool-item:hover {
  background: rgba(76,171,165,0.12);
  border-color: var(--teal);
}

.tool-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.tool-info h5 { font-size: 14px; font-weight: 600; color: var(--white); text-transform: capitalize; }
.tool-info span { font-size: 12px; color: var(--gray); }

/* ── HOW IT WORKS ── */
.hiw { background: var(--dark); }

.hiw-wrap { display: flex; gap: 80px; align-items: center; }

.hiw-img { flex-shrink: 0; width: 420px; }

.hiw-img .circle-frame {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px dashed rgba(76,171,165,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, rgba(76,171,165,0.08) 0%, transparent 70%);
}

.hiw-img .circle-inner {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #0c1231 0%, #1a2550 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 14px;
}

.hiw-right { flex: 1; }

.accordion-item {
  border-bottom: 1px solid rgba(76,171,165,0.2);
  padding: 24px 0;
  cursor: pointer;
}

.accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-head h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
}

.accordion-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(76,171,165,0.15);
  border: 1px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.accordion-item.open .accordion-toggle {
  background: var(--teal);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.open .accordion-body { max-height: 200px; }

.accordion-body p {
  padding-top: 16px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ── ACHIEVEMENTS ── */
.achievements { background: #04071a; }

.achievements-wrap { display: flex; gap: 80px; align-items: flex-start; }

.achievements-left { flex-shrink: 0; max-width: 420px; }

.achievements-left p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin: 24px 0 36px;
}

.achievements-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ach-item {
  padding: 40px;
  border: 1px solid rgba(76,171,165,0.15);
  transition: background 0.2s;
}

.ach-item:hover { background: rgba(76,171,165,0.06); }

.ach-year {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 16px;
}

.ach-year::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--teal);
  display: block;
}

.ach-item h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.ach-item p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── CTA ── */
.cta-section { background: var(--dark); }

.cta-box {
  background: linear-gradient(120deg, rgba(76,171,165,0.15) 0%, rgba(0,72,68,0.1) 100%);
  border: 1px solid rgba(76,171,165,0.3);
  border-radius: 24px;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.cta-content { flex: 1; }

.cta-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }

.cta-stats { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }

.cta-stat h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--teal-light);
}

.cta-stat span { font-size: 13px; color: var(--gray); display: block; margin-top: 4px; }

.cta-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle, rgba(76,171,165,0.3) 0%, rgba(76,171,165,0) 70%);
  border: 2px dashed rgba(76,171,165,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-light);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── TEAM ── */
.team { background: var(--dark); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.team-card { position: relative; border-radius: 16px; overflow: hidden; }

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #0c1231 0%, #0c2040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
}

.team-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(22,22,22,0.5);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
}

.team-info h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}

.team-info span { font-size: 13px; color: #ffffff/*var(--teal-light)*/; }



/* ══════════════════════════════════════════
   TESTIMONIALS — testimonial.css
   Matches Zesty Solution dark teal design.
   Link in <head>:
   <link rel="stylesheet" href="testimonial.css" />
══════════════════════════════════════════ */

/* ── Section wrapper ── */
.testimonials {
  background: var(--dark, #000421);
  padding: 100px 0;
}

.testi-header {
  text-align: center;
  margin-bottom: 64px;
}

.testi-header .section-label {
  justify-content: center;
}

.testi-sub {
  font-size: 16px;
  color: rgba(215, 215, 215, 0.7);
  margin-top: 14px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── Layout ── */
.testi-stage {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* ── Main card ── */
.testi-main {
  background: linear-gradient(135deg, rgba(76,171,165,0.13) 0%, rgba(0,72,68,0.16) 100%);
  border: 1px solid rgba(76,171,165,0.3);
  border-radius: 28px;
  padding: 52px 52px 40px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  transition: box-shadow 0.4s;
}

.testi-main::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,171,165,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.testi-quote-icon {
  margin-bottom: 24px;
}

/* ── Stars ── */
.testi-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testi-star {
  width: 18px;
  height: 18px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: #f5c842;
  transition: transform 0.3s;
}

.testi-star.half { opacity: 0.45; }

/* ── Quote text ── */
.testi-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(254,254,254,0.9);
  line-height: 1.8;
  margin-bottom: 36px;
  min-height: 110px;
  transition: opacity 0.35s, transform 0.35s;
}

.testi-text.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

/* ── Author row ── */
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caba5, #0c1231);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(114,232,227,0.4);
  transition: opacity 0.3s;
}

.testi-author-info {
  flex: 1;
}

.testi-author-info h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 3px;
}

.testi-author-info span {
  font-size: 13px;
  color: #72e8e3;
}

/* ── Tags ── */
.testi-tag-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.testi-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}

.testi-tag.city {
  background: rgba(76,171,165,0.15);
  color: #72e8e3;
  border: 1px solid rgba(76,171,165,0.35);
}

.testi-tag.verified {
  background: rgba(72,193,87,0.12);
  color: #6de080;
  border: 1px solid rgba(72,193,87,0.3);
}

/* ── Progress bar ── */
.testi-progress-wrap {
  width: 100%;
  height: 3px;
  background: rgba(76,171,165,0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
}

.testi-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #4caba5, #72e8e3);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Controls ── */
.testi-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(76,171,165,0.4);
  background: rgba(76,171,165,0.1);
  color: #72e8e3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.testi-btn:hover {
  background: #4caba5;
  border-color: #4caba5;
  color: #fff;
  transform: scale(1.06);
}

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(76,171,165,0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.testi-dot.active {
  width: 28px;
  border-radius: 4px;
  background: #4caba5;
}

/* ── Sidebar ── */
.testi-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testi-sidebar-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(215,215,215,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  border: 1px solid transparent;
  margin-bottom: 10px;
}

.testi-mini-card:hover {
  background: rgba(76,171,165,0.08);
  border-color: rgba(76,171,165,0.2);
  transform: translateX(4px);
}

.testi-mini-card.active {
  background: rgba(76,171,165,0.15);
  border-color: rgba(76,171,165,0.4);
  transform: translateX(4px);
}

.testi-mini-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caba5, #0c1231);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
  border: 1.5px solid rgba(114,232,227,0.3);
}

.testi-mini-info h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fefefe;
  margin-bottom: 2px;
}

.testi-mini-info span {
  font-size: 12px;
  color: rgba(215,215,215,0.6);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 1100px) {
  .testi-stage {
    grid-template-columns: 1fr 280px;
    gap: 24px;
  }
  .testi-main { padding: 40px 36px 32px; }
}

@media (max-width: 860px) {
  .testimonials { padding: 60px 0; }

  .testi-stage {
    grid-template-columns: 1fr;
  }

  /* Sidebar goes below on tablet/mobile as horizontal scroll strip */
  .testi-sidebar {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .testi-sidebar::-webkit-scrollbar { display: none; }

  .testi-sidebar-label { display: none; }

  .testi-mini-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
    padding: 14px 16px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .testi-mini-card:hover,
  .testi-mini-card.active { transform: translateY(-3px) translateX(0); }

  .testi-mini-info h5 { font-size: 12px; }
  .testi-mini-info span { font-size: 11px; }

  .testi-main { padding: 36px 28px 28px; min-height: unset; }
  .testi-header { margin-bottom: 44px; }
}

@media (max-width: 540px) {
  .testimonials { padding: 50px 0; }
  .testi-main { padding: 28px 20px 24px; border-radius: 20px; }
  .testi-text { font-size: 15px; min-height: unset; }
  .testi-author { gap: 12px; }
  .testi-tag-group { margin-top: 6px; }
  .testi-author-info h4 { font-size: 15px; }
  .testi-controls { gap: 10px; }
  .testi-btn { width: 38px; height: 38px; }
  .testi-header .section-title { font-size: clamp(24px, 7vw, 40px); }
}


/* ── CONTACT ── */
.contact { background: #04071a; }

.contact-wrap { display: flex; gap: 80px; }

.contact-left { flex: 1; }

.contact-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--white);
  margin-bottom: 40px;
}

.contact-left h2 span { color: var(--teal-light); }

.contact-info-list { margin-top: 48px; }

.contact-info-item { display: flex; gap: 20px; margin-bottom: 32px; }

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(76,171,165,0.15);
  border: 1px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-light);
}

.contact-info-item h5 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.contact-right {
  flex: 1;
  background: rgba(76,171,165,0.05);
  border: 1px solid rgba(76,171,165,0.2);
  border-radius: 20px;
  padding: 50px 40px;
}

.contact-right h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }

.form-group label {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: capitalize;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(76,171,165,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 28px; }

/* ── BLOG ── */
.blog { background: var(--dark); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  background: #0b0f2a;
  transition: transform 0.25s;
}

.blog-card:hover { transform: translateY(-6px); }

.blog-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #0c1231 0%, #1a2550 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
}

.blog-body { padding: 30px; }

.blog-body h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.4;
}

.blog-footer { display: flex; align-items: center; justify-content: space-between; }

.blog-date { font-size: 13px; color: var(--gray); }

.blog-read {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--teal-light);
  text-decoration: none;
}

.blog-read:hover { color: var(--white); }

/* ── FOOTER ── */
.footer { background: #000210; padding: 80px 0 0; }

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 90px);
  color: var(--white);
  text-align: center;
  padding: 40px 40px 60px;
  border-bottom: 1px solid rgba(76,171,165,0.2);
  line-height: 1.1;
}

.footer-title span { color: var(--teal); }

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
  gap: 60px;
  padding: 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-about p { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }

.footer-social { display: flex; gap: 16px; }

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(76,171,165,0.1);
  border: 1px solid rgba(76,171,165,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.footer-social a:hover { background: var(--teal); color: #fff; }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 28px;
  text-transform: capitalize;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 16px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--teal-light); }

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact-item .ico {
  color: var(--teal-light);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(76,171,165,0.15);
  text-align: center;
  padding: 28px;
  font-size: 14px;
  color: var(--gray);
}

/* ── DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,171,165,0.3), transparent);
  margin: 0 60px;
}

/* ── FOOTER LOGO ── */
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }

/* ────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
──────────────────────────────────────────── */

/* ── LARGE TABLET (≤1200px) ── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid    { grid-template-columns: repeat(6, 1fr); }
  .footer-main   { grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .work-grid     { grid-template-columns: repeat(2, 1fr); }
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
  .nav-links     { gap: 30px; }
  .nav-links a   { font-size: 16px;}
  .container     { padding: 0 40px; }
}

/* ── TABLET (≤900px) ── */
@media (max-width: 900px) {
  .navbar {
    top: 16px;
    padding: 12px 16px 12px 20px;
    border-radius: 60px;
  }

  .nav-links    { display: none; }
  .btn-cta.nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .container { padding: 0 28px; }
  section { padding: 60px 0; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .work-grid     { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; margin-top: 40px; }

  .tools-grid    { grid-template-columns: repeat(4, 1fr); }

  /* HIW */
  .hiw-wrap      { flex-direction: column; gap: 40px; }
  .hiw-img       { width: 100%; display: flex; justify-content: center; }
  .hiw-img .circle-frame { width: 300px; height: 300px; }
  .hiw-img .circle-inner { width: 240px; height: 240px; }
  .hiw-right     { width: 100%; }
  .accordion-head h4 { font-size: 17px; }

  /* Achievements */
  .achievements-wrap { flex-direction: column; gap: 40px; }
  .achievements-left { max-width: 100%; }
  .achievements-grid { grid-template-columns: 1fr 1fr; }
  .ach-item      { padding: 24px; }

  /* CTA */
  .cta-box       { flex-direction: column; padding: 40px 32px; gap: 32px; }
  .cta-circle    { display: none; }
  .cta-stats     { gap: 24px; }

  /* Team */
  .team-grid     { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }

  /* Contact */
  .contact-wrap  { flex-direction: column; gap: 40px; }
  .contact-right { padding: 36px 24px; }
  .contact-right h3 { font-size: 28px; }

  /* Footer */
  .footer-main   { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .footer-title  { padding: 30px 28px 40px; }
  .section-divider { margin: 0 28px; }
}

/* ── MOBILE (≤600px) ── */
@media (max-width: 600px) {
  .navbar { top: 12px; padding: 10px 14px 10px 18px; }

  .nav-logo-text .brand { font-size: 16px; }
  .nav-logo-text .sub   { font-size: 38px; }

  .container { padding: 0 20px; }
  section { padding: 50px 0; }

  /* Hero */
  .hero { min-height: 550px; }
  .hero h1 { font-size: clamp(30px, 9vw, 52px); margin-bottom: 20px; }
  .hero p  { font-size: 15px; margin-bottom: 32px; }
  .hero-content { padding: 0 20px; }
  .btn-cta { padding: 12px 24px; font-size: 15px; gap: 8px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card  { min-height: unset; }
  .service-card h3 { font-size: 19px; }

  /* Work */
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-body { padding: 20px; }

  /* Tools */
  .tools-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .tool-item  { padding: 12px 14px; gap: 12px; }
  .tool-info h5 { font-size: 13px; }

  /* HIW */
  .hiw-img .circle-frame { width: 260px; height: 260px; }
  .hiw-img .circle-inner { width: 200px; height: 200px; }
  .accordion-head h4  { font-size: 15px; }
  .accordion-toggle   { width: 38px; height: 38px; }

  /* Achievements */
  .achievements-grid { grid-template-columns: 1fr; }
  .ach-item { padding: 20px; }
  .ach-item h4 { font-size: 17px; }

  /* CTA */
  .cta-box  { padding: 28px 20px; border-radius: 16px; }
  .cta-stats { gap: 16px; }
  .cta-stat h3 { font-size: 22px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
  .team-info h4 { font-size: 15px; }
  .team-info    { padding: 12px 14px; bottom: 12px; left: 12px; right: 12px; }

  /* Contact */
  .contact-wrap  { gap: 32px; }
  .contact-right { padding: 28px 20px; }
  .contact-right h3 { font-size: 24px; margin-bottom: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Blog */
  .blog-grid  { grid-template-columns: 1fr; margin-top: 28px; gap: 16px; }
  .blog-body  { padding: 20px; }
  .blog-body h4 { font-size: 16px; margin-bottom: 14px; }

  /* Footer */
  .footer-main  { padding: 32px 20px; gap: 32px; }
  .footer-title { font-size: clamp(28px, 10vw, 60px); padding: 24px 20px 32px; }
  .footer-bottom { padding: 20px; font-size: 13px; }
  .section-divider { margin: 0 20px; }

  .btn-outline { padding: 11px 20px; font-size: 13px; }
}

/* ── VERY SMALL (≤380px) ── */
@media (max-width: 380px) {
  .team-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 28px; }
  .nav-logo-text .brand { font-size: 14px; }
}