* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0b0b0b;
  color: #fff;
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 500px;
  /* Background image removed from here */
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 44, 82, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  color: white;
  z-index: 10;
}

.title-section h1 {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffc107;
  margin-bottom: 0.4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-section span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.logo {
  width: 280px;
  margin-top: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

/* Content Section */
.content {
  background-color: #1f2c52;
  padding: 3rem 0;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.card-column {
  width: 100%;
  max-width: 300px;
  flex: 0 0 auto;
}

.card {
  text-align: center;
  border: none;
  border-radius: 8px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  overflow: hidden;
  background-color: #1F2C52;
}


.card-img {
  width: 100%;
  object-fit: cover;
  height: 300px;
  display: block;
}

.card-body {
  background-color: #1F2C52;
  padding: 1.5rem 1rem;
  color: white;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .title-section h1 {
    font-size: 2.5rem;
  }

  .title-section span {
    font-size: 1.5rem;
  }

  .logo {
    width: 150px;
  }
  
  .card-column {
    max-width: 100%;
  }
  
  .hero-section {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .title-section h1 {
    font-size: 2rem;
  }

  .title-section span {
    font-size: 1.2rem;
  }
  
  .hero-section {
    height: 350px;
  }
}