/* Careers Page Styles */

/* Careers Hero Section */
.careers-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #01357a 100%);
  color: var(--white);
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.careers-hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.careers-hero-section .hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.careers-hero-section .hero-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  top: -100px;
  right: 10%;
  animation: heroFloat 20s ease-in-out infinite;
}

.careers-hero-section .hero-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--white);
  bottom: -50px;
  left: 5%;
  animation: heroFloat 15s ease-in-out infinite reverse;
}

.careers-hero-section .hero-shape-3 {
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  top: 40%;
  left: 10%;
  animation: heroFloat 18s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

.careers-hero-section .container {
  position: relative;
  z-index: 2;
}

.careers-hero-section .page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.careers-hero-section .page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.careers-hero-section .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 25px;
  border-radius: 50px;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.careers-hero-section .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.careers-hero-section .breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.careers-hero-section .breadcrumb-item.active {
  color: var(--white);
}

.careers-hero-section .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(235, 190, 0, 0.15);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(235, 190, 0, 0.3);
}

.section-badge i {
  color: var(--secondary-color);
}

/* Floating Background */
.floating-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.floating-bg .float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.floating-bg .float-shape-1 {
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  top: 15%;
  right: 10%;
  animation: float 20s ease-in-out infinite;
}

.floating-bg .float-shape-2 {
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  bottom: 20%;
  left: 8%;
  animation: float 18s ease-in-out infinite reverse;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }
  50% {
    transform: translate(-15px, 15px) rotate(180deg);
  }
  75% {
    transform: translate(15px, 20px) rotate(270deg);
  }
}

/* Careers Overview */
.careers-overview {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
}

.careers-overview .container {
  position: relative;
  z-index: 2;
}

/* Benefit Card */
.benefit-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(2, 44, 130, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(2, 44, 130, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(2, 44, 130, 0.1), rgba(2, 44, 130, 0.05));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.benefit-card:hover .benefit-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.benefit-card:hover .benefit-icon i {
  color: var(--secondary-color);
}

.benefit-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin: 0;
}

/* Open Positions */
.open-positions {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
}

.open-positions .container {
  position: relative;
  z-index: 2;
}

/* Job Card */
.job-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(2, 44, 130, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(2, 44, 130, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(2, 44, 130, 0.2);
}

.job-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.job-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(2, 44, 130, 0.1), rgba(2, 44, 130, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.job-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.job-card:hover .job-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.job-card:hover .job-icon i {
  color: var(--secondary-color);
}

.job-info h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--dark-gray);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-meta i {
  color: var(--secondary-color);
}

.job-description {
  flex-grow: 1;
  margin-bottom: 25px;
}

.job-description h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.job-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-description ul li {
  color: var(--dark-gray);
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.job-description ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.job-footer {
  margin-top: auto;
}

.job-footer .btn {
  width: 100%;
  padding: 12px 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* General Application */
.general-application {
  background: rgba(2, 44, 130, 0.05);
  border: 2px solid rgba(2, 44, 130, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}

.general-application:hover {
  background: rgba(2, 44, 130, 0.08);
  border-color: rgba(2, 44, 130, 0.2);
}

.general-application h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.general-application p {
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .careers-hero-section .page-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .careers-hero-section {
    padding: 120px 0 80px;
  }

  .careers-hero-section .page-title {
    font-size: 2.2rem;
  }

  .careers-hero-section .page-subtitle {
    font-size: 1.05rem;
  }

  .job-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .job-meta {
    justify-content: center;
  }

  .general-application {
    padding: 30px;
    text-align: center;
  }

  .general-application .btn {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .careers-hero-section {
    padding: 100px 0 60px;
  }

  .careers-hero-section .page-title {
    font-size: 1.9rem;
  }

  .benefit-card {
    padding: 25px 20px;
  }

  .job-card {
    padding: 25px 20px;
  }

  .general-application {
    padding: 25px 20px;
  }
}
