/* =========================
   🔥 CAREER HERO SECTION
========================= */

.career-hero-advanced {
  position: relative;
  width: 100%;
  height: 50vh;
  background: linear-gradient(135deg, #1b4f9c, #00b894);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  color: #fff;
}

/* 🔥 Background Glow Effect */
.career-hero-advanced::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  filter: blur(100px);
}

.career-hero-advanced::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
  filter: blur(100px);
}

/* 🔥 Title */
.career-hero-advanced h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  animation: fadeUp 1s ease;
}

/* 🔥 Subtitle */
.career-hero-advanced p {
  font-size: 18px;
  max-width: 600px;
  line-height: 1.6;
  opacity: 0.9;
  animation: fadeUp 1.3s ease;
}

/* 🔥 Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   📱 RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .career-hero-advanced h1 {
    font-size: 38px;
  }

  .career-hero-advanced p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .career-hero-advanced {
    height: 60vh;
    padding: 15px;
  }

  .career-hero-advanced h1 {
    font-size: 30px;
  }

  .career-hero-advanced p {
    font-size: 14px;
  }
}
/* =========================
   🚀 LIFE SECTION (ULTRA CREATIVE)
========================= */

.life-section {
  padding: 120px 20px;
  background: radial-gradient(circle at top, #eef5ff, #ffffff);
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* 🔥 Floating blur background */
.life-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0,184,148,0.1);
  filter: blur(120px);
  top: -150px;
  left: -150px;
}

.life-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(27,79,156,0.1);
  filter: blur(120px);
  bottom: -150px;
  right: -150px;
}

/* TITLE */
.life-section h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1b4f9c;
  margin-bottom: 80px;
  letter-spacing: 1px;
}

/* GRID */
.life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.life-card {
  position: relative;
  padding: 40px 25px;
  border-radius: 25px;
  background: #ffffff;
  overflow: hidden;
  transition: 0.5s;
  z-index: 1;
}

/* 🔥 Animated gradient border */
.life-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 25px;
  background: linear-gradient(270deg, #1b4f9c, #00b894, #1b4f9c);
  background-size: 400% 400%;
  animation: borderMove 6s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

/* 🔥 Glow inside */
.life-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1b4f9c, #00b894);
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}

/* TEXT */
.life-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1b4f9c;
  transition: 0.3s;
}

.life-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  transition: 0.3s;
}

/* 🔥 Hover Magic */
.life-card:hover {
  transform: translateY(-15px) scale(1.05) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.life-card:hover::after {
  opacity: 1;
}

.life-card:hover h3,
.life-card:hover p {
  color: #fff;
}

/* 🔥 Border animation */
@keyframes borderMove {
  0% { background-position: 0% }
  100% { background-position: 400% }
}

/* =========================
   📱 RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .life-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .life-grid {
    grid-template-columns: 1fr;
  }

  .life-section h2 {
    font-size: 26px;
  }

  .life-card {
    padding: 30px 20px;
  }
}
.life-section h2 {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, #1b4f9c, #00b894, #1b4f9c);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s linear infinite;
  position: relative;
}

/* Glow underline */
.life-section h2::after {
  content: "";
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #1b4f9c, #00b894);
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,184,148,0.6);
}

/* Animation */
@keyframes gradientMove {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

/* =========================
   🎯 CAREER SECTION (BALANCED DESIGN)
========================= */

.career-opportunities {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f7faff, #ffffff);
  position: relative;
  overflow: hidden;
}

/* LOGO BG */
.bg-logo {
  position: absolute;
  width: 280px;
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* TITLE */
.career-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1b4f9c;
  margin-bottom: 60px;
  position: relative;
}

.career-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #1b4f9c, #00b894);
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* LAYOUT */
.career-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: start;
}

/* =========================
   LEFT SIDE (CARDS)
========================= */

.career-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.career-card {
  padding: 28px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e6ecf5;
  transition: 0.3s;
  position: relative;
}

/* HOVER */
.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* TEXT */
.career-card h3 {
  font-size: 18px;
  color: #1b4f9c;
  margin-bottom: 8px;
}

.career-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

/* BUTTON */
.career-card a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #00b894;
  transition: 0.3s;
}

.career-card a:hover {
  color: #1b4f9c;
}

/* =========================
   🔥 INTERNSHIP HIGHLIGHT
========================= */

.career-card:nth-child(2) {
  border: 2px solid #00b894;
  background: linear-gradient(135deg, #eafff7, #ffffff);
}

/* badge */
.career-card:nth-child(2)::before {
  content: "Join Now";
  position: absolute;
  top: -10px;
  left: 20px;
  background: #00b894;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* =========================
   RIGHT SIDE (FORM)
========================= */

.career-right {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  border: 1px solid #e6ecf5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* TITLE */
.career-right h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1b4f9c;
}

/* INPUT */
#careerForm input,
#careerForm select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #dcdfe6;
  font-size: 14px;
  transition: 0.3s;
}

/* FOCUS */
#careerForm input:focus,
#careerForm select:focus {
  border-color: #00b894;
  outline: none;
  box-shadow: 0 0 6px rgba(0,184,148,0.2);
}

/* FILE */
.file-upload label {
  font-size: 13px;
  color: #666;
}

/* BUTTON */
#careerForm button {
  width: 100%;
  padding: 13px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(90deg, #1b4f9c, #00b894);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
#careerForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* =========================
   📱 RESPONSIVE
========================= */

@media (max-width: 992px) {
  .career-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .career-title {
    font-size: 26px;
  }

  .career-right {
    padding: 25px 20px;
  }
}
.career-subtext {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 15px;
}
#careerForm input,
#careerForm select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box; /* 🔥 IMPORTANT */
  display: block;
}
.career-right form {
  width: 100%;
}

.career-right {
  width: 100%;
}