/* Placements Hero Section */
.placements-hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.placements-hero-slider {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.placements-hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 22, 66, 0.4); /* Dark blue overlay with transparency */
  z-index: 1;
}

.placements-slide {
  display: none;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0s 0.5s;
}

.placements-slide.active {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out, visibility 0s 0s;
}

.placements-slide-content {
  position: absolute;
  top: 50%;
  left: 20%;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
  /* background-color: rgba(0, 0, 0, 0.6); */
  padding: 30px 40px;
  border-radius: 10px;
}
.placements-slide-content a {
  color: white;
  font-weight: 400;
  text-decoration: none;
}
.placements-slide-content p {
  color: white;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 768px) {
  .placements-hero-section {
    height: 30vh;
  }

  .placements-slide-content {
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    padding: 15px 20px;
  }
}

.placements-navigation {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.placements-navigation span {
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
}

.placements-navigation span.active {
  background-color: #002147;
}

/* Navigation Arrows */
.placements-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  border-radius: 5px;
}

.placements-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.placements-left-arrow {
  left: 20px;
}

.placements-right-arrow {
  right: 20px;
}

.placements-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffc107;
  color: black;
  border-radius: 0px;
  text-decoration: none;
  border: none;
}

/* Placements Tabs for Desktop View */
.placements-content-section {
  background-color: transparent;
  padding: 0;
  height: auto;
  margin-top: 0;
}

.placements-tabs {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  list-style: none;
  background-color: #002147;
  border-radius: 8px;
  margin-bottom: 15px;
}

.placement-section{
  padding: 40px 0;
  background-color: #f9f9f9;
}

.placements-tab-item {
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.placements-tab-item.active {
  background-color: #003674;
}


.mri{
  color: white;
}

.placements-tab-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.placements-tab-item:hover {
  background-color: #003674;
}

.placements-tab-item:hover .placements-tab-link {
  color: #fdc800;
}

.placements-tab-item.active .placements-tab-link {
  color: #fdc800;
}

.placements-tab-content {
  display: none;
}

.placements-tab-content.active {
  display: block;
  opacity: 1;
  position: relative;
}

/* Placements Content Section */
.placements-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.placements-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.placements-heading {
  font-size: 28px;
  font-weight: 700;
  color: #002147;
  margin-bottom: 15px;
}

.placements-paragraph {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* Enquiry Form */
.placements-enquiry .enquiry-form {
  background-color: #002147;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.placements-enquiry .form-heading {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

.placements-enquiry .placements-form-input {
  border-radius: 5px;
}

.placements-enquiry .placements-submit-btn {
  background-color: #ffc107;
  color: #002147;
  font-weight: 700;
}

/* Quick Links */
.placements-quick-links {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.placements-quick-links .placements-links-heading {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #002147;
}

.placements-quick-links .placements-links-list {
  list-style: none;
  padding: 0;
}

.placements-quick-links .placements-links-list li {
  margin-bottom: 10px;
}

.placements-links-list a {
  text-decoration: none;
  color: #002147;
  font-weight: 500;
}

.placements-quick-links .placements-links-list a:hover {
  color: #ffc107;
}

/* Placements Page Image Section */
.placements-page-imgs {
  text-align: center;
}

.placements-img-card {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placements-img-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.placements-img-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Tabs Section */

.placements-content-section {
  background-color: #002147;
  padding: 20px 15px;
  height: 120px;
  margin-top: 0;
  border-top: none;
}

.placements-tabs {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.placements-tab-item {
  padding: 10px 15px;
  margin: 5px 0;
}

.placements-tab-link {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 5px 10px;
  transition: all 0.3s ease-in-out;
  border-bottom: none;
}

.placements-tab-link:hover {
  color: #fdc800;
}

.placements-tab-item.active .placements-tab-link {
  color: #fdc800;
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .placements-tabs {
    display: none;
  }

  .placements-tabs-mobile {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #002147;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 16px;
    margin: 10px 0;
    border-radius: 5px;
  }

  .placements-tabs-mobile option {
    background-color: #002147;
    color: #ffffff;
    padding: 10px;
  }

  .placement-content {
    margin-top: 20px;
  }

  .placements-enquiry,
  .placements-quick-links {
    display: block !important;
    margin-top: 30px;
  }
}

/* Placement Tabs */
.placement-tabs {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 20px 0;
  list-style: none;
  background-color: #002147;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Enquiry Form and Quick Links spacing */
.placement-enquiry,
.quick-links {
  margin-top: 15px;
}
