/* ============================================
   DIGITAL CREATIONS — Custom Stylesheet
   Dark theme, Bootstrap 5 override + custom
   ============================================ */

:root {
  --bg:       #080808;
  --bg2:      #0f0f0f;
  --bg3:      #161616;
  --surface:  #1a1a1a;
  --border:   #2a2a2a;
  --accent:   #F9B816;
  --accent2:  #a8d028;
  --text:     #f0f0f0;
  --text2:    #999;
  --text3:    #ffffff;
  --radius:   16px;
  --radius-sm:8px;
  --ff-head:  'Italiana';
  --ff-body:  'Poppins';
  --trans:    0.35s cubic-bezier(.25,.46,.45,.94);
}

.logo-img{
    max-height: 60px;
    width: auto;
}

.motec-img{ 
    max-width: 100%;
    height: auto;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #000; }

a { color: inherit; text-decoration: none; transition: color .2s; }

img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ---- Sections ---- */
.dc-section { padding: 110px 0; }
.dc-about   { background: var(--bg2); }
.dc-services{ background: var(--bg); }
.dc-whyus   { background: var(--bg2); }
.dc-portfolio{ background: var(--bg); }
.dc-testimonials{ background: var(--bg2); }
.dc-contact { background: var(--bg); position: relative; overflow: hidden; }

/* ---- Typography ---- */
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--text);
}
.section-title span { color: var(--accent); }

.section-sub {
  font-size: 15.5px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 520px;
}

.body-text { font-size: 15px; color: var(--text3); line-height: 1.85; }

/* ---- Tag pill ---- */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,240,62,.08);
  border: 1px solid rgba(200,240,62,.22);
  color: var(--accent);
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.tag-pill::before {
  content:'';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Buttons ---- */
.dc-btn-primary {
  background: var(--accent);
  color: #000 !important;
  font-family: var(--ff-head);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 100px;
  border: 2px solid var(--accent);
  transition: all var(--trans);
  text-decoration: none;
}
.dc-btn-primary:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200,240,62,.28);
  color: #000 !important;
}

.dc-btn-outline {
  background: transparent;
  color: var(--text) !important;
  font-family: var(--ff-head);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  transition: all var(--trans);
  text-decoration: none;
}
.dc-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  transform: translateY(-2px);
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1;}
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-left.visible, .reveal-right.visible { transform: translate(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }


/* ================================================
   NAVBAR
   ================================================ */
.dc-navbar {
  padding: 22px 0;
  transition: all .4s ease;
  z-index: 1050;
}
.dc-navbar.scrolled {
  padding: 12px 0;
  background: rgba(8,8,8,.93) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.dc-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  color: #000;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 14px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.brand-accent { color: var(--accent); }

.dc-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all .2s !important;
  display: flex !important;
  align-items: center;
  gap: 4px;
}
.dc-nav-link:hover, .dc-nav-link:focus {
  color: var(--text) !important;
  background: var(--surface);
}

.dc-dropdown {
  background: var(--bg3) !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  padding: 8px !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.6) !important;
  margin-top: 8px !important;
  min-width: 220px;
}
.dc-dropdown-item {
  font-size: 13.5px !important;
  color: var(--text2) !important;
  padding: 9px 14px !important;
  border-radius: 8px !important;
  transition: all .2s !important;
}
.dc-dropdown-item:hover {
  color: var(--accent) !important;
  background: rgba(200,240,62,.06) !important;
}

.dc-nav-cta { font-size: 13px; padding: 10px 22px; }

