:root{
  --dark:#06101f;
  --dark2:#0a1729;
  --gold:#d7a63d;
  --gold2:#f5d477;
  --white:#ffffff;
  --muted:#b9c4d4;
  --text:#152033;
  --line:rgba(255,255,255,.16);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
}
.container{
  width:min(1180px,92%);
  margin:auto;
}
.topbar{
  background:#050d19;
  color:#fff;
  font-size:14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.topbar a{
  color:#fff;
  text-decoration:none;
}
.dot{
  display:inline-block;
  width:5px;
  height:5px;
  background:var(--gold);
  border-radius:50%;
  margin:0 12px;
}
.main-nav{
  background:#071324;
  color:#fff;
}
.nav-inner{
  height:112px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.logo img{
  width:255px;
  max-height:95px;
  object-fit:contain;
  display:block;
}
.menu{
  display:flex;
  align-items:center;
  gap:26px;
}
.menu a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:800;
  opacity:.92;
}
.menu a.active{
  color:var(--gold2);
  border-bottom:2px solid var(--gold);
  padding-bottom:10px;
}
.nav-cta{
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  color:#071324;
  padding:16px 28px;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.hero{
  min-height:720px;
  position:relative;
  background-image:url("hero-business.svg");
  background-size:cover;
  background-position:center;
  color:#fff;
  overflow:hidden;
}
.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(5,13,25,.92),rgba(5,13,25,.68),rgba(5,13,25,.20));
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(215,166,61,.08),transparent 34%),
    repeating-linear-gradient(90deg,rgba(255,255,255,.035) 0,rgba(255,255,255,.035) 1px,transparent 1px,transparent 140px);
  z-index:1;
}
.hero-content{
  position:relative;
  z-index:2;
  padding:120px 0;
  max-width:980px;
}
.hero-kicker,.section-kicker{
  display:inline-block;
  color:var(--gold2);
  font-weight:900;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-size:14px;
  margin-bottom:24px;
}
h1,h2,h3{
  margin:0;
  line-height:1.08;
}
h1{
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(48px,6.4vw,88px);
  max-width:880px;
  letter-spacing:-.04em;
}
.hero p{
  max-width:760px;
  color:#e6edf7;
  font-size:22px;
  line-height:1.7;
  margin:28px 0 0;
}
.hero-actions{
  margin-top:42px;
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:17px 28px;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.btn.gold{
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  color:#071324;
}
.btn.ghost{
  border:1px solid rgba(255,255,255,.38);
  color:#fff;
}
.hero-contact{
  padding-left:22px;
  border-left:3px solid var(--gold);
}
.hero-contact small{
  display:block;
  color:#cfd9e7;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.16em;
}
.hero-contact strong{
  color:#fff;
  font-size:20px;
}
.section{
  padding:95px 0;
}
.about-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
  align-items:start;
}
.section-kicker{
  color:var(--gold);
  margin-bottom:18px;
}
h2{
  font-size:clamp(34px,4.5vw,58px);
  color:#071324;
  letter-spacing:-.035em;
}
p{
  color:#5d6c80;
  font-size:18px;
  line-height:1.8;
}
.dark-strip{
  background:#071324;
  color:#fff;
  padding:42px 0;
}
.strip-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.strip-grid div{
  border-left:4px solid var(--gold);
  padding:12px 22px;
}
.strip-grid strong{
  display:block;
  color:#fff;
  font-size:23px;
  margin-bottom:8px;
}
.strip-grid span{
  color:#cbd7e6;
}
.section-title{
  max-width:850px;
  margin-bottom:48px;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.service-grid article{
  min-height:280px;
  padding:34px;
  background:#fff;
  border:1px solid #e6ebf2;
  box-shadow:0 18px 45px rgba(7,19,36,.08);
  position:relative;
  overflow:hidden;
}
.service-grid article:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,var(--gold2),var(--gold));
}
.service-grid span{
  color:var(--gold);
  font-size:38px;
  font-weight:900;
}
.service-grid h3{
  color:#071324;
  margin:18px 0 12px;
  font-size:25px;
}
.service-grid p{
  font-size:16px;
  margin:0;
}
.feature{
  background:#f6f8fb;
}
.feature-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:stretch;
}
.feature-card{
  background:#071324;
  color:#fff;
  padding:52px;
}
.feature-card h2{
  color:#fff;
}
.feature-card p{
  color:#d7e0ec;
}
.mini-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:30px;
}
.mini-list span{
  border:1px solid rgba(255,255,255,.16);
  padding:16px;
  color:#fff;
}
.feature-image{
  background:
    linear-gradient(rgba(7,19,36,.55),rgba(7,19,36,.55)),
    url("hero-business.svg");
  background-size:cover;
  background-position:center;
  min-height:520px;
  display:flex;
  align-items:flex-end;
  padding:30px;
}
.panel{
  background:rgba(255,255,255,.95);
  padding:32px;
  width:100%;
}
.panel h3{
  color:#071324;
  font-size:28px;
}
.panel li{
  margin:12px 0;
  color:#49586a;
  font-size:16px;
}
.industries{
  background:#071324;
}
.industries h2{
  color:#fff;
}
.industry-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.industry-grid span{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  padding:20px;
  color:#fff;
  font-weight:800;
  text-align:center;
}
.process-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.process-grid div{
  background:#fff;
  border:1px solid #e6ebf2;
  padding:26px 18px;
  box-shadow:0 14px 35px rgba(7,19,36,.06);
}
.process-grid b{
  color:var(--gold);
  font-size:28px;
}
.process-grid h3{
  color:#071324;
  margin:12px 0;
  font-size:21px;
}
.process-grid p{
  font-size:14px;
  margin:0;
}
.contact{
  background:#f6f8fb;
}
.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}
.contact-box{
  background:#071324;
  padding:42px;
  color:#fff;
}
.contact-box p{
  color:#d7e0ec;
  border-bottom:1px solid rgba(255,255,255,.14);
  padding-bottom:18px;
}
.contact-box p:last-child{
  border-bottom:0;
  padding-bottom:0;
}
.contact-box strong{
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:13px;
}
.contact-box a{
  color:#fff;
  text-decoration:none;
}
footer{
  background:#050d19;
  padding:35px 0;
  color:#fff;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.footer-inner img{
  width:210px;
  max-height:80px;
  object-fit:contain;
}
.footer-inner p{
  color:#cbd7e6;
  margin:0;
  font-size:14px;
}

