  
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0px;
      background: #dbd0d0;
      color: #fff;
    }
    .hey {
      color: #111111;
      text-shadow: 1px 1px 2px rgb(238, 231, 231);
      margin: 6px;
    }
      table {
    width: 98%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: #ffffff;
    color: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    position: relative; /* important for watermark */
  }
  table th, table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
  }
  table th {
    background-color: #4b0082;
    color: #fff;
  }

  /* 🔹 Watermark text */
  table::before {
    content: "Bihar Engineering Guide";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 4rem;
    color: rgba(10, 8, 8, 0.2);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
  }

  /* ensure content appears above watermark */
  table * {
    position: relative;
    z-index: 1;
  }
    .placement-image-section {
  background: #f0f0f5;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 40px;
  color: #000;
  width: 80%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.placement-image-section h4 {
  color: #4b0082;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.image-placeholder {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 2px dashed #999;
  padding: 10px;
  background-color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.image-placeholder img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
  .placement-image-section {
    padding: 15px;
  }
  .placement-image-section h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .placement-image-section {
    padding: 10px;
  }
  .placement-image-section h4 {
    font-size: 1.1rem;
  }
}

/* --- Extra for 3-image slider --- */
.image-placeholder {
  position: relative;
  overflow: hidden;
  border: 2px dashed #999;
  border-radius: 8px;
  padding: 0; /* remove inner padding for smooth slide */
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.carousel-track img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
}

.bscc-section {
  background: #f4f6ff;
  padding: 25px;
  border-radius: 12px;
  margin: 30px auto;
  border: 1px solid #d7e1ff;
  max-width: 1100px;
  width: 95%;
}

.bscc-section h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 28px;
  color: #1a237e;
}

.bscc-desc {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 25px;
  color: #444;
  font-size: 16px;
}

/* 🟦 All 4 cards in one row */
.bscc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 boxes in single row */
  gap: 20px;
}

.bscc-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e0e6ff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.bscc-card h3 {
  margin-bottom: 12px;
  color: #283593;
  font-size: 20px;
}

.bscc-card ul {
  margin: 0;
  padding-left: 20px;
}

.bscc-card ul li {
  margin-bottom: 8px;
  color: #555;
}

.bscc-btn {
  display: block;
  text-align: center;
  width: 220px;
  margin: 30px auto 0;
  padding: 12px 20px;
  background: #3949ab;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.bscc-btn:hover {
  background: #1a237e;
}

/* 📱 Responsive: 2 per row on tablet, 1 per row on mobile */
@media (max-width: 900px) {
  .bscc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .bscc-grid {
    grid-template-columns: 1fr;
  }
}

/* PMS Scholarship section */
.pms-section {
  background: #f8f9ff;
  padding: 40px 20px;
  border-radius: 12px;
  max-width: 900px;
  margin: 40px auto;
  font-family: 'Segoe UI', sans-serif;
  color: #000;
  width: 95%;
}

.pms-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  text-align: center;
  color: #1a237e;
}

.pms-intro {
  font-size: 16px;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.6;
}

.pms-box {
  background: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid #dce1f7;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.pms-box h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #283593;
}

.pms-box ul,
.pms-box ol {
  padding-left: 20px;
  line-height: 1.6;
}

.pms-apply-btn {
  display: inline-block;
  background: #3949ab;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  margin: 20px auto;
  display: block;
  transition: 0.3s;
}

.pms-apply-btn:hover {
  background: #1a237e;
}