.dc-toggler {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dc-toggler span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.dc-toggler[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dc-toggler[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.dc-toggler[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar-collapse {
  background: transparent;
}
@media(max-width:991px){
  .navbar-collapse {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 12px;
  }
  .dc-nav-cta { margin-top: 8px; }
}


/* ================================================
   HERO
   ================================================ */
.dc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 90px;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,240,62,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,240,62,.035) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 25%, transparent 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,240,62,.07) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 7s ease-in-out infinite;
}
.hero-glow2 {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(129,140,248,.06) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes pulseGlow {
  0%,100%{ opacity:.6; transform:scale(1); }
  50%{ opacity:1; transform:scale(1.1); }
}

/* Floating badges */
.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  z-index: 2;
  animation: floatBadge 4s ease-in-out infinite;
}
.badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.badge-1 { top: 20%; right: 10%; animation-delay: 0s; }
.badge-2 { top: 30%; right: 2%; animation-delay: 1.2s; }
.badge-3 {
  bottom: 25%; right: 3%;
  flex-direction: column;
  border-radius: 16px;
  padding: 14px 22px;
  gap: 3px;
  font-size: 12px;
  animation-delay: 2.2s;
  text-align: center;
}
.badge-3 span:first-child { font-size: 20px; color: #ffc107; }

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

.hero-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.03em;
  margin-bottom: 28px;
}
.line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .7s ease forwards;
}
.line1 { animation-delay: .15s; }
.line2 { animation-delay: .3s; }
.line3 { animation-delay: .45s; }
.accent-word { color: var(--accent); font-style: italic; }

.hero-tag { animation: fadeUp .5s ease .05s forwards; opacity: 0; }
.hero-desc { animation: fadeUp .7s ease .6s forwards; opacity: 0; max-width: 480px; color: var(--text2); font-size: 17px; }
.hero-actions { animation: fadeUp .7s ease .75s forwards; opacity: 0; }
/* .hero-trust { animation: fadeUp .7s ease .9s forwards; opacity: 0; } */

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

.trust-avatars { display: flex; }
.t-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.t-avatar:first-child { margin-left: 0; }
.trust-sub { font-size: 12px; color: var(--text3); }

/* Hero visual */
.hero-visual-col { animation: fadeIn 1s ease .8s forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; } }

.hero-visual {
  position: relative;
  width: 460px; height: 460px;
  display: flex; align-items: center; justify-content: center;
}

