/* ═══════════════════════════════════════════════════
   OLIVIA SMITH PORTFOLIO — COMPLETE STYLESHEET
   Color: Mustard Yellow #F4B400 + Dark Green #254734
════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────── */
:root {
  --yellow:       #F4B400;
  --yellow-h:     #FFB800;
  --orange:       #f27036;
  --green:        #254734;
  --green-d:      #1d3828;
  --olive:        #2E5039;
  --white:        #FFFFFF;
  --bg:           #F8F8F8;
  --border:       #E8E8E8;
  --txt-gray:     #777777;
  --txt-dark:     #1E1E1E;
  --txt-mid:      #444444;
  --radius-sm:    12px;
  --radius:       20px;
  --radius-lg:    28px;
  --shadow:       0 8px 32px rgba(0,0,0,0.08);
  --shadow-h:     0 20px 56px rgba(0,0,0,0.14);
  --shadow-y:     0 8px 28px rgba(244,180,0,0.35);
  --trans:        0.3s ease;
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w:        1400px;
  --nav-h:        76px;
}

/* ── Reset ─────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; overflow-x:hidden; width:100%; }
body { font-family:var(--font-body); background:var(--white); color:var(--txt-dark); -webkit-font-smoothing:antialiased; overflow-x:hidden; width:100%; position:relative; margin:0; padding:0; }
img { display:block; max-width:100%; }
a  { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { border:none; background:none; cursor:pointer; font-family:inherit; }
input,select,textarea { font-family:var(--font-body); outline:none; border:none; }
textarea { resize:vertical; }

/* ── Container ─────────────────────────────────────── */
.container { max-width:var(--max-w); margin:0 auto; padding:0 48px; }
@media(max-width:768px){ .container{ padding:0 20px; } }

/* ── Section helpers ───────────────────────────────── */
.sec { padding:100px 0; }
.sec-tag {
  display:inline-block;
  font-family:var(--font-head);
  font-size:14px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--yellow);
  background:rgba(244,180,0,0.10);
  padding:6px 18px;
  border-radius:99px;
  margin-bottom:16px;
}
.sec-tag-light {
  display:inline-block;
  font-family:var(--font-head);
  font-size:14px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--yellow);
  background:rgba(244,180,0,0.15);
  padding:6px 18px;
  border-radius:99px;
  margin-bottom:16px;
}
.sec-title {
  font-family:var(--font-head);
  font-size:clamp(32px,3.5vw,42px);
  font-weight:700;
  line-height:1.2;
  color:var(--txt-dark);
  margin-bottom:56px;
}
.sec-title-light {
  font-family:var(--font-head);
  font-size:clamp(32px,3.5vw,42px);
  font-weight:700;
  line-height:1.2;
  color:var(--white);
  margin-bottom:56px;
}
.txt-yellow { color:var(--yellow); }

/* ── Scroll-in animation ───────────────────────────── */
[data-aos] { opacity:0; transform:translateY(30px); transition:opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-in { opacity:1; transform:translateY(0); }
[data-aos-delay="60"][data-aos]  { transition-delay:60ms; }
[data-aos-delay="100"][data-aos] { transition-delay:100ms; }
[data-aos-delay="150"][data-aos] { transition-delay:150ms; }
[data-aos-delay="200"][data-aos] { transition-delay:200ms; }
[data-aos-delay="250"][data-aos] { transition-delay:250ms; }
[data-aos-delay="300"][data-aos] { transition-delay:300ms; }
[data-aos="fade-right"] { transform:translateX(-30px); }
[data-aos="fade-right"].aos-in  { transform:translateX(0); }
[data-aos="fade-left"]  { transform:translateX(30px); }
[data-aos="fade-left"].aos-in   { transform:translateX(0); }

/* ═══════════════════ BUTTONS ══════════════════════ */
.btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 32px;
  border-radius:99px;
  font-family:var(--font-head);
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:all var(--trans);
  border:2px solid transparent;
  white-space:nowrap;
}
.btn-primary {
  background:var(--yellow);
  color:var(--txt-dark);
  border-color:var(--yellow);
  box-shadow:var(--shadow-y);
}
.btn-primary:hover { background:var(--green); color:var(--white); border-color:var(--green); transform:translateY(-3px); box-shadow:0 12px 36px rgba(37,71,52,0.35); }

.btn-outline-dark {
  background:transparent;
  color:var(--txt-dark);
  border-color:var(--border);
}
.btn-outline-dark:hover { background:var(--green); color:var(--white); border-color:var(--green); transform:translateY(-3px); }

.btn-outline-light {
  background:transparent;
  color:var(--green);
  border-color:var(--green);
}
.btn-outline-light:hover { background:var(--green); color:var(--white); transform:translateY(-3px); }

.btn-video {
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family:var(--font-head);
  font-size:15px;
  font-weight:600;
  color:var(--white);
  transition:all var(--trans);
}
.btn-video:hover { color:var(--yellow); }

.play-circle {
  width:48px; height:48px;
  border-radius:50%;
  background:var(--yellow);
  color:var(--txt-dark);
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
  padding-left:3px;
  flex-shrink:0;
  transition:transform var(--trans);
  box-shadow:var(--shadow-y);
}
.btn-video:hover .play-circle { transform:scale(1.1); }

/* ═══════════════════ HEADER ══════════════════════ */
.header {
  position:absolute;
  top:30px; left:50%;
  transform:translateX(-50%);
  width:calc(100% - 60px);
  max-width:1200px;
  z-index:1000;
  height:76px;
  background:var(--green);
  border-radius:99px;
  transition:all var(--trans);
  border-bottom:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}
.header.scrolled {
  position:fixed;
  top:20px;
  box-shadow:0 10px 30px rgba(37,71,52,0.3);
  background:var(--green);
}

.nav-wrap {
  width:100%;
  max-width:100%;
  margin:0 auto;
  padding:0 24px 0 32px;
  height:100%;
  display:flex;
  align-items:center;
  gap:32px;
}

.nav-logo {
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.logo-circle {
  width:36px; height:36px;
  border-radius:50%;
  background:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-head);
  font-weight:700;
  font-size:18px;
  color:var(--txt-dark);
  box-shadow:none;
}
.logo-text {
  font-family:var(--font-head);
  font-size:1.4rem;
  font-weight:600;
  color:var(--white);
}
.logo-dot { color:var(--yellow); }

.nav-menu { flex:1; }
.nav-list { display:flex; align-items:center; justify-content:center; gap:36px; }
.nav-link {
  font-family:var(--font-body);
  font-size:15px;
  font-weight:500;
  color:#d1d5db; /* Light gray text */
  transition:color var(--trans);
  position:relative;
  padding:6px 14px;
}
.nav-link::after {
  content:'';
  position:absolute;
  bottom:0; left:0;
  width:0; height:2px;
  background:var(--yellow);
  border-radius:99px;
  transition:width var(--trans);
}
.nav-link:hover,.nav-link.active { color:var(--yellow); }
.nav-link:hover::after,.nav-link.active::after { width:100%; }

.btn-talk {
  flex-shrink:0;
  padding:12px 28px;
  border-radius:99px;
  background:var(--white);
  border:none;
  font-family:var(--font-body);
  font-size:15px;
  font-weight:600;
  color:var(--txt-dark);
  transition:all var(--trans);
  white-space:nowrap;
}
.btn-talk:hover { background:var(--yellow); color:var(--txt-dark); transform:translateY(-2px); border-color:transparent; }

.nav-toggle {
  display:none;
  flex-direction:column;
  gap:6px;
  padding:4px;
  margin-left:auto;
}
.nav-toggle span {
  display:block;
  width:26px; height:2.5px;
  background:var(--white);
  border-radius:2px;
  transition:transform var(--trans), opacity var(--trans);
}

/* ═══════════════════ HERO ══════════════════════ */
.hero-section {
  min-height:100vh;
  background:var(--white);
  padding-top:180px;
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
}
.hero-section::before {
  content:'';
  position:absolute;
  top:0; right:0;
  width:55%;
  height:100%;
  background:linear-gradient(160deg, rgba(244,180,0,0.06) 0%, rgba(37,71,52,0.04) 100%);
  border-radius:0 0 0 80px;
  pointer-events:none;
}

.hero-container {
  flex:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
  padding-top:60px;
  padding-bottom:60px;
}

/* Left */
.hero-label-box {
  display:inline-flex;
  align-items:center;
  position:relative;
  font-family:var(--font-head);
  font-size:18px;
  font-weight:500;
  color:var(--txt-mid);
  padding:10px 24px;
  border:1.5px solid var(--txt-dark);
  margin-bottom:28px;
  background:var(--white);
}
.hl-corner {
  position:absolute;
  width:6px; height:6px;
  background:var(--yellow);
  border:1.5px solid var(--txt-dark);
}
.hl-corner.tl { top:-4px; left:-4px; }
.hl-corner.tr { top:-4px; right:-4px; }
.hl-corner.bl { bottom:-4px; left:-4px; }
.hl-corner.br { bottom:-4px; right:-4px; }

.txt-yellow-line {
  color:var(--yellow);
  position:relative;
  display:inline-block;
}
.txt-yellow-line::after {
  content:'';
  position:absolute;
  bottom:6px; left:0; width:100%; height:3px;
  background:var(--yellow);
}

.hero-h1 {
  font-family:var(--font-head);
  font-size:clamp(38px,5vw,62px);
  font-weight:800;
  line-height:1.15;
  letter-spacing:-1px;
  color:var(--txt-dark);
  margin-bottom:24px;
}

.hero-para {
  font-family:var(--font-body);
  font-size:18px;
  font-weight:400;
  line-height:1.7;
  color:var(--txt-gray);
  max-width:500px;
  margin-bottom:36px;
}

.hero-btns { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; align-items:center; }

.btn-portfolio {
  background:var(--green);
  color:var(--white);
  border-radius:99px;
  padding:8px 8px 8px 32px;
  display:inline-flex;
  align-items:center;
  gap:24px;
  border:none;
}
.btn-portfolio:hover {
  background:var(--green-d);
  color:var(--white);
  transform:translateY(-2px);
}
.play-icon-circle {
  width:40px; height:40px;
  border-radius:50%;
  background:var(--white);
  display:flex; align-items:center; justify-content:center;
  border:3px solid var(--yellow);
  padding-left:2px;
  flex-shrink:0;
}
.btn-hire {
  padding:14px 36px;
  border-radius:99px;
  border:1.5px solid var(--txt-dark);
  color:var(--txt-dark);
  font-weight:600;
  background:var(--white);
}
.btn-hire:hover { background:var(--txt-dark); color:var(--white); }

.hero-stats {
  display:flex;
  align-items:center;
  gap:0;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px 28px;
  width:fit-content;
}
.hstat {
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:0 24px;
  position:relative;
}
.hstat-num {
  font-family:var(--font-head);
  font-size:32px;
  font-weight:800;
  color:var(--txt-dark);
  line-height:1;
}
.hstat-unit {
  font-family:var(--font-head);
  font-size:20px;
  font-weight:700;
  color:var(--yellow);
  position:absolute;
  top:0; right:12px;
}
.hstat-lbl {
  font-size:12px;
  color:var(--txt-gray);
  text-align:center;
  line-height:1.4;
  margin-top:6px;
  font-weight:500;
}
.hstat-sep {
  width:1px;
  height:48px;
  background:var(--border);
  flex-shrink:0;
}

/* Right Visual */
.hero-right {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  height:600px;
}

.hero-blob-solid {
  position:absolute;
  width:480px; height:460px;
  background:var(--yellow);
  border-radius:60% 40% 70% 30% / 50% 60% 40% 50%;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  z-index:0;
}

.hero-curve-line {
  position:absolute;
  width:40px; height:180px;
  top:45%; left:-2%;
  z-index:1;
}

.hero-portrait-cutout {
  position:absolute;
  z-index:2;
  width:auto;
  height:850px;
  max-width:none;
  bottom:-10%;
  left:50%;
  transform:translateX(-50%);
  pointer-events:none;
}

