.home_banner_area {
  z-index: 1;
  min-height: 600px;
  position: relative;
  background: url(../img/banner/home-banner.jpg) no-repeat center;
  background-size: cover;
}

.home_banner_area .banner_inner {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
}

@media (max-width: 991px) {
  .home_banner_area .banner_inner {
      top: 60%;
  }
}

.home_banner_area .banner_inner .banner_content h2 {
  font-size: 48px;
  font-weight: 500;
}

.home_banner_area .banner_inner .banner_content p {
  font-size: 20px;
  color: #002347;
  font-weight: 500;
}

/* Banner Cards Styling */
.banner-container {
    display: flex;
    justify-content: center;
    gap: 19px; /* Reduce spacing between cards */
    flex-wrap: wrap; /* Ensures responsiveness */
    padding: 6px;
    max-width: 100%;
    margin-top: -10px;
  }
  
  .banner-card {
    background: rgba(36, 5, 234, 0.1);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid rgba(160, 152, 2, 0.3);
    width: 150px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .banner-card:hover {
    background: rgba(152, 131, 228, 0.2);
    transform: scale(1.05);
  }
  
  /* Icon Styling */
  .banner-card i {
    font-size: 34px; /* Make icons smaller */
    color: rgb(25, 4, 147);
    margin-bottom: 5px;
  }
  
  
  /* Text Styling */
  .banner-card p {
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin: 0;
  }
  
  /* Resize Logo */
  .header_area .logo img {
    max-width: 100px; /* Adjust size as needed */
    height: auto;
  }
  