:root {
  --navy: #0D1B2A;
  --navy-2: #162236;
  --slate: #2C3E55;
  --sky: #1A6FA8;
  --sky-light: #2A84C7;
  --sky-pale: #EBF4FB;
  --sky-pale2: #D6EAF6;
  --cream: #FAFAF7;
  --cream-2: #F3F2EE;
  --sand: #E8E4DC;
  --stone: #8B8680;
  --charcoal: #3D3A36;
  --ink: #1A1917;
  --white: #FFFFFF;
  --accent: #C8502A;
  --accent-light: #F0EBE6;
}

/* PAGE LOADER */
.loader-wrap {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}
.loader-wrap.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
  width: 100%;
  max-width: 200px;
}
.loader-hex {
  width: 60px;
  height: 60px;
  background: var(--sky);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: loaderPulse 1.5s infinite ease-in-out;
}
.loader-hex span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.05em;
}
.loader-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.loader-progress {
  width: 100%;
  height: 100%;
  background: var(--sky-light);
  transform: translateX(-100%);
  animation: loaderBar 2.5s infinite ease;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}
@keyframes loaderBar {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Manrope',sans-serif;background:var(--white);color:var(--ink);overflow-x:hidden;}
h1,h2,h3,.serif{font-family:'Playfair Display',serif;}

/* NAV */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(0,0,0,0.06);
  transition:box-shadow 0.3s;
}
.nav.scrolled{box-shadow:0 2px 32px rgba(13,27,42,0.08);}
.nav-inner{max-width:1300px;margin:0 auto;padding:0 2rem;height:76px;display:flex;align-items:center;justify-content:space-between;}
.logo{display:flex;align-items:center;gap:14px;text-decoration:none;}
.logo-hex{
  width:40px;height:40px;background:var(--navy);
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.logo-hex span{font-family:'Playfair Display',serif;font-weight:700;font-size:13px;color:#fff;letter-spacing:0.05em;}
.logo-name{font-family:'Playfair Display',serif;font-weight:700;font-size:19px;color:var(--navy);letter-spacing:0.01em;}
.logo-tag{font-size:10px;letter-spacing:0.22em;text-transform:uppercase;color:var(--stone);font-weight:500;}
.nav-menu{display:flex;align-items:center;gap:2.5rem;}
.nav-menu a{font-size:13px;letter-spacing:0.06em;text-transform:uppercase;font-weight:600;color:var(--slate);text-decoration:none;transition:color 0.2s;}
.nav-menu a:hover{color:var(--sky);}
.nav-btn{
  background:var(--navy);color:#fff;
  font-size:12px;letter-spacing:0.1em;text-transform:uppercase;font-weight:700;
  padding:11px 26px;text-decoration:none;
  font-family:'Manrope',sans-serif;
  transition:background 0.25s;
}
.nav-btn:hover{background:var(--sky);}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;}
.hamburger span{width:24px;height:1.5px;background:var(--navy);display:block;transition:all 0.3s;}
.mob-nav{display:none;flex-direction:column;background:var(--white);border-bottom:1px solid var(--sand);}
.mob-nav a{padding:1rem 2rem;font-size:14px;letter-spacing:0.06em;text-transform:uppercase;color:var(--slate);text-decoration:none;border-bottom:1px solid rgba(0,0,0,0.04);font-weight:600;}
.mob-nav.open{display:flex;}

/* HERO (for individual pages) */
.page-hero {
  background:var(--navy);
  padding: 10rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.025) 1px,transparent 1px);
  background-size: 48px 48px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem); color: #fff;
  line-height: 1.1; margin-bottom: 1rem; position: relative; z-index: 1;
}
.page-hero-title em { font-style: italic; color: var(--sky-light); }
.page-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.6); max-width: 600px;
  margin: 0 auto; line-height: 1.8; position: relative; z-index: 1;
}