/* Floating Pills */
.hero-pill {
  position:absolute;
  z-index:4;
  padding:12px 24px;
  border-radius:99px;
  font-family:var(--font-head);
  font-size:16px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
  animation:floatCard 4s ease-in-out infinite;
}
.hp-green {
  background:var(--green);
  color:var(--white);
  bottom:15%; left:-5%;
  animation-delay:0s;
}
.hp-yellow {
  background:var(--yellow);
  color:var(--txt-dark);
  bottom:25%; right:-5%;
  animation-delay:1.5s;
}
.hp-cursor {
  position:absolute;
  width:28px; height:28px;
  filter:drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}
.hp-cursor-green { top:-15px; left:-15px; transform:rotate(-15deg); }
.hp-cursor-yellow { top:-20px; left:-10px; transform:rotate(-15deg); }

/* Circular Badge */
.hero-badge {
  position:absolute;
  top:15%; right:-5%;
  width:140px; height:140px;
  background:var(--green);
  border-radius:50%;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 32px rgba(37,71,52,0.3);
  border:4px solid var(--white);
  animation:floatCard 6s ease-in-out infinite alternate;
}
.hb-text-ring {
  position:absolute;
  inset:0;
  animation:spinSlow 14s linear infinite;
}
.hb-text-ring svg { width:100%; height:100%; }
.hb-text-ring text {
  font-family:var(--font-head);
  font-size:11px;
  font-weight:700;
  fill:var(--white);
  text-transform:uppercase;
  letter-spacing:3.5px;
}
.hb-inner-circle {
  width:44px; height:44px;
  background:var(--yellow);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--txt-dark);
}
.hb-inner-circle svg {
  transform:rotate(45deg);
}

@keyframes floatCard {
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll cue */
.scroll-cue {
  display:flex;
  justify-content:center;
  padding:20px 0 36px;
  animation:bounceDown 2s ease-in-out infinite;
}
.scroll-arrow-wrap {
  width:42px; height:42px;
  border-radius:50%;
  border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  background:var(--white);
  box-shadow:var(--shadow);
}
.scroll-arr {
  width:12px; height:12px;
  border-right:2.5px solid var(--txt-dark);
  border-bottom:2.5px solid var(--txt-dark);
  transform:rotate(45deg);
  margin-top:-4px;
}

/* ═══════════════════ MARQUEE ══════════════════════ */
.marquee-wrapper {
  position:relative;
  margin-top:-30px;
  margin-bottom:80px;
  z-index:5;
}

.marquee-bg-bar {
  position:absolute;
  top:0; left:-5%; width:110%;
  height:76px;
  background:var(--green);
  transform:rotate(-2deg);
  z-index:1;
}

.marquee-bar {
  background:var(--yellow);
  padding:22px 0;
  overflow:hidden;
  white-space:nowrap;
  position:relative;
  transform:rotate(1deg);
  z-index:2;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  width:105%;
  left:-2.5%;
}
.marquee-track {
  display:inline-block;
  animation:marqueeScroll 160s linear infinite;
}
.marquee-content {
  display:inline-flex;
  align-items:center;
  gap:50px;
  width:max-content;
}
.marquee-content span {
  font-family:var(--font-head);
  font-size:24px;
  font-weight:700;
  color:var(--txt-dark);
  white-space:nowrap;
  letter-spacing:0.5px;
}
.marquee-content .mstar {
  width:24px; height:24px;
  stroke:var(--txt-dark);
  stroke-width:2;
  stroke-linecap:round;
  flex-shrink:0;
}
@keyframes marqueeScroll {
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* ═══════════════════ SERVICES ══════════════════════ */
.services-sec { background:var(--white); padding:100px 0; }

.svc-header {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:60px;
}
.svc-title-area {
  display:flex;
  flex-direction:column;
  gap:8px;
}
.dash-yellow {
  display:inline-block;
  width:16px; height:2px;
  background:var(--yellow);
  vertical-align:middle;
  margin-right:8px;
}
.sec-tag {
  font-family:var(--font-head);
  font-size:18px;
  font-weight:600;
  color:var(--txt-dark);
}
.sec-title {
  font-family:var(--font-head);
  font-size:42px;
  font-weight:700;
  color:var(--txt-dark);
}
.txt-yellow { color:var(--yellow); }
.txt-italic { font-style:italic; font-weight:400; }

.btn-view-all {
  display:inline-flex;
  align-items:center;
  background:var(--green);
  border-radius:99px;
  text-decoration:none;
  padding:6px 6px 6px 24px;
  gap:16px;
  transition:transform 0.3s ease;
}
.btn-view-all:hover {
  transform:translateY(-2px);
}
.bva-text {
  font-family:var(--font-head);
  font-size:14px;
  font-weight:600;
  color:var(--white);
}
.bva-icon {
  width:36px; height:36px;
  background:var(--yellow);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.svc-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.svc-card {
  background:#F5F5F5;
  border-radius:16px;
  padding:40px 32px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  transition:all 0.3s ease;
  border:1px solid transparent;
}
.svc-card:hover { 
  transform:translateY(-5px); 
  border:1px solid #EAEAEA;
  box-shadow:0 12px 24px rgba(0,0,0,0.04); 
}

.svc-icon-wrap {
  width:64px; height:64px;
  background:var(--white);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  box-shadow:0 4px 12px rgba(0,0,0,0.04);
}
.svc-card h3 {
  font-family:var(--font-head);
  font-size:22px;
  font-weight:700;
  color:var(--txt-dark);
  margin-bottom:12px;
}
.svc-card p {
  font-family:var(--font-body);
  font-size:15px;
  color:var(--txt-mid);
  line-height:1.6;
  margin-bottom:24px;
}
.svc-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-head);
  font-size:16px;
  font-weight:700;
  color:var(--green);
  text-decoration:none;
  margin-top:auto;
}
.svc-link svg {
  width:18px; height:18px;
  stroke:var(--yellow);
  transition:transform 0.3s;
}
.svc-link:hover svg { transform:translateX(4px); }

/* ═══════════════════ ABOUT ══════════════════════ */
.about-sec { background:var(--green); padding:120px 0; overflow:hidden; }
.about-container {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center;
}

/* Left image */
.about-left { position:relative; display:flex; justify-content:center; }
.about-img-wrap { 
  position:relative; 
  width:480px; 
  height:520px;
}
/* Yellow circle */
.about-circle-bg {
  position:absolute;
  width:420px; height:420px;
  background:var(--yellow);
  border-radius:50%;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  z-index:0;
}
/* Ayesha's photo - sits on the yellow circle, full body visible */
.about-portrait {
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  height:510px;
  width:auto;
  max-width:none;
  object-fit:contain;
  object-position:bottom center;
  z-index:1;
}
/* Floating skill pills */
.apill {
  position:absolute;
  padding:9px 18px;
  border-radius:99px;
  font-family:var(--font-head);
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  z-index:3;
  box-shadow:0 4px 16px rgba(0,0,0,0.18);
}
.apill-yellow { background:var(--yellow); color:#1a1a1a; }
.apill-green  { background:#1e3a2f; color:#fff; }

/* Individual pill positions matching the reference image */
.apill-1 { top:55%; left:50%; transform:translateX(-50%); }        /* Center */
.apill-2 { top:64%; left:4%;  transform:rotate(-4deg); }            /* Left */
.apill-3 { top:62%; right:2%; transform:rotate(5deg); }             /* Right */
.apill-4 { top:74%; left:2%;  transform:rotate(-5deg); }            /* Far left */
.apill-5 { top:74%; left:44%; }                                      /* Center bottom */
.apill-6 { top:72%; right:0;  transform:rotate(10deg); }            /* Far right */
.apill-7 { top:85%; left:20%; }                                      /* Bottom center */

/* Right content */
.sec-tag-light {
  font-family:var(--font-head);
  font-size:18px;
  font-weight:600;
  color:var(--white);
  margin-bottom:16px;
}
.about-h2 {
  font-family:var(--font-head);
  font-size:48px;
  font-weight:800;
  line-height:1.2;
  color:var(--white);
  margin-bottom:28px;
}
.about-p {
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  color:rgba(255,255,255,0.7);
  margin-bottom:20px;
}
.about-stats {
  display:flex;
  gap:48px;
  margin:40px 0;
}
.astat { display:flex; flex-direction:column; align-items:flex-start; }
.astat-val {
  font-family:var(--font-head);
  font-size:36px;
  font-weight:800;
  color:var(--yellow);
  line-height:1;
}
.astat-plus {
  font-size:24px;
  font-weight:700;
}
.astat-lbl {
  font-family:var(--font-body);
  font-size:15px;
  color:rgba(255,255,255,0.6);
  margin-top:10px;
}
.about-bottom { 
  display:flex; 
  align-items:center; 
  gap:32px; 
}
.btn-download-cv {
  display:inline-flex;
  align-items:center;
  background:transparent;
  border:2px solid var(--yellow);
  border-radius:99px;
  text-decoration:none;
  padding:6px 6px 6px 24px;
  gap:20px;
  transition:transform 0.3s ease;
}
.btn-download-cv:hover { transform:translateY(-2px); }
.bd-text {
  font-family:var(--font-head);
  font-size:15px;
  font-weight:600;
  color:var(--white);
}
.bd-icon {
  width:40px; height:40px;
  background:var(--white);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--yellow);
}
.signature {
  font-family:'Dancing Script', cursive;
  font-size:42px;
  color:var(--yellow);
  transform:rotate(-3deg);
}

/* ═══════════════════ TOOLS ══════════════════════ */
.tools-sec { background:#fff; padding:100px 0; text-align:center; }

.sec-tag {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-head);
  font-size:15px;
  font-weight:600;
  color:var(--txt-mid);
  margin-bottom:16px;
}
.dash-yellow-inline {
  display:inline-block;
  width:28px; height:3px;
  background:var(--yellow);
  border-radius:2px;
}
.sec-title-tools {
  font-family:var(--font-head);
  margin-bottom:64px;
  line-height:1.2;
}
.txt-yellow { color:var(--yellow); }
.txt-italic { font-style:italic; font-weight:700; font-size:clamp(32px,3.5vw,48px); }
.txt-dark-bold { color:var(--txt-dark); font-weight:800; font-size:clamp(32px,3.5vw,48px); }

.tools-grid {
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}

/* Pill card */
.tool-card {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  cursor:default;
}
.tool-card-inner {
  background:#f0f0f0;
  border-radius:120px;
  width:155px;
  height:230px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  padding:32px 0 28px;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.tool-card:hover .tool-card-inner {
  transform:translateY(-10px);
  box-shadow:0 24px 52px rgba(0,0,0,0.12);
}
.tool-icon-img {
  width:60px; height:60px;
  object-fit:contain;
  flex-shrink:0;
}
.tool-pct {
  font-family:var(--font-head);
  font-size:34px;
  font-weight:800;
  color:#111;
  letter-spacing:-0.5px;
  line-height:1;
}
.tool-name {
  font-family:var(--font-head);
  font-size:34px;
  font-weight:600;
  color:#111;
  letter-spacing:-0.5px;
  margin-top:4px;
}

/* ═══════════════════ PORTFOLIO ══════════════════════ */
.portfolio-sec { background:#fff; padding:100px 0; }

/* Header row */
.port-header {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:48px;
  flex-wrap:wrap;
  gap:24px;
}
.port-header-left { display:flex; flex-direction:column; gap:4px; }
.port-title {
  font-family:var(--font-head);
  font-size:clamp(28px,3vw,42px);
  font-weight:800;
  color:var(--txt-dark);
  line-height:1.2;
  margin:0;
}

/* View All Projects button — dark green pill + yellow circle arrow */
.btn-view-all {
  display:inline-flex;
  align-items:center;
  background:var(--green);
  border-radius:99px;
  text-decoration:none;
  padding:8px 8px 8px 24px;
  gap:16px;
  flex-shrink:0;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-view-all:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(37,71,52,0.3); }
.bva-text {
  font-family:var(--font-head);
  font-size:15px;
  font-weight:600;
  color:#fff;
  white-space:nowrap;
}
.bva-icon {
  width:42px; height:42px;
  background:var(--yellow);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--txt-dark);
  flex-shrink:0;
}

/* 2x2 grid */
.port-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

/* Project card */
.proj-card {
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 4px 24px rgba(0,0,0,0.08);
  border:1px solid #eee;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  display:flex;
  flex-direction:column;
}
.proj-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(0,0,0,0.12); }

/* Image */
.proj-img-wrap {
  width:100%;
  height:400px;
  overflow:hidden;
  background:#f5f5f5;
  flex-shrink:0;
}
.proj-img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
  display:block;
}
.proj-card:hover .proj-img { transform:scale(1.04); }

/* Footer (tags + title + arrow) */
.proj-foot {
  padding:20px 24px 24px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}
.proj-tags {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.proj-tag {
  display:inline-block;
  background:var(--yellow);
  color:#111;
  font-family:var(--font-head);
  font-size:12px;
  font-weight:700;
  padding:5px 14px;
  border-radius:99px;
}
.proj-foot-bottom {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-top:auto;
}
.proj-title {
  font-family:var(--font-head);
  font-size:20px;
  font-weight:800;
  color:var(--txt-dark);
  line-height:1.35;
  margin:0;
}
.proj-arrow {
  width:44px; height:44px;
  border-radius:50%;
  background:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  flex-shrink:0;
  text-decoration:none;
  transition:transform 0.3s ease, background 0.3s ease;
}
.proj-arrow:hover { background:var(--yellow); color:var(--txt-dark); transform:scale(1.1); }

/* ═══════════════════ EXPERIENCE ══════════════════════ */
.exp-sec { background:var(--white); }
.exp-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
.exp-card {
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:40px;
  box-shadow:var(--shadow);
}
.exp-card-hdr {
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:36px;
  padding-bottom:20px;
  border-bottom:2px solid var(--border);
}
.exp-icon-wrap {
  font-size:28px;
  width:56px; height:56px;
  background:var(--white);
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow);
}
.exp-card-hdr h3 {
  font-family:var(--font-head);
  font-size:24px;
  font-weight:700;
  color:var(--txt-dark);
}

/* Timeline */
.timeline { display:flex; flex-direction:column; gap:32px; }
.tl-item { display:flex; gap:18px; position:relative; }
.tl-item::before {
  content:'';
  position:absolute;
  top:22px; left:10px;
  width:2px;
  height:calc(100% + 32px);
  background:var(--border);
}
.tl-item:last-child::before { display:none; }
.tl-dot {
  width:22px; height:22px;
  border-radius:50%;
  background:var(--white);
  border:3px solid var(--green);
  flex-shrink:0;
  margin-top:2px;
  z-index:1;
}
.tl-dot-y { border-color:var(--yellow); background:var(--yellow); }
.tl-body { flex:1; }
.tl-yr {
  display:inline-block;
  font-family:var(--font-head);
  font-size:12px;
  font-weight:600;
  color:var(--yellow);
  background:rgba(244,180,0,0.12);
  padding:3px 12px;
  border-radius:99px;
  margin-bottom:8px;
  letter-spacing:0.5px;
}
.tl-body h4 {
  font-family:var(--font-head);
  font-size:17px;
  font-weight:700;
  color:var(--txt-dark);
  margin-bottom:4px;
}
.tl-inst {
  font-size:14px;
  font-weight:600;
  color:var(--green);
  margin-bottom:8px;
}
.tl-desc {
  font-size:14px;
  line-height:1.65;
  color:var(--txt-gray);
}

/* ═══════════════════ PRICING ══════════════════════ */
.pricing-sec {
  background:#3f513f; /* Dark green background */
  padding:100px 0;
}

/* Header */
.price-header {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:64px;
  flex-wrap:wrap;
  gap:24px;
}
.price-header-left {
  display:flex; flex-direction:column; gap:4px;
}
.price-title {
  font-family:var(--font-head);
  font-size:clamp(32px,4vw,44px);
  font-weight:800;
  color:#fff;
  line-height:1.2;
  margin:0;
}
.btn-get-started {
  display:inline-flex;
  align-items:center;
  background:rgba(0,0,0,0.15);
  border:1px solid rgba(255,255,255,0.4);
  border-radius:99px;
  text-decoration:none;
  padding:8px 8px 8px 24px;
  gap:16px;
  transition:transform 0.3s ease, background 0.3s ease;
}
.btn-get-started:hover {
  transform:translateY(-2px);
  background:rgba(0,0,0,0.25);
}
.bgs-text {
  font-family:var(--font-head);
  font-size:15px;
  font-weight:600;
  color:#fff;
  white-space:nowrap;
}
.bgs-icon {
  width:42px; height:42px;
  background:var(--yellow);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--txt-dark);
}