.hero-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(200,240,62,.1);
  animation: spin 20s linear infinite;
}
.ring2 { width: 300px; height: 300px; border-color: rgba(200,240,62,.06); animation-duration: 14s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(20px);
}
.main-card {
  width: 260px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.side-card {
  width: 155px;
  top: 4%; right: -10px;
  font-size: 13px;
  color: var(--text2);
  animation: floatBadge 5s ease-in-out infinite;
}
.side-icon { font-size: 26px; color: var(--accent); margin-bottom: 8px; }
.side-sub { font-size: 11px; color: var(--text3); }

.rating-card {
  width: 175px;
  bottom: 5%; right: 0;
  font-size: 12.5px;
  color: var(--text2);
  animation: floatBadge 4.5s ease-in-out 1s infinite;
}
.stars { color: #ffc107; font-size: 15px; letter-spacing: 2px; }
.reviewer { font-size: 11px; color: var(--text3); }

.card-header-dots { display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #ffc107; }
.dot-g { background: #28ca41; }
.card-lbl { font-size: 11px; color: var(--text3); }
.stat-num { font-family: var(--ff-head); font-size: 38px; font-weight: 800; color: var(--text); line-height: 1; }
.stat-up { font-size: 12px; color: var(--accent); font-weight: 600; }
.card-desc { font-size: 12px; color: var(--text3); margin-bottom: 14px; }

.card-bars { display: flex; align-items: flex-end; gap: 5px; height: 50px; }
.bar {
  flex: 1;
  height: var(--h);
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  opacity: .7;
  animation: barGrow 1s ease calc(.8s + var(--d)) both;
}
.bar:nth-child(even) { opacity: .35; }
@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); }
}

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 15px 0;
  background: var(--bg2);
  margin-top: auto;
}
.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}
.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text3);
}
.tick-dot { color: var(--accent); font-size: 9px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ================================================
   ABOUT
   ================================================ */
.about-visual {
  position: relative;
  height: 460px;
}
.av-block { position: absolute; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.block1 { width: 260px; height: 300px; top: 0; left: 0; }
.block2 { width: 200px; height: 240px; bottom: 0; right: 20px; }
.av-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
}
.av-p1 { background: linear-gradient(135deg,#1a2a1a,#0f1a0f); }
.av-p2 { background: linear-gradient(135deg,#1a1a2e,#0a0a1a); }
.av-emoji { font-size: 42px; }

.exp-badge {
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  background: var(--accent);
  color: #000;
  border-radius: var(--radius);
  padding: 22px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 20px 50px rgba(200,240,62,.22);
}
.exp-num { font-family: var(--ff-head); font-size: 44px; font-weight: 800; line-height: 1; }
.exp-lbl { font-size: 12px; font-weight: 600; line-height: 1.4; margin-top: 4px; }

.about-pillars { display: flex; flex-direction: column; gap: 12px; }
.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .3s;
}
.pillar-item:hover { border-color: rgba(200,240,62,.3); }
.pillar-icon { font-size: 22px; flex-shrink: 0; }
.pillar-item h6 { font-family: var(--ff-head); font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.pillar-item p { font-size: 13px; color: var(--text3); margin: 0; line-height: 1.5; }


/* ================================================
   SERVICES
   ================================================ */
.services-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 46px 1fr auto 36px;
  align-items: center;
  gap: 24px;
  padding: 26px 32px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  transition: background .3s;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: rgba(255,255,255,.01); }

.svc-hover-bg {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(200,240,62,.035) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.service-row:hover .svc-hover-bg { opacity: 1; }

.svc-num {
  font-family: var(--ff-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: .08em;
}
.svc-icon { font-size: 22px; transition: transform .3s; }
.service-row:hover .svc-icon { transform: scale(1.25) rotate(15deg); }

.svc-content h5 {
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 5px;
  transition: color .3s;
}
.service-row:hover .svc-content h5 { color: var(--svc-color); }
.svc-content p { font-size: 13.5px; color: var(--text3); margin: 0; line-height: 1.6; max-width: 500px; }

.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; max-width: 220px; }
.svc-tag {
  font-size: 11px;
  padding: 3px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text3);
  white-space: nowrap;
  transition: all .2s;
}
.service-row:hover .svc-tag { border-color: rgba(200,240,62,.22); color: var(--text2); }

.svc-arrow { color: var(--text3); font-size: 18px; transition: all .3s; }
.service-row:hover .svc-arrow { color: var(--accent); transform: translate(3px,-3px); }


/* ================================================
   WHY US
   ================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-card {
  position: relative;
  padding: 38px 30px;
  background: var(--bg2);
  transition: background .3s;
  overflow: hidden;
}
.why-card:hover { background: var(--surface); }
.why-icon { font-size: 32px; margin-bottom: 18px; }
.why-card h6 { font-family: var(--ff-head); font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 13.5px; color: var(--text3); line-height: 1.7; margin: 0; }
.why-line {
  position: absolute;
  bottom: 0; left: 30px;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width .4s ease;
}
.why-card:hover .why-line { width: calc(100% - 60px); }


/* ================================================
   STATS
   ================================================ */
.dc-stats {
  padding: 90px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  padding: 46px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface); }
.stat-number {
  font-family: var(--ff-head);
  font-size: clamp(40px,5vw,64px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  display: block;
}
.stat-item h6 { font-family: var(--ff-head); font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.stat-item p { font-size: 12.5px; color: var(--text3); margin: 0; }


/* ================================================
   PORTFOLIO
   ================================================ */
.portfolio-filters { }
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text3);
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
}
.filter-btn:hover { border-color: var(--text2); color: var(--text); }
.filter-btn.active { background: var(--accent); color: #000; border-color: var(--accent); }

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s ease;
  cursor: pointer;
  height: 100%;
}
.project-card:hover {
  border-color: var(--card-color);
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(0,0,0,.45);
}
.project-visual {
  position: relative;
  height: 170px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.project-emoji { font-size: 52px; position: relative; z-index: 1; transition: transform .3s; }
.project-card:hover .project-emoji { transform: scale(1.15); }
.project-glow {
  position: absolute;
  bottom: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: .12;
  filter: blur(30px);
  transition: opacity .3s;
}
.project-card:hover .project-glow { opacity: .28; }

.project-info { padding: 18px; }
.project-cat { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 5px; }
.project-info h6 { font-family: var(--ff-head); font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.project-info p { font-size: 12.5px; color: var(--text3); margin: 0; line-height: 1.5; }

.project-hover { padding: 0 18px 18px; opacity: 0; transform: translateY(6px); transition: all .3s; }
.project-card:hover .project-hover { opacity: 1; transform: translateY(0); }
.project-hover .btn { font-size: 12px; padding: 8px 18px; }

/* hide items via JS filter */
.portfolio-item.hidden { display: none !important; }


/* ================================================
   TESTIMONIALS
   ================================================ */
.testi-tabs { display: flex; flex-direction: column; gap: 8px; }
.testi-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .3s;
  position: relative;
  text-align: left;
  overflow: hidden;
  width: 100%;
}
.testi-tab:hover { border-color: var(--t-color); }
.testi-tab.active { border-color: var(--t-color); background: rgba(200,240,62,.03); }

.tab-av {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.tab-info { display: flex; flex-direction: column; flex: 1; }
.tab-info strong { font-size: 14px; font-weight: 600; color: var(--text); }
.tab-info span { font-size: 12px; color: var(--text3); margin-top: 2px; }

.tab-indicator {
  width: 3px; height: 0;
  background: var(--t-color);
  border-radius: 2px;
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  transition: height .3s;
}
.testi-tab.active .tab-indicator { height: 55%; }

.testi-cards { position: relative; min-height: 320px; }
.testi-card {
  position: absolute; inset: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transform: translateY(18px);
  transition: all .45s ease;
  overflow: hidden;
}
.testi-card.active { opacity: 1; pointer-events: all; transform: translateY(0); }

.testi-stars { font-size: 19px; color: #ffc107; letter-spacing: 3px; }
.testi-quote {
  font-size: 17px;
  line-height: 1.78;
  color: var(--text);
  font-style: italic;
  font-weight: 300;
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
}

.auth-av {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.testi-author strong { font-size: 15px; font-weight: 600; display: block; }
.testi-author span { font-size: 13px; color: var(--text3); }
.testi-deco {
  position: absolute;
  top: 28px; right: 36px;
  font-size: 100px;
  color: rgba(200,240,62,.04);
  font-family: serif;
  line-height: 1;
  user-select: none;
}


/* ================================================
   CONTACT
   ================================================ */
.cta-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,240,62,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,240,62,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(200,240,62,.06) 0%, transparent 70%);
  pointer-events: none;
}

.dc-input {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text) !important;
  font-family: var(--ff-body) !important;
  font-size: 14px !important;
  padding: 13px 18px !important;
  transition: border-color .25s !important;
}
.dc-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(200,240,62,.08) !important;
  outline: none !important;
}
.dc-input::placeholder { color: var(--text3) !important; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item { display: flex; align-items: center; gap: 16px; }
.ci-icon {
  width: 46px; height: 46px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.ci-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.ci-item span { font-size: 13.5px; color: var(--text3); }

#formMessage .alert { border-radius: var(--radius-sm); font-size: 14px; }


/* ================================================
   FOOTER
   ================================================ */
.dc-footer { background: var(--bg); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.footer-top { padding: 76px 0 56px; }
.footer-tagline { font-size: 14px; color: var(--text3); line-height: 1.7; max-width: 280px; }
.footer-col-title {
  font-family: var(--ff-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13.5px; color: var(--text3); transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

.social-btn {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--text3);
  transition: all .25s;
}
.social-btn:hover { background: var(--accent); color: #000; border-color: var(--accent); }

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text3);
}
.footer-bottom a { font-size: 13px; color: var(--text3); }
.footer-bottom a:hover { color: var(--accent); }

.footer-wordmark {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-head);
  font-size: clamp(44px, 8vw, 110px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.012);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width:1200px) {
  .service-row { grid-template-columns: 46px 38px 1fr 32px; gap: 16px; }
  .svc-tags { display: none; }
}
@media (max-width:991px) {
  .floating-badge { display: none; }
  .about-visual { height: 320px; }
  .block1 { width: 200px; height: 220px; }
  .block2 { width: 160px; height: 190px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .testi-cards { min-height: 400px; }
  .testi-card { padding: 28px; }
  .testi-quote { font-size: 15px; }
}
@media (max-width:767px) {
  .dc-section { padding: 80px 0; }
  .hero-title { font-size: clamp(48px, 12vw, 70px); }
  .service-row { grid-template-columns: 36px 32px 1fr 28px; gap: 10px; padding: 18px 16px; }
  .svc-content p { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 20px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2),.stat-item:nth-child(4) { border-right: none; }
}
@media (max-width:480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
}


/* ================================================
   THEME TOGGLE BUTTON — sun/moon wala button
   ================================================ */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s;
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ================================================
   LIGHT MODE — jab user button click kare
   ================================================ */
[data-theme="light"] {
  --bg:      #f5f5f5;
  --bg2:     #eeeeee;
  --bg3:     #e4e4e4;
  --surface: #ffffff;
  --border:  #d0d0d0;
  --text:    #111111;
  --text2:   #555555;
  --text3:   #888888;
}
[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}
[data-theme="light"] .dc-navbar.scrolled {
  background: rgba(245,245,245,.97) !important;
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .dc-dropdown {
  background: #ffffff !important;
  border-color: #d0d0d0 !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.10) !important;
}
[data-theme="light"] .dc-dropdown-item:hover {
  background: rgba(249,184,22,.08) !important;
  color: #111 !important;
}
/* ================================================
   THEME TOGGLE BUTTON
   ================================================ */
.theme-toggle-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--surface);
  color: var(--text2); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: all .25s; flex-shrink: 0;
}
.theme-toggle-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ================================================
   LIGHT MODE
   ================================================ */
[data-theme="light"] {
  --bg:      #ffffff;
  --bg2:     #f5f5f5;
  --bg3:     #eeeeee;
  --surface: #ffffff;
  --border:  #e0e0e0;
  --text:    #111111;
  --text2:   #555555;
  --text3:   #888888;
}
[data-theme="light"] body { background: var(--bg); color: var(--text); }
[data-theme="light"] .dc-navbar.scrolled { background: rgba(255,255,255,.97) !important; border-bottom: 1px solid var(--border); }
[data-theme="light"] .dc-dropdown { background: #ffffff !important; border-color: #e0e0e0 !important; box-shadow: 0 12px 40px rgba(0,0,0,.10) !important; }
[data-theme="light"] .dc-dropdown-item:hover { background: rgba(249,184,22,.08) !important; color: #111 !important; }
[data-theme="light"] .dc-nav-link:hover, [data-theme="light"] .dc-nav-link:focus { background: rgba(0,0,0,.04); color: #111 !important; }

/* Hero sections — pure white */
[data-theme="light"] .pf-hero,
[data-theme="light"] .ab-hero,
[data-theme="light"] .ct-hero {
  background: var(--bg) !important;
}
[data-theme="light"] .pf-hero::before,
[data-theme="light"] .ab-hero::before,
[data-theme="light"] .ct-hero::before { display: none; }

/* Transform section overlay */
[data-theme="light"] .ab-transform::before { background: linear-gradient(to top, rgba(255,255,255,.94) 40%, rgba(255,255,255,.25)); }

/* Badges */
[data-theme="light"] .ab-exp-badge { background: rgba(255,255,255,.97); }
[data-theme="light"] .pf-featured-visual { background: linear-gradient(135deg, rgba(249,184,22,.08), rgba(249,184,22,.02)); }

/* Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg); }