.body {
  background-color: #faf5f9;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  background: white !important;
  box-shadow: 20px 8px rgba(0, 0, 0, 0.04);
  padding: 10px 0px;
}

.navbar-brand img {
  max-height: 60px;
}

.navbar-brand {
  margin-right: auto;
  /* pushes nav links to the right */
  margin-left: 30px;
  /* stick to left corner */
}

.navbar-nav .nav-link {
  color: #7c3a6e !important;
  font-size: 1.2rem;
  font-weight: 500;
  margin-right: 18px;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
  color: #ff4b5c !important;
}

/* Navbar Hamburger */
.navbar-toggler {
  border: none;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #7b2cbf, #ff66b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Banner (fixed alignment + readability) */
.hero-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('./src/img/bg3.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 80vh;
  padding: 0 20px;
}

.hero-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero-banner p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Hero Section */
.career-hero {
  background: url('images/career-banner.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.6);
}

.career-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.career-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}


/* Culture / Values Section */
.culture-section {
  background-color: #fff;
  padding: 80px 0;
  text-align: center;
}

.culture-section h2 {
  font-size: 2.4rem;
  color: #7b2cbf;
  margin-bottom: 10px;
}

.culture-section p.subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.value-card {
  background: #faf5f9;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card i {
  font-size: 2.2rem;
  color: #7b2cbf;
  margin-bottom: 15px;
}

.value-card h3 {
  margin: 10px 0;
  color: #333;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
}



/* Job Section */
.job-section {
  padding: 0px 0;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.job-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-content {
  padding: 20px;
}

.job-content h3 {
  color: #7b2cbf;
  margin-bottom: 10px;
}

.job-content h3 span {
  font-size: 0.60em;     /* smaller font */
  color: #666;           /* softer gray tone */
  font-weight: normal;   /* not bold */
  margin-left: 5px;      /* small spacing after job title */
  vertical-align: middle; /* aligns nicely with text */
}

.job-content h6 {
  color: #7b2cbf;
  margin-bottom: 10px;
  font-size: small;
}

.job-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

.job-btn {
  background: linear-gradient(135deg, #7b2cbf, #ff66b2);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: capitalize;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.job-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #6a1b9a, #ff4fa3);
}


.job-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.job-buttons .job-btn {
  flex: 1;
  text-align: center;
}

.apply-form input[type="url"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.apply-form input[type="url"]:focus {
  border-color: #7b2cbf;
  outline: none;
}






/* Apply Form */
/* Apply Section */
.apply-section {
  padding: 60px 20px;
  background: #f9f9fb;
}

.apply-section h2 {
  color: #7b2cbf;
  margin-bottom: 30px;
  font-weight: 700;
}

.apply-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.apply-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form input[type="number"],
.apply-form input[type="url"],
.apply-form input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border-color 0.3s ease;
}

.apply-form input:focus {
  border-color: #7b2cbf;
  outline: none;
}

.apply-form .input-note {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: -10px;
  margin-bottom: 15px;
}

/* File input */
.classic-file {
  background-color: #fff;
}

/* Submit button */
.apply-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #7b2cbf, #ff66b2);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.apply-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #6a1b9a, #ff4fa3);
}

#applyForm {
  display: none;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  transform: translateY(20px);
}

#applyForm.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}


/* Responsive */
@media (max-width: 768px) {
  .apply-form {
    padding: 25px 15px;
  }
  .apply-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .apply-btn {
    font-size: 0.95rem;
    padding: 12px;
  }
  .apply-section {
    padding: 40px 15px;
  }
}


/* Phone number  */
.phone-wrapper {
  width: 100%;
  position: relative;
}

.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 50px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.phone-input input[type="tel"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 15px;
  /* adjust padding to fit height */
  font-size: 1rem;
  border-radius: 0 50px 50px 0;
  height: 100%;
  /* match container height */
}

.phone-input:focus-within {
  border-color: #7b2cbf;
  box-shadow: 0 6px 18px rgba(123, 44, 191, 0.25);
}

.country-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 15px;
  /* remove extra vertical padding */
  height: 100%;
  /* match container height */
  border: none;
  background: #f7f7f7;
  cursor: pointer;
  font-size: 1rem;
}