/* Cards */
.pricing-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  align-items:stretch;
}
.price-card {
  background:#485a48;
  border-radius:24px;
  padding:20px;
  display:flex;
  flex-direction:column;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform:translateY(-8px); box-shadow:0 24px 60px rgba(0,0,0,0.2); }

/* Middle Card */
.price-card.pc-feat { background:var(--yellow); }

.pc-head {
  background:#2f3d2f;
  border-radius:16px;
  padding:32px;
  position:relative;
  margin-bottom:32px;
}
.pc-title {
  font-family:var(--font-head);
  font-size:24px;
  font-weight:700;
  color:#fff;
  margin:0 0 16px;
}
.pc-arrow {
  position:absolute;
  top:32px; right:32px;
  width:36px; height:36px;
  background:var(--yellow);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--txt-dark);
  text-decoration:none;
  transition:transform 0.3s ease;
}
.pc-arrow:hover { transform:scale(1.1); }
.pc-price {
  font-family:var(--font-head);
  font-size:44px;
  font-weight:800;
  color:var(--yellow);
  line-height:1;
  display:flex;
  align-items:baseline;
}
.pc-currency { font-size:32px; margin-right:2px; }
.pc-period { font-size:16px; font-weight:500; color:#fff; margin-left:8px; }

/* Features List */
.pc-body { padding:0 12px 24px; }
.pc-features {
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:18px;
}
.pc-features li {
  display:flex; align-items:center; gap:14px;
  font-family:var(--font-body); font-size:15px; color:rgba(255,255,255,0.85);
}
.pc-feat .pc-features li { color:#333; font-weight:500; }
.pc-features li.pc-feat-dim { opacity:0.35; }
.pc-feat .pc-features li.pc-feat-dim { opacity:0.4; }

.pcf-icon {
  width:20px; height:20px;
  border-radius:50%;
  background:var(--yellow);
  display:flex; align-items:center; justify-content:center;
  color:var(--txt-dark); flex-shrink:0;
}
.pc-feat .pcf-icon { background:#222; color:var(--yellow); }


/* ═══════════════════ CONTACT ══════════════════════ */
.contact-sec { background:var(--bg); }
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:60px;
  align-items:start;
}

.contact-info { display:flex; flex-direction:column; gap:28px; }
.ci-item {
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.ci-icon {
  width:50px; height:50px;
  flex-shrink:0;
  border-radius:14px;
  background:var(--white);
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--yellow);
  box-shadow:var(--shadow);
}
.ci-item h4 {
  font-family:var(--font-head);
  font-size:15px;
  font-weight:700;
  color:var(--txt-dark);
  margin-bottom:4px;
}
.ci-item a,.ci-item p {
  font-size:15px;
  color:var(--txt-gray);
  transition:color var(--trans);
}
.ci-item a:hover { color:var(--yellow); }

.contact-socials { display:flex; gap:12px; margin-top:4px; }
.csoc {
  width:42px; height:42px;
  border-radius:50%;
  background:var(--white);
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--txt-mid);
  font-size:11px;
  font-weight:700;
  font-family:var(--font-head);
  transition:all var(--trans);
  box-shadow:var(--shadow);
}
.csoc:hover { background:var(--yellow); color:var(--txt-dark); border-color:var(--yellow); transform:translateY(-3px); }

/* Form */
.contact-form { display:flex; flex-direction:column; gap:16px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%;
  padding:16px 20px;
  border-radius:var(--radius-sm);
  border:2px solid var(--border);
  background:var(--white);
  font-size:15px;
  color:var(--txt-dark);
  transition:border-color var(--trans), box-shadow var(--trans);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:var(--txt-gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--yellow);
  box-shadow:0 0 0 4px rgba(244,180,0,0.12);
}
.form-group select { cursor:pointer; color:var(--txt-gray); }
.form-group select:valid { color:var(--txt-dark); }
.btn-send { width:100%; justify-content:center; }

/* ═══════════════════ TESTIMONIALS ══════════════════════ */
.testi-sec {
  background: var(--bg);
  padding: 100px 0 80px;
  overflow: hidden;
}
.testi-header {
  text-align: center;
  margin-bottom: 56px;
}
.testi-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--txt-dark);
  line-height: 1.2;
  margin: 8px 0 0;
}
.txt-yellow-italic {
  color: var(--yellow);
  font-style: italic;
  font-weight: 700;
  display: block;
}

/* Viewport — clips overflow on left/right */
.testi-viewport {
  overflow: hidden;
  padding: 24px 0 32px;
}

/* The sliding track */
.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  /* Initial offset is set by JS */
}

/* Individual card */
.tc {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 36px;
  min-width: 540px;
  max-width: 540px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  opacity: 0.45;
  transform: scale(0.95);
}
.tc.tc-active {
  transform: scale(1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  opacity: 1;
  z-index: 2;
}

/* Stars + score row */
.tc-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.tc-stars {
  color: var(--yellow);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
}
.tc-score {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--txt-dark);
}

/* Review body */
.tc-text {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 30px;
}

/* Author row */
.tc-bot {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tc-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.tc-name {
  margin: 0 0 3px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--txt-dark);
}
.tc-role {
  font-size: 13px;
  color: #888;
}

/* Arrow buttons */
.testi-arrows {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.ta-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ta-prev {
  background: var(--green);
  color: #fff;
}
.ta-next {
  background: var(--yellow);
  color: var(--txt-dark);
}
.ta-btn:hover { transform: scale(1.12); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

@media (max-width: 768px) {
  .tc { min-width: 80vw; max-width: 80vw; padding: 28px 24px; }
}

/* ═══════════════════ BLOG ══════════════════════ */
.blog-sec { background:var(--bg); }
.blog-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.blog-card {
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  transition:transform var(--trans), box-shadow var(--trans);
}
.blog-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-h); }
.blog-img {
  height:220px;
  position:relative;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.blog-emoji {
  font-size:60px;
  opacity:0.6;
  transition:transform 0.4s ease;
}
.blog-card:hover .blog-emoji { transform:scale(1.2); }
.blog-cat-tag {
  position:absolute;
  top:20px; left:20px;
  font-family:var(--font-head);
  font-size:12px;
  font-weight:700;
  color:var(--txt-dark);
  background:var(--yellow);
  padding:5px 14px;
  border-radius:99px;
  letter-spacing:0.5px;
}
.blog-body { padding:28px; }
.blog-meta {
  display:flex;
  gap:12px;
  font-size:13px;
  color:var(--txt-gray);
  margin-bottom:14px;
}
.blog-title {
  font-family:var(--font-head);
  font-size:19px;
  font-weight:700;
  color:var(--txt-dark);
  line-height:1.35;
  margin-bottom:12px;
}
.blog-excerpt {
  font-size:14px;
  line-height:1.7;
  color:var(--txt-gray);
  margin-bottom:20px;
}
.blog-link {
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:var(--font-head);
  font-size:14px;
  font-weight:600;
  color:var(--green);
  transition:color var(--trans), gap var(--trans);
}
.blog-link:hover { color:var(--yellow); gap:10px; }

/* ═══════════════════ FAQ ══════════════════════ */
.faq-sec {
  background: #354535;
  padding: 100px 0;
}
.faq-header {
  text-align: center;
  margin-bottom: 52px;
}
.faq-tag {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.faq-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.faq-title-em {
  color: var(--yellow);
  font-style: italic;
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.08);
  text-align: left;
  border-radius: 14px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}
.faq-btn:hover { background: rgba(255,255,255,0.13); }

.faq-ico {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Open state */
.faq-item.open .faq-btn {
  background: var(--yellow);
  color: var(--txt-dark);
  border-radius: 14px 14px 0 0;
}
.faq-item.open .faq-ico {
  color: var(--txt-dark);
  content: '−';
}
/* Replace + with − when open */
.faq-item.open .faq-ico::before { content: '−'; }
.faq-item:not(.open) .faq-ico::before { content: '+'; }
.faq-ico { font-size: 0; } /* hide raw text, use ::before */
.faq-ico::before {
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-body { max-height: 300px; }
.faq-body p {
  padding: 20px 28px 26px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(37, 37, 37, 0.85);
  background: var(--yellow);
  margin: 0;
  border-radius: 0 0 14px 14px;
}

/* ═══════════════════ FOOTER ══════════════════════ */
.footer { background: #fff; }

/* ── Ticker ─────────────────── */
.footer-ticker {
  background: var(--yellow);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  animation: ticker 90s linear infinite;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--txt-dark);
}
.ticker-star { font-size: 20px; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Let's Connect banner ────── */
.footer-connect {
  background: #fff;
  padding: 56px 0 0;
}
.footer-connect-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer-connect-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--txt-dark);
  margin: 0;
  line-height: 1.2;
}
.footer-connect-em {
  color: var(--yellow);
  font-style: italic;
  font-weight: 700;
}
.footer-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 99px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.footer-connect-btn:hover { background: var(--green-d); transform: translateY(-2px); }
.footer-connect-arrow {
  background: var(--yellow);
  color: var(--txt-dark);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

/* ── Main grid ───────────────── */
.footer-main { background: #fff; padding: 56px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 40px;
}
.footer-logo { margin-bottom: 16px; display: inline-flex; }
.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--txt-gray);
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.fsoc {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-dark);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-head);
  transition: all 0.3s ease;
}
.fsoc:hover { background: var(--green); color: #fff; transform: translateY(-3px); }

.footer-hd {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--txt-mid);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0; margin: 0;
}
.footer-contact-list li {
  font-size: 14px;
  color: var(--txt-mid);
  line-height: 1.6;
}

