@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

* {
  --bg-primary: #ffffff;
  --bg-secondary: #f4f7fc;
  --bg-accent: #eaf0fb;
  --bg-card: #ffffff;
  --text-heading: #0a1628;
  --text-body: #2d3e50;
  --text-muted: #6b7c93;
  --brand-blue: #0a4da6;
  --brand-cyan: #0099cc;
  --brand-orange: #e8640a;
  --brand-green: #1a7a4a;
  --border-light: #dde4ef;
  --shadow: rgba(10, 77, 166, 0.08);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-family:'Inter',sans-serif}
body{font-family:'Inter',sans-serif;background:var(--bg-primary);color:var(--text-body);overflow-x:hidden}
h1,h2,h3,h4,h5,h6,.logo-text{font-family:'Plus Jakarta Sans',sans-serif}
a{text-decoration:none;color:inherit}
button{border:none;outline:none;font-family:'Plus Jakarta Sans',sans-serif;cursor:pointer}
input,textarea{font-family:'Inter',sans-serif}
ul{list-style:none}
img{max-width:100%}

#particle-canvas{position:fixed;top:0;left:0;width:100%;height:100%;z-index:0;pointer-events:none}

/* NAVBAR */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #dde4ef;
  box-shadow: 0 2px 20px rgba(10,77,166,0.06);
  height: 72px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo{display:flex;align-items:center;gap:10px}
#logo-text{font-family:'Plus Jakarta Sans',sans-serif;font-size:22px;font-weight:800;color:#0a4da6;letter-spacing:1px}

