* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #f5f7fa;
  background: #030507;
  line-height: 1.6;
}

#matrix {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.3;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top center, rgba(255, 0, 0, 0.16), transparent 24%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 40px;
  background: rgba(5, 7, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: white;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 30, 30, 0.28));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-tag {
  font-size: 11px;
  color: #ff8f8f;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a {
  color: #e9edf2;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav a:hover {
  color: #ff4d4d;
}

.hero,
.page-hero {
  position: relative;
  padding: 110px 24px 80px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,0,0,0.08), transparent 40%);
  pointer-events: none;
}

.hero-inner,
.section,
.site-footer,
.page-hero {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-logo-wrap {
  margin-bottom: 20px;
}

.hero-logo {
  width: 140px;
  max-width: 40vw;
  filter: drop-shadow(0 0 24px rgba(255, 0, 0, 0.25));
}

.eyebrow,
.section-kicker {
  color: #ff8383;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  margin-bottom: 14px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-subtitle,
.page-hero p {
  max-width: 820px;
  margin: 24px auto 0;
  font-size: 18px;
  color: rgba(255,255,255,0.78);
}

.terminal-box {
  max-width: 800px;
  margin: 32px auto 0;
  padding: 22px;
  text-align: left;
  font-family: "Courier New", monospace;
  color: #9dffcf;
  background: rgba(0, 0, 0, 0.56);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  min-height: 140px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff2a2a, #a60000);
  color: white;
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: white;
}

.section {
  padding: 70px 24px;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  font-size: 42px;
  margin: 0 0 14px;
}

.section-heading p {
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.service-detail,
.content-panel,
.cta-box {
  background: rgba(8, 10, 14, 0.86);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.service-card {
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 64, 64, 0.5);
  box-shadow: 0 18px 38px rgba(255, 0, 0, 0.12);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(255, 32, 32, 0.12);
  border: 1px solid rgba(255, 64, 64, 0.25);
  color: #ff7b7b;
  font-size: 22px;
  font-weight: bold;
}

.service-card h3,
.service-detail h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.service-card p,
.service-detail p,
.content-panel p,
.cta-box p {
  color: rgba(255,255,255,0.72);
}

.learn-more {
  display: inline-block;
  margin-top: 14px;
  color: #ff6e6e;
  text-decoration: none;
  font-weight: 700;
}

.learn-more span {
  color: #ffffff;
}

.learn-more:hover {
  text-decoration: underline;
}

.service-list {
  display: grid;
  gap: 22px;
}

.small-hero {
  padding-top: 90px;
  padding-bottom: 40px;
}

.cta-section {
  padding-top: 10px;
}

.cta-box {
  text-align: center;
}

.cta-box h2 {
  margin-top: 0;
  font-size: 36px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 30px 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.inner-page .page-hero {
  text-align: left;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .site-header,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 680px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.certifications{

padding:80px 10%;
text-align:center;

}

.certifications h2{

font-size:40px;
margin-bottom:10px;

}

.cert-subtitle{

color:#aaa;
margin-bottom:50px;

}

.cert-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;

}

.cert-card{

background:#0d0d0d;
border:1px solid #222;
padding:30px;
border-radius:8px;
transition:.3s;

}

.cert-card:hover{

border-color:#ff2a2a;
transform:translateY(-5px);

}

.cert-card img{

max-width:120px;
margin-bottom:20px;

}

.cert-card h3{

margin:10px 0;
color:#fff;

}

.cert-card p{

font-size:14px;
color:#aaa;

}
.hero{

position:relative;
padding:150px 20px;
text-align:center;
overflow:hidden;

}

.hero-bg{

position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);

width:900px;
height:900px;

background-image:url("../images/ursvc-logo.png");
background-size:contain;
background-repeat:no-repeat;
background-position:center;

opacity:0.06;

filter:blur(2px);

pointer-events:none;

}

.section{

max-width:1100px;
margin:auto;
padding:70px 20px;

}

.content-panel{

max-width:900px;
margin:auto;

}

.contact-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:30px;

}

.contact-item{

background:#0d0d0d;
border:1px solid #222;
padding:30px;
border-radius:10px;
min-height:220px;
display:flex;
flex-direction:column;
justify-content:flex-start;

}

.contact-item h3{

margin-top:0;
margin-bottom:10px;

}

.contact-item ul{

margin:10px 0 0 18px;

}

@media (max-width:900px){

.contact-grid{

grid-template-columns:1fr;

}

}