/* Newsletter inline row */
.nl-form { margin: 0; }
.nl-row {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
}
.nl-row input {
  flex: 1;
  padding: 13px 16px;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--txt-dark);
  outline: none;
}
.nl-row input::placeholder { color: var(--txt-gray); }
.nl-row button {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
}
.nl-row button:hover { background: var(--green-d); }

/* ── Bottom bar ──────────────── */
.footer-bar {
  background: var(--green-d);
  padding: 18px 0;
}
.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-bar p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.footer-bar-brand { color: var(--yellow); font-weight: 600; }
.footer-bar-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s ease;
}
.footer-bar-link:hover { color: var(--yellow); }

/* ═══════════════════ BACK TO TOP ══════════════════════ */
.back-top {
  position:fixed;
  bottom:36px; right:36px;
  z-index:999;
  width:50px; height:50px;
  border-radius:50%;
  background:var(--yellow);
  color:var(--txt-dark);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-y);
  opacity:0;
  transform:translateY(16px);
  transition:all var(--trans);
  pointer-events:none;
}
.back-top.visible { opacity:1; transform:translateY(0); pointer-events:all; }
.back-top:hover { background:var(--green); color:var(--white); transform:translateY(-4px); }

/* ═══════════════════ RESPONSIVE ══════════════════════ */
@media(max-width:1200px) {
  .tools-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
}

@media(max-width:1440px) {
  .hero-right { height: 500px; }
  .hero-blob-solid { width: 400px; height: 380px; }
  .hero-portrait-cutout { height: 700px; bottom: -8%; }
}

@media(max-width:1200px) {
  .hero-right { height: 420px; }
  .hero-blob-solid { width: 340px; height: 320px; }
  .hero-portrait-cutout { height: 600px; bottom: -5%; }
  .hero-h1 { font-size: clamp(32px, 4vw, 48px); }
}

@media(max-width:992px) {
  .hero-container { grid-template-columns:1fr; text-align:center; gap:48px; }
  .hero-right { height:420px; }
  .hero-blob-solid { width:380px; height:380px; }
  .hero-portrait-cutout { height: 600px; bottom: -5%; }
  .hero-para { margin:0 auto 36px; }
  .hero-btns { justify-content:center; }
  .hero-stats { margin:0 auto; }
  .flt-1 { left:2%; }
  .flt-2 { right:2%; }
  .flt-3 { left:0%; }
  .about-container { grid-template-columns:1fr; gap:48px; text-align:center; }
  .about-left { display:flex; justify-content:center; }
  .about-btns { justify-content:center; }
  .about-stats { justify-content:center; }
  .abadge-1 { right:-8%; }
  .abadge-2 { right:-10%; }
  .abadge-3 { left:-4%; }
  .svc-grid { grid-template-columns:1fr 1fr; }
  .exp-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .price-card-feat { transform:none; }
  .price-card-feat:hover { transform:translateY(-8px); }
  .contact-grid { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:repeat(2,1fr); }
}

@media(max-width:991px) {
  :root { --nav-h:70px; }
  .header { z-index:100000; }
  .nav-wrap { padding:0 20px; position:relative; }
  .nav-toggle { display:flex; z-index:100001; cursor:pointer; }
  .btn-talk { display:none; }
  .nav-menu {
    display:flex;
    position:fixed;
    top:var(--nav-h);
    left:0;
    width:100vw;
    height:calc(100vh - var(--nav-h));
    background:#11271b;
    backdrop-filter:blur(25px);
    -webkit-backdrop-filter:blur(25px);
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-15px);
    transition:opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
  .nav-menu.open {
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }
  .nav-list {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:28px;
    width:100%;
    margin:0;
    padding:0;
    list-style:none;
  }
  .nav-link {
    font-size:22px;
    font-weight:700;
    color:var(--white);
    transition:color 0.25s ease, transform 0.25s ease;
  }
  .nav-link:hover, .nav-link.active {
    color:var(--yellow);
    transform:translateY(-2px);
  }

  .hero-container { padding-top:40px; }
  .hero-h1 { font-size:clamp(30px,8vw,42px); }
  .hero-para { font-size:16px; }
  .hero-stats { flex-wrap:wrap; gap:0; padding:16px 20px; }
  .hstat { padding:8px 16px; }
  .hstat-sep { display:none; }
  .hstat:not(:last-child) { border-bottom:1px solid var(--border); width:100%; }

  .svc-grid { grid-template-columns:1fr; }
  .tools-grid { grid-template-columns:repeat(3,1fr); gap:16px; }
  .tool-ring-wrap { width:90px; height:90px; }
  .tool-ring-svg { width:90px; height:90px; }
  .port-grid { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .sec { padding:72px 0; }
  .footer-grid { grid-template-columns:1fr; gap:28px; padding-top:48px; }
  .testi-card { padding:32px 24px; }
  .testi-txt { font-size:16px; }
  .container { padding:0 20px; }
}

@media(max-width:480px) {
  .hero-right { height:340px; }
  .hero-portrait-cutout { height:480px; bottom: -2%; }
  .hero-blob-solid { width:300px; height:300px; }
  .flt-card { display:none; }
  .about-portrait { width: 100%; height: auto; }
  .about-blob { width:280px; height:280px; }
  .about-stats { flex-direction:column; align-items:center; gap:20px; }
  .tools-grid { grid-template-columns:repeat(2,1fr); }
  .sec-title,.sec-title-light { font-size:28px; }
}
/* ================== MINIMAL HEADER & HERO ================== */


.minimal-header {
  position: relative;
  z-index: 100;
  font-family: 'Inter', sans-serif;
  background: transparent;
  padding: 1.5rem 5%;
}

.minimal-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.minimal-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  letter-spacing: -0.05em;
}

.minimal-socials {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 2rem;
  color: #333;
}

.minimal-socials a {
  color: inherit;
  display: flex;
  align-items: center;
  transition: color 0.3s, transform 0.3s;
}

.minimal-socials a:hover {
  color: #6979f8;
  transform: translateY(-2px);
}

.minimal-nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.minimal-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
.minimal-hamburger:hover {
  color: #6979f8;
}

.btn-minimal-essentials {
  background: linear-gradient(90deg, #ffb491, #ea5c85, #8a78ff);
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(234, 92, 133, 0.2);
}
.btn-minimal-essentials:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 92, 133, 0.3);
  color: white;
}

.minimal-hero-section {
  position: relative;
  font-family: 'Inter', sans-serif;
  text-align: center;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 1rem 10rem 1rem;
}

.minimal-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.minimal-swirl-svg {
  width: 100%;
  height: 100%;
  max-width: 1440px;
}

.minimal-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.minimal-h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: #222;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.minimal-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
  font-weight: 400;
}

.btn-minimal-create {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(90deg, #ffb491, #ea5c85, #6979f8);
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 25px rgba(105, 121, 248, 0.25);
}
.btn-minimal-create:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(105, 121, 248, 0.35);
  color: white;
}

.minimal-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 5rem;
  color: #1a1a1a;
}

.minimal-arrow-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

.minimal-cookie {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #333;
  z-index: 1000;
  border: 1px solid #f0f0f0;
}

.cookie-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  display: flex;
  align-items: center;
  padding: 0;
  transition: color 0.3s;
}
.cookie-close:hover {
  color: #333;
}

@media (max-width: 768px) {
  .minimal-h1 {
    font-size: 2.5rem;
  }
  .minimal-subtitle {
    font-size: 1rem;
  }
  .minimal-logos {
    gap: 1.5rem;
  }
}


/* -- Clients Section ------------------------------------------- */
.clients-sec { padding: 100px 0; background: var(--white); text-align: center; }
.clients-sec .sec-tag {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 24px;
}
.clients-sec .dash-green-inline {
  display: inline-block; width: 24px; height: 2px; background: var(--green); margin-right: 12px;
}
.clients-sec .sec-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--txt-dark); margin-bottom: 16px;
  line-height: 1.2;
}
.clients-sec .txt-green { color: var(--green); }
.clients-sec .txt-italic { font-style: italic; font-weight: 400; font-family: "Georgia", serif; }
.clients-subtitle {
  font-size: 18px; color: var(--txt-mid); margin: 0 auto 64px auto; max-width: 680px; line-height: 1.6;
}

.clients-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px;
}
@media(max-width: 992px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 600px) { .clients-grid { grid-template-columns: 1fr; } }

.client-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 32px 28px; text-align: left; transition: var(--trans);
}
.client-card:hover {
  box-shadow: var(--shadow); border-color: rgba(37,71,52,0.15); transform: translateY(-4px);
}
.client-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: rgba(37,71,52,0.08); color: var(--green);
  border-radius: 8px; margin-bottom: 20px;
}
.client-card h3 {
  font-size: 19px; font-weight: 700; color: var(--txt-dark); margin-bottom: 12px;
}
.client-card p {
  font-size: 14.5px; line-height: 1.6; color: var(--txt-gray); margin: 0;
}
.clients-btn-wrap { text-align: center; }
.btn-green-solid {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--white); font-weight: 600; font-size: 16px;
  padding: 16px 36px; border-radius: var(--radius-sm); transition: var(--trans);
}
.btn-green-solid:hover { background: var(--green-d); transform: translateY(-3px); }
.btn-green-solid svg { margin-left: 10px; transition: transform 0.3s ease; }
.btn-green-solid:hover svg { transform: translateX(5px); }


