html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

:root {
  --primary-color: #00BFFF;
}

/* Common hover effect */
.hover-card {
  transition: all 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Common button style */
.btn-primary-custom {
  background-color: var(--primary-color);
  border: none;
  color: white;
}

.btn-primary-custom:hover {
  background-color: #009acd;
}

/* NAVBAR */
.navbar {
  padding: 12px 0;
}

.logo-circle {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s;
}

.logo-circle:hover {
  transform: rotate(10deg) scale(1.05);
}

/* Menu links */
.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Underline hover effect */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav-link:hover::after,
.active-link::after {
  width: 100%;
}

/* Order button */
.order-btn {
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.order-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 191, 255, 0.3);
}

/* Space for fixed navbar */
body {
  padding-top: 80px;
}

/* Logo Image */
.logo-img {
  height: 45px;
  width: auto;
  transition: 0.3s ease;
}

/* Logo hover animation */
.logo-img:hover {
  transform: scale(1.1) rotate(-2deg);
}

/* Navbar brand text */
.navbar-brand strong {
  font-size: 18px;
  color: #000;
}

.navbar-brand small {
  font-size: 12px;
}

/* CAREER HERO SECTION */

.career-hero {
  background: linear-gradient(90deg, #009fd9, #00bfff);
  padding: 65px 20px 90px;
  color: white;
  text-align: center;
}

.career-hero h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
}

.career-hero h1 span {
  color: #eaf9ff;
}

.career-hero p {
  font-size: 25px;
  max-width: 750px;
  margin: auto;
  color: #e6f8ff;
}

@media (max-width:768px) {

  .career-hero {
    padding: 100px 20px 70px;
  }

  .career-hero h1 {
    font-size: 38px;
  }

  .career-hero p {
    font-size: 18px;
  }

}

/* why work at atlance */

.career-benefits {
  padding: 80px 0;
  background: #f8fbff;
}

/* TITLE */
.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #0a1f44;
}

.section-title span {
  color: #00a6d6;
}

/* SUBTITLE */
.section-subtitle {
  color: #6c757d;
  margin-top: 10px;
}

/* CARD */
.career-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  height: 100%;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

/* HOVER EFFECT (IMPORTANT) */
.career-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ICON BOX */
.icon-box {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #00a6d6, #0077b6);
  border-radius: 15px;

  font-size: 26px;
  color: white;

  transition: all 0.3s ease;
}

/* ICON HOVER */
.career-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

/* TEXT */
.career-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0a1f44;
}

.career-card p {
  font-size: 14px;
  color: #6c757d;
}

/* POSITIONS */

.jobs-section {
  padding: 80px 0;
  background: #f8fbff;
}

/* CARD */
.job-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  margin-top: 30px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* HEADER */
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* TITLE */
.job-header h4 {
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 10px;
}

/* TAGS */
.job-tags {
  display: flex;
  gap: 10px;
}

.tag {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  background: #e9ecef;
  color: #333;
}

.tag.primary {
  background: #e0f7ff;
  color: #00a6d6;
}

/* APPLY BUTTON */
.apply-btn {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.apply-btn:hover {
  background: #0077b6;
}

/* DESCRIPTION */
.job-desc {
  margin-top: 15px;
  color: #555;
}

/* LIST */
.job-card ul {
  padding-left: 18px;
  margin-top: 10px;
}

.job-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* HEADINGS */
.job-card h6 {
  font-weight: 600;
  margin-top: 15px;
  color: #0a1f44;
}


/* apply form */

.apply-section {
  padding: 80px 0;
  background: #f8fbfd;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
}

.section-title span {
  color: #1caad9;
}

.section-title p {
  color: #6c757d;
  margin-top: 10px;
}

/* Card */
.apply-card {
  margin-top: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.apply-card:hover {
  transform: translateY(-5px);
}

/* Inputs */
.apply-card label {
  font-weight: 600;
  margin-bottom: 6px;
}

.apply-card .form-control {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.apply-card .form-control:focus {
  border-color: #1caad9;
  box-shadow: 0 0 0 0.2rem rgba(28, 170, 217, 0.15);
}

/* File Upload */
.file-upload {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  cursor: pointer;
}

.file-upload input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload span {
  background: #1caad9;
  color: #fff;
  padding: 6px 15px;
  border-radius: 6px;
  margin-right: 10px;
}

/* Button */
.apply-btn {
  background: linear-gradient(135deg, #1caad9, #0d8ecf);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(28, 170, 217, 0.3);
}

/* Floating call */
/* Floating call */
/* WHATSAPP FLOATING BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  /* WhatsApp Green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover Effect */
.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  background: #1ebe5d;
}

/* Notification Badge */
.wa-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 14px;
  height: 14px;
  background: red;
  border-radius: 50%;
  border: 2px solid white;
  animation: ping 1.5s infinite;
}

/* Ping Animation */
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  70% {
    transform: scale(1.6);
    opacity: 0.4;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}



/* FOOTER */
.footer-section {
  background: #122f43;
  color: #ffffff;
  padding: 70px 0 30px;
  margin-bottom: 0 !important;
  padding-bottom: 30px;
  /* keep nice spacing */

}

.footer-section h3 {
  font-size: 28px;
  font-weight: 700;
}

.footer-section h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 17px;
  color: #cfe9ff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  font-size: 17px;
  margin-bottom: 8px;
  color: #cfe9ff;
}

.footer-section ul li a {
  color: #cfe9ff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #00bfff;
}

.footer-bottom {
  font-size: 16px;
  color: #cfe9ff;
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

.footer-section hr {
  margin-bottom: 10px;
}