/* ==============================
   Placement Page (Dark Premium)
============================== */

.placement-page {
  padding: 100px 10%;
  background: #0d0d0d;
  min-height: 100vh;
}

/* Title */
.placement-title {
  text-align: center;
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: 1px;
}

/* Subtitle */
.placement-subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 70px;
  color: rgba(255, 255, 255, 0.6);
}

/* Grid Layout */
.placement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* Placement Card */
.placement-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

/* Hover Premium Effect */
.placement-card:hover {
  transform: translateY(-10px) scale(1.02);
  border: 1px solid rgba(255, 165, 0, 0.4);
  box-shadow: 0 15px 35px rgba(255, 165, 0, 0.25);
}

/* Image Styling */
.placement-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
  transition: 0.4s ease;
}

/* Image Zoom on Hover */
.placement-card:hover img {
  transform: scale(1.05);
}

/* Student Name */
.placement-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: orange;
  margin-bottom: 6px;
}

/* Company Name */
.placement-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .placement-page {
    padding: 70px 6%;
  }

  .placement-title {
    font-size: 34px;
  }

  .placement-card img {
    height: auto;
  }
}


/* ==============================
   Call Now Banner Dark Mode
============================== */

.call-banner-section {
  padding: 80px 10%;
  background: #111;
}

.call-banner {
  background: linear-gradient(135deg, #001a66, #0033cc);
  border-radius: 18px;
  padding: 35px 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

/* Decorative Circles */
.call-banner::before,
.call-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.call-banner::before {
  width: 180px;
  height: 180px;
  top: -60px;
  left: -60px;
}

.call-banner::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  right: -80px;
}

/* Left Side */
.call-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
}

.call-banner-left i {
  font-size: 42px;
  color: orange;
}

.call-banner-left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* Button */
.call-btn {
  padding: 14px 34px;
  background: orange;
  color: #111;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  z-index: 2;
}

.call-btn:hover {
  background: #ff9900;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width: 768px) {
  .call-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .call-banner-left {
    flex-direction: column;
  }

  .call-banner-left h2 {
    font-size: 22px;
  }
}