/* -- Industries Section ------------------------------------------- */
.industries-sec { padding: 100px 0; background: var(--bg); text-align: center; }
.industries-sec .sec-tag {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 24px;
}
.industries-sec .dash-green-inline {
  display: inline-block; width: 24px; height: 2px; background: var(--green); margin-right: 12px;
}
.industries-sec .sec-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--txt-dark); margin-bottom: 16px;
  line-height: 1.2; max-width: 900px; margin-left: auto; margin-right: auto;
}
.industries-subtitle {
  font-size: 18px; color: var(--txt-mid); margin: 0 auto 56px auto; max-width: 680px; line-height: 1.6;
}
.industry-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 56px; max-width: 1000px; margin-left: auto; margin-right: auto;
}
.industry-pill {
  display: inline-flex; align-items: center; background: var(--white);
  padding: 14px 24px; border-radius: 50px; font-size: 15px; font-weight: 500;
  color: var(--txt-dark); box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--border); transition: var(--trans); cursor: default;
}
.industry-pill:hover {
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: rgba(37,71,52,0.2);
}
.industry-pill svg {
  margin-right: 10px; color: var(--green); width: 18px; height: 18px;
}
.industries-btn-wrap { text-align: center; }
.btn-outline-green {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--txt-dark); font-weight: 600; font-size: 16px;
  padding: 16px 36px; border-radius: var(--radius-sm); border: 1px solid #d1d1d1;
  transition: var(--trans);
}
.btn-outline-green:hover {
  border-color: var(--green); color: var(--green); background: rgba(37,71,52,0.03); transform: translateY(-3px);
}
.btn-outline-green svg { margin-left: 10px; transition: transform 0.3s ease; }
.btn-outline-green:hover svg { transform: translateX(5px); }


