/* Hero Section Enhancements */
.hero-section {
  min-height: 100vh;
  position: relative;
}

.hero-bg-half-1,
.hero-bg-half-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-bg-half-1 {
  background-image: url("../images/bg/hero-01.png");
}

.hero-bg-half-2 {
  background-image: url("../images/bg/hero-02.png");
}

/* Product Cards */
.product-item {
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateY(-10px);
}

.product-img {
  height: 250px;
  overflow: hidden;
}

.product-img img {
  object-fit: cover;
  height: 100%;
  transition: transform 0.5s ease;
}

.product-item:hover .product-img img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
  opacity: 1;
}

/* Feature Cards */
.feature-item {
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Industry Cards */
.industry-card {
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.industry-card:hover {
  border-left-color: var(--bs-primary);
  transform: translateX(10px);
}

/* Blog Cards */
.blog-item {
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
}

.blog-img {
  height: 250px;
}

.blog-img img {
  object-fit: cover;
  height: 100%;
}

/* Certification Boxes */
.cert-box {
  transition: all 0.3s ease;
}

.cert-box:hover {
  transform: scale(1.05);
  background: var(--bs-primary) !important;
}

.cert-box:hover * {
  color: white !important;
}

/* About Image Overlay */
.about-img-box {
  position: relative;
  height: 100%;
  min-height: 200px;
}

.about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-img-box:hover .about-overlay {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .hero-bg-half-1,
  .hero-bg-half-2 {
    width: 100%;
    opacity: 0.3;
  }
}

.text {
  color: black;
}

.category-sidebar .list-group-item {
  border: none;
  border-bottom: 1px solid #eee;
  padding: 14px 10px;
  transition: all 0.3s ease;
}

.category-sidebar .list-group-item:hover {
  background: #f8f9fa;
  padding-left: 18px;
}

.category-sidebar a {
  color: #222;
  font-weight: 500;
}

.category-sidebar a:hover {
  color: #0d6efd;
}

.shadow {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08) !important;
}

/* css for footer logo  */
.footer-logo {
  height: auto;
  width: 200px ;
  object-fit: contain;
  vertical-align: middle;
}


/* css for header logo */
