/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #080808;
  --bg3: #111111;
  --green: #39ff14;
  --white: #ffffff;
  --gray: #a1a1aa;
  --gray2: #52525b;
  --border: rgba(255,255,255,0.07);
  --font: 'Geist', 'Segoe UI', sans-serif;
  --font-head: 'Geist', 'Segoe UI', sans-serif;
  --font-body: 'Geist', 'Segoe UI', sans-serif;
  --h-outer: 148px;
  --h-mid: 220px;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  cursor: none;
  overflow-x: hidden;
  min-height: 100vh;
}

/* SYSTEM-WIDE AUTOMATED HEADING CAPITALIZATION METHOD */
h1, h2, h3, h4, h5, h6, .work-h2, .services-h2, .awards-heading, .contact-h2, .nav-links a {
  text-transform: capitalize !important;
}

/* ===================== LOADER ===================== */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-top { text-align: center; }
.loader-logo { font-size: 22px; font-weight: 600; letter-spacing: 3px; color: var(--white); }
.loader-green { color: var(--green); }
.loader-subtitle { font-size: 12px; color: var(--gray); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 6px; }
.loader-bar-wrap { width: 220px; height: 1px; background: rgba(255,255,255,0.1); border-radius: 1px; overflow: hidden; }
.loader-bar { height: 100%; width: 0%; background: var(--green); border-radius: 1px; transition: width 0.1s linear; }
.loader-pct { font-size: 11px; color: var(--gray); letter-spacing: 0.1em; }

/* ===================== CURSOR ===================== */
#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--green); border-radius: 50%;
  pointer-events: none; z-index: 9999; left: 0; top: 0;
  transform: translate(-50%,-50%); mix-blend-mode: difference;
  transition: width .3s cubic-bezier(.34,1.56,.64,1), height .3s cubic-bezier(.34,1.56,.64,1);
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(57,255,20,.5); border-radius: 50%;
  pointer-events: none; z-index: 9998; left: 0; top: 0;
  transform: translate(-50%,-50%);
  transition: width .5s cubic-bezier(.34,1.56,.64,1), height .5s cubic-bezier(.34,1.56,.64,1), border-color .35s ease;
}
body.hover-active #cursor { width: 80px; height: 80px; }
body.hover-active #cursor-ring { width: 105px; height: 105px; border-color: rgba(57,255,20,.35); }
body.hover-work #cursor { width: 16px; height: 16px; }
body.hover-work #cursor-ring { width: 72px; height: 72px; border-color: rgba(57,255,20,.25); }

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, padding .3s;
}
nav.scrolled {
  border-color: var(--border);
  background: rgba(8,8,8,.93);
  backdrop-filter: blur(22px);
  padding: 12px 48px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 400; text-decoration: none;
  color: var(--white); letter-spacing: -.03em;
}
.nav-logo-icon {
  width: 32px; height: 32px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #000;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--gray);
  text-decoration: none; letter-spacing: .05em; text-transform: uppercase;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--green); transition: width .3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--green); color: #000;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  display: flex; align-items: center; gap: 7px;
  transition: background .3s, transform .25s;
}
.nav-cta:hover { background: #fff; transform: scale(1.04); }

/* ===================== HERO ===================== */
#hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 540px 1fr;
  align-items: center;
  overflow: hidden;
}
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 130px 0 60px 48px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .7s .15s ease forwards;
}
.eyebrow-line { width: 32px; height: 2px; background: var(--green); flex-shrink: 0; }
.eyebrow-text { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gray); }
.hero-h1 {
  font-size: clamp(38px, 4.2vw, 72px);
  font-weight: 400; line-height: 1.0; letter-spacing: -.03em; margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .7s .28s ease forwards;
}
.hero-h1 .accent { color: var(--green); font-style: italic; font-weight: 300; }
.hero-desc {
  font-size: 15px; font-weight: 400; color: var(--gray);
  line-height: 1.78; max-width: 420px; margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .7s .42s ease forwards;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .7s .56s ease forwards;
}
.btn-primary {
  background: var(--white); color: #000;
  padding: 6px 22px 6px 6px; border-radius: 50px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 14px;
  transition: background .3s, box-shadow .35s, transform .3s;
}
.btn-primary:hover { background: var(--green); transform: translateY(-3px); box-shadow: 0 16px 44px rgba(57,255,20,.25); }
.btn-circle {
  width: 42px; height: 42px; border-radius: 50%; background: #000;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .3s;
}
.btn-primary:hover .btn-circle { transform: scale(1.1); }
.btn-label { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 15px 30px; border-radius: 50px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  transition: border-color .3s, color .3s, transform .3s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===================== HERO VISUAL ===================== */
.hero-visual {
  position: relative; height: 100vh; overflow: hidden;
  opacity: 0; animation: fadeUp 1s .38s ease forwards;
}
.perspective-wrap {
  position: absolute; inset: 0;
  perspective: 900px;
  perspective-origin: 0% 50%;
}
.tilt-stage {
  position: absolute;
  inset: -80px -60px;
  transform: rotateX(12deg) rotateY(-18deg) rotateZ(4deg);
  transform-style: preserve-3d;
  display: flex; flex-direction: column; justify-content: center;
  gap: 14px; padding: 60px 0;
}
.fade-l { position: absolute; left:0; top:0; bottom:0; width:120px; background: linear-gradient(to right, var(--bg), transparent); z-index: 10; pointer-events: none; }
.fade-r { position: absolute; right:0; top:0; bottom:0; width:60px; background: linear-gradient(to left, var(--bg), transparent); z-index: 10; pointer-events: none; }
.fade-t { position: absolute; top:0; left:0; right:0; height:120px; background: linear-gradient(to bottom, var(--bg), transparent); z-index: 10; pointer-events: none; }
.fade-b { position: absolute; bottom:0; left:0; right:0; height:120px; background: linear-gradient(to top, var(--bg), transparent); z-index: 10; pointer-events: none; }
.slider-row { overflow: hidden; flex-shrink: 0; width: 100%; }
.slider-track { display: flex; gap: 12px; width: max-content; will-change: transform; }
.pc {
  flex-shrink: 0; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex; align-items: stretch;
  transition: border-color .4s ease;
  will-change: transform;
}
.pc:hover { border-color: rgba(255,255,255,.28); }
.pc-img-wrap { display: block; position: relative; overflow: hidden; }
.pc-fill { display: block; height: 100%; }
.r1-card .pc-img-wrap, .r1-card .pc-fill { height: var(--h-outer); }
.r2-card .pc-img-wrap, .r2-card .pc-fill { height: var(--h-mid); }
.r3-card .pc-img-wrap, .r3-card .pc-fill { height: var(--h-outer); }
.pc-fill img { height:100%; width:100%; object-fit:cover; object-position:center }

/* ===================== STATS ===================== */
#stats { padding: 48px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); }
.stats-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 16px 32px; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(36px, 3.5vw, 52px); font-weight: 400; line-height: 1; letter-spacing: -0.04em; color: var(--green); margin-bottom: 6px; }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.19em; text-transform: uppercase; color: var(--gray); margin-top: 10px; }