/* -- Tech Stack Section ------------------------------------------- */
.tech-sec { padding: 100px 0; background: #fafafa; }
.tech-sec .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.tech-tag {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #eab308; margin-bottom: 16px; display: block;
}
.tech-title {
  font-size: clamp(32px, 4vw, 42px); font-weight: 800; color: #0b1527; margin-bottom: 24px;
  line-height: 1.2;
}
.tech-subtitle {
  font-size: 17px; color: #475569; margin-bottom: 56px; max-width: 640px; line-height: 1.6;
}
.tech-grid-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px;
}
@media(max-width: 992px) { .tech-grid-top { grid-template-columns: 1fr; } }
.tech-card {
  background: var(--white); border: 1px solid #e2e8f0; border-radius: 16px; padding: 32px; text-align: left;
}
.tc-header { display: flex; align-items: center; margin-bottom: 24px; }
.tc-icon {
  width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-right: 20px;
}
.tc-icon.blue { background: #eff6ff; color: #3b82f6; }
.tc-icon.yellow { background: #fefce8; color: #eab308; }
.tc-icon svg { width: 26px; height: 26px; }
.tc-title-wrap h3 { font-size: 19px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.tc-title-wrap p { font-size: 14.5px; color: #94a3b8; margin: 0; }
.tc-divider { height: 1px; background: #f1f5f9; margin: 0 0 24px 0; border: none; }
.tc-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.tc-pill {
  display: inline-flex; align-items: center; background: var(--white);
  border: 1px solid #e2e8f0; border-radius: 8px; padding: 10px 18px;
  font-size: 15px; font-weight: 600; color: #0f172a;
}
.tc-pill svg, .tc-pill img { width: 20px; height: 20px; margin-right: 10px; }
.tag-primary {
  background: #ede9fe; color: #6d28d9; font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 4px; margin-left: 10px; text-transform: uppercase;
}
.tc-callout { background: #f0f9ff; border-radius: 12px; padding: 24px; margin-top: 24px; }
.tc-callout h4 { font-size: 14px; font-weight: 700; color: #0369a1; margin-bottom: 12px; }
.tc-callout p { font-size: 13.5px; color: #475569; line-height: 1.6; margin: 0; }
.tech-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px;
}
@media(max-width: 1024px) { .tech-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 600px) { .tech-grid-4 { grid-template-columns: 1fr; } }
.tool-subcard { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; }
.tool-subcard-head { display: flex; align-items: center; font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 16px; }
.tool-subcard-head svg, .tool-subcard-head img { width: 22px; height: 22px; margin-right: 12px; }
.tool-subcard p { font-size: 13.5px; color: #475569; line-height: 1.6; margin: 0; }
.tech-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width: 992px) { .tech-grid-3 { grid-template-columns: 1fr; } }
.stat-subcard { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 28px 24px; text-align: center; }
.stat-subcard h3 { font-size: 28px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.stat-subcard p { font-size: 13.5px; color: #94a3b8; margin: 0; }


/* -- New Pricing Section ------------------------------------------- */
.pricing-sec { padding: 100px 0; background-color: #f3eee6; }
.pricing-grid-new {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch; max-width: 1200px; margin: 0 auto;
}
@media(max-width: 992px) {
  .pricing-grid-new { grid-template-columns: 1fr; gap: 40px; max-width: 500px; }
}
.price-card-new {
  background: #fff; border-radius: 16px; padding: 40px 32px; position: relative;
  text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column;
}
.price-card-new.popular {
  border: 2px solid #e11d48; transform: scale(1.03); box-shadow: 0 20px 40px rgba(225, 29, 72, 0.1); z-index: 2;
}
@media(max-width: 992px) { .price-card-new.popular { transform: scale(1); } }
.price-card-new.dark { background: #111111; color: #fff; }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #e11d48; color: #fff; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; padding: 6px 16px;
  border-radius: 20px; box-shadow: 0 4px 10px rgba(225,29,72,0.3);
}
.pc-medal {
  width: 44px; height: 44px; margin-bottom: 24px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 20px; line-height: 1; font-weight: bold;
}
.pc-medal.bronze { background: #ffedd5; }
.pc-medal.silver { background: #f1f5f9; }
.pc-medal.gold { background: #fef08a; }
.pc-new-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: #0f172a; }
.price-card-new.dark .pc-new-title { color: #fff; }
.pc-new-price { font-size: 52px; font-weight: 800; color: #0f172a; display: flex; align-items: baseline; line-height: 1; margin-bottom: 12px; }
.pc-new-price span { font-size: 15px; font-weight: 500; color: #64748b; margin-left: 4px; }
.price-card-new.dark .pc-new-price { color: #fff; }
.price-card-new.dark .pc-new-price span { color: #94a3b8; }
.pc-new-hours { font-size: 12px; font-weight: 700; color: #e11d48; margin-bottom: 24px; letter-spacing: 0.5px; }
.price-card-new.dark .pc-new-hours { color: #f43f5e; }
.pc-new-desc { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 24px; min-height: 44px; }
.price-card-new.dark .pc-new-desc { color: #94a3b8; }
.pc-new-divider { height: 1px; background: #e2e8f0; margin: 0 0 24px 0; border: none; }
.price-card-new.dark .pc-new-divider { background: #334155; }
.pc-new-includes { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #94a3b8; margin-bottom: 20px; }
.pc-new-features { list-style: none; padding: 0; margin: 0 0 32px 0; flex-grow: 1; }
.pc-new-features li { display: flex; align-items: flex-start; font-size: 13.5px; font-weight: 600; color: #0f172a; margin-bottom: 14px; line-height: 1.4; }
.price-card-new.dark .pc-new-features li { color: #f8fafc; }
.pc-new-features li svg { width: 14px; height: 14px; color: #e11d48; margin-right: 12px; margin-top: 2px; flex-shrink: 0; }
.pc-new-asterisk { font-size: 11px; color: #64748b; margin-top: -16px; margin-bottom: 24px; font-style: italic; }
.pc-new-bestfor { font-size: 12px; color: #64748b; line-height: 1.5; margin-bottom: 24px; }
.pc-new-bestfor strong { color: #0f172a; font-weight: 700; }
.price-card-new.dark .pc-new-bestfor strong { color: #fff; }
.pc-new-btn { display: inline-block; width: 100%; text-align: center; padding: 14px 0; border-radius: 30px; font-size: 16px; font-weight: 700; transition: 0.3s; text-decoration: none; }
.pc-new-btn.outline { background: #fff; color: #0f172a; border: 1.5px solid #0f172a; }
.pc-new-btn.outline:hover { background: #0f172a; color: #fff; }
.pc-new-btn.solid-red { background: #e11d48; color: #fff; border: 1.5px solid #e11d48; }
.pc-new-btn.solid-red:hover { background: #be123c; border-color: #be123c; }


/* -- Hero Top Tags ------------------------------------------- */
.hero-top-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.ht-tag {
  display: inline-block; padding: 6px 16px; 
  background-color: rgba(37, 71, 52, 0.05); 
  color: var(--green); border: 1px solid rgba(37, 71, 52, 0.2); 
  border-radius: 30px; font-size: 13px; font-weight: 600; 
  white-space: nowrap;
}


/* Project Card Detailed Layout */
.proj-desc { color: #555; font-size: 15px; line-height: 1.5; margin: 0; }
.proj-callout { display: flex; gap: 16px; background: rgba(37, 71, 52, 0.04); border: 1px solid rgba(37, 71, 52, 0.1); padding: 16px; border-radius: 12px; align-items: center; }
.pc-icon { background: var(--yellow); width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pc-text h4 { margin: 0 0 4px; font-family: var(--font-head); font-size: 16px; color: var(--txt-dark); font-weight: 700; }
.pc-text p { margin: 0; font-size: 14px; color: #555; line-height: 1.4; }
.proj-tag-outline { border: 1px solid rgba(37,71,52,0.3); color: var(--green); padding: 4px 12px; border-radius: 99px; font-size: 12px; font-weight: 600; display: inline-block; background: transparent; }


/* -- NEW TESTIMONIALS SLIDER -- */
.nt-sec { padding: 100px 0; background: #fafafa; overflow: hidden; }
.nt-header { text-align: center; margin-bottom: 56px; }
.nt-container { max-width: 820px; margin: 0 auto; background: #ffffff; border-radius: 28px; padding: 56px 48px; border: 1px solid rgba(0,0,0,0.08); text-align: center; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.nt-quote-area { margin-bottom: 36px; transition: opacity 0.3s ease; position: relative; }
.nt-quote-icon { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); z-index: 0; }
.nt-stars { color: #f59e0b; font-size: 22px; letter-spacing: 5px; margin-bottom: 20px; position: relative; z-index: 1; }
.nt-main-avatar { margin: 0 auto 24px; width: 90px; height: 90px; border-radius: 50%; overflow: hidden; border: 3.5px solid var(--yellow); position: relative; z-index: 1; box-shadow: 0 10px 25px rgba(245, 158, 11, 0.22); }
.nt-main-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nt-quote-text { font-size: 19px; line-height: 1.75; color: #1e293b; font-weight: 500; font-style: italic; position: relative; z-index: 1; margin: 0 auto 28px; max-width: 680px; }
.nt-author-info h4 { font-size: 22px; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.nt-author-info p { font-size: 15px; color: #64748b; font-weight: 500; margin-bottom: 14px; }
.nt-tag-badge { background: rgba(37,71,52,0.08); color: var(--green); border: 1px solid rgba(37,71,52,0.2); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 700; display: inline-block; }
.nt-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 24px; }
.nt-arrow { background: #fff; border: 1px solid #e2e8f0; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #0f172a; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.nt-arrow:hover { background: var(--yellow); border-color: var(--yellow); transform: scale(1.08); color: #000; }
.nt-avatars-row { display: flex; gap: 14px; align-items: center; }
.nt-av-wrap { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; border: 2.5px solid transparent; cursor: pointer; opacity: 0.55; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.nt-av-wrap img { width: 100%; height: 100%; object-fit: cover; }
.nt-av-wrap:hover { opacity: 1; transform: scale(1.1); }
.nt-av-wrap.active { opacity: 1; border-color: var(--green); transform: scale(1.18); box-shadow: 0 6px 16px rgba(37,71,52,0.25); }
.nt-dots-row { display: flex; gap: 8px; justify-content: center; }
.nt-dot { width: 8px; height: 8px; border-radius: 4px; background: #cbd5e1; transition: 0.3s; cursor: pointer; }
@media(max-width: 768px) { .nt-container { padding: 36px 20px; } .nt-avatars-row { display: none; } }

/* ═══════════════════ PROJECTS PAGE STYLES ═══════════════════ */

/* Page Hero Banner */
.pg-hero {
  background: #f9fafb;
  padding: 140px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pg-hero h1 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--txt-dark);
  margin-bottom: 8px;
}
.pg-hero p {
  font-size: 15px;
  color: var(--txt-gray);
  font-weight: 500;
}

/* Yellow Marquee Ticker Strip */
.ticker-strip {
  background: var(--yellow);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: tickerMarquee 25s linear infinite;
  min-width: 200%;
}
.ticker-item {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.ticker-icon {
  color: #1e293b;
  font-size: 16px;
}
@keyframes tickerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Projects Grid Page Layout */
.proj-page-sec {
  padding: 90px 0 70px;
  background: #ffffff;
}
.proj-page-header {
  text-align: center;
  margin-bottom: 60px;
}
.proj-page-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--txt-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.proj-page-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  color: var(--txt-dark);
}
.proj-page-title span {
  color: var(--yellow);
}

.proj-page-grid,
.other-proj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  .proj-page-grid,
  .other-proj-grid {
    grid-template-columns: 1fr;
  }
}

.other-proj-sec {
  padding: 90px 0 70px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.sec-hdr-center {
  text-align: center;
  margin-bottom: 50px;
}
.sec-hdr-center .sec-tag {
  display: inline-block;
  background: rgba(244,180,0,0.15);
  color: #b45309;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.sec-hdr-center .sec-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
}
.sec-hdr-center .sec-title span {
  color: var(--yellow);
  font-style: italic;
}

.pcard-item {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.pcard-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}
.pcard-img-wrap {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  margin-bottom: 20px;
}
.pcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pcard-item:hover .pcard-img-wrap img {
  transform: scale(1.04);
}

.pcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.pcard-tag {
  background: #fef3c7;
  color: #b45309;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

.pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}
.pcard-footer h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}
.pcard-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.pcard-item:hover .pcard-action-btn {
  background: var(--yellow);
  color: #000000;
  transform: scale(1.1) rotate(45deg);
}

.load-more-wrap {
  text-align: center;
  margin-top: 20px;
}
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: #0f172a;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(244, 180, 0, 0.3);
}
.btn-load-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(244, 180, 0, 0.45);
  background: #eab308;
}

/* Let's Create Section */
.cta-banner-sec {
  padding: 80px 0;
  background: #fafafa;
  text-align: center;
}
.cta-banner-sec h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}
.cta-banner-sec h2 span {
  color: var(--yellow);
  font-style: italic;
}
.btn-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 14px 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-contact-pill:hover {
  background: var(--green-d);
  transform: translateY(-2px);
}
.btn-contact-pill .arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Skills Cloud Arc */
.skills-arc-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 40px auto 0;
}
.skill-cloud-pill {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #334155;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.skill-cloud-pill:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #000000;
  transform: translateY(-3px);
}

/* Contact Us Dark Section */
.contact-sec-dark {
  background: #1b3629;
  color: #ffffff;
  padding: 100px 0;
}
.contact-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .contact-dark-grid {
    grid-template-columns: 1fr;
  }
}

.cd-info .sec-tag {
  background: rgba(244,180,0,0.15);
  color: var(--yellow);
}
.cd-info h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.cd-info h2 span {
  color: var(--yellow);
}
.cd-info p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.cd-detail-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.cd-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-detail-text span {
  font-size: 15px;
  color: #e2e8f0;
  font-weight: 500;
}

/* Dark Contact Form */
.cd-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .cd-form-row {
    grid-template-columns: 1fr;
  }
}
.cd-input, .cd-select, .cd-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}
.cd-input::placeholder, .cd-textarea::placeholder {
  color: #94a3b8;
}
.cd-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.cd-select option {
  background: #1b3629;
  color: #ffffff;
}
.cd-input:focus, .cd-select:focus, .cd-textarea:focus {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.12);
}
.btn-cd-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #254734;
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 12px 10px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-cd-submit:hover {
  background: #1d3828;
  transform: translateY(-2px);
}
.btn-cd-submit .arrow-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Connect Row */
.connect-row-sec {
  padding: 48px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.connect-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .connect-flex {
    flex-direction: column;
    text-align: center;
  }
}
.connect-flex h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
}
.connect-flex h2 span {
  color: var(--yellow);
}

/* Footer Dark */
.ft-dark {
  background: #0f172a;
  color: #94a3b8;
  padding: 80px 0 30px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
}
.ft-logo {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ft-logo .logo-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.ft-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.ft-socials {
  display: flex;
  gap: 12px;
}
.ft-soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.ft-soc-btn:hover {
  transform: translateY(-3px);
}
.ft-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-links a {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.3s ease;
}
.ft-links a:hover {
  color: var(--yellow);
}

.ft-newsletter-form {
  display: flex;
  gap: 8px;
}
.ft-nl-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
}
.ft-nl-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--yellow);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.ft-nl-btn:hover {
  background: #eab308;
}

.ft-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
}
@media (max-width: 600px) {
  .ft-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ═══════════════════ PROJECT DETAIL PAGE STYLES ═══════════════════ */

/* Top Showcase Banner Image */
.pd-showcase-sec {
  padding: 60px 0 30px;
  background: #ffffff;
}
.pd-showcase-card {
  width: 100%;
  max-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.pd-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Detail Main Layout (Content Left, Metadata Card Right) */
.pd-main-sec {
  padding: 50px 0 90px;
  background: #ffffff;
}
.pd-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 992px) {
  .pd-content-grid {
    grid-template-columns: 1fr;
  }
}

/* Detail Main Content (Left) */
.pd-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.25;
}
.pd-title span {
  color: var(--yellow);
}

.pd-lead-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.pd-lead-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.pd-lead-text {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.pd-paragraph {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 24px;
}

.pd-section-heading {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 36px 0 14px;
}

/* Feature Checkbox Grid */
.pd-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin: 20px 0 36px;
}
@media (max-width: 600px) {
  .pd-features-grid {
    grid-template-columns: 1fr;
  }
}
.pd-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}
.pd-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  font-weight: 900;
}

/* Pipeline Stepper Box & Flow */
.pd-pipeline-box {
  background: #0f172a;
  border-radius: 20px;
  padding: 28px 32px;
  margin: 32px 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.pd-pipeline-hdr {
  margin-bottom: 24px;
}

.pd-pipeline-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--yellow);
  text-transform: uppercase;
  background: rgba(244, 180, 0, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.pd-pipeline-hdr h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.pd-pipeline-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pipeline-step:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.pipeline-step.final {
  background: rgba(39, 201, 63, 0.15);
  border-color: rgba(39, 201, 63, 0.4);
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--yellow);
  background: rgba(244, 180, 0, 0.2);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pipeline-step.final .step-num {
  color: #27c93f;
  background: rgba(39, 201, 63, 0.2);
}

.step-name {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.step-arr {
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  margin-left: 2px;
}

.step-check {
  color: #27c93f;
  font-size: 13px;
  font-weight: 900;
  margin-left: 2px;
}

/* Workflow Showcase Box & Gallery */
.pd-wf-showcase-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px 32px;
  margin: 36px 0 44px;
}

.pd-wf-hdr {
  text-align: center;
  margin-bottom: 28px;
}

.pd-wf-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #b45309;
  background: #fef3c7;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.pd-wf-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.pd-wf-desc {
  font-size: 14px;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Tabs */
.pd-wf-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.pd-wf-tab {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pd-wf-tab:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.pd-wf-tab.active {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(37, 71, 52, 0.25);
}

/* Grid */
.pd-wf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .pd-wf-grid {
    grid-template-columns: 1fr;
  }
}

.pd-wf-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.pd-wf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: var(--yellow);
}

.pd-wf-img-wrap {
  position: relative;
  height: 240px;
  background: #0f172a;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-wf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 0.4s ease;
}

.pd-wf-card:hover .pd-wf-img-wrap img {
  transform: scale(1.03);
}

/* Card-Anchored Pop-Up State (Pops up directly at image location) */
.pd-wf-card.is-popped {
  z-index: 99;
  grid-column: 1 / -1;
  border-color: var(--yellow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transform: scale(1.01);
}

.pd-wf-card.is-popped .pd-wf-img-wrap {
  height: auto;
  max-height: 800px;
  overflow-y: auto;
  background: #0f172a;
  padding: 16px;
}

.pd-wf-card.is-popped .pd-wf-img-wrap img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  transform: none;
}

.pd-wf-zoom-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0.3s ease;
  z-index: 10;
}

.pd-wf-card:hover .pd-wf-zoom-icon {
  opacity: 1;
  background: var(--green);
  color: #ffffff;
}

.pd-wf-card.is-popped .pd-wf-zoom-icon {
  background: #ef4444;
  color: #ffffff;
  opacity: 1;
}

.pd-wf-info {
  padding: 16px 20px;
}

.pd-wf-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pd-wf-info h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 4px;
}

/* Workflow Pop-Up Lightbox Modal */
.wf-popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wf-popup-modal.active {
  display: flex;
  opacity: 1;
}

.wf-popup-card {
  background: #ffffff;
  border-radius: 20px;
  max-width: 1100px;
  width: 95%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.wf-popup-modal.active .wf-popup-card {
  transform: scale(1);
}

.wf-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.wf-popup-header h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.wf-popup-close {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 26px;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.wf-popup-close:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.wf-popup-body {
  padding: 20px;
  background: #0f172a;
  overflow-y: auto;
  max-height: calc(90vh - 75px);
  text-align: center;
}

.wf-popup-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: inline-block;
}

/* Email Metrics Image Card */
.pd-metrics-img-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin: 24px 0 32px;
}

.pd-metrics-img-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Two Gallery Images */
.pd-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}
@media (max-width: 600px) {
  .pd-gallery-grid {
    grid-template-columns: 1fr;
  }
}
.pd-gallery-img {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.pd-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Interactive Landing Page Browser Mockup Container & Hover Scroll Effect */
.pd-mockup-window {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  margin: 28px 0 36px;
  position: relative;
}

.pd-mockup-header {
  height: 44px;
  background: #0f172a;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pd-mockup-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.pd-mockup-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.pd-mockup-dots .dot.red { background: #ff5f56; }
.pd-mockup-dots .dot.yellow { background: #ffbd2e; }
.pd-mockup-dots .dot.green { background: #27c93f; }

.pd-mockup-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.pd-scroll-viewport {
  width: 100%;
  height: 540px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #f8fafc;
}

.pd-scroll-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 2.5s ease-out;
  transform: translateY(0);
  will-change: transform;
}

.pd-scroll-viewport:hover .pd-scroll-img,
.pd-scroll-viewport.is-scrolling .pd-scroll-img {
  transition: transform 8.5s ease-in-out;
  transform: translateY(calc(-100% + 540px));
}

.pd-hover-hint {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pd-hover-hint svg {
  animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.pd-scroll-viewport:hover .pd-hover-hint,
.pd-scroll-viewport.is-scrolling .pd-hover-hint {
  opacity: 0;
  transform: translateY(12px);
}

@media (max-width: 768px) {
  .pd-scroll-viewport {
    height: 380px;
  }
  .pd-scroll-viewport:hover .pd-scroll-img,
  .pd-scroll-viewport.is-scrolling .pd-scroll-img {
    transform: translateY(calc(-100% + 380px));
  }
  .pd-mockup-title {
    display: none;
  }
}

/* Testimonial Quote Box */
.pd-testimonial-box {
  background: #f8fafc;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  margin-top: 36px;
}
.pd-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.pd-quote-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.pd-author-flex {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pd-author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--yellow);
}
.pd-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-author-info h5 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.pd-author-info span {
  font-size: 13px;
  color: #64748b;
}

/* Right Metadata Card */
.pd-meta-card {
  background: #1b3629;
  color: #ffffff;
  border-radius: 24px;
  padding: 36px 28px;
  position: sticky;
  top: 100px;
}
.pd-meta-item {
  margin-bottom: 24px;
}
.pd-meta-item:last-child {
  margin-bottom: 0;
}
.pd-meta-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 4px;
}
.pd-meta-value {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--yellow);
}

/* Related Projects Section */
.pd-related-sec {
  padding: 80px 0;
  background: #f9fafb;
}
.pd-related-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ═══════════════════ SERVICES PAGE STYLES ═══════════════════ */

/* Hero Showcase Banner with Play Overlay */
.srv-hero-banner-sec {
  padding: 60px 0 40px;
  background: #ffffff;
}
.srv-video-card {
  width: 100%;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
}
.srv-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.srv-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
.srv-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--yellow);
}

/* Services Main Body Section */
.srv-main-sec {
  padding: 40px 0 90px;
  background: #ffffff;
}
.srv-content-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.srv-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

/* Industry Grid (8 Cards, 4 Columns) */
.ind-grid-sec {
  margin: 60px 0;
}
.ind-grid-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.ind-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .ind-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .ind-cards-grid {
    grid-template-columns: 1fr;
  }
}

.ind-card-item {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.ind-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: rgba(244,180,0,0.4);
}
.ind-num-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ind-card-item h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.ind-card-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════ GHL CERTIFIED PARTNER SECTION ═══════════════════ */
.ghl-partner-sec {
  background: var(--green); /* Dark Green #254734 matching landing page palette */
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ghl-partner-sec::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,180,0,0.15) 0%, rgba(37,71,52,0) 70%);
  pointer-events: none;
}

.ghl-partner-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 56px;
}
.ghl-partner-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(244, 180, 0, 0.15);
  padding: 6px 20px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.ghl-partner-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
}
.ghl-partner-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #d1d5db;
  font-weight: 400;
}

.ghl-cert-subtitle {
  text-align: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 40px;
}

/* Badges Showcase Grid Layout */
.ghl-badges-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .ghl-badges-layout {
    flex-direction: column;
    gap: 32px;
  }
}

.ghl-badges-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ghl-badge-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 270px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.ghl-badge-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(244, 180, 0, 0.35);
}
.ghl-badge-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
  border: 2px solid var(--yellow);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ghl-badge-card:hover .ghl-badge-img {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(244, 180, 0, 0.5);
}
.ghl-badge-text h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
.ghl-badge-text span {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111827;
  background: var(--yellow);
  padding: 4px 12px;
  border-radius: 99px;
  box-shadow: 0 3px 10px rgba(244, 180, 0, 0.35);
}

/* Center Seal Medal */
.ghl-center-seal-wrap {
  text-align: center;
  position: relative;
  padding: 10px;
}
.ghl-center-seal {
  width: 270px;
  height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 15px 40px rgba(244, 180, 0, 0.4));
  animation: sealPulse 4s ease-in-out infinite alternate;
}
@keyframes sealPulse {
  0% { transform: scale(1); filter: drop-shadow(0 15px 35px rgba(244, 180, 0, 0.3)); }
  100% { transform: scale(1.04); filter: drop-shadow(0 20px 45px rgba(244, 180, 0, 0.5)); }
}

.ghl-partner-cta {
  text-align: center;
}
.btn-ghl-strategy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: var(--txt-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 99px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(244, 180, 0, 0.35);
}
.btn-ghl-strategy:hover {
  background: #ffffff;
  color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.3);
}
.btn-ghl-strategy .arrow-circ {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-ghl-strategy:hover .arrow-circ {
  background: var(--yellow);
  color: var(--txt-dark);
}

/* Organic Cloud Wave Transition Divider */
.cloud-divider-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--white);
  margin-top: 0;
  margin-bottom: -1px;
}
.cloud-divider-svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* ═══════════════════ 185 MASTER SERVICES CATALOG ═══════════════════ */
.srv-catalog-sec {
  padding: 80px 0 100px;
  background: #f8fafc;
}

.srv-catalog-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 48px;
}
.srv-catalog-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(37,71,52,0.08);
  padding: 6px 20px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.srv-catalog-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 16px;
}
.srv-catalog-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
}

/* Quick Search & Filter Controls */
.srv-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  position: sticky;
  top: 90px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 24px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.srv-search-input {
  width: 100%;
  max-width: 320px;
  padding: 10px 18px 10px 42px;
  border-radius: 99px;
  border: 1.5px solid #cbd5e1;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  background: #ffffff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%252394a3b8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>') no-repeat 16px center;
  transition: all 0.3s ease;
}
.srv-search-input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(244,180,0,0.15);
}

.srv-cat-btn {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 99px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s ease;
}
.srv-cat-btn:hover, .srv-cat-btn.active {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(37,71,52,0.25);
}

/* Service Category Block */
.srv-cat-block {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  padding: 36px 36px 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.35s ease;
}
.srv-cat-block:hover {
  box-shadow: 0 18px 45px rgba(0,0,0,0.07);
  border-color: rgba(244,180,0,0.4);
}

.srv-cat-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 20px;
  margin-bottom: 28px;
}
.srv-cat-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.srv-cat-badge-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--txt-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(244,180,0,0.3);
}
.srv-cat-hdr h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}
.srv-cat-count {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: rgba(37,71,52,0.08);
  padding: 4px 14px;
  border-radius: 99px;
}

/* Service Item Grid */
.srv-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px 24px;
}

.srv-item-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 22px;
  transition: all 0.35s ease;
}
.srv-item-card:hover {
  background: #ffffff;
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
}
.srv-item-hdr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.srv-item-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(37,71,52,0.1);
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.srv-item-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--txt-dark);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(244,180,0,0.4);
}
.srv-item-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}
.srv-item-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* ═══════════════════ INDUSTRIES I SERVE SECTION ═══════════════════ */
.ind-serve-sec {
  background: #f8fafc;
  padding: 90px 0;
  text-align: center;
}
.ind-serve-header {
  max-width: 820px;
  margin: 0 auto 44px;
}
.ind-serve-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(37,71,52,0.08);
  padding: 6px 22px;
  border-radius: 99px;
  margin-bottom: 18px;
}
.ind-serve-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 16px;
}
.ind-serve-subtitle {
  font-size: 16.5px;
  line-height: 1.65;
  color: #64748b;
  font-weight: 400;
}

.ind-pills-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
  max-width: 1140px;
  margin: 0 auto 48px;
}
.ind-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 99px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  cursor: default;
}
.ind-pill:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 10px 24px rgba(244,180,0,0.25);
  color: var(--green);
}
.ind-pill svg {
  color: var(--green);
  transition: transform 0.3s ease;
}
.ind-pill:hover svg {
  transform: scale(1.2);
  color: var(--yellow);
}