@media(max-width:980px){
  .topbar-inner,.nav-inner{
    height:auto;
    padding:18px 0;
    flex-wrap:wrap;
  }
  .menu{
    order:3;
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
  }
  .about-grid,.feature-grid,.contact-grid{
    grid-template-columns:1fr;
  }
  .service-grid{
    grid-template-columns:1fr 1fr;
  }
  .industry-grid{
    grid-template-columns:1fr 1fr;
  }
  .process-grid{
    grid-template-columns:1fr 1fr 1fr;
  }
}
@media(max-width:640px){
  .logo img{
    width:210px;
  }
  .service-grid,.industry-grid,.process-grid,.strip-grid{
    grid-template-columns:1fr;
  }
  .hero{
    min-height:auto;
  }
  .hero-content{
    padding:80px 0;
  }
  h1{
    font-size:44px;
  }
  .hero p{
    font-size:18px;
  }
}

/* FINAL REFINEMENT: cleaner logo, compact hero, softer BPO section */
.logo img{
  width:260px !important;
  max-height:92px !important;
  object-fit:contain !important;
  background:transparent !important;
}

.nav-inner{
  height:100px !important;
  min-height:100px !important;
}

.hero{
  min-height:500px !important;
}

.hero-content{
  padding:72px 0 78px !important;
  max-width:760px !important;
}

.hero h1{
  font-size:clamp(38px,5vw,62px) !important;
  line-height:1.08 !important;
  max-width:760px !important;
}

.hero p{
  font-size:18px !important;
  line-height:1.7 !important;
  max-width:680px !important;
}

.hero-actions{
  margin-top:28px !important;
}

.feature,
.support-section{
  background:#f6f8fb !important;
}

.feature-grid,
.support-grid{
  display:grid !important;
  grid-template-columns:0.9fr 1.1fr !important;
  gap:28px !important;
  align-items:stretch !important;
}

