/* Global */
:root {
  --brand: #0072ff;
  --text: #333;
  --bg: #f9fafc;
}
* { box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  margin: 0;
  color: var(--text);
}

/* Navbar
.navbar { padding: 18px 20px; }
.navbar .nav-link { font-size: 16px; margin-left: 15px; font-weight: 500; } */

/* Social Icons Right (circular) */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #0056b3;
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 114, 255, 0.35);
}

/* News Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--brand);
  color: #fff;
  padding: 12px 0;
  position: fixed;
  top: 85px;
  z-index: 999;
}
.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: tickerMove 20s linear infinite;
}
.ticker__item {
  display: inline-block;
  padding: 0 60px;
  font-weight: 600;
  font-size: 14px;
}
@keyframes tickerMove {
  0% { transform: translate3d(100%, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Filter Box */
.filter-box {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  margin-top: 140px; /* space for navbar + ticker */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.filter-box .form-select,
.filter-box .form-control {
  border-radius: 8px;
  font-size: 14px;
}
.filter-box .btn {
  border-radius: 8px;
  font-weight: 600;
}

/* Category Section */
/* Category Section */
.category-section { margin-top: 30px; }
.category-card {
  background: #f1f1f1;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 20px;
  font-weight: 600;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  color: #000000;
}

/* Category Icon Base */
.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: #003168;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

/* Unique Gradient Colors */
.category-card:nth-child(1) .category-icon {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4); /* Pink */
}
.category-card:nth-child(1):hover {
  background: linear-gradient(135deg, #ffdde1, #ee9ca7);
}

.category-card:nth-child(2) .category-icon {
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb); /* Blue */
}
.category-card:nth-child(2):hover {
  background: linear-gradient(135deg, #89f7fe, #66a6ff);
}

.category-card:nth-child(3) .category-icon {
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee); /* Purple */
}
.category-card:nth-child(3):hover {
  background: linear-gradient(135deg, #d4fc79, #96e6a1);
}

.category-card:nth-child(4) .category-icon {
  background: linear-gradient(135deg, #ffecd2, #fcb69f); /* Orange */
}
.category-card:nth-child(4):hover {
  background: linear-gradient(135deg, #f6d365, #fda085);
}

.category-card:nth-child(5) .category-icon {
  background: linear-gradient(135deg, #cfd9df, #e2ebf0); /* Grey */
}
.category-card:nth-child(5):hover {
  background: linear-gradient(135deg, #cfd9df, #a1c4fd);
}

.category-card:nth-child(6) .category-icon {
  background: linear-gradient(135deg, #fddb92, #d1fdff); /* Yellow */
}
.category-card:nth-child(6):hover {
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
}

.category-card:nth-child(7) .category-icon {
  background: linear-gradient(135deg, #84fab0, #8fd3f4); /* Green */
}
.category-card:nth-child(7):hover {
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
}

.category-card:nth-child(8) .category-icon {
  background: linear-gradient(135deg, #fccb90, #d57eeb); /* Violet */
}
.category-card:nth-child(8):hover {
  background: linear-gradient(135deg, #e0c3fc, #8ec5fc);
}

/* Job Cards */
.job-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

/* Job image */
.job-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.job-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.job-card:hover .job-img img { transform: scale(1.06); }

/* Category badge on image */
.category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand);
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0, 114, 255, 0.25);
}

/* Card body */
.card-body { padding: 16px; }
.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Unified gradient buttons (Apply, Read More, View PDF) */
.gradient-btn {
  display: inline-block;
  background: linear-gradient(90deg, #43e3ff, #002b82, #24c6dc, #ffd36b);
  background-size: 300% 300%;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-size: 16px; /* bigger text */
  font-weight: 700;
  padding: 10px 18px;
  text-align: center;
  transition: all 0.4s ease;
}
.gradient-btn:hover {
  background-position: right center;
  transform: scale(1.06) translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.22);
}

/* Responsive grid helpers (Bootstrap alignment tweaks if needed) */
@media (max-width: 768px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 576px) {
  .col-sm-6 { flex: 0 0 100%; max-width: 100%; }
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 8px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Facebook */
.social-icons a:nth-child(1) {
  background: #1877F2; /* Facebook Blue */
}
.social-icons a:nth-child(1):hover {
  background: #145dbf;
}

/* Twitter (X) */
.social-icons a:nth-child(2) {
  background: #1DA1F2; /* Twitter Blue */
}
.social-icons a:nth-child(2):hover {
  background: #0d8ddb;
}

/* Instagram */
.social-icons a:nth-child(3) {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}
.social-icons a:nth-child(3):hover {
  filter: brightness(1.1);
}

/* LinkedIn */
.social-icons a:nth-child(4) {
  background: #0A66C2; /* LinkedIn Blue */
}
.social-icons a:nth-child(4):hover {
  background: #084a92;
}



/* JOB.PHP CSS */


          /* Social Icons with Original Colors */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Facebook */
.social-icons a:nth-child(1) { background: #1877F2; }
.social-icons a:nth-child(1):hover { background: #145dbf; }

/* Twitter */
.social-icons a:nth-child(2) { background: #1DA1F2; }
.social-icons a:nth-child(2):hover { background: #0d8ddb; }

/* Instagram */
.social-icons a:nth-child(3) {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}
.social-icons a:nth-child(3):hover { filter: brightness(1.1); }

/* LinkedIn */
.social-icons a:nth-child(4) { background: #0A66C2; }
.social-icons a:nth-child(4):hover { background: #084a92; }

/* Gradient Button (Apply Now etc.) */
.gradient-btn {
  display: inline-block;
  background: linear-gradient(90deg, #62d0ff, #003d57, #24c6dc, #514a9d);
  background-size: 300% 300%;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 18px;
  text-align: center;
  transition: all 0.4s ease;
}
.gradient-btn:hover {
  background-position: right center;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25D366;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 18px;
  transition: all 0.3s ease;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

/* Copy Link Button */
.copy-btn {
  background: linear-gradient(90deg, #ff512f, #dd2476);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 18px;
  transition: all 0.3s ease;
}
.copy-btn:hover {
  background: linear-gradient(90deg, #dd2476, #ff512f);
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(221, 36, 118, 0.4);
}
         


.category-card {
  display: block;              /* anchor को block बनाओ */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  font-weight: 600;
  text-decoration: none;       /* underline हटाओ */
  color: #333;                 /* default text color */
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  color: #fff;                 /* hover पर text सफेद */
}

/* Icon */
.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}




/* Online Job Form */

.apply-info-box {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  border-left: 6px solid #007bff;
  transition: all 0.3s ease;
}
.apply-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.apply-info-box .highlight {
  color: #dd2476;
  font-weight: 600;
}

.info-box {
  transition: all 0.3s ease;
}
.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


/* 🔹 Apply Now Button (Green Glow) */
.btn-apply {
  background: linear-gradient(45deg, #28a745, #00c851);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-apply::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,200,81,0.4), transparent);
  animation: pulseGreen 3s linear infinite;
  z-index: -1;
}
@keyframes pulseGreen {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(0.8); opacity: 0.6; }
}

/* 🔹 Read More Button (Blue Glow) */
.btn-read {
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-read::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,114,255,0.4), transparent);
  animation: pulseBlue 3s linear infinite;
  z-index: -1;
}
@keyframes pulseBlue {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(0.8); opacity: 0.6; }
}

/* 🔹 View PDF Button (Red Glow) */
.btn-pdf {
  background: linear-gradient(45deg, #dc3545, #ff4444);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-pdf::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,68,68,0.4), transparent);
  animation: pulseRed 3s linear infinite;
  z-index: -1;
}
@keyframes pulseRed {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(0.8); opacity: 0.6; }
}