/* HERO (home only) */
.hero{
  min-height:100vh;
  display:grid;grid-template-columns:1fr 1fr;
  padding-top:76px;
  overflow:hidden;
}
.hero-left{
  background:var(--navy);
  padding:8rem 4rem 6rem;
  display:flex;flex-direction:column;justify-content:center;
  position:relative;overflow:hidden;
}
.hero-left::before{
  content:'';position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.025) 1px,transparent 1px);
  background-size:48px 48px;
}
.hero-left::after{
  content:'';position:absolute;
  bottom:-120px;right:-120px;
  width:400px;height:400px;
  background:var(--sky);
  opacity:0.08;
  border-radius:50%;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:11px;letter-spacing:0.28em;text-transform:uppercase;
  color:rgba(255,255,255,0.5);font-weight:600;margin-bottom:2rem;
  position:relative;z-index:1;
}
.hero-eyebrow::before{content:'';width:32px;height:1px;background:var(--sky-light);}
.hero-h1{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:clamp(3rem,5.5vw,5.2rem);line-height:1;
  color:#fff;margin-bottom:2rem;letter-spacing:-0.02em;
  position:relative;z-index:1;
}
.hero-h1 em{font-style:italic;color:var(--sky-light);}
.hero-desc{
  font-size:16px;line-height:1.8;color:rgba(255,255,255,0.6);
  font-weight:300;max-width:460px;margin-bottom:3rem;
  position:relative;z-index:1;
}
.hero-actions{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;position:relative;z-index:1;}
.btn-primary{
  background:var(--sky);color:#fff;
  font-size:13px;letter-spacing:0.1em;text-transform:uppercase;font-weight:700;
  padding:16px 36px;text-decoration:none;display:inline-block;
  font-family:'Manrope',sans-serif;transition:background 0.25s;
}
.btn-primary:hover{background:var(--sky-light);}
.btn-outline-white{
  color:rgba(255,255,255,0.7);font-size:13px;letter-spacing:0.08em;text-transform:uppercase;
  font-weight:600;text-decoration:none;display:inline-flex;align-items:center;gap:8px;
  transition:color 0.2s;font-family:'Manrope',sans-serif;
}
.btn-outline-white:hover{color:#fff;}
.btn-outline-white::after{content:'→';}

.hero-right{position:relative;overflow:hidden;}
.hero-img{width:100%;height:100%;object-fit:cover;display:block;}
.hero-img-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to right,var(--navy) 0%,transparent 25%);
}
.hero-stats{
  position:absolute;bottom:0;left:0;right:0;
  display:grid;grid-template-columns:repeat(3,1fr);
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(16px);
}
.hstat{
  padding:1.75rem 2rem;
  border-right:1px solid var(--sand);
  text-align:center;
}
.hstat:last-child{border-right:none;}
.hstat-num{font-family:'Playfair Display',serif;font-weight:700;font-size:2.2rem;color:var(--navy);line-height:1;}
.hstat-lbl{font-size:11px;letter-spacing:0.15em;text-transform:uppercase;color:var(--stone);margin-top:4px;font-weight:600;}

/* MARQUEE */
.marquee-wrap{background:var(--navy-2);padding:14px 0;overflow:hidden;}
.marquee-track{display:flex;gap:3rem;white-space:nowrap;animation:marquee 28s linear infinite;}
.mitem{
  font-family:'Manrope',sans-serif;font-size:11px;font-weight:700;
  letter-spacing:0.22em;text-transform:uppercase;color:rgba(255,255,255,0.45);
  display:inline-flex;align-items:center;gap:1.5rem;flex-shrink:0;
}
.mdot{width:3px;height:3px;background:var(--sky-light);border-radius:50%;}
@keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* SECTIONS */
section{position:relative;}
.container{max-width:1300px;margin:0 auto;padding:0 2rem;}
.sec-pad{padding:120px 0;}
.sec-label{
  font-size:11px;letter-spacing:0.25em;text-transform:uppercase;
  color:var(--sky);font-weight:700;margin-bottom:1rem;
  display:flex;align-items:center;gap:10px;
}
.sec-label::before{content:'';width:28px;height:2px;background:var(--sky);}
.sec-title{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:clamp(2rem,4vw,3.2rem);line-height:1.1;
  letter-spacing:-0.01em;color:var(--navy);
}
.sec-title em{font-style:italic;color:var(--sky);}

