.hero-section {
  position: relative;
  height: 80vh;
  background-image: url("/assets/images/hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.career-section {
  position: relative;
  height: 100vh;
  background-image: url("/assets/images/careerhero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #132530c4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  color: #fff;
}
.career-hero-content {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.4rem;
  line-height: 1.7;
  opacity: 0.95;
  text-shadow: 0px 0px 5px #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.stats-bar {
  background-color: #e31e24; /* strong red */
  padding: 40px 0;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  color: #fff;
}

.stat-item h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item h2 {
    font-size: 2rem;
  }
}

.hiring-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.hiring-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 50px;
}

/* Image */
.hiring-image img {
  max-width: 90%;
  height: auto;
}

/* Content */
.hiring-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.hiring-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
  max-width: 520px;
}

/* Button */
.hiring-btn {
  background-color: #e31e24;
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hiring-btn:hover {
  background-color: #c8181d;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .hiring-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hiring-content p {
    margin: auto auto 24px;
  }
}

/* Add this to your CSS file */
.brand-card {
  border: 1px solid transparent;
}

.brand-card:hover {
  border: 1px solid #cc010c;
}

.blog-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-section .row a {
  display: inline-flex;
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  0% {
    left: -150px;
  }
  100% {
    left: 100%;
  }
}

/* =========================
   Footer Base
========================= */
.footer {
  letter-spacing: 0.02em;
  background: rgb(19, 37, 48);
  color: #a8a8a8;
  font-size: 14px;
}

.footer a {
  color: #a8a8a8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

/* =========================
   Footer Middle
========================= */
.footer-middle {
  padding: 5rem 0 2.5rem;
}

.footer .widget-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer .widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer .widget li {
  margin-bottom: 0.6rem;
  /* line-height: 1.6; */
  font-size: 12px;
  color: #a8a8a8;
}

/* =========================
   Contact Info
========================= */
.footer .contact-info {
  margin-bottom: 2.5rem;
}

.footer .contact-info li {
  margin-bottom: 0.9rem;
}

.footer .contact-info-label {
  display: block;
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================
   Social Icons
========================= */
.footer .social-icons {
  display: flex;
  align-items: center;
  margin-top: 1.2rem;
}

.footer .social-icon {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
  border-radius: 50%;
  border: 1px solid #313438;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  background: transparent;
  transition: all 0.3s ease;
}

.footer .social-icon:hover {
  background: #00bcd4;
  border-color: #00bcd4;
  transform: translateY(-3px);
}

.footer .social-icon i {
  pointer-events: none;
}

/* =========================
   Footer Bottom
========================= */
.footer-bottom {
  padding: 1.8rem 0;
  border-top: 1px solid #313438;
}

.footer-copyright {
  color: #777;
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-middle {
    padding: 4rem 0 2rem;
  }

  .footer .social-icons {
    justify-content: center;
  }

  .footer-bottom img {
    display: none !important;
  }
}

.employee-card {
  width: 275px;
  /* height: 360px; */
  background-image: var(--bg-out);
  background-size: cover;
  background-position: center;
  transition: background-image 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Hover background */
.employee-card:hover {
  background-image: var(--bg-in);
}

/* Employee Image */
.employee-image {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 30px;
}

.employee-image img {
  height: auto;
  transition: transform 0.4s ease;
}

/* Image lift */
.employee-card:hover .employee-image img {
  transform: translateY(-10px) scale(1.05);
}

/* INFO PANEL */
.employee-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  text-align: center;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* SHOW INFO ON HOVER */
.employee-card:hover .employee-info {
  opacity: 1;
  transform: translateY(0);
}

.employee-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.employee-info p {
  font-size: 0.8rem;
  opacity: 0.9;
}
/* .team-heading h2 {
  font-weight: 700;
}
.team-heading p {
  width: 60%;
  font-size: 16px;
} */

/* Add to your CSS file */
.team-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.team-heading p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-heading h2 {
    font-size: 2rem;
  }

  .team-heading p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .team-heading h2 {
    text-align: center;
    font-size: 1.75rem;
  }

  .team-heading p {
    font-size: 0.95rem;
  }
}

.career-text {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: #d6dde2;
  letter-spacing: 1px;
}

.career-divider {
  border-color: rgba(255, 255, 255, 0.2);
}

.career-job-title {
  color: #e31e24;
  position: relative;
  font-weight: 600;
  margin-bottom: 10px;
  content: "";
}
/* .career-job-title::after {
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  background-color: #fff;
  margin: 10px auto 0;
} */
.career-job-title:hover {
  color: #fff;
  transition: .5s;
  cursor: pointer;
  text-decoration: underline;
}
.career-section-b2b {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.career-section-b2b::after,
.career-section-b2b::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-top: 50px;
  margin-bottom: 50px;
}

.career-job-desc {
  font-size: 0.95rem;
  color: #d6dde2;
}

.see-all-jobs {
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.see-all-jobs:hover {
  color: #e31e24;
}

.feature-boxes-container {
  background: #f6f7f9;
  /* padding-top: 4.8rem; */
  padding-bottom: 0;
  /* margin-top: -2px; */
}
.feature-boxes-container .feature-box {
  margin-bottom: 4.5rem;
}
.feature-boxes-container .feature-box .feature-box-icon {
  background: transparent;
  border-style: solid;
  border-color: #dddddd;
  border-width: 2px;
  width: 76px;
  height: 76px;
  line-height: 76px;
  border-radius: 40px;
  font-size: 40px;
  display: flex;
  margin-bottom: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
}
.feature-boxes-container .feature-box .feature-box-icon i {
  font-size: 40px;
  margin-bottom: 0;
  margin-top: -2px;
}
.feature-boxes-container .feature-box h3 {
  margin-bottom: 0.5rem;
}
.feature-boxes-container .feature-box h5 {
  color: #555;
  font-weight: 500;
  margin-bottom: 1.3rem;
}
.feature-boxes-container .feature-box p {
  font-size: 1.3rem;
}

.nav-link-custom {
  color: #132531;
  text-decoration: none;
  font-size: 14px;
}

.nav-link-custom:hover {
  color: red;
}

.nav-link-custom-under {
  color: #132531;
}

.nav-link-custom-under:hover {
  color: red;
  text-decoration: underline;
}

.category-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.category-image {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.category-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.category-content h6 {
  font-size: 15px;
  font-weight: 600;
  color: #032f4a;
  margin-bottom: 4px;
}

.category-count {
  font-size: 12px;
  color: #999;
}

.card-effect {
  border: 1px solid transparent !important;
  transition: 0.5s ease;
}

.card-effect:hover {
  border: 1px solid #cc010c !important;
}

/* Skeleton base */
.skeleton-card {
  background-color: #f5f5f5;
  height: 400px;
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}

.skeleton-img,
.skeleton-line {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 37%, #e0e0e0 63%);
  background-size: 1000px 100%;
  animation: shimmer 1.5s infinite linear;
}

/* Sizes */
.skeleton-img {
  height: 120px;
  width: 100%;
}

.skeleton-line {
  height: 14px;
  margin-bottom: 10px;
}

.skeleton-line.short {
  width: 60%;
  margin: 0 auto 15px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #e31e24 !important;
}

.bb-link:hover {
  transition: 0.3s;
  color: #c8181d !important;
}
