

.hero1-section{
  background-image: url('images/technology.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
  
/* Mobile Responsive */
@media (max-width: 768px) {
  .hero1-section {
    height: 30vh;
    background-position: center;
  }

}

/* Technology Section */
.technology-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  padding: 60px 30px;
}


.technology-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.technology-card:hover {
  transform: translateY(-5px);
  background: #e6f0ff;
}

.technology-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0c2d57;
}

.technology-card p {
  font-size: 16px;
  line-height: 1.5;
}