/* ABOUT */
.about-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:7rem;align-items:center;}
.about-visuals{position:relative;}
.about-img-main{
  width:100%;aspect-ratio:4/5;object-fit:cover;
  display:block;
}
.about-img-inset{
  position:absolute;bottom:-2.5rem;right:-2.5rem;
  width:55%;aspect-ratio:1/1;object-fit:cover;
  border:5px solid var(--white);
}
.about-cert{
  position:absolute;top:2rem;left:-2rem;
  background:var(--sky);color:#fff;
  padding:1.5rem;width:120px;height:120px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
}
.cert-num{font-family:'Playfair Display',serif;font-weight:700;font-size:2.2rem;line-height:1;}
.cert-txt{font-size:10px;letter-spacing:0.1em;text-transform:uppercase;font-weight:700;margin-top:4px;}
.about-text p{color:var(--slate);font-size:16px;line-height:1.85;font-weight:300;margin-bottom:1.5rem;}
.feat-grid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--sand);margin:2.5rem 0;}
.feat-item{
  background:var(--cream);padding:1.5rem;
  transition:background 0.2s;
}
.feat-item:hover{background:var(--sky-pale);}
.feat-icon{color:var(--sky);margin-bottom:0.75rem;}
.feat-name{font-size:13px;font-weight:700;letter-spacing:0.04em;color:var(--navy);margin-bottom:0.5rem;}
.feat-desc{font-size:13px;color:var(--stone);line-height:1.6;font-weight:400;}

/* SERVICES */
.services-bg{background:var(--cream);}
.services-header{
  display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:end;margin-bottom:5rem;
}
.services-desc{color:var(--slate);font-size:16px;line-height:1.85;font-weight:300;}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}
.svc-card{
  background:var(--white);padding:2.5rem 2rem;
  border:1px solid var(--sand);
  transition:all 0.3s;position:relative;overflow:hidden;
  display:block;text-decoration:none;
}
.svc-card::after{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--sky);transform:scaleX(0);transform-origin:left;
  transition:transform 0.35s;
}
.svc-card:hover{border-color:var(--sky-pale2);box-shadow:0 8px 40px rgba(26,111,168,0.1);}
.svc-card:hover::after{transform:scaleX(1);}
.svc-num{font-family:'Playfair Display',serif;font-size:11px;letter-spacing:0.2em;color:var(--sand);font-weight:700;margin-bottom:1.5rem;}
.svc-icon{
  width:52px;height:52px;background:var(--sky-pale);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.25rem;color:var(--sky);
  transition:background 0.3s;
}
.svc-card:hover .svc-icon{background:var(--sky);color:#fff;}
.svc-name{font-family:'Playfair Display',serif;font-weight:700;font-size:17px;color:var(--navy);margin-bottom:0.75rem;}
.svc-desc{font-size:14px;color:var(--stone);line-height:1.7;font-weight:400;}

/* IMAGE STRIP */
.img-strip{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:5rem;
}
.strip-img{
  aspect-ratio:16/10;object-fit:cover;width:100%;display:block;
  transition:transform 0.5s;overflow:hidden;
}
.strip-wrap{overflow:hidden;position:relative;}
.strip-wrap:hover .strip-img{transform:scale(1.04);}
.strip-cap{
  position:absolute;bottom:0;left:0;right:0;
  background:rgba(13,27,42,0.75);backdrop-filter:blur(4px);
  padding:0.875rem 1.25rem;
  font-size:12px;letter-spacing:0.1em;text-transform:uppercase;
  color:rgba(255,255,255,0.85);font-weight:700;
}

/* INFRASTRUCTURE */
.infra-grid{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center;}
.infra-img-wrap{position:relative;}
.infra-img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block;}
.infra-overlay{
  position:absolute;bottom:3rem;right:-3rem;
  background:var(--white);border:1px solid var(--sand);
  padding:2rem;width:240px;
  box-shadow:0 12px 48px rgba(0,0,0,0.1);
}
.infra-ov-title{font-size:11px;letter-spacing:0.15em;text-transform:uppercase;color:var(--sky);font-weight:700;margin-bottom:1rem;}
.infra-ov-list{list-style:none;display:flex;flex-direction:column;gap:0.5rem;}
.infra-ov-list li{font-size:13px;color:var(--slate);display:flex;align-items:center;gap:8px;font-weight:500;}
.infra-ov-list li::before{content:'';width:6px;height:6px;background:var(--sky);border-radius:50%;flex-shrink:0;}
.infra-content p{color:var(--slate);font-size:16px;line-height:1.85;font-weight:300;margin-bottom:1.5rem;}
.process-list{display:flex;flex-direction:column;gap:0;margin-top:2rem;}
.proc-item{
  display:flex;gap:1.75rem;align-items:flex-start;
  padding:1.5rem 0;border-bottom:1px solid var(--sand);
}
.proc-item:last-child{border:none;}
.proc-num{
  font-family:'Playfair Display',serif;font-weight:700;font-size:2rem;
  color:var(--sand);line-height:1;flex-shrink:0;width:44px;
  transition:color 0.3s;
}
.proc-item:hover .proc-num{color:var(--sky-pale2);}
.proc-body h4{font-size:15px;font-weight:700;color:var(--navy);margin-bottom:0.5rem;letter-spacing:0.01em;}
.proc-body p{font-size:14px;color:var(--stone);line-height:1.65;font-weight:400;}