.nav-links{display:flex;gap:32px;align-items:center;height:100%}
.nav-links > a{
  color: #2d3e50;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position:relative;
  padding:26px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.nav-links > a:hover,.nav-links > a.active{color:#0a4da6;border-bottom:2px solid #0a4da6}

.dropdown{position:relative;height:100%;display:flex;align-items:center}
.dropdown-menu{
  position:absolute;top:72px;left:-16px;min-width:280px;
  background:#ffffff;border:1px solid #dde4ef;border-radius:8px;
  padding:12px 0;opacity:0;visibility:hidden;transform:translateY(8px);
  transition:all .25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:0 8px 30px rgba(10,77,166,0.12);
}
.dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-menu a{display:flex;align-items:center;gap:10px;padding:10px 20px;font-size:13px;color:#2d3e50;transition:all .2s;font-weight:500;border-bottom:none}
.dropdown-menu a:hover{color:#0a4da6;background:#f4f7fc}

.nav-cta{
  background: #0a4da6 !important;
  color: #ffffff !important;
  border-radius: 6px;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  border-bottom:none !important;
  transition: all 0.25s ease;
}
.nav-cta:hover{background: #083d88 !important;transform:translateY(-2px);box-shadow:0 4px 12px rgba(10,77,166,0.15)}

.hamburger{display:none;flex-direction:column;gap:5px;background:none;padding:8px}
.hamburger span{display:block;width:24px;height:2px;background:var(--brand-blue);transition:all .3s}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

.mobile-drawer{position:fixed;top:72px;right:-100%;width:280px;height:calc(100vh - 72px);background:#ffffff;z-index:999;padding:40px 32px;transition:right .4s cubic-bezier(0.4, 0, 0.2, 1);border-left:1px solid #dde4ef;box-shadow:-5px 0 30px rgba(10,77,166,0.06)}
.mobile-drawer.open{right:0}
.mobile-drawer a{display:block;font-family:'Plus Jakarta Sans',sans-serif;font-size:16px;padding:14px 0;color:#2d3e50;border-bottom:1px solid #dde4ef;opacity:0;transform:translateX(20px);transition:all .3s;font-weight:600}
.mobile-drawer.open a{opacity:1;transform:translateX(0);color:#0a4da6}
.drawer-overlay{position:fixed;top:72px;left:0;width:100%;height:calc(100vh - 72px);background:rgba(0,0,0,.5);z-index:998;opacity:0;visibility:hidden;transition:all .3s}
.drawer-overlay.show{opacity:1;visibility:visible}
@media(max-width:768px){.nav-links{display:none}.hamburger{display:flex}}

/* HERO SECTION */
.hero, #hero, [class*="hero"] { background: transparent !important; }
.hero{position:relative;min-height:100vh;display:flex;align-items:center;z-index:1;padding:72px 0 0 0;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:linear-gradient(135deg, #ffffff 0%, #f4f7fc 100%);z-index:-2}
.hero-bg::after{display:none}
.hero-bg-overlay{display:none}

.hero-content{width:100%;max-width:1200px;margin:0 auto;position:relative;z-index:2;padding:0 60px}
.hero-text-wrapper{max-width:650px}

.hero-pretitle{display:flex;align-items:center;font-family:'Inter',sans-serif;font-size:11px;letter-spacing:3px;color:#0a4da6;text-transform:uppercase;margin-bottom:24px;opacity:0;animation:fadeSlideUp .8s .2s forwards;font-weight:600}
.hero-pretitle::before{content:'';display:inline-block;width:24px;height:3px;background:#0a4da6;margin-right:12px}

.hero-headline{font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;font-size:clamp(32px,5vw,64px);color:#0a1628;line-height:1.1;margin-bottom:24px}
.hero-headline .line{display:block;opacity:0;transform:translateY(15px);animation:fadeSlideUp .8s forwards}
.hero-headline .line:nth-child(1){animation-delay:.3s}
.hero-headline .line:nth-child(2){animation-delay:.4s}

.hero-sub{font-family:'Inter',sans-serif;font-size:17px;color:#4a5e72;line-height:1.7;margin-bottom:32px;opacity:0;animation:fadeIn .8s .8s forwards}

.hero-buttons{display:flex;gap:16px;margin-bottom:48px;opacity:0;animation:fadeSlideUp .8s 1s forwards}
.btn-primary{
  display:inline-block;padding:15px 36px;
  background: #0a4da6;
  color: #ffffff;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(10,77,166,0.3);
  transition: all .25s ease;
}
.btn-primary:hover{transform:translateY(-2px);box-shadow: 0 8px 25px rgba(10,77,166,0.4);}
.btn-ghost{
  display:inline-block;padding:15px 36px;
  background: transparent;
  color: #0a4da6;
  border: 2px solid #0a4da6;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: all .25s ease;
}
.btn-ghost:hover{background: #0a4da6;color: #ffffff;}

.trust-badges{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:32px;opacity:0;animation:fadeSlideUp .8s 1.2s forwards}
.trust-badge{
  display:inline-flex;align-items:center;
  background: #eaf0fb;
  color: #0a4da6;
  border: 1px solid #c5d6f0;
  border-radius: 20px;
  padding: 5px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.trust-badge::before{content:'✓';margin-right:6px;font-weight:800}

.hero-stats-row{display:flex;gap:24px;opacity:0;animation:fadeSlideUp .8s 1.4s forwards}
.hero-stat{padding-right:24px;border-right:1px solid #dde4ef}
.hero-stat:last-child{border-right:none}
.hero-stat strong{display:block;font-family:'Plus Jakarta Sans',sans-serif;font-size:28px;color:#0a4da6;font-weight:800;line-height:1.2}
.hero-stat span{display:block;font-family:'Inter',sans-serif;font-size:12px;color:#6b7c93;text-transform:uppercase;margin-top:4px}

/* ANNOUNCEMENT TICKER */
.hero-ticker{
  position:absolute;bottom:0;left:0;width:100%;height:44px;z-index:3;
  background: #0a4da6;
  color: #ffffff;
  display:flex;align-items:center;
}
.ticker-badge{
  background: #e8640a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 0 20px;
  height: 100%;
  display:flex;align-items:center;
  position:relative;z-index:2;
  white-space:nowrap;
}
.ticker-track-container{overflow:hidden;flex-grow:1;position:relative}
.ticker-track{display:flex;gap:40px;animation:tickerScroll 25s linear infinite;width:max-content;align-items:center;height:100%}
.ticker-track span{white-space:nowrap;font-family:'Inter',sans-serif;font-size:13px;font-weight:500;letter-spacing:0.5px}

@keyframes fadeSlideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes tickerScroll{to{transform:translateX(-50%)}}

/* PROGRESS BAR */
.scroll-progress{position:fixed;top:72px;left:0;width:0%;height:3px;background:#0a4da6;z-index:999;transition:width 0.1s}

/* COMMON SECTION STYLES */
.section{padding:100px 0;position:relative;z-index:1}
.section-inner{max-width:1200px;margin:0 auto;padding:0 60px}
.section-label{font-family:'Inter',sans-serif;font-size:11px;color:#0a4da6;text-transform:uppercase;letter-spacing:3px;margin-bottom:16px;font-weight:600}
.section-heading{font-family:'Plus Jakarta Sans',sans-serif;font-size:clamp(28px,4vw,42px);color:#0a1628;font-weight:800;margin-bottom:48px;line-height:1.2}

/* UTILS */
.reveal{opacity:0;transform:translateY(40px);transition:opacity .6s cubic-bezier(0.4, 0, 0.2, 1),transform .6s cubic-bezier(0.4, 0, 0.2, 1)}
.reveal.revealed{opacity:1;transform:translateY(0)}

@media(max-width:1024px){
  .hero-bg{background:linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 100%)}
  .hero-bg-overlay{display:none}
}
@media(max-width:768px){
  .hero{padding-top:100px}
  .section-inner{padding:0 24px}
  .hero-stats-row{flex-wrap:wrap;gap:16px}
  .hero-stat{border:none;width:45%;padding:0}
  .ticker-badge{display:none}
}
/* 1. SCROLL ANIMATIONS */
.from-left, .from-right, 
.from-bottom, .zoom-in,
.anim-left, .anim-right, 
.anim-up, .anim-zoom {
  transition: opacity 0.6s ease, transform 0.6s ease !important;
}
.from-left {
  opacity: 0;
  transform: translateX(-80px);
}
.from-right {
  opacity: 0;
  transform: translateX(80px);
}
.from-bottom {
  opacity: 0;
  transform: translateY(60px);
}
.zoom-in {
  opacity: 0;
  transform: scale(0.85);
}
.animated {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) scale(1) !important;
}

/* 2. BORDER FLASH */
@keyframes borderFlash {
  0%   { box-shadow: none; }
  30%  { box-shadow: 0 0 0 3px rgba(10,77,166,0.6); }
  100% { box-shadow: 0 4px 20px rgba(10,77,166,0.1); }
}
.animated.card-flash {
  animation: borderFlash 0.8s ease forwards;
}

/* 4. SCAN LINE ON CARD HOVER */
[class*="card"], [class*="block"], [class*="service"], [class*="project"] {
  position: relative;
  overflow: hidden;
}
[class*="card"]::before, [class*="block"]::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(10,77,166,0.6) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
[class*="card"]:hover::before, [class*="block"]:hover::before {
  animation: scanDown 0.5s ease forwards;
}
@keyframes scanDown {
  0%   { top: -3px; opacity: 1; }
  100% { top: 100%; opacity: 0.3; }
}

/* 6. RIPPLE ANIMATION */
@keyframes ripple {
  to { transform: scale(2.5); opacity: 0; }
}

/* 9. FLOATING BADGES */
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}
.trust-badge:nth-child(1) { animation: float 3s ease-in-out infinite; }
.trust-badge:nth-child(2) { animation: float 3s ease-in-out 1s infinite; }
.trust-badge:nth-child(3) { animation: float 3s ease-in-out 2s infinite; }
.trust-badge:nth-child(4) { animation: float 3s ease-in-out 0.5s infinite; }

/* 11. ICON BOUNCE */
[class*="card"]:hover [class*="icon"],
[class*="card"]:hover svg,
[class*="card"]:hover img {
  animation: iconBounce 0.4s ease;
}
@keyframes iconBounce {
  0%   { transform: scale(1) rotate(0deg); }
  30%  { transform: scale(1.3) rotate(-5deg); }
  60%  { transform: scale(0.95) rotate(3deg); }
  100% { transform: scale(1.1) rotate(0deg); }
}

/* === ADVANCED ANIMATIONS (NEW) === */

/* 1. PAGE LOADER */
#page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-bar-track {
  width: 200px;
  height: 3px;
  background: #e0e8f0;
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0a4da6, #0099cc);
  border-radius: 2px;
  animation: loaderFill 1.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
.loader-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #6b7c93;
}
@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}



/* 10. MORPHING BLOBS */
.blob-bg {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10,77,166,0.06) 0%, transparent 70%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blobMorph 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}
@keyframes blobMorph {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg) scale(1); }
  33%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: rotate(120deg) scale(1.1); }
  66%  { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; transform: rotate(240deg) scale(0.95); }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(360deg) scale(1); }
}



/* 6. FIBER CANVAS */
/* INDIA MAP ANIMATIONS */
@keyframes dotPulse {
  0%   { r: 5; opacity: 0.9; }
  50%  { r: 12; opacity: 0; }
  100% { r: 5; opacity: 0; }
}

.map-ring {
  animation: dotPulse 2.5s ease-out infinite;
}

/* Stagger each ring's delay */
.map-ring:nth-of-type(2)  { animation-delay: 0s; }
.map-ring:nth-of-type(4)  { animation-delay: 0.3s; }
.map-ring:nth-of-type(6)  { animation-delay: 0.6s; }
.map-ring:nth-of-type(8)  { animation-delay: 0.9s; }
.map-ring:nth-of-type(10) { animation-delay: 1.2s; }
.map-ring:nth-of-type(12) { animation-delay: 1.5s; }
.map-ring:nth-of-type(14) { animation-delay: 1.8s; }
.map-ring:nth-of-type(16) { animation-delay: 2.1s; }
.map-ring:nth-of-type(18) { animation-delay: 2.4s; }
.map-ring:nth-of-type(20) { animation-delay: 0.15s; }

/* Dot hover tooltip */
.map-dot {
  cursor: pointer;
  transition: r 0.2s ease;
}
.map-dot:hover {
  r: 8;
  filter: drop-shadow(0 0 6px rgba(10,77,166,0.6));
}

/* 7. NUMBER FLIP */
.stat-num, .hero-stat strong {
  display: inline-block;
  perspective: 400px;
  transition: transform 0.08s ease;
}

/* ADVANCED ANIMATIONS CSS */

/* 2. Typewriter Cursor */
@keyframes cursorBlink {
  0%,100% { opacity:1; }
  50% { opacity:0; }
}

/* 3. Section Transition Wipes */
.section-wipe {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: transparent;
}
.section-wipe::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #0a4da6,
    #0099cc,
    transparent
  );
  animation: wipeAcross 3s ease-in-out infinite;
}
@keyframes wipeAcross {
  0%   { left: -100%; opacity:0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity:0; }
}

/* 4. 3D Rotating Service Icons */
.card-icon-wrap {
  perspective: 400px;
  display: inline-block;
}
.card-icon-inner {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
[class*="card"]:hover .card-icon-inner {
  transform: rotateY(360deg);
}

/* 5. Live Feed Blink */
@keyframes liveBlink {
  0%,100% { opacity:1; }
  50% { opacity:0.3; }
}

/* 6. Scroll-Linked Navbar */
.nav-active {
  color: #0a4da6 !important;
  font-weight: 700 !important;
}
.nav-active::after {
  transform: scaleX(1) !important;
}

/* 9. GSAP-Style Number Odometer */
.odometer-digit {
  display: inline-block;
  overflow: hidden;
  height: 1.1em;
  vertical-align: bottom;
}
.odometer-column {
  display: flex;
  flex-direction: column;
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 11. Glowing Focus Ring */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #0a4da6 !important;
  animation: fieldPulse 0.6s ease forwards;
}
@keyframes fieldPulse {
  0%   { box-shadow: 0 0 0 0 rgba(10,77,166,0.4); }
  50%  { box-shadow: 0 0 0 8px rgba(10,77,166,0.15); }
  100% { box-shadow: 0 0 0 3px rgba(10,77,166,0.1); }
}

/* ULTRA ADVANCED EFFECTS CSS */
/* 5. Staggered Letter Drop */
.letter-drop span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px) rotateX(90deg);
  transition: opacity 0.3s ease,
              transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.letter-drop.visible span {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

/* 12. Keyboard Navigation Easter Egg */
@keyframes easterEgg {
  from { transform:translate(-50%,-50%) scale(0); }
  to   { transform:translate(-50%,-50%) scale(1); }
}
@keyframes easterEggOut {
  from { transform:translate(-50%,-50%) scale(1); opacity:1; }
  to   { transform:translate(-50%,-50%) scale(0.8); opacity:0; }
}



/* OLD CSS REMOVED */
/* WHATSAPP BUTTON */
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  100% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
}
#whatsapp-btn {
  animation: waPulse 2s ease infinite;
}


/* HEADING ANIMATION */
h1, h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

h1.visible, h2.visible {
  opacity: 1;
  transform: translateY(0);
}



/* PREMIUM HORIZONTAL MARQUEE */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f4f7fc, transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f4f7fc, transparent);
}

.marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
  width: max-content;
  animation: marqueeSlide 30s linear infinite;
}

@keyframes marqueeSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track:hover {
  animation-play-state: paused;
}

.client-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #dde4ef;
  border-radius: 12px;
  min-width: 140px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(10,77,166,0.05);
}

.client-logo-card:hover {
  border-color: #0a4da6;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10,77,166,0.12);
}

.client-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: white;
}

.client-logo-card span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #6b7c93;
  text-align: center;
  white-space: nowrap;
}
/* SECTION BACKGROUNDS */
#services { background: #f4f7fc; }
#about { background: #ffffff; }
#process { background: #f4f7fc; }
#why { background: #ffffff; }
#projects { background: #f4f7fc; }
#certs { background: #ffffff; }
#equipment { background: #f4f7fc; }
#clients { background: #ffffff; }
#contact { background: #f4f7fc; }
.footer { background: #0a1628; border-top: 3px solid #0a4da6; }

/* WHAT WE DO */
.wwd-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.wwd-card{
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 36px;
  border: 1px solid #dde4ef;
  box-shadow: 0 4px 20px rgba(10,77,166,0.06);
  position:relative;transition:all .25s ease;
}
.wwd-card::before{content:'';position:absolute;left:0;top:0;width:3px;height:100%;border-radius:3px 0 0 3px}
.wwd-card[data-accent="cyan"]::before{background:#0099cc}
.wwd-card[data-accent="orange"]::before{background:#e8640a}
.wwd-card[data-accent="green"]::before{background:#1a7a4a}
.wwd-card[data-accent="purple"]::before{background:#7a22cc}

.wwd-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,77,166,0.12);
}

.wwd-card .card-head{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:24px}
.wwd-card .card-icon{width:48px;height:48px;border-radius:10px;display:flex;align-items:center;justify-content:center}
.wwd-card .card-icon svg{width:24px;height:24px}
.wwd-card[data-accent="cyan"] .card-icon{background:#eaf4ff;color:#0a4da6}
.wwd-card[data-accent="orange"] .card-icon{background:#fff4ea;color:#e8640a}
.wwd-card[data-accent="green"] .card-icon{background:#eafff4;color:#1a7a4a}
.wwd-card[data-accent="purple"] .card-icon{background:#f4eaff;color:#7a22cc}

.wwd-card .stats-pill{display:inline-block;padding:4px 12px;border-radius:20px;font-family:'Plus Jakarta Sans',sans-serif;font-size:11px;font-weight:700}
.wwd-card[data-accent="cyan"] .stats-pill{background:#eaf4ff;color:#0a4da6}
.wwd-card[data-accent="orange"] .stats-pill{background:#fff4ea;color:#e8640a}
.wwd-card[data-accent="green"] .stats-pill{background:#eafff4;color:#1a7a4a}
.wwd-card[data-accent="purple"] .stats-pill{background:#f4eaff;color:#7a22cc}

.wwd-card h3{font-family:'Plus Jakarta Sans',sans-serif;font-size:20px;color:#0a1628;font-weight:700;margin-bottom:12px}
.wwd-card p{font-family:'Inter',sans-serif;font-size:15px;color:#4a5e72;line-height:1.7;margin-bottom:20px}
.wwd-card .view-link{display:inline-block;font-family:'Inter',sans-serif;font-size:14px;font-weight:600;transition:all .2s;position:relative}
.wwd-card[data-accent="cyan"] .view-link{color:#0099cc}
.wwd-card[data-accent="orange"] .view-link{color:#e8640a}
.wwd-card[data-accent="green"] .view-link{color:#1a7a4a}
.wwd-card[data-accent="purple"] .view-link{color:#7a22cc}
.wwd-card .view-link:hover{text-decoration:underline}

/* ABOUT US */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.about-text p{font-size:16px;color:#2d3e50;line-height:1.8;margin-bottom:32px}

.about-highlights{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.highlight-box{
  background: #f4f7fc;
  border-left: 3px solid #0a4da6;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
}
.highlight-box h4{font-size:14px;color:#0a4da6;font-weight:700;margin-bottom:4px}
.highlight-box p{font-size:13px;color:#4a5e72;margin:0}

.india-map-container{max-width:500px;margin:0 auto;position:relative}
.india-map-container svg{width:100%}
.map-dot{cursor:pointer}
.map-dot circle.pulse{animation:mapPulse 2s ease-out infinite}
@keyframes mapPulse{0%{r:4;opacity:.6}100%{r:16;opacity:0}}
.map-tooltip{position:absolute;background:#ffffff;border:1px solid #dde4ef;padding:10px 16px;border-radius:6px;font-family:'Inter',sans-serif;font-size:13px;color:#0a1628;font-weight:600;pointer-events:none;opacity:0;transition:opacity .2s;white-space:nowrap;z-index:10;box-shadow:0 8px 25px rgba(10,77,166,0.12)}

/* PROCESS TIMELINE */
.timeline{position:relative;padding:40px 0;max-width:1000px;margin:0 auto}
.timeline-line{position:absolute;top:50%;left:0;width:100%;height:2px;background:#dde4ef;z-index:1}
.timeline-line-fill{height:100%;width:0;background:#0a4da6;transition:width 1.5s ease}
.timeline-steps{display:flex;justify-content:space-between;position:relative;z-index:2}
.timeline-step{text-align:center;width:16%}
.timeline-node{
  width:44px;height:44px;border-radius:50%;
  background: #ffffff;
  border: 2px solid #dde4ef;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;
  font-family:'Plus Jakarta Sans',sans-serif;font-size:16px;color:#6b7c93;font-weight:700;
  transition:all .5s;
}
.timeline-step.active .timeline-node{
  background: #0a4da6;
  color: #ffffff;
  border-color: #0a4da6;
  box-shadow: 0 0 0 6px rgba(10,77,166,0.15);
}
.timeline-step h4{font-family:'Plus Jakarta Sans',sans-serif;font-size:13px;color:#0a1628;font-weight:700;margin-bottom:6px}
.timeline-step p{font-size:12px;color:#6b7c93;line-height:1.5}

/* WHY CHOOSE US (PILLARS) */
.pillars-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px}
.pillar-card{
  background: #f4f7fc;
  border-radius: 12px;
  border: 1px solid #dde4ef;
  padding: 32px 24px;
  text-align: center;
  transition: all .25s ease;
  position:relative;
}
.pillar-num{position:absolute;top:16px;right:16px;font-family:'Plus Jakarta Sans',sans-serif;font-size:13px;color:#0a4da6;opacity:0.4;font-weight:700}
.pillar-icon{
  width:52px;height:52px;border-radius:50%;
  background: rgba(10,77,166,0.08);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
  color:#0a4da6;
  transition:all .25s ease;
}
.pillar-icon svg{width:24px;height:24px}
.pillar-card h4{font-size:17px;color:#0a1628;font-weight:700;margin-bottom:12px}
.pillar-card p{font-size:13px;color:#6b7c93;line-height:1.7}
.pillar-card:hover{
  background: #0a4da6;
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,77,166,0.25);
}
.pillar-card:hover h4,.pillar-card:hover p,.pillar-card:hover .pillar-num{color:#ffffff;opacity:1}
.pillar-card:hover .pillar-icon{background:#ffffff;color:#0a4da6}

/* STATS COUNTER */
.stats-section{background:linear-gradient(135deg, #0a4da6 0%, #083d88 100%);padding:80px 0}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);max-width:1200px;margin:0 auto;text-align:center}
.stat-item{position:relative}
.stat-item:not(:last-child)::after{content:'';position:absolute;right:0;top:20%;height:60%;width:1px;background:rgba(255,255,255,0.15)}
.stat-icon{color:#ffffff;margin-bottom:16px;display:flex;justify-content:center}
.stat-icon svg{width:28px;height:28px}
.stat-num{font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;font-size:60px;color:#ffffff;line-height:1.1;margin-bottom:8px}
.stat-label{font-family:'Inter',sans-serif;font-size:13px;color:rgba(255,255,255,0.7);text-transform:uppercase;font-weight:600;letter-spacing:1px}

/* PROJECT SHOWCASE */
.project-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.project-card{
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dde4ef;
  box-shadow: 0 4px 20px rgba(10,77,166,0.06);
  position:relative;
  transition:all .25s ease;
}
.project-card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(10,77,166,0.12)}
.project-top-bar{height:5px;width:100%}
.project-card[data-cat="railway"] .project-top-bar{background:#e8640a}
.project-card[data-cat="govt"] .project-top-bar{background:#0a4da6}
.project-card[data-cat="telecom"] .project-top-bar{background:#1a7a4a}
.project-body{padding:28px}
.project-tag{display:inline-block;padding:4px 12px;border-radius:20px;font-size:11px;font-weight:600;color:#ffffff;margin-bottom:16px}
.project-card[data-cat="railway"] .project-tag{background:#e8640a}
.project-card[data-cat="govt"] .project-tag{background:#0a4da6}
.project-card[data-cat="telecom"] .project-tag{background:#1a7a4a}
.project-card h3{font-size:18px;color:#0a1628;font-weight:700;margin-bottom:12px}
.project-card p{font-size:14px;color:#4a5e72;line-height:1.7;margin-bottom:20px}
.project-stats{display:flex;justify-content:space-between;border-top:1px solid #dde4ef;padding-top:16px}
.project-stats span{font-size:12px;color:#6b7c93;font-weight:500}
.project-stats span b{color:#0a1628;font-weight:700;font-size:14px;display:block}

/* CERTIFICATIONS */
.cert-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:20px}
.cert-badge{
  background: #f4f7fc;
  border: 1px solid #dde4ef;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all .25s ease;
}
.cert-badge svg{width:48px;height:48px;color:#0a4da6;margin-bottom:16px;transition:all .25s}
.cert-badge h4{font-size:13px;color:#0a1628;font-weight:700;margin-bottom:4px;transition:all .25s}
.cert-badge p{font-size:11px;color:#6b7c93;margin:0;transition:all .25s}
.cert-badge:hover{
  background: #0a4da6;
  border-color: #0a4da6;
  box-shadow: 0 8px 30px rgba(10,77,166,0.2);
}
.cert-badge:hover svg,.cert-badge:hover h4,.cert-badge:hover p{color:#ffffff}

/* EQUIPMENT */
.equip-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.equip-col{
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dde4ef;
  padding: 32px;
  position:relative;overflow:hidden;
}
.equip-col::before{content:'';position:absolute;top:0;left:0;width:100%;height:3px}
.equip-col:nth-child(1)::before{background:#0099cc}
.equip-col:nth-child(2)::before{background:#e8640a}
.equip-col:nth-child(3)::before{background:#1a7a4a}
.equip-head{display:flex;align-items:center;gap:12px;margin-bottom:24px}
.equip-head svg{width:28px;height:28px}
.equip-col:nth-child(1) .equip-head svg{color:#0099cc}
.equip-col:nth-child(2) .equip-head svg{color:#e8640a}
.equip-col:nth-child(3) .equip-head svg{color:#1a7a4a}
.equip-col h4{font-size:18px;color:#0a1628;font-weight:700;margin:0}
.equip-item{display:flex;align-items:center;gap:12px;padding:12px 0;font-size:14px;color:#2d3e50;font-weight:500;border-bottom:1px solid #f4f7fc;transition:all .2s}
.equip-item:last-child{border-bottom:none}
.equip-item svg{width:16px;height:16px;color:#0a4da6;flex-shrink:0}
.equip-item:hover{background:#f4f7fc;padding-left:8px;border-radius:4px}

/* TESTIMONIAL */
.testimonial-section{background:linear-gradient(135deg, #0a4da6, #083d88);padding:100px 0}
.testimonial-card{
  max-width:860px;margin:0 auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 50px;
  text-align: center;
}
.testimonial-card .quote-mark{font-family:'Plus Jakarta Sans',sans-serif;font-size:80px;color:rgba(255,255,255,0.15);line-height:1}
.testimonial-card .stars{color:#fbbf24;font-size:20px;margin:16px 0}
.testimonial-card blockquote{font-size:18px;color:#ffffff;line-height:1.8;font-style:italic;margin:24px 0}
.testimonial-card .author{color:rgba(255,255,255,0.7);font-size:14px;font-weight:500}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px}
.contact-info-block{
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #dde4ef;
  border-left: 4px solid #0a4da6;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(10,77,166,0.06);
  margin-bottom:20px;display:flex;align-items:flex-start;gap:16px;
}
.contact-info-block svg{width:28px;height:28px;color:#0a4da6;flex-shrink:0}
.contact-info-block .label{font-size:11px;color:#6b7c93;letter-spacing:1px;text-transform:uppercase;margin-bottom:4px;font-weight:600}
.contact-info-block .value{font-family:'Plus Jakarta Sans',sans-serif;font-size:16px;color:#0a1628;font-weight:600}

.contact-form{
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dde4ef;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(10,77,166,0.08);
}
.form-group{position:relative;margin-bottom:24px}
.form-group input,.form-group textarea{
  width:100%;padding:14px 16px;
  background: #f4f7fc;
  border: 1.5px solid #dde4ef;
  border-radius: 8px;
  color: #0a1628;
  font-size: 15px;
  outline: none;
  transition: all .25s ease;
}
.form-group input:focus,.form-group textarea:focus{
  border-color: #0a4da6;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(10,77,166,0.1);
}
.form-group label{
  position:absolute;left:16px;top:14px;
  font-size:13px;color:#6b7c93;pointer-events:none;
  transition:all .2s ease;background:transparent;padding:0 4px;
}
.form-group input:focus~label,.form-group input:not(:placeholder-shown)~label,.form-group textarea:focus~label,.form-group textarea:not(:placeholder-shown)~label{
  top:-9px;left:12px;font-size:11px;color:#0a4da6;background:#ffffff;font-weight:600;
}
.form-group textarea{min-height:120px;resize:vertical}
.btn-submit{
  width:100%;padding:15px;
  background: #0a4da6;
  color: #ffffff;
  border-radius: 8px;
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;font-size:15px;
  transition:all .25s ease;
}
.btn-submit:hover{background:#083d88;transform:translateY(-2px)}

/* FOOTER */
.footer{padding:80px 0 0 0}
.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:40px;max-width:1200px;margin:0 auto;padding:0 60px 60px 60px}
.footer h4{font-size:14px;color:#ffffff;letter-spacing:1px;margin-bottom:24px;font-weight:700}
.footer p,.footer a{font-size:14px;color:rgba(255,255,255,0.7);line-height:1.8;font-weight:500;transition:color .2s}
.footer a:hover{color:#60a5fa}
.footer-brand img{height:48px;margin-bottom:16px;filter:brightness(0) invert(1)}
.social-icons{display:flex;gap:12px;margin-top:20px}
.social-icons a{width:36px;height:36px;border:1px solid rgba(255,255,255,0.2);border-radius:50%;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.7)}
.social-icons a:hover{background:#0a4da6;color:#ffffff;border-color:#0a4da6}
.footer-links a{display:block;padding:6px 0}
.footer-bottom{background:#060f1e;padding:24px 60px;text-align:center}
.footer-bottom-flex{display:flex;justify-content:space-between;max-width:1200px;margin:0 auto;font-size:13px;color:rgba(255,255,255,0.4)}

/* RESPONSIVE */
@media(max-width:1024px){
.wwd-grid,.about-grid,.contact-grid{grid-template-columns:1fr}
.pillars-grid{grid-template-columns:repeat(3,1fr)}
.stats-grid{grid-template-columns:repeat(2,1fr);gap:40px 0}
.stat-item:nth-child(2)::after{display:none}
.project-cards,.equip-grid{grid-template-columns:repeat(2,1fr)}
.cert-grid{grid-template-columns:repeat(3,1fr)}
.footer-grid{grid-template-columns:repeat(2,1fr)}
.timeline-steps{flex-wrap:wrap;gap:20px;justify-content:center}
.timeline-line{display:none}
.timeline-step{width:30%}
}
@media(max-width:768px){
.section{padding:60px 0}
.pillars-grid{grid-template-columns:1fr}
.stats-grid{grid-template-columns:1fr;gap:40px 0}
.stat-item::after{display:none}
.project-cards,.equip-grid,.cert-grid{grid-template-columns:1fr}
.footer-grid{grid-template-columns:1fr;padding:0 24px 40px 24px}
.footer-bottom-flex{flex-direction:column;gap:12px;text-align:center}
.timeline-step{width:45%}
}
