/* ====== Placement Overview Section ====== */
.custom-sram-placement-overview {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.custom-sram-placement-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(45deg, #005ba1, #0073e6);
  color: white;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 91, 161, 0.3);
}

.custom-sram-placement-badge-secondary {
  background: linear-gradient(45deg, #10b981, #34d399);
}

.custom-sram-placement-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 30px;
  line-height: 1.2;
}

.custom-sram-placement-text {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.custom-sram-placement-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.custom-sram-placement-stat-item {
  text-align: center;
}

.custom-sram-placement-stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #005ba1;
  line-height: 1;
}

.custom-sram-placement-stat-label {
  font-size: 14px;
  color: #222;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.custom-sram-placement-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.custom-sram-placement-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.custom-sram-placement-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 91, 161, 0.1),
    rgba(0, 115, 230, 0.1)
  );
}

/* ====== Training & Placement Cell ====== */
.custom-sram-placement-cell {
  padding: 50px 0;
  background: white;
}

.custom-sram-placement-services h4 {
  font-size: 20px;
  font-weight: 600;
  color: #005ba1;
  margin-bottom: 20px;
}

.custom-sram-placement-list {
  list-style: none;
  padding: 0;
}

.custom-sram-placement-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.custom-sram-placement-list-icon {
  width: 24px;
  height: 24px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 12px;
  font-weight: bold;
}

.custom-sram-placement-list span {
  font-size: 17px;
  color: #222;
}

/* ====== Section Headers ====== */
.custom-sram-placement-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.custom-sram-placement-section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(45deg, #005ba1, #0073e6);
  color: white;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.custom-sram-placement-section-title {
  font-size: 50px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 20px;
}

.custom-sram-placement-section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #005ba1, #0073e6);
  margin: 0 auto;
  border-radius: 2px;
}

.custom-sram-placement-section-desc {
  font-size: 17px;
  color: #222;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.7;
}
/* ====== Recruitment Partners ====== */
.custom-sram-placement-partners {
  padding: 50px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.custom-sram-placement-companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.custom-sram-placement-company-card {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #005ba1;
  position: relative;
  overflow: hidden;
}

.custom-sram-placement-company-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-top-color: #0073e6;
}

.custom-sram-placement-company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 91, 161, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.custom-sram-placement-company-card:hover::before {
  left: 100%;
}