/* WHY US */
.whyus-bg{background:var(--navy);}
.why-header{text-align:center;margin-bottom:5rem;}
.why-header .sec-label{justify-content:center;}
.why-header .sec-label::before{display:none;}
.why-title{font-family:'Playfair Display',serif;font-weight:700;font-size:clamp(2rem,4vw,3rem);color:#fff;margin:1rem 0;}
.why-title em{font-style:italic;color:var(--sky-light);}
.why-subtitle{color:rgba(255,255,255,0.5);font-size:16px;font-weight:300;max-width:560px;margin:0 auto;line-height:1.8;}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,0.06);}
.why-card{
  background:var(--navy);padding:2.5rem 2rem;
  transition:background 0.3s;
}
.why-card:hover{background:var(--navy-2);}
.why-icon-wrap{
  width:52px;height:52px;
  border:1px solid rgba(255,255,255,0.12);
  display:flex;align-items:center;justify-content:center;
  color:var(--sky-light);margin-bottom:1.5rem;
  transition:border-color 0.3s,background 0.3s;
}
.why-card:hover .why-icon-wrap{border-color:var(--sky-light);background:rgba(42,132,199,0.1);}
.why-card-title{font-family:'Playfair Display',serif;font-size:18px;font-weight:700;color:#fff;margin-bottom:0.75rem;}
.why-card-desc{font-size:14px;color:rgba(255,255,255,0.5);line-height:1.75;font-weight:300;}
.why-cta{
  margin-top:1px;background:var(--sky);padding:4rem 3rem;
  display:flex;align-items:center;justify-content:space-between;gap:3rem;flex-wrap:wrap;
}
.why-cta-txt h3{font-family:'Playfair Display',serif;font-weight:700;font-size:clamp(1.5rem,3vw,2.2rem);color:#fff;}
.why-cta-txt p{color:rgba(255,255,255,0.7);margin-top:0.5rem;font-size:15px;font-weight:300;}
.btn-white{
  background:#fff;color:var(--navy);
  font-size:13px;letter-spacing:0.1em;text-transform:uppercase;font-weight:700;
  padding:16px 36px;text-decoration:none;display:inline-block;
  font-family:'Manrope',sans-serif;transition:all 0.25s;white-space:nowrap;
}
.btn-white:hover{background:var(--cream);color:var(--sky);}

/* TESTIMONIAL / FEATURED */
.featured-bg{background:var(--cream-2);}
.featured-inner{
  display:grid;grid-template-columns:1fr 2fr;gap:5rem;align-items:start;
}
.featured-img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block;margin-bottom:2rem;}
.quote-block{
  background:var(--white);border-left:3px solid var(--sky);
  padding:2rem 2rem 2rem 1.75rem;
}
.quote-text{font-family:'Playfair Display',serif;font-style:italic;font-size:17px;color:var(--navy);line-height:1.7;margin-bottom:1rem;}
.quote-author{font-size:13px;font-weight:700;letter-spacing:0.05em;color:var(--stone);}
.featured-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;}
.coverage-card{background:var(--white);padding:2rem;border:1px solid var(--sand);}
.cov-state{font-family:'Playfair Display',serif;font-weight:700;font-size:2.5rem;color:var(--navy);line-height:1;}
.cov-label{font-size:12px;letter-spacing:0.1em;text-transform:uppercase;color:var(--stone);font-weight:600;margin:0.5rem 0 1rem;}
.cov-list{list-style:none;display:flex;flex-direction:column;gap:0.5rem;}
.cov-list li{font-size:13px;color:var(--slate);display:flex;align-items:center;gap:8px;font-weight:500;}
.cov-list li::before{content:'✓';color:var(--sky);font-weight:700;font-size:12px;}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:1fr 1.5fr;gap:5rem;}
.contact-left h3{font-family:'Playfair Display',serif;font-weight:700;font-size:1.8rem;color:var(--navy);margin-bottom:1rem;}
.contact-left p{color:var(--slate);font-size:15px;line-height:1.8;font-weight:300;margin-bottom:2rem;}
.cinfo{display:flex;align-items:flex-start;gap:1rem;padding:1.25rem 0;border-bottom:1px solid var(--sand);}
.cinfo:last-of-type{border:none;}
.cinfo-icon{
  width:42px;height:42px;background:var(--sky-pale);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;color:var(--sky);
}
.cinfo-strong{font-size:12px;letter-spacing:0.1em;text-transform:uppercase;font-weight:700;color:var(--navy);margin-bottom:3px;}
.cinfo-val{font-size:14px;color:var(--stone);font-weight:400;}
.contact-form{background:var(--navy);padding:3.5rem;}
.form-title{font-family:'Playfair Display',serif;font-size:22px;font-weight:700;color:#fff;margin-bottom:2rem;padding-bottom:1.5rem;border-bottom:1px solid rgba(255,255,255,0.08);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem;}
.form-grp{display:flex;flex-direction:column;gap:6px;margin-bottom:1rem;}
.form-lbl{font-size:11px;letter-spacing:0.15em;text-transform:uppercase;color:rgba(255,255,255,0.45);font-weight:600;}
.form-inp{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  color:#fff;padding:13px 16px;font-size:15px;
  font-family:'Manrope',sans-serif;outline:none;
  transition:border-color 0.2s;
}
.form-inp:focus{border-color:var(--sky-light);}
.form-inp::placeholder{color:rgba(255,255,255,0.2);}
textarea.form-inp{resize:vertical;min-height:120px;}
select.form-inp{cursor:pointer;appearance:none;}
option{background:var(--navy-2);color:#fff;}

/* FOOTER */
footer{background:var(--navy-2);border-top:1px solid rgba(255,255,255,0.05);}
.footer-main{
  padding:5rem 0 3rem;
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:4rem;
}
.footer-brand p{font-size:14px;color:rgba(255,255,255,0.4);line-height:1.8;margin:1.25rem 0 2rem;font-weight:300;max-width:280px;}
.footer-social{display:flex;gap:0.75rem;}
.fsoc{
  width:36px;height:36px;border:1px solid rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.4);text-decoration:none;transition:all 0.2s;
}
.fsoc:hover{border-color:var(--sky-light);color:var(--sky-light);}
.footer-head{font-size:11px;letter-spacing:0.2em;text-transform:uppercase;color:var(--sky-light);font-weight:700;margin-bottom:1.5rem;}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:0.75rem;}
.footer-links a{font-size:14px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.2s;font-weight:400;}
.footer-links a:hover{color:rgba(255,255,255,0.8);}
.footer-bottom{
  padding:1.5rem 0;border-top:1px solid rgba(255,255,255,0.05);
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;
}
.footer-copy{font-size:13px;color:rgba(255,255,255,0.3);}
.footer-badges{display:flex;gap:1rem;}
.fbadge{
  font-size:10px;letter-spacing:0.12em;text-transform:uppercase;font-weight:700;
  border:1px solid rgba(255,255,255,0.1);
  padding:5px 12px;color:rgba(255,255,255,0.3);
  font-family:'Manrope',sans-serif;
}

