
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  color:#1e293b;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.navbar{
  padding:20px 0;
  border-bottom:1px solid #ddd;
  background:white;
}

.nav-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo-wrap{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo-wrap img{
  width:90px;
}

.logo-wrap h1{
  color:#1e3a8a;
  font-size:32px;
}

.subtitle{
  color:#dc2626;
  font-weight:bold;
  letter-spacing:2px;
}

.logo-wrap span{
  color:#666;
  font-size:12px;
}

nav a{
  text-decoration:none;
  margin-left:20px;
  color:#1e293b;
  font-weight:bold;
}

.hero{
  padding:80px 0;
  background:#f8fafc;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.badge{
  display:inline-block;
  background:#dbeafe;
  color:#1e3a8a;
  padding:10px 16px;
  border-radius:30px;
  margin-bottom:25px;
  font-weight:bold;
}

.hero h2{
  font-size:58px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero h2 span{
  color:#dc2626;
}

.hero p{
  margin-bottom:30px;
  font-size:18px;
}

.buttons button{
  padding:14px 28px;
  border:none;
  border-radius:10px;
  background:#dc2626;
  color:white;
  font-weight:bold;
  margin-right:10px;
  cursor:pointer;
}

.buttons .outline{
  background:white;
  border:2px solid #1e3a8a;
  color:#1e3a8a;
}

.hero-img{
  width:100%;
  border-radius:25px;
}

.section{
  padding:80px 0;
}

.section h3,
.blue-section h3{
  color:#dc2626;
  margin-bottom:15px;
  text-transform:uppercase;
}

.section h2{
  font-size:42px;
  margin-bottom:40px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.card{
  padding:30px;
  border-radius:20px;
  background:white;
  border:1px solid #ddd;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.blue-section{
  padding:80px 0;
  background:#172554;
  color:white;
}

.industry-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:40px;
}

.industry-grid div{
  background:rgba(255,255,255,0.1);
  padding:30px;
  border-radius:20px;
  text-align:center;
  font-weight:bold;
}

.about{
  margin-bottom:20px;
  font-size:18px;
}

.vision{
  margin-top:40px;
}

.vision ul{
  margin-top:15px;
  padding-left:20px;
}

.contact{
  background:linear-gradient(90deg,#dc2626,#1e3a8a);
  color:white;
  text-align:center;
  padding:80px 0;
}

footer{
  background:#0f172a;
  color:#cbd5e1;
  text-align:center;
  padding:25px;
}

@media(max-width:900px){
  .hero-grid,
  .cards,
  .industry-grid,
  .nav-flex{
    grid-template-columns:1fr;
    display:grid;
  }

  nav{
    margin-top:20px;
  }

  .hero h2{
    font-size:42px;
  }
}