.ind-pill-highlight {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}
.ind-pill-highlight svg {
  color: var(--yellow);
}
.ind-pill-highlight:hover {
  background: var(--yellow);
  color: var(--txt-dark);
  border-color: var(--yellow);
}

.ind-serve-cta {
  text-align: center;
}
.btn-discuss-ind {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: 99px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.btn-discuss-ind:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--txt-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(244,180,0,0.3);
}

/* Email Marketing Metrics Grid */
.cs-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.cs-metric-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.cs-metric-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(244,180,0,0.2);
}
.cs-metric-val {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
}
.cs-metric-lbl {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Project Detail Title - Single Line Fit */
.pd-title {
  font-family: var(--font-head);
  font-size: clamp(19px, 2.1vw, 31px);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 24px;
  white-space: nowrap;
}
.pd-title span {
  color: var(--yellow);
}
@media (max-width: 992px) {
  .pd-title {
    white-space: normal;
    font-size: 24px;
  }
}

/* ═══════════════════ LEGAL PAGES (PRIVACY & TERMS) STYLES ═══════════════════ */
.legal-sec {
  padding: 60px 0 100px;
  background: #f8fafc;
}

.legal-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 56px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  .legal-card {
    padding: 28px 24px;
    border-radius: 16px;
  }
}

.legal-header {
  margin-bottom: 32px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.legal-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  background: #fef3c7;
  color: #92400e;
  padding: 6px 16px;
  border-radius: 30px;
}

.legal-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 12px;
}

.legal-divider {
  border: 0;
  height: 1px;
  background: #e2e8f0;
  margin: 32px 0 40px;
}

.legal-block {
  margin-bottom: 36px;
}

.legal-block h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.legal-block p {
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 14px;
}

.legal-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}

.legal-block ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 10px;
}

.legal-block ul li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: -2px;
  color: var(--yellow);
  font-size: 20px;
  font-weight: bold;
}

.legal-alert {
  background: #fefce8;
  border-left: 4px solid var(--yellow);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  color: #713f12;
  margin: 20px 0;
}

.legal-contact-box {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 32px;
  margin-top: 40px;
  border: 1px solid #e2e8f0;
}

.legal-contact-box h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

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

.contact-info-list p {
  font-size: 15px;
  color: #334155;
  margin-bottom: 8px;
}

.contact-info-list a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-list a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

/* Footer Legal Links Styling */
.ft-legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.ft-legal-link:hover {
  color: var(--yellow);
}

/* ═══════════════════ CONTACT PAGE STYLES ═══════════════════ */
.contact-pg-sec {
  padding: 80px 0 100px;
  background: #ffffff;
}

.contact-pg-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 70px;
}

@media (max-width: 992px) {
  .contact-pg-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-pg-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 12px 0 20px;
}

.contact-pg-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #64748b;
  margin-bottom: 36px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cinfo-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cinfo-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(244, 180, 0, 0.25);
}

.cinfo-text a,
.cinfo-text span,
.cinfo-text address {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  font-style: normal;
  transition: color 0.2s ease;
}

.cinfo-text a:hover {
  color: var(--green);
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 10px;
}

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

@media (max-width: 640px) {
  .cform-grid {
    grid-template-columns: 1fr;
  }
}

.cform-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cform-group-full {
  grid-column: 1 / -1;
}

.cform-group label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

.cform-input,
.cform-select,
.cform-textarea {
  width: 100%;
  background: #f5f5f5;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-head);
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: all 0.25s ease;
}

.cform-input::placeholder,
.cform-textarea::placeholder {
  color: #94a3b8;
}

.cform-input:focus,
.cform-select:focus,
.cform-textarea:focus {
  background: #ffffff;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.15);
}

.cform-select-wrap {
  position: relative;
}

.cform-select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #64748b;
  pointer-events: none;
}

.cform-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.cform-textarea {
  resize: vertical;
  min-height: 140px;
}

.cform-submit-row {
  margin-top: 28px;
}

.btn-cform-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 6px 6px 6px 28px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37, 71, 52, 0.2);
}

.btn-cform-submit:hover {
  background: #1a3325;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 71, 52, 0.3);
}

.csubmit-arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn-cform-submit:hover .csubmit-arrow-circle {
  transform: translateX(3px);
}

/* Map Card */
.contact-map-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.contact-map-box iframe {
  display: block;
  width: 100%;
}

/* ═══════════════════ ABOUT PAGE STYLES ═══════════════════ */
.about-bio-sec {
  padding: 90px 0 80px;
  background: #ffffff;
  overflow: hidden;
}

.abio-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .abio-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Avatar Card with Floating Pills */
.abio-img-col {
  display: flex;
  justify-content: center;
}

.abio-avatar-card {
  position: relative;
  width: 520px;
  max-width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abio-yellow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--yellow);
  z-index: 1;
}

.abio-avatar-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(1.75);
  z-index: 2;
  height: 340px;
  max-height: none;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.18));
}

/* Floating Skill Pills */
.abio-pill {
  position: absolute;
  z-index: 3;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  background: var(--yellow);
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  animation: floatPill 4s ease-in-out infinite alternate;
}

.pill-1 { top: 20px; left: 10px; animation-delay: 0s; }
.pill-2 { top: 15px; right: 15px; animation-delay: 0.8s; }
.pill-3 { top: 220px; left: -25px; animation-delay: 1.5s; }
.pill-4 { top: 210px; right: -25px; animation-delay: 2.2s; }
.pill-5 { bottom: 20px; left: 15px; animation-delay: 0.5s; }
.pill-6 { bottom: 10px; right: 25px; animation-delay: 1.8s; }

@keyframes floatPill {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Text Content Column */
.abio-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.abio-subtitle {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 18px;
  line-height: 1.45;
}

.abio-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 16px;
}

.abio-subdesc {
  font-size: 15px;
  line-height: 1.75;
  color: #64748b;
  margin-bottom: 32px;
}

/* My Professional Journey Card */
.journey-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 48px 52px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.journey-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.journey-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 6px;
  margin-bottom: 24px;
}

