/* ==============================
   CAREER PAGE BANNER
============================== */

.career-banner {
  background: url("../images/banners/internship-banner.jpg") center/cover no-repeat;
  height: 420px;
  position: relative;
}

/* Dark Premium Overlay */
.career-banner .banner-overlay {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

/* Banner Heading */
.career-banner h1 {
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

/* Breadcrumb */
.career-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */

@media (max-width: 768px) {

  .career-banner {
    height: 300px;
  }

  .career-banner h1 {
    font-size: 38px;
  }

  .career-banner p {
    font-size: 14px;
  }
}

/* ==============================
   CAREER FORM SECTION (DARK)
============================== */

.career-section {
  padding: 90px 10%;
  background: #0b0b0b;
}

.career-container {
  max-width: 950px;
  margin: auto;
  background: rgba(255, 255, 255, 0.04);
  padding: 60px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.7);
}

.career-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: white;
  margin-bottom: 45px;
}

/* Form Layout */
.career-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Row Inputs */
.career-row {
  display: flex;
  gap: 20px;
}

.career-row input {
  flex: 1;
}

/* Inputs + File */
.career-form input,
.career-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* Focus Effect */
.career-form input:focus,
.career-form textarea:focus {
  border-color: orange;
  box-shadow: 0 0 12px rgba(255, 165, 0, 0.5);
}

/* Placeholder */
.career-form input::placeholder,
.career-form textarea::placeholder {
  color: #888;
}

/* File Upload */
.career-form input[type="file"] {
  padding: 12px;
  cursor: pointer;
  color: #aaa;
}

/* Button */
.career-form button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, orange, #ff5a1f);
  color: black;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.35s;
}

.career-form button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.6);
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 850px) {
  .career-container {
    padding: 35px;
  }

  .career-row {
    flex-direction: column;
  }

  .career-title {
    font-size: 28px;
  }
}


/* ==============================
   TinyMCE Premium Dark Editor Fix
============================== */

.editor-box {
  margin-top: 18px;
}

/* Editor Outer Box */
.tox {
  border-radius: 14px !important;
  overflow: hidden !important;
}

/* Toolbar Dark */
.tox-toolbar,
.tox-toolbar__primary {
  background: #111 !important;
}

/* Status Bar Dark */
.tox-statusbar {
  background: #111 !important;
  color: white !important;
}

/* Editor Body Dark */
.tox-edit-area__iframe {
  background: #0d0d0d !important;
}


/* ==============================
   TinyMCE Dark Premium Fix
============================== */

.tox-tinymce {
  border-radius: 14px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
}

.tox-toolbar__primary {
  background: #111 !important;
}

.tox .tox-tbtn svg {
  fill: white !important;
}

.tox-edit-area__iframe {
  background: #0d0d0d !important;
}