/* ===================== PARTNERS ===================== */
.partners-bar { max-width: 1400px; margin: 36px auto 0; border-top: 1px solid var(--border); padding-top: 28px; overflow: hidden; }
.partners-logos-wrap { overflow: hidden; position: relative; }
.partners-logos-wrap::before, .partners-logos-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.partners-logos-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.partners-logos-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.partners-logos-track { display: flex; gap: 0; animation: partnersScroll 30s linear infinite; width: max-content; }
@keyframes partnersScroll { to { transform: translateX(-50%); } }

/* REPAIRED LOOPS: Applied properties behind layouts cleanly instead of raw elements */
.partner-logo-item { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px; 
  padding: 0 36px; 
  width: 250px; 
  transition: color 0.3s; 
  flex-shrink: 0; 
}
.partner-logo-item img { 
  max-width: 100%; 
  max-height: 60px; 
  opacity: 0.75; 
  transition: all 0.3s ease; 
  background: #ffffff !important; 
  padding: 12px 20px; 
  border-radius: 8px;
  object-fit: contain;
}
.partner-logo-item:hover img { 
  opacity: 1; 
  transform: scale(1.03);
}

/* ===================== ABOUT ===================== */
#about { padding: 50px 48px; background: var(--bg); display: flex; align-items: center; }
.about-scroll-inner { max-width: 1400px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 240px 1fr; gap: 60px; align-items: start; }
.about-left-col { padding-top: 8px; }
.about-tag { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.about-reveal-text { font-size: clamp(26px, 3.2vw, 48px); font-weight: 400; line-height: 1.25; letter-spacing: -0.02em; color: #cssInitialVal; }
.reveal-letter { display: inline; }

/* ===================== FEATURED WORK SCROLLER FRAME LAYER ===================== */
#portfolio-carousel { background: #08080a; padding: 30px 0; position: relative; overflow: hidden; }
.carousel-container { max-width: 100%; margin: 0 auto; position: relative; }
.work-inner { max-width: 1400px; margin: 0 auto; }
.work-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.work-h2 { font-size: clamp(32px, 3.5vw, 56px); font-weight: 400; line-height: 1.05; letter-spacing: -0.03em; color: var(--white); }
.work-h2 .italic { font-style: italic; color: var(--gray); }
.work-swiper { padding: 40px 0 80px !important; overflow: visible !important; }

.portfolio-slide {
  width: 580px; max-width: 85vw; background: #111115;
  border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 24px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: opacity 0.5s ease, filter 0.5s ease, border-color 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
	#portfolio-carousel .swiper-wrapper{
		gap:0;
	}
.portfolio-slide:hover { border-color: var(--green); }
.slide-image-box { width: 100%; overflow: hidden; background: #000; }
.slide-image-box img { width: 100%; object-fit: cover; display: block; }
.slide-content-box { padding: 28px 24px; display: flex; flex-direction: column; gap: 8px; text-align: left; }
.slide-title { font-size: 22px; font-weight: 400; color: #ffffff; letter-spacing: -0.02em; margin: 0; }
.slide-subtitle { font-size: 13px; color: #a1a1aa; margin-bottom: 12px; }
.slide-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; gap: 16px; }
.slide-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.slide-tag { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); color: #e4e4e7; font-size: 11px; padding: 6px 14px; border-radius: 50px; }
.slide-action-btn { width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: #ffffff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; cursor: pointer; }
.portfolio-slide:hover .slide-action-btn { background: var(--green); color: #000000; border-color: var(--green); transform: scale(1.05); }

/* FIXED ARROW Z-INDEX TO KEEP THEM CLICKABLE OVER THE 3D INTERFACE SLIDES */
.custom-nav-btn { 
  width: 54px; 
  height: 54px; 
  border-radius: 50%; 
  background: rgba(18, 18, 24, 0.8) !important; 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  color: #ffffff !important; 
  backdrop-filter: blur(8px); 
  transition: all 0.3s;
  z-index: 100 !important; 
}
.custom-nav-btn::after { display: none; }
.custom-nav-btn:hover { background: var(--green) !important; color: #000000 !important; border-color: var(--green); }
.swiper-button-prev.custom-nav-btn { left: 4% !important; }
.swiper-button-next.custom-nav-btn { right: 4% !important; }

/* GREEN ACTIVE CAROUSEL PAGINATION GRAPHICS */
.custom-pagination { bottom: 24px !important; z-index: 100 !important; }
.custom-pagination .swiper-pagination-bullet { width: 8px; height: 8px; background: #3f3f46; opacity: 1; margin: 0 5px !important; transition: all 0.3s; }
.custom-pagination .swiper-pagination-bullet-active { background: var(--green) !important; transform: scale(1.25); }

/* SIDE PREVIEW SLIDES ISOLATION SLOTS */
.work-swiper .swiper-slide:not(.swiper-slide-active) { opacity: 0.25; filter: blur(1px); pointer-events: none; }
.work-swiper .swiper-slide-active { pointer-events: auto !important; }

/* ===================== SERVICES ===================== */
#services { padding: 50px 48px; }
.services-inner { max-width: 1400px; margin: 0 auto; }
.services-header { margin-bottom: 48px; }
.services-h2 { font-size: clamp(32px, 3.5vw, 56px); font-weight: 400; line-height: 1.05; letter-spacing: -0.03em; }
.services-h2 .italic { font-style: italic; color: var(--gray); }
.services-desc { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 480px; margin-top: 16px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.service-card { background: var(--bg); padding: 28px 24px; position: relative; transition: background 0.3s; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(57,255,20,0.08) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; }
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: #121212; }
.service-num { font-size: 10px; color: var(--gray2); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 16px; transition: color 0.3s; }
.service-card:hover .service-num { color: var(--green); }
.service-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: all 0.3s; }
.service-card:hover .service-icon { background: rgba(57,255,20,0.15); border-color: rgba(57,255,20,0.35); }
.service-icon svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.7); transition: stroke 0.3s; }
.service-card:hover .service-icon svg { stroke: var(--green); }
.service-title { font-size: 16px; font-weight: 400; margin-bottom: 8px; letter-spacing: -0.01em; transition: color 0.3s; }
.service-card:hover .service-title { color: var(--green); }
.service-desc { font-size: 12px; color: var(--gray); line-height: 1.65; }

/* ===================== TESTIMONIALS ===================== */
#testimonials { padding: 50px 48px; background: #0c0c0e; }
.testi-inner { max-width: 1400px; margin: 0 auto; }
.testi-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; }
.testi-eyebrow-line { width: 32px; height: 2px; background: var(--green); flex-shrink: 0; }
.testi-eyebrow-text { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gray); }
.testi-main { display: grid; grid-template-columns: 1fr 280px; gap: 60px; align-items: center; min-height: 280px; margin-bottom: 48px; }
.testi-content { position: relative; opacity: 0; transform: translateY(8px); }
.testi-content.visible { opacity: 1; transform: translateY(0); transition: all 0.45s ease; }
.testi-content.fading { opacity: 0; transform: translateY(8px); transition: all 0.3s ease; }
.testi-quote-icon { font-family: Georgia, serif; font-size: 80px; line-height: 0.6; color: var(--green); opacity: 0.55; display: block; margin-bottom: 20px; user-select: none; }
.testi-text { font-size: clamp(14px, 1.4vw, 16px); line-height: 1.85; color: rgba(255,255,255,0.82); margin-bottom: 32px; }
.testi-close-icon { font-family: Georgia, serif; font-size: 80px; line-height: 0.6; color: var(--green); opacity: 0.55; display: block; text-align: right; margin-bottom: 28px; user-select: none; max-width: 640px; }
.testi-meta { display: flex; align-items: center; justify-content: space-between; max-width: 640px; }
.testi-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.testi-designation { font-size: 12px; color: var(--gray); }
.testi-logo { font-size: 13px; font-weight: 700; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
.testi-portrait-wrap { width: 260px; height: 260px; flex-shrink: 0; opacity: 0; }
.testi-portrait-wrap.visible { opacity: 1; transition: opacity 0.45s ease; }
.testi-portrait-ring { width: 260px; height: 260px; border-radius: 50%; border: 2px dashed rgba(57,255,20,0.35); padding: 8px; animation: spinRing 18s linear infinite; }
@keyframes spinRing { to { transform: rotate(360deg); } }
.testi-portrait-inner { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; border: 2px solid rgba(57,255,20,0.2); background: var(--bg3); animation: spinRing 18s linear infinite reverse; }
.testi-portrait-inner img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; filter: grayscale(20%); }
.testi-avatar-fallback { width: 100%; height: 100%; border-radius: 50%; background: linear-gradient(135deg, var(--green), #0d4a1f); display: flex; align-items: center; justify-content: center; font-size: 56px; font-weight: 700; color: #000; }
.testi-divider { height: 1px; background: var(--border); margin-bottom: 28px; }

.testi-nav-btn,
.testi-nav-btn:focus,
.testi-nav-btn:active,
.testi-nav-btn:focus-visible { 
  width: 44px; 
  height: 44px; 
  border-radius: 50%; 
  background: var(--green) !important; 
  outline: none !important;
  border: none !important; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  transition: all 0.25s; 
}
.testi-nav-btn:hover { background: #fff !important; transform: scale(1.08); }
.testi-thumbs-swiper { flex: 1; overflow: hidden; min-width: 0; }
.swiper-wrapper { display: flex !important; flex-direction: row !important; align-items: center; gap:20px; padding:10px; }
.testi-thumb-slide { width: auto !important; flex-shrink: 0; cursor: pointer; }
.thumb-ring { width: 64px; height: 64px; border-radius: 50%; border: 2px solid transparent; padding: 3px; transition: all 0.35s ease; }
.thumb-ring-inner { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: var(--bg3); border: 1px solid var(--border); }
.thumb-ring-inner img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; filter: grayscale(60%) brightness(0.7); }
.thumb-avatar-fallback { width: 100%; height: 100%; border-radius: 50%; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--gray); border: 1px solid var(--border); }
.testi-thumb-slide.is-active .thumb-ring { border-color: var(--green); transform: scale(1.12); }
.testi-thumb-slide.is-active .thumb-ring-inner img { filter: grayscale(0%) brightness(1); }
.testi-nav-btn:focus{
  background: #39ff14 !important;
}

/* ===================== AWARDS & CERTIFICATES ===================== */
.awards-section { background-color: var(--bg); padding: 50px 48px; color: var(--white); }
.awards-container { max-width: 1400px; margin: 0 auto; }
.awards-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; margin-bottom: 60px; }
.awards-title-box { flex: 1; }
.awards-eyebrow { display: inline-block; color: var(--green); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.awards-heading { font-size: clamp(32px, 3.5vw, 56px); font-weight: 400; line-height: 1.1; letter-spacing: -0.03em; margin: 0; }
.text-green { color: var(--green); }
.awards-desc-box { flex: 1; max-width: 520px; padding-top: 12px; }
.awards-desc-box p { color: rgba(255, 255, 255, 0.65); font-size: 15px; line-height: 1.7; margin: 0; }
.awards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.award-card { background-color: var(--bg3); border: 1px solid var(--border); border-radius: 16px; padding: 32px; display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; }
.award-card:hover { transform: translateY(-5px); border-color: rgba(57, 255, 20, 0.3); }
.award-img { width: 100%; height: auto; border-radius: 8px; object-fit: cover; display: block; }
.testi-thumbs-wrap {
    display: inline-flex !important;
    align-items: center !important;
    gap: 16px !important;
    width: auto !important;
    max-width: none !important;
}

@media (max-width: 767px) {
    .testi-thumbs-wrap {
        width: 100% !important;
        flex-wrap: wrap !important;
    }
}

/* ===================== BLOG ===================== */
/* #blog { padding: 40px 48px; }
.blog-inner { max-width: 1400px; margin: 0 auto; }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.blog-h2 { font-size: clamp(28px, 3vw, 48px); font-weight: 400; line-height: 1.1; letter-spacing: -0.03em; }
.blog-h2 .italic { font-style: italic; color: var(--green); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card { background: #0e0e10; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all 0.4s; }
.blog-card:hover { border-color: rgba(57,255,20,0.3); transform: translateY(-4px); }
.blog-thumb { width: 100%; height: 300px; overflow: hidden; position: relative; }
.blog-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.blog-card:hover .blog-thumb-img { transform: scale(1.07); }
.blog-tag { position: absolute; top: 12px; left: 12px; background: var(--green); color: #000; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 50px; z-index: 2; }
.blog-info { padding: 20px; }
.blog-meta { font-size: 11px; color: var(--gray); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.blog-title { font-size: 20px !important; font-weight: 600 !important; line-height: 1.4; letter-spacing: -0.01em; margin-bottom: 8px; transition: color 0.3s; }
.blog-card:hover .blog-title { color: var(--green); }
.blog-excerpt { font-size: 14px; color: var(--gray); line-height: 1.65; margin-top:15px} */

#mkrblog-section{
    padding:40px 48px;
}

.mkrblog-inner{
    max-width:1400px;
    margin:0 auto;
}

.mkrblog-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:40px;
}

.mkrblog-heading{
    font-size:clamp(28px,3vw,48px);
    font-weight:400;
    line-height:1.1;
    letter-spacing:-0.03em;
}

.mkrblog-italic{
    font-style:italic;
    color:var(--green);
}

#mkrblog-grid,
.mkrblog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.mkrblog-card{
    background:#0e0e10;
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
    transition:.4s;
}

.mkrblog-card:hover{
    border-color:rgba(57,255,20,.3);
    transform:translateY(-4px);
}

.mkrblog-thumb{
    width:100%;
    height:300px;
    overflow:hidden;
    position:relative;
}

.mkrblog-thumb-wrap{
    width:100%;
    height:100%;
    display:block;
}

.mkrblog-thumb-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.mkrblog-card:hover .mkrblog-thumb-img{
    transform:scale(1.07);
}

.mkrblog-tag{
    position:absolute;
    top:12px;
    left:12px;
    background:var(--green);
    color:#000;
    font-size:10px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    padding:3px 9px;
    border-radius:50px;
    z-index:2;
}

.mkrblog-content{
    padding:20px;
}

.mkrblog-meta{
    font-size:11px;
    color:var(--gray);
    letter-spacing:.06em;
    text-transform:uppercase;
    margin-bottom:8px;
}

.mkrblog-title{
    font-size:20px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:-0.01em;
    margin:0 0 8px;
    transition:color .3s;
}

.mkrblog-card:hover .mkrblog-title{
    color:var(--green);
}

.mkrblog-excerpt{
    margin-top:15px;
    font-size:14px;
    color:var(--gray);
    line-height:1.65;
}

.mkrblog-empty{
    grid-column:1/-1;
    text-align:center;
    color:#fff;
    padding:40px 0;
}

/* ===================== CONTACT ===================== */
#contact { padding: 40px 48px; background: var(--bg); position: relative; overflow: hidden; }
.contact-glow { position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(57,255,20,0.06) 0%, transparent 70%); pointer-events: none; }
.contact-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact-h2 { font-size: clamp(44px, 6vw, 96px); font-weight: 400; line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 24px; }
.contact-tagline { font-size: 15px; color: var(--gray); line-height: 1.65; max-width: 400px; margin-bottom: 32px; }
.contact-form-box input[type="text"], .contact-form-box input[type="email"], .contact-form-box input[type="tel"], .contact-form-box textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: var(--white); font-size: 14px; padding: 14px 16px; outline: none; transition: all 0.3s; }
.contact-form-box input[type="text"]:focus, .contact-form-box input[type="email"]:focus, .contact-form-box input[type="tel"]:focus, .contact-form-box textarea:focus { border-color: rgba(57,255,20,0.5); background: rgba(57,255,20,0.04); }
.contact-form-box input[type="submit"] { background: var(--green); color: #000; border: none; border-radius: 50px; font-size: 14px; font-weight: 700; padding: 14px 32px; cursor: pointer; text-transform: uppercase; width: 100%; transition: all 0.3s; }

/* ===================== SITE FOOTER STYLING ===================== */
.site-footer { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 20px 20px; background: #080808; }
.social-icons { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; margin-bottom: 45px; }
.social-icons a { color: #ffffff; display: flex; align-items: center; justify-content: center; transition: opacity 0.2s ease; }
.social-icons a:hover { opacity: 0.7; }
.social-icons svg { width: 26px; height: 26px; fill: currentColor; }
.footer-description { max-width: 900px; margin-bottom: 45px; }
.footer-description p { font-size: 13px; line-height: 1.6; color: #d1d1d1; }
.footer-logo { margin-bottom: 30px; width: 100%; max-width: 750px; }
.footer-logo svg { width: 100%; height: auto; display: block; }
.footer-copyright { font-size: 14px; color: #d1d1d1; font-weight: 400; }

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.section-enter { opacity: 0; transform: translateY(50px); transition: all 0.9s cubic-bezier(0.22,1,0.36,1); }
.section-enter.visible { opacity: 1; transform: translateY(0); }

/* ===================== MEDIA LAYOUT RESPONSIVENESS ===================== */
@media(max-width:1200px){
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:1100px){
  .hero-content { padding: 110px 20px 40px; }
  .hero-visual { height: 420px; }
  :root { --h-outer: 110px; --h-mid: 165px; }
  .tilt-stage { transform: rotateX(10deg) rotateY(-14deg) rotateZ(3deg); }
}
@media(max-width:1024px){
  .about-scroll-inner { grid-template-columns: 1fr; gap: 20px; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .awards-header { flex-direction: column; gap: 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media(max-width:768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  #hero, #portfolio-carousel, #services, #blog, #contact, #testimonials, #about { padding: 60px 20px; }
  .services-grid, .blog-grid, .awards-grid { grid-template-columns: 1fr; }
  .testi-main { grid-template-columns: 1fr; gap: 32px; }
  .testi-portrait-wrap { width: 200px; height: 200px; margin: 0 auto; order: -1; }
  .testi-portrait-ring { width: 200px; height: 200px; }
  #hero { grid-template-columns: 1fr; grid-template-rows: auto auto; align-items: start; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding: 0; padding-top: 50px; }
  .site-footer { padding: 40px 15px 30px; }
  .social-icons { gap: 20px; margin-bottom: 35px; }
}
@media(max-width:480px){
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .hero-btns { flex-direction: column; }
  :root { --h-outer: 75px; --h-mid: 115px; }
}

.partner-logo-item img {
    padding: 20px !important;
    width: 100% !important;
    max-height: 80px !important;
    opacity: 0.6 !important;
    transition: opacity 0.3s !important;
    background: white !important;
    object-fit: cover !important;
}
