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

body{
  font-family:Arial, sans-serif;
  background:#eef3fa;
}

.hero{
  color:white;
  min-height:100vh;
  padding-bottom:100px;
  background:
    linear-gradient(90deg, rgba(1,8,20,0.88) 0%, rgba(1,8,20,0.72) 35%, rgba(1,8,20,0.25) 65%, rgba(1,8,20,0.10) 100%),
    url('chip-background.png');
  background-size: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 500px;
}

.navbar{
  width:100%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 0;
}

.logo{
  width:200px;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:30px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  transition:0.3s;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.nav-links .active,
.nav-links a:hover{
  color:#1cbcff;
}

.hero-content{
  width:100%;
  margin:auto;
  display:grid;
  grid-template-columns:1fr;
  max-width: 900px;
  gap:50px;
  align-items:center;
  padding-top:40px;
}

.tag{
  color:#1cbcff;
  font-weight:bold;
  letter-spacing:2px;
}

.left{
  padding: 20px 0;
}

.left h1{
  font-size:65px;
  line-height:1.05;
  margin:20px 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.line{
  width:80px;
  height:4px;
  background:#1cbcff;
  margin-bottom:25px;
}

.left p{
  font-size:20px;
  line-height:1.8;
  color:#d6e6f8;
  max-width: 720px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:40px;
}

.feature-card{
  background:rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  padding:20px;
  border-radius:14px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Hide generated placeholder chip because the background image already contains the chip artwork */
.right{
  display:none;
}

.jobs-section{
  width:92%;
  margin:-60px auto 0;
  background:white;
  padding:50px;
  border-radius:20px;
  box-shadow:0 15px 50px rgba(0,0,0,0.12);
}

.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title span{
  color:#0077ff;
  font-weight:bold;
}

.section-title h2{
  font-size:42px;
  margin-top:10px;
}

table{
  width:100%;
  border-collapse:collapse;
}

thead{
  background:#033b77;
  color:white;
}

th,td{
  padding:20px;
  text-align:left;
}

tbody tr{
  border-bottom:1px solid #dfe7ef;
}

tbody tr:hover{
  background:#f3f8ff;
}

button{
  background:linear-gradient(135deg,#0077ff,#1cbcff);
  color:white;
  border:none;
  padding:12px 20px;
  border-radius:10px;
  cursor:pointer;
}

footer{
  background:#03152b;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  padding:70px 8%;
  margin-top:70px;
  color:white;
}

.footer-card{
  background:rgba(255,255,255,0.05);
  padding:30px;
  border-radius:16px;
}

.footer-card h3{
  color:#1cbcff;
  margin-bottom:15px;
}

.footer-card p{
  color:#d3dfec;
}

@media(max-width:1000px){
  .left h1{
    font-size:52px;
  }

  footer{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

  .feature-grid{
    grid-template-columns:1fr;
  }

  .left h1{
    font-size:40px;
  }

  .jobs-section{
    padding:20px;
  }
}
