/* Hero Section for SQL */
.hero-sql {
  background: url('images/6500549.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: blue;
  text-align: center;
}

.hero-sql .hero-content {
  
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
}

.hero-sql h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.hero-sql p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-primary {
  background: #007acc;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #005f99;
}

/* Tech Details Section */
.tech-details {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.tech-details h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.tech-details ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
}

.tech-details ul li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}



/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-sql h1 {
    font-size: 1rem;
  }
  .hero-sql {
    height: 25vh;
  }


  .hero-sql p {
    font-size: 1rem;
  }

  .tech-details h2 {
    font-size: 1.6rem;
  }
}