.feature-card,
.support-copy{
  background:#071324 !important;
  padding:38px !important;
  border-radius:0 !important;
}

.feature-card h2,
.support-copy h2{
  font-size:clamp(28px,3.5vw,42px) !important;
  line-height:1.12 !important;
}

.feature-card p,
.support-copy p{
  font-size:16px !important;
  line-height:1.7 !important;
}

.mini-list,
.support-cards{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
}

.mini-list span,
.support-card{
  background:#ffffff !important;
  color:#071324 !important;
  border:1px solid #e7ebf2 !important;
  padding:18px !important;
  box-shadow:0 10px 25px rgba(7,19,36,.06) !important;
}

.support-card h3{
  color:#071324 !important;
  font-size:20px !important;
  margin:0 0 8px !important;
}

.support-card p{
  color:#5e6b7d !important;
  font-size:15px !important;
  margin:0 !important;
}

.footer-inner img{
  width:210px !important;
  max-height:78px !important;
  object-fit:contain !important;
  background:transparent !important;
}

@media(max-width:900px){
  .feature-grid,
  .support-grid{
    grid-template-columns:1fr !important;
  }
}

@media(max-width:640px){
  .logo img{
    width:220px !important;
  }
  .hero h1{
    font-size:38px !important;
  }
  .mini-list,
  .support-cards{
    grid-template-columns:1fr !important;
  }
}

/* Nexaro final hero + logo alignment fix */
.logo{
  display:flex !important;
  align-items:center !important;
}