.custom-sram-placement-company-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #005ba1, #0073e6);
  font-size: 36px;
  box-shadow: 0 8px 20px rgba(0, 91, 161, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.custom-sram-placement-company-card:hover .custom-sram-placement-company-icon {
  transform: rotateY(180deg) scale(1.1);
  background: linear-gradient(135deg, #10b981, #34d399);
}

.custom-sram-placement-company-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.custom-sram-placement-company-card:hover h4 {
  color: #005ba1;
}

.custom-sram-placement-company-card p {
  font-size: 17px;
  color: #222;
  text-align: justify;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ====== Alternative Card Styles ====== */
.custom-sram-placement-company-card:nth-child(odd) {
  border-top-color: #10b981;
}

.custom-sram-placement-company-card:nth-child(even) {
  border-top-color: #f59e0b;
}

.custom-sram-placement-company-card:nth-child(3n) {
  border-top-color: #ef4444;
}

/* ====== Animation Effects ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-sram-placement-company-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.custom-sram-placement-company-card:nth-child(1) {
  animation-delay: 0.1s;
}
.custom-sram-placement-company-card:nth-child(2) {
  animation-delay: 0.2s;
}
.custom-sram-placement-company-card:nth-child(3) {
  animation-delay: 0.3s;
}
.custom-sram-placement-company-card:nth-child(4) {
  animation-delay: 0.4s;
}
.custom-sram-placement-company-card:nth-child(5) {
  animation-delay: 0.5s;
}
.custom-sram-placement-company-card:nth-child(6) {
  animation-delay: 0.6s;
}
.custom-sram-placement-company-card:nth-child(7) {
  animation-delay: 0.7s;
}
.custom-sram-placement-company-card:nth-child(8) {
  animation-delay: 0.8s;
}
.custom-sram-placement-company-card:nth-child(9) {
  animation-delay: 0.9s;
}
.custom-sram-placement-company-card:nth-child(10) {
  animation-delay: 1s;
}

/* ====== Success Stories ====== */
.custom-sram-placement-success {
  padding: 50px 0;
  background: linear-gradient(135deg, #fef7f7 0%, #fde2e2 100%);
}

.custom-sram-placement-success-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.custom-sram-placement-success-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.custom-sram-placement-success-image {
  height: 200px;
  overflow: hidden;
}

.custom-sram-placement-success-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-sram-placement-success-content {
  padding: 25px;
}

.custom-sram-placement-success-content h5 {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 5px;
}

.custom-sram-placement-success-batch {
  font-size: 14px;
  color: #222;
  font-weight: 500;
}

.custom-sram-placement-success-company {
  font-size: 17px;
  color: #005ba1;
  font-weight: 600;
  margin: 10px 0;
}

.custom-sram-placement-success-package {
  font-size: 16px;
  color: #10b981;
  font-weight: 600;
  margin: 0;
}

/* ====== Placement Process ====== */
.custom-sram-placement-process {
  padding: 68px 0;
  background: white;
}

.custom-sram-placement-process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  position: relative;
}

.custom-sram-placement-process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(45deg, #005ba1, #0073e6);
}

.custom-sram-placement-process-item {
  text-align: center;
  position: relative;
  flex: 1;
  max-width: 200px;
}

.custom-sram-placement-process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #005ba1, #0073e6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.custom-sram-placement-process-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 10px;
}

.custom-sram-placement-process-item p {
  font-size: 17px;
  color: #222;

  margin: 0;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  .custom-sram-placement-process-item {
    box-shadow: 0 8px 20px rgba(0, 91, 161, 0.3);

    padding: 30px;
    border-radius: 20px;
    max-width: 350px;
  }
  .custom-sram-placement-overview {
    padding: 30px 0;
  }
  .custom-sram-placement-process {
    padding: 30px 0;
    padding-bottom: 55px;
  }
  .custom-sram-placement-success {
    padding: 30px 0;
  }
  .custom-sram-placement-partners {
    padding: 31px 0;
  }
  .custom-sram-placement-badge {
    margin-top: 10px;
  }
  .custom-sram-placement-cell {
    padding: 37px 0;
  }
  .custom-sram-placement-image {
    height: auto;
  }
  .custom-sram-placement-stats {
    margin-bottom: 24px;
  }
  .custom-sram-placement-companies-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .custom-sram-placement-company-card {
    padding: 25px 20px;
  }

  .custom-sram-placement-company-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .custom-sram-placement-company-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .custom-sram-placement-company-card p {
    font-size: 15px;
  }
  .custom-sram-placement-title {
    font-size: 28px;
  }

  .custom-sram-placement-section-title {
    font-size: 28px;
  }

  .custom-sram-placement-text,
  .custom-sram-placement-section-desc,
  .custom-sram-placement-list span,
  .custom-sram-placement-company-card p,
  .custom-sram-placement-career-card p,
  .custom-sram-placement-process-item p {
    font-size: 16px;
    text-align: justify;
  }

  .custom-sram-placement-stat-number {
    font-size: 25px;
  }
  .custom-sram-placement-stat-label {
    font-size: 10px;
  }
  .custom-sram-placement-stats {
    justify-content: center;
    gap: 30px;
  }

  .custom-sram-placement-process-timeline {
    flex-direction: column;
    gap: 30px;
  }

  .custom-sram-placement-process-timeline::before {
    display: none;
  }

  .custom-sram-placement-companies-grid,
  .custom-sram-placement-careers-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .custom-sram-placement-companies-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .custom-sram-placement-company-card {
    padding: 20px 15px;
  }

  .custom-sram-placement-company-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .custom-sram-placement-company-card h4 {
    font-size: 18px;
  }

  .custom-sram-placement-company-card p {
    font-size: 16px;
  }
}

/* ====== Animation Effects ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-sram-placement-company-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.custom-sram-placement-company-card:nth-child(1) {
  animation-delay: 0.1s;
}
.custom-sram-placement-company-card:nth-child(2) {
  animation-delay: 0.2s;
}
.custom-sram-placement-company-card:nth-child(3) {
  animation-delay: 0.3s;
}
.custom-sram-placement-company-card:nth-child(4) {
  animation-delay: 0.4s;
}
.custom-sram-placement-company-card:nth-child(5) {
  animation-delay: 0.5s;
}
.custom-sram-placement-company-card:nth-child(6) {
  animation-delay: 0.6s;
}
.custom-sram-placement-company-card:nth-child(7) {
  animation-delay: 0.7s;
}
.custom-sram-placement-company-card:nth-child(8) {
  animation-delay: 0.8s;
}
.custom-sram-placement-company-card:nth-child(9) {
  animation-delay: 0.9s;
}
.custom-sram-placement-company-card:nth-child(10) {
  animation-delay: 1s;
}
