body {
  margin:0;height: 100vh;
  _background:linear-gradient(120deg,#a0d9ff,#f4f9ff,#e6f0ff);
  background:#F5F5F5;
  background-size:200% 200%;
  font-family:"SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  display:flex;justify-content:center;align-items:center;
}
@keyframes gradientShift {
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}
.chat-wrapper {
  width:100%;
  max-width:1500px;
  height:100vh;
  display:flex;flex-direction:column;
  border-radius:24px;backdrop-filter:blur(18px) saturate(180%);
  background:rgba(255,255,255,0.25);
  border:1px solid rgba(255,255,255,0.3);
  box-shadow:0 10px 40px rgba(0,0,0,0.15);
  overflow:hidden;
}
.chat-header {
  padding:20px 30px;font-size:1.6rem;font-weight:600;
  color:#222;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,0.5);
  border-bottom:1px solid rgba(255,255,255,0.4);
}
.ai-icon {
  margin-right:10px;font-size:1.6rem;color:#007aff;
  animation:glowPulse 2s infinite;
}
@keyframes glowPulse {
  0%,100%{text-shadow:0 0 8px rgba(0,122,255,0.6);}
  50%{text-shadow:0 0 16px rgba(0,122,255,0.9);}
}
.chat-body {
  flex:1;overflow-y:auto;padding:30px;scroll-behavior:smooth;
}
::-webkit-scrollbar {width:8px;}
::-webkit-scrollbar-thumb {background:rgba(0,0,0,0.1);border-radius:4px;}
.chat-message {display:flex;margin-bottom:20px;}
.chat-message.user{justify-content:flex-end;}
.chat-message.ai{justify-content:flex-start;}
.bubble {
  padding:14px 18px;border-radius:18px;
  max-width:100%;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.chat-message.user .bubble {
  background:linear-gradient(135deg,#007aff,#00b4ff);color:#fff;
  border-top-right-radius:4px;
}
.chat-message.ai .bubble {
  background:rgba(255,255,255,0.85);
  border-top-left-radius:4px;color:#222;
}
.chat-footer {
  display:flex;padding:20px;
  background:rgba(255,255,255,0.7);
  border-top:1px solid rgba(255,255,255,0.4);
}
.chat-footer input {
  flex:1;border:none;border-radius:15px;
  padding:14px 18px;background:#f2f5fa;
  font-size:15px;outline:none;
}
.chat-footer button {
  border:none;background:linear-gradient(135deg,#007aff,#00b4ff);
  color:#fff;border-radius:15px;margin-left:12px;
  padding:0 24px;font-size:18px;
}
.job_widget {
    Display:none;
  margin:12px 0;padding:15px;border-radius:10px;
  background:#f8faff;box-shadow:0 2px 8px rgba(0,0,0,0.08);
  border:1px solid #e6ecf5;transition:.3s;
}
.job_widget:hover{transform:translateY(-3px);}


.jumbotron {
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.jumbotron:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.jumbotron .display-4 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.jumbotron .lead {
  font-size: 15px;
  color: #555;
  margin-bottom: 6px;
}

.jumbotron a {
  text-decoration: none;
  color: #007bff;
}

.jumbotron a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.jumbotron hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border: none;
  border-top: 1px solid #e0e0e0;
}

#ai-suggestions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
    flex-direction: column;
}

.ai-suggestion-btn {
  background: #f5f6f7;
  color: #222;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 6px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.ai-suggestion-btn:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

#ai-suggestions_parent {
	    width: 100%;
    max-width: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(120deg,
    rgba(0, 255, 200, 0.25),
    rgba(0, 140, 255, 0.25),
    rgba(255, 0, 150, 0.25),
    rgba(255, 180, 0, 0.25)
  );
  background-size: 400% 400%;
  animation: neuralGradient 14s ease infinite, neuralGlow 6s ease-in-out infinite;
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  box-shadow:
    inset 0 0 25px rgba(255, 255, 255, 0.05),
    0 0 30px rgba(0, 200, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ai-suggestions_parent:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(0, 200, 255, 0.35),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Moving background gradient */
@keyframes neuralGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Subtle glowing pulse */
@keyframes neuralGlow {
  0%, 100% {
    box-shadow:
      inset 0 0 25px rgba(255, 255, 255, 0.05),
      0 0 25px rgba(0, 200, 255, 0.2);
  }
  50% {
    box-shadow:
      inset 0 0 25px rgba(255, 255, 255, 0.05),
      0 0 40px rgba(0, 255, 200, 0.35);
  }
}

/* Optional shimmer line overlay */
#ai-suggestions_parent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

#ai-suggestions_parent .fa-circle-xmark:hover{
transform:scale(1.5)  rotate(90deg);
}
#ai-suggestions_parent .fa-circle-xmark{
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px 10px;
    font-size: 16px;
    color: #ea3e3e;
	  transition: transform 0.3s ease;

	
}