.logo img{
  width:300px !important;
  max-height:100px !important;
  object-fit:contain !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

.nav-inner{
  justify-content:flex-start !important;
  gap:55px !important;
  min-height:112px !important;
}

.menu{
  margin-left:auto !important;
}

.nav-cta{
  margin-left:28px !important;
}

.hero{
  min-height:560px !important;
  background-position:center right !important;
}

.hero-content{
  margin-left:0 !important;
  padding:86px 0 88px !important;
  max-width:650px !important;
  text-align:left !important;
}

.hero h1{
  font-size:clamp(36px,4.4vw,56px) !important;
  line-height:1.08 !important;
  max-width:650px !important;
  text-align:left !important;
}

.hero p{
  max-width:610px !important;
  font-size:17px !important;
  line-height:1.65 !important;
  text-align:left !important;
}

.hero-kicker{
  text-align:left !important;
}

.hero-actions{
  justify-content:flex-start !important;
}

.footer-inner img{
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

@media(max-width:980px){
  .nav-inner{
    justify-content:center !important;
    gap:22px !important;
  }

  .menu{
    margin-left:0 !important;
  }

  .nav-cta{
    margin-left:0 !important;
  }

  .hero-content{
    max-width:100% !important;
  }
}

@media(max-width:640px){
  .logo img{
    width:230px !important;
  }

  .hero h1{
    font-size:38px !important;
  }
}

/* FINAL FIX: logo transparent + proper hero alignment */
.logo img{
  width:265px !important;
  max-height:90px !important;
  object-fit:contain !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

.main-nav{
  background:#071324 !important;
}

.nav-inner{
  width:min(1180px,92%) !important;
  margin:0 auto !important;
  min-height:108px !important;
  height:auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:28px !important;
}

.menu{
  margin-left:auto !important;
}

.nav-cta{
  margin-left:22px !important;
}

.hero{
  min-height:540px !important;
  background-position:center right !important;
}

.hero .container.hero-content{
  width:min(1180px,92%) !important;
  max-width:1180px !important;
  margin:0 auto !important;
  padding:82px 0 88px !important;
  text-align:left !important;
}

.hero-kicker,
.hero h1,
.hero p,
.hero-actions,
.hero-contact{
  margin-left:0 !important;
  text-align:left !important;
}

.hero h1{
  max-width:650px !important;
  font-size:clamp(38px,4.4vw,56px) !important;
  line-height:1.08 !important;
}

.hero p{
  max-width:620px !important;
  font-size:17px !important;
  line-height:1.65 !important;
}

.hero-actions{
  justify-content:flex-start !important;
  margin-top:28px !important;
}

.footer-inner img{
  width:220px !important;
  max-height:78px !important;
  object-fit:contain !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

@media(max-width:980px){
  .nav-inner{
    justify-content:center !important;
    flex-wrap:wrap !important;
  }
  .menu{
    margin-left:0 !important;
    order:3 !important;
    width:100% !important;
    justify-content:center !important;
  }
  .nav-cta{
    margin-left:0 !important;
  }
}

@media(max-width:640px){
  .logo img{
    width:220px !important;
  }
  .hero .container.hero-content{
    padding:65px 0 !important;
  }
  .hero h1{
    font-size:38px !important;
  }
}

/* Use uploaded transparent logo.png */
.logo img{
  width:285px !important;
  max-height:95px !important;
  object-fit:contain !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

.footer-inner img{
  width:220px !important;
  max-height:78px !important;
  object-fit:contain !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

.nav-inner{
  width:min(1180px,92%) !important;
  margin:0 auto !important;
  min-height:108px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
}

.hero .container.hero-content{
  width:min(1180px,92%) !important;
  max-width:1180px !important;
  margin:0 auto !important;
  padding:82px 0 88px !important;
  text-align:left !important;
}

.hero h1{
  max-width:650px !important;
  font-size:clamp(38px,4.4vw,56px) !important;
  line-height:1.08 !important;
}

.hero p{
  max-width:620px !important;
  font-size:17px !important;
  line-height:1.65 !important;
}

@media(max-width:640px){
  .logo img{
    width:225px !important;
    max-height:78px !important;
  }
}

/* SVG logo temporary fix */
.logo img{
  width:275px !important;
  max-height:92px !important;
  object-fit:contain !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

.footer-inner img{
  width:220px !important;
  max-height:78px !important;
  object-fit:contain !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

/* FINAL: uploaded logo.png only */
.logo img{
  width:285px !important;
  max-height:95px !important;
  object-fit:contain !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

.footer-inner img{
  width:220px !important;
  max-height:78px !important;
  object-fit:contain !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

.hero .container.hero-content{
  width:min(1180px,92%) !important;
  max-width:1180px !important;
  margin:0 auto !important;
  padding:82px 0 88px !important;
  text-align:left !important;
}

.hero h1{
  max-width:650px !important;
  font-size:clamp(38px,4.4vw,56px) !important;
}

.hero p{
  max-width:620px !important;
  font-size:17px !important;
}

/* Align header logo with hero content and make logo bigger */
.nav-inner{
  width:min(1180px,92%) !important;
  margin:0 auto !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

.logo{
  margin-left:0 !important;
  padding-left:0 !important;
  display:flex !important;
  align-items:center !important;
}

.logo img{
  width:355px !important;
  max-height:118px !important;
  object-fit:contain !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

.main-nav .container{
  width:min(1180px,92%) !important;
  margin:0 auto !important;
}

.hero .container.hero-content{
  width:min(1180px,92%) !important;
  max-width:1180px !important;
  margin:0 auto !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

.menu{
  margin-left:auto !important;
}

.nav-cta{
  margin-left:24px !important;
}

@media(max-width:980px){
  .logo img{
    width:280px !important;
    max-height:95px !important;
  }
}

@media(max-width:640px){
  .logo img{
    width:230px !important;
    max-height:80px !important;
  }
}

/* FINAL LOGO ALIGNMENT FIX */
.nav-inner{
  width:min(1180px,92%) !important;
  margin:0 auto !important;
  padding-left:0 !important;
  padding-right:0 !important;
  display:flex !important;
  align-items:center !important;
}

.logo{
  margin-left:0 !important;
  padding-left:0 !important;
  display:flex !important;
  align-items:center !important;
}

.logo img{
  width:245px !important;
  max-height:95px !important;
  object-fit:contain !important;
  object-position:left center !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
  display:block !important;
}

.hero .container.hero-content{
  width:min(1180px,92%) !important;
  max-width:1180px !important;
  margin:0 auto !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

.footer-inner img{
  width:210px !important;
  max-height:80px !important;
  object-fit:contain !important;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  padding:0 !important;
}

@media(max-width:640px){
  .logo img{
    width:210px !important;
    max-height:80px !important;
  }
}