/* ANIMATIONS */
@keyframes fadeUp{from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);}}
.anim{animation:fadeUp 0.7s ease both;}
.d1{animation-delay:0.1s;}.d2{animation-delay:0.25s;}.d3{animation-delay:0.4s;}.d4{animation-delay:0.55s;}

/* RESPONSIVE */
@media(max-width:1100px){
  .hero{grid-template-columns:1fr;}
  .hero-right{display:none;}
  .about-grid,.infra-grid,.contact-grid{grid-template-columns:1fr;gap:3rem;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .why-grid{grid-template-columns:repeat(2,1fr);}
  .footer-main{grid-template-columns:1fr 1fr;gap:3rem;}
  .services-header{grid-template-columns:1fr;gap:2rem;}
  .featured-inner{grid-template-columns:1fr;gap:3rem;}
}
@media(max-width:768px){
  .nav-menu{display:none;}
  .hamburger{display:flex;}
  .services-grid,.img-strip{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;}
  .footer-main{grid-template-columns:1fr;gap:2.5rem;}
  .form-row{grid-template-columns:1fr;}
  .hero-left{padding:5rem 2rem 6rem;}
  .hero-stats{grid-template-columns:1fr;}
  .about-img-inset{display:none;}
  .about-cert{display:none;}
  .featured-grid{grid-template-columns:1fr;}
}
