/* ===========================
   GLOBAL BASE STYLES
=========================== */
body {
  background: #0c0c0c;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* ===========================
   CAREERS PAGE
=========================== */

/* Careers Hero */
.careers-hero {
  background: #141414;
  padding: 70px 20px;
  text-align: center;
  border-bottom: 1px solid #222;
}
.careers-hero h1 {
  color: #ff4500;
  font-size: 2.6rem;
  margin-bottom: 10px;
  letter-spacing: 1.2px;
}
.careers-hero p {
  color: #ccc;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Careers Section */
.careers-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}
.careers-section h2 {
  margin-bottom: 25px;
  color: #ff4500;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Job Cards */
.job-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 28px;
  border: 1px solid #292929;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.job-card:hover {
  transform: translateY(-4px);
  border-color: #ff4500;
}
.job-card h3 {
  color: #fff;
  margin-bottom: 10px;
}
.job-card p {
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 14px;
}
.job-card h4 {
  margin: 16px 0 8px;
  color: #ff4500;
  font-size: 1.05rem;
}
.job-card ul {
  margin: 0 0 12px 18px;
  color: #ccc;
  font-size: 0.92rem;
  line-height: 1.45;
}
.job-card li {
  padding-bottom: 5px;
}

/* Apply Button */
.apply-btn {
  display: inline-block;
  background: #ff4500;
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.25s;
}
.apply-btn:hover {
  opacity: 0.8;
}

/* ===========================
   SIDEBARS & SEARCH
=========================== */
.sidebar {
  width: 260px;
  background: #111;
  color: white;
  position: fixed;
  top: 0;
  height: 100%;
  padding: 20px;
  transition: 0.35s ease;
  z-index: 1001;
  overflow-y: auto;
  border-right: 2px solid #ff4500;
}
.sidebar.left {
  left: 0;
  transform: translateX(-280px);
}
.sidebar.right {
  right: 0;
  transform: translateX(280px);
}
.sidebar.open {
  transform: translateX(0);
}
.sidebar h3 {
  margin-top: 20px;
  color: #ff4500;
}
.sidebar-btn {
  background: #ff4500;
  color: white;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin: 10px;
}
.sidebar-btn:hover {
  background: #ff5e00;
}
.creator-suggest,
.promo-banner {
  background: #1a1a1a;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.creator-link {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}
.creator-link img,
.creator-thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid #ff4500;
}
.creator-action {
  font-size: 12px;
  color: #ff4500;
}
.search-bar {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 10px;
  border-radius: 8px;
  color: white;
}
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 1000;
}
#overlay.active {
  display: block;
}

/* ===========================
   REGISTRATION MODAL
=========================== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.modal-content {
  background: #1e1e1e;
  color: #f1f1f1;
  padding: 25px;
  border-radius: 14px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  position: relative;
  animation: fadeIn 0.3s ease;
  margin: auto;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #bbb;
  transition: color 0.3s ease;
}
.close:hover { color: #fff; }
h2, h3 {
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
}
p {
  color: #ccc;
  text-align: center;
  font-size: 14px;
}
.google-btn, .facebook-btn, .twitter-btn, .email-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 12px;
}
.google-btn { background: #db4437; }
.facebook-btn { background: #3b5998; }
.twitter-btn { background: #1da1f2; }
.email-btn { background: linear-gradient(135deg, #555, #444); }
.google-btn:hover { background: #c33d2f; }
.facebook-btn:hover { background: #2e4c85; }
.twitter-btn:hover { background: #1991da; }
.email-btn:hover {
  background: linear-gradient(135deg, #666, #555);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255,255,255,0.1);
}
input {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  background: #2b2b2b;
  border: 1px solid #444;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input::placeholder { color: #aaa; }
input:focus {
  border-color: #28a745;
  box-shadow: 0 0 4px rgba(40,167,69,0.3);
  outline: none;
}
button[type="submit"] {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #28a745, #218838);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(40,167,69,0.3);
  margin-top: 14px;
}
button[type="submit"]:hover {
  background: linear-gradient(135deg, #218838, #1e7e34);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(40,167,69,0.4);
}

/* Fade Animations */
.fade-section {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fade-out {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Manual Registration */
#manualRegisterForm {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
#manualRegisterForm.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
  font-size: 15px;
  line-height: 1.4;
  margin-top: 10px;
}
label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #4ecb71;
  margin: 0;
}
label a {
  color: #4ecb71;
  text-decoration: none;
}
label a:hover {
  text-decoration: underline;
}
.small-text {
  margin-top: 15px;
  font-size: 13px;
  color: #888;
  text-align: center;
}
.small-text a {
  color: #4ecb71;
  text-decoration: none;
}
.small-text a:hover { text-decoration: underline; }
.status {
  font-size: 13px;
  margin-top: 3px;
  display: block;
}
/* ===========================
   WHATSAPP FLOATING BUTTON
   (Enhanced for Mobile Visibility)
=========================== */

#whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s ease;
}

#whatsapp-btn img {
  width: 54px;
  height: 54px;
  opacity: 0.9;
  filter: brightness(1.1) saturate(1.1);
  transition: opacity 0.25s ease;
}

#whatsapp-btn:hover img {
  opacity: 1;
}

#whatsapp-btn:hover {
  transform: scale(1.1);
}

/* ===========================
   ROTATING CIRCULAR TEXT
=========================== */
.circle-text {
  position: absolute;
  width: 100px;
  height: 100px;
  animation: rotate 12s linear infinite;
}

.circle-text text {
  fill: #ffffff;          /* White text for clear visibility */
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-shadow: 0 0 5px rgba(0,0,0,0.3); /* adds contrast */
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===========================
   RESPONSIVE STYLING
=========================== */
@media (max-width: 768px) {
  #whatsapp-btn {
    width: 90px;
    height: 90px;
    bottom: 20px;
    right: 18px;
  }
  #whatsapp-btn img {
    width: 48px;
    height: 48px;
  }
  .circle-text {
    width: 90px;
    height: 90px;
  }
  .circle-text text {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  #whatsapp-btn {
    width: 85px;
    height: 85px;
    bottom: 15px;
    right: 15px;
  }
  #whatsapp-btn img {
    width: 44px;
    height: 44px;
  }
  .circle-text {
    width: 85px;
    height: 85px;
  }
  .circle-text text {
    fill: #fff;
    font-size: 16px;
    text-shadow: 0 0 6px rgba(0,0,0,0.5);
  }
}

/* ===========================
   HEADER & APPLY BUTTON FIXES
=========================== */
@media (max-width: 768px) {
  .careers-hero {
    padding: 60px 15px 50px;
  }
  .careers-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }
  .careers-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .apply-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.15rem;
    padding: 16px 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff4500, #ff5e00);
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
  }
}

@media (max-width: 480px) {
  .careers-hero {
    padding: 50px 12px 40px;
  }
  .careers-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .careers-hero p {
    font-size: 1rem;
  }
  .apply-btn {
    font-size: 1.2rem;
    padding: 18px 0;
    border-radius: 14px;
  }
}