.journey-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 16px;
}

.journey-body p:last-child {
  margin-bottom: 0;
}

.abio-stats-row {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
}

.abio-stat-item h3 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.abio-stat-item p {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.btn-abio-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 6px 6px 6px 28px;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37, 71, 52, 0.2);
}

.btn-abio-cta:hover {
  background: #1a3325;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 71, 52, 0.3);
}

.abio-arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vision & Mission Section */
.about-vm-sec {
  padding: 80px 0;
  background: #f8fafc;
}

.vm-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .vm-cards-grid {
    grid-template-columns: 1fr;
  }
}

.vm-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.vm-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.vm-card-hdr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.vm-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-card-hdr h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.vm-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #64748b;
  margin: 0;
}

/* Video Showcase & Attached Gold Counter Banner */
.about-video-sec {
  padding: 80px 0;
  background: #ffffff;
}

.avideo-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  background: #0f172a;
}

.avideo-poster {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.avideo-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.85);
}

.avideo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avideo-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  padding-left: 4px;
}

.avideo-play-btn:hover {
  transform: scale(1.15);
  background: var(--yellow);
  color: #000000;
}

.avideo-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--yellow);
  padding: 32px 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .avideo-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.avstat-col h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 6px;
}

.avstat-col p {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin: 0;
}

/* Awards Journey Section */
.about-awards-sec {
  padding: 80px 0 100px;
  background: #f8fafc;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

.award-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.award-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.award-wreath-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.award-year {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-top: 6px;
}

.award-info h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.award-info p {
  font-size: 14px;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* Dark Contact Section for About Page */
.about-dark-contact-sec {
  padding: 60px 0;
  background: #ffffff;
}

.dark-contact-card {
  background: var(--green);
  border-radius: 28px;
  padding: 60px 48px;
  box-shadow: 0 20px 50px rgba(37, 71, 52, 0.25);
}

@media (max-width: 768px) {
  .dark-contact-card {
    padding: 36px 24px;
  }
}

.dark-form-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.dark-input,
.dark-select,
.dark-textarea {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.dark-input::placeholder,
.dark-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.dark-select option {
  background: #0f172a;
  color: #ffffff;
}

/* ═══════════════════ CERTIFIED GHL SPECIALIST SECTION ═══════════════════ */
.ghl-cert-sec {
  background: var(--green);
  padding: 90px 0 100px;
  color: #ffffff;
}

.ghl-cert-hdr {
  text-align: center;
  margin-bottom: 48px;
}

.ghl-pill-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ghl-cert-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.ghl-cert-subtitle {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  max-width: 780px;
  margin: 0 auto 36px;
}

.ghl-small-tag {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.ghl-cert-layout {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 1024px) {
  .ghl-cert-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.ghl-cert-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ghl-cert-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.ghl-cert-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cert-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cert-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cert-card-info h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.cert-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-ghl,
.badge-zapier,
.badge-hubspot {
  background: var(--yellow);
  color: #000000;
}

.ghl-cert-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.ghl-main-badge-wrap {
  width: 220px;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
}

.ghl-main-badge-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.zapier-card {
  width: 100%;
}

/* Journey 2-Column Grid */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 992px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
}

/* What I Can Help You With Section */
.help-sec {
  padding: 90px 0;
  background: #ffffff;
}

.sec-subtitle-text {
  font-size: 16px;
  color: #64748b;
  margin-top: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
}

.help-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.help-item:hover {
  border-color: var(--yellow);
  transform: translateX(4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.help-icon-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(244, 180, 0, 0.25);
}

.help-text h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* Why Work With Me Section */
.why-work-sec {
  padding: 90px 0;
  background: #f8fafc;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.why-card-wide {
  grid-column: 1 / -1;
}

.why-card-num {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  background: rgba(244, 180, 0, 0.12);
  padding: 4px 14px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

.ghl-cert-btn-wrap {
  text-align: center;
  margin-top: 56px;
}

.btn-ghl-strategy {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--yellow);
  color: #000000;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(244, 180, 0, 0.35);
}

.btn-ghl-strategy:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(244, 180, 0, 0.5);
  background: #ffbe0b;
}

.ghl-strat-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #000000;
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

/* Unified White Footer Design (Matching Mockup) */
.ft-dark {
  background: #ffffff;
  color: #0f172a;
  padding-top: 80px;
  border-top: 1px solid #e2e8f0;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.8fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

@media (max-width: 992px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 576px) {
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.ft-col-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 20px;
}

.ft-logo {
  margin-bottom: 20px;
  text-decoration: none;
}
.ft-logo .logo-text {
  color: #0f172a;
}

.ft-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 24px;
  max-width: 360px;
}

.ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.ft-links a:hover {
  color: #0f172a;
  transform: translateX(3px);
}

.ft-contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.ft-contact-label {
  color: var(--yellow);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ft-contact-value {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ft-contact-value:hover {
  color: #0f172a;
}

/* Dark Green Bottom Bar */
.footer-bar {
  background: var(--green);
  color: #ffffff;
  padding: 22px 0;
}

.footer-bar p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}

.footer-bar-brand {
  color: var(--yellow);
  font-weight: 700;
}

.ft-legal-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ft-legal-link:hover {
  color: var(--yellow);
}








/* ------------------- IMAGE SLIDER ------------------- */
.image-slider-sec {
  padding: 40px 0;
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.image-slider-track {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  width: max-content;
  animation: slideImages 120s linear infinite;
}

.image-slider-track:hover {
  animation-play-state: paused;
}

.image-slider-item {
  flex: 0 0 auto;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #1a1a1a;
}

.image-slider-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

@keyframes slideImages {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .image-slider-item {
    height: 180px;
  }
}


/* ================= EDUCATION & WORK ================= */
.edu-work-sec {
  background-color: #fff;
  padding: 80px 0;
}
.edu-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}
.ew-col {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #eaeaea;
}
.ew-col-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 20px;
}
.ew-icon-wrap {
  width: 48px;
  height: 48px;
  background-color: #ffb400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ew-icon-wrap img, .ew-icon-wrap svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.ew-col-header h3 {
  font-size: 1.5rem;
  color: #1f2228;
  font-weight: 700;
  margin: 0;
}
.ew-items {
  display: flex;
  flex-direction: column;
}
.ew-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
  border-left: 2px solid #e2e2e2;
}
.ew-item:last-child {
  margin-bottom: 0;
}
.ew-date {
  font-size: 0.9rem;
  color: #777;
  display: block;
  margin-bottom: 5px;
}
.ew-item h4 {
  font-size: 1.25rem;
  color: #1f2228;
  font-weight: 600;
  margin-bottom: 5px;
}
.ew-item p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}
@media (max-width: 991px) {
  .edu-work-grid {
    grid-template-columns: 1fr;
  }
}

/* ================== FLOATING WHATSAPP BUTTON ================== */
.whatsapp-float {
  position: fixed;
  width: 54px;
  height: 54px;
  bottom: 90px;
  right: 25px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* ================== LEADCONNECTOR CHAT WIDGET POSITIONING ================== */
/* Positions chat widget bubble above the WhatsApp & Back-to-Top buttons */
chat-widget,
#lc_chat-widget,
.lc_chat-widget,
#lc-chat-widget,
.lc-chat-widget,
div.lc-chat-widget-launcher,
iframe[src*="chat-widget"],
iframe[id*="chat-widget"],
div[id*="chat-widget"] {
  bottom: 160px !important;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE FIXES FOR ABOUT SECTIONS (HOMEPAGE & ABOUT PAGE)
   ========================================================================== */

/* --- HOMEPAGE ABOUT SECTION RESPONSIVE --- */
@media (max-width: 991px) {
  .about-sec {
    padding: 70px 0;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .about-left {
    width: 100%;
    margin: 0 auto;
  }
  .about-img-wrap {
    width: 380px;
    max-width: 100%;
    height: 420px;
    margin: 0 auto;
  }
  .about-circle-bg {
    width: 320px;
    height: 320px;
  }
  .about-portrait {
    height: 410px;
  }
  .about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sec-tag-light {
    justify-content: center;
  }
  .about-h2 {
    font-size: 36px;
    line-height: 1.25;
  }
  .about-p {
    max-width: 650px;
  }
  .about-stats {
    justify-content: center;
    gap: 30px;
    width: 100%;
  }
  .about-bottom {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-sec {
    padding: 55px 0;
  }
  .about-img-wrap {
    width: 320px;
    max-width: 90vw;
    height: 360px;
  }
  .about-circle-bg {
    width: 260px;
    height: 260px;
  }
  .about-portrait {
    height: 350px;
  }
  .apill {
    font-size: 11px;
    padding: 5px 11px;
  }
  .apill-1 { top: 50%; left: 50%; transform: translateX(-50%); }
  .apill-2 { top: 60%; left: 2%; transform: rotate(-3deg); }
  .apill-3 { top: 58%; right: 2%; transform: rotate(3deg); }
  .apill-4 { top: 72%; left: 0%; transform: rotate(-3deg); }
  .apill-5 { top: 76%; left: 45%; }
  .apill-6 { top: 70%; right: 0%; transform: rotate(5deg); }
  .apill-7 { top: 86%; left: 15%; }

  .about-h2 {
    font-size: 28px;
  }
  .about-stats {
    gap: 20px;
    margin: 28px 0;
  }
  .astat-val {
    font-size: 32px;
  }
  .astat-lbl {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .about-img-wrap {
    width: 290px;
    height: 330px;
  }
  .about-circle-bg {
    width: 230px;
    height: 230px;
  }
  .about-portrait {
    height: 320px;
  }
  .apill {
    font-size: 10px;
    padding: 4px 9px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .apill-2 { left: -4px; }
  .apill-3 { right: -4px; }
  .apill-4 { left: -4px; }
  .apill-6 { right: -4px; }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .about-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- ABOUT PAGE BIO HERO SECTION RESPONSIVE --- */
@media (max-width: 991px) {
  .sec.about-bio-sec {
    padding: 60px 0;
  }
  .abio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .abio-avatar-card {
    width: 400px;
    max-width: 100%;
    height: 400px;
  }
  .abio-yellow-circle {
    width: 280px;
    height: 280px;
  }
  .abio-avatar-img {
    height: 290px;
    transform: translate(-50%, -48%) scale(1.45);
  }
  .abio-text-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .abio-title {
    font-size: 36px;
  }
  .abio-subtitle {
    font-size: 18px;
    max-width: 600px;
  }
  .abio-stats-row {
    justify-content: center;
    gap: 25px;
    width: 100%;
  }
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px !important;
  }
}

@media (max-width: 768px) {
  .abio-avatar-card {
    width: 320px;
    max-width: 90vw;
    height: 340px;
  }
  .abio-yellow-circle {
    width: 230px;
    height: 230px;
  }
  .abio-avatar-img {
    height: 250px;
    transform: translate(-50%, -48%) scale(1.35);
  }
  .abio-pill {
    font-size: 10.5px;
    padding: 5px 10px;
  }
  .pill-1 { top: 10px; left: 5px; }
  .pill-2 { top: 5px; right: 5px; }
  .pill-3 { top: 160px; left: 0px; }
  .pill-4 { top: 150px; right: 0px; }
  .pill-5 { bottom: 10px; left: 10px; }
  .pill-6 { bottom: 5px; right: 10px; }

  .abio-title {
    font-size: 28px;
  }
  .abio-subtitle {
    font-size: 16px;
  }
  .abio-desc, .abio-subdesc {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .abio-avatar-card {
    width: 290px;
    height: 310px;
  }
  .abio-yellow-circle {
    width: 200px;
    height: 200px;
  }
  .abio-avatar-img {
    height: 220px;
    transform: translate(-50%, -48%) scale(1.25);
  }
  .abio-pill {
    font-size: 9.5px;
    padding: 4px 8px;
  }
  .pill-3 { left: -5px; }
  .pill-4 { right: -5px; }

  .abio-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .abio-stat-item h3 {
    font-size: 26px;
  }
  .abio-stat-item p {
    font-size: 11px;
  }
}