.country-btn .flag {
  font-size: 1.2rem;
}

.country-btn i {
  font-size: 0.8rem;
  color: #7b2cbf;
}

.country-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 180px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

.country-list.hidden {
  display: none;
}

.country-list li {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.country-list li:hover {
  background: #f5e6ff;
}

.phone-input input[type="tel"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 0 50px 50px 0;
  /* Right side rounded */
}

.phone-input input::placeholder {
  color: #aaa;
}


.classic-file {
  width: 100%;
  padding: 10px 15px;
  border-radius: 50px;
  border: 1px solid #ccc;
  background-color: #f7f7f7;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.classic-file:hover {
  background-color: #f0f0f0;
  border-color: #7b2cbf;
}



/* For all input size box */
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="number"],
.apply-form input[type="file"],
.apply-form select,
.apply-form .phone-input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 50px;
  /* Rounded like phone input */
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  background-color: #fff;
}

.apply-form input[type="text"]:focus,
.apply-form input[type="email"]:focus,
.apply-form input[type="number"]:focus,
.apply-form input[type="file"]:focus,
.apply-form select:focus,
.apply-form .phone-input:focus-within {
  border-color: #7b2cbf;
  box-shadow: 0 6px 18px rgba(123, 44, 191, 0.25);
}

.apply-form .custom-file-upload {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.apply-form .custom-file-upload input[type="file"] {
  width: 100%;
  height: 45px;
  opacity: 0;
  cursor: pointer;
}

.apply-form .custom-file-upload::before {
  content: 'Choose File';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 12px 15px;
  pointer-events: none;
  color: #333;
  font-weight: 500;
}



/* Total Work Experience */
/* Input fields */
.apply-form input,
.apply-form textarea,
.apply-form select {
  margin: 0;
  /* remove any default margin */
  padding: 12px;
  /* keep padding inside the input */
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  display: block;
}

/* Note under input */
.input-note {
  display: block;
  /* puts it on the next line */
  font-size: 0.85rem;
  color: #666;
  padding: 0;
  margin: 0;
  /* absolutely no gap */
  font-style: italic;
  line-height: 1;
  /* remove extra line spacing */
}


/*Footer layout */
.yellow-footer {
  margin-top: 100px;
  background-color: #9b4d81;
  background: linear-gradient(135deg, #7b2cbf #ff66b2);
  padding: 40px 5%;
  font-family: 'Poppins', sans-serif;
  color: white;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Left Section */
.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-left h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 6px 0;
  line-height: 1.5;
}

.travel-message {
  margin-top: 20px;
  font-weight: bold;
}

/* Right Section */
.footer-right {
  display: flex;
  gap: 60px;
  min-width: 300px;
  justify-content: flex-end;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  font-weight: bold;
  color: white;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.social-icons svg {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
}

.social-icons svg:hover {
  transform: scale(1.2);
}

/* Bottom Text */
.footer-description {
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}



/* Responsive Design */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;

  }

  nav ul {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 0.5rem;
  }

  .hero-banner h1 {
    font-size: 2rem;
  }

  .hero-banner p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Service Details Hidden by Default */
.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  text-align: left;
}

.service-details-content {
  padding: 1.5rem 0 0;
  border-top: 1px solid #eee;
}

.expand-checkbox {
  display: none;
  /* hide checkbox */
}

/* Expand only the clicked card */
.expand-checkbox:checked~.service-details {
  max-height: 500px;
  /* expand smoothly */
}

.expand-checkbox:checked~.expand-btn .view-more-text {
  display: none;
}

.expand-checkbox:checked~.expand-btn .view-less-text {
  display: inline;
}

.view-less-text {
  display: none;
}

.expand-btn {
  display: inline-block;
  margin-top: 1rem;
  cursor: pointer;
}

.copy {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 15px;
  padding: 5px;
  padding-top: 15px;
}