* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #111;
    margin-top: 4%;
  }
  
  @media (max-width: 600px) {
    body {
      margin-top: 20%;
    }
  }
  
  
  .placement-banner {
    background: linear-gradient(to right, #000, #003a34);
    color: white;
    padding: 40px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 85% 75%, 70% 70%, 50% 75%, 30% 70%, 15% 75%, 0 70%);
  }
  
  .placement-banner h2 {
    font-size: 24px;
    border-left: 3px solid #e92063;
    padding-left: 10px;
    margin-left: 10px;
    color: #fff;
  }
  
  .placement-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 40px;
    background: #fff;
  }
  
  .left {
    flex: 1;
    min-width: 300px;
  }
  
  .left img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
  }
  
  .right {
    flex: 2;
    min-width: 300px;
  }
  
  .right h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .right p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  /* Career Cards */
  .career-section {
    padding: 40px;
    text-align: center;
  }
  
  .career-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .card {
    border: 2px solid #e92063;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: scale(1.03);
  }
  
  .card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .card p {
    margin-top: 10px;
    font-size: 14px;
  }
  
     /* Social Sidebar */
     .social-sidebar {
        position: fixed;
        top: 35%;
        right: 0;
        background: rgba(136, 136, 136, 0.95);
        padding: 10px 5px;
        border-radius: 10px 0 0 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
        transition: right 0.3s ease, left 0.3s ease;
      }
      /* When moved to the left */
.social-sidebar.move-left {
    right: auto;
    left: 0;
    border-radius: 0 10px 10px 0;
  }
      
  .social-sidebar .icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-sidebar .icon img {
    width: 20px;
    height: 20px;
  }
  
  /* Brand colors */
  .icon.facebook { background-color: #3b5998; }
  .icon.twitter { background-color: #000; } /* X (Twitter) */
  .icon.linkedin { background-color: #0077b5; }
  .icon.instagram { background-color: #e1306c; }
  .icon.phone { background-color: #3fa9f5; }
  .icon.whatsapp { background-color: #25d366; }
  .icon.google { background-color: #4285f4; }
  




/* Modal Styling */
/*REGISTER Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1004;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  position: relative;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: #e92063;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.registration-form input,
.registration-form textarea,
.registration-form select {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}


.register-btn {
  padding: 15px 25px;
  background-color: #e92063;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.register-btn:hover {
  background-color: #c71854;
}





















  