body{
  font-family: "Inter", sans-serif;
  background: #fafbfc;
  margin: 0;
  padding: 0;
}
@property --g-1-x{
  syntax: "<percentage>"; inherits: false; initial-value: 80%; 
}
@property --g-1-y{
  syntax: "<percentage>"; inherits: false; initial-value: 90%; 
}
@property --g-2-x{
  syntax: "<percentage>"; inherits: false; initial-value: 20%; 
}
@property --g-2-y{
  syntax: "<percentage>"; inherits: false; initial-value: 85%; 
}
@property --g-3-x{
  syntax: "<percentage>"; inherits: false; initial-value: 50%; 
}
@property --g-3-y{
  syntax: "<percentage>"; inherits: false; initial-value: 95%; 
}
.career-hero{
  min-height: 75vh;
  display: flex;
  position: relative;
  align-items: center;
  background:
    radial-gradient(60% 60% at var(--g-1-x) var(--g-1-y), #FD7E87 0%, transparent),
    radial-gradient(60% 60% at var(--g-2-x) var(--g-2-y), #FEB95A 0%, transparent),
    radial-gradient(60% 60% at var(--g-3-x) var(--g-3-y), #743dbb 0%, transparent),
    #ffffff;
}
@keyframes career-flow{
  0% {
  --g-1-x: 10%;
    --g-2-x: 50%;
    --g-3-x: 90%;
}
  100% {
  --g-1-x: 90%;
    --g-2-x: 10%;
    --g-3-x: 50%;
}
}
.career-logo{
  max-width: 40em;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}
.career-logo:hover{
  transform: scale(1.05);
  transform: translateY(-4px);
}
.hero-stats{
  flex-wrap: wrap;
}
.stat-item{
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.stat-item:hover{
  transform: translateY(-5px);
}
.feature-card{
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.feature-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
  border-color: #007bff;
}
.feature-icon{
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon{
  transform: scale(1.1);
}
.job-card{
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.job-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #007bff;
}
.job-card ul li{
  transition: all 0.3s ease;
}
.job-card:hover ul li{
  transform: translateX(5px);
}
.form-wrapper{
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.form-wrapper:hover{
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}
.form-control,
.form-select{
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}
.form-control:focus,
.form-select:focus{
  border-color: #743dbb;
  box-shadow: 0 0 0.3em 0.2rem rgba(162, 0, 255, 0.25);
  transform: translateY(-2px);
}
.form-label{
  color: #495057;
  margin-bottom: 0.5rem;
}
.cta-section{
  background: white;
}
.btn{
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
}
.btn-primary{
  background: linear-gradient(45deg, #743dbb, #7a38d1);
  border-style: solid;
  border-color: #7a38d1;
  border-width: 5px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(174, 0, 255, 0.4);
  background: transparent;
  border-color: #7a38d1;
  color: #743dbb;
}
.btn-outline-primary{
  border: 2px solid #007bff;
  color: #007bff;
  background: transparent;
}
.btn-outline-primary:hover{
  background: #007bff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}
@media (max-width: 768px){
  .career-hero{
  min-height: 60vh;
    text-align: center;
}
.hero-stats{
  justify-content: center;
}
.stat-item{
  margin-bottom: 1rem;
}
.career-logo{
  max-width: 100%;
    margin-top: 2rem;
}
.form-wrapper{
  padding: 2rem !important;
}
.btn{
  padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}
}
@media (max-width: 576px){
  .display-4{
  font-size: 2rem;
}
.display-5{
  font-size: 1.75rem;
}
.hero-stats{
  flex-direction: column;
    align-items: center;
}
.stat-item{
  width: 100%;
    max-width: 200px;
}
}
@keyframes fadeInUp{
  from {
  opacity: 0;
    transform: translateY(30px);
}
  to {
  opacity: 1;
    transform: translateY(0);
}
}
.application-heading-section{
  display: flex; 
  justify-content: center;
  flex-direction: row;
}
.application-heading-icon{
  font-size: 50px;
  padding-right: 0.5em;
}
.career-hero{
  animation: career-flow 3s ease-in-out infinite alternate;
}
.why-join,
.job-details,
.application-form,    
.cta-section{
  animation: fadeInUp 0.8s ease-out;
}
.apply-btn{
  background-color: #FD7E87;
  color: white;
  font-weight: bold;
  justify-content: center;
  align-content: center;
  border-width: 5px;
  border-style: solid;
  border-color: #FD7E87;
}
.apply-btn:hover{
  background-color: transparent;
  color: #FD7E87;
  border-color: #FD7E87;
  box-shadow: 0em 20em 10em 10em 10em rgba(255, 58, 58, 0.5);
  transform: translateY(-3px);
}
.contact-us-btn{
  background-color: transparent;
  color:#FD7E87;
  border-style: solid;
  border-radius:60px;
  border-width: 5px;
  border-color: #FD7E87;
}
.contact-us-btn:hover{
  background-color: #FD7E87;
  color: white;
  border-color: #FD7E87;
  box-shadow: 0 0 0 4 5 #ce545c;
}
.feature-card-icon-red{
  color: #FD7E87;
}
.feature-card-red:hover{
  border-color: #FD7E87;
}
.feature-card-icon-yellow{
  color: #FEB95A
}
.feature-card-icon-purple{
  color: #7a38d1;
}
.feature-heading-icon{
  font-size: 50px;
  padding-right: 0.5em;
}
.feature-heading-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* Apply Seciton that says "Ready to make a Differece */
.apply-section-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.check-icon{
  font-size: 50px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.job-card-wrapper::before,
.job-card-wrapper::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  background: linear-gradient(
    45deg,
    #FD7E87, #FEB95A, #743dbb,
    #FD7E87, #FEB95A, #743dbb,
    #FD7E87, #FEB95A, #743dbb
  );
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradient-border 10s linear infinite;
}
@keyframes gradient-border {
  0%   { background-position: 0 0; }
  50%  { background-position: 300% 0; }
  100% { background-position: 0 0; }
}
.section-bg-image{
  background-image: url('/Images/Benefits-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}