body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #003366;
  background-color: #fff;
}

header {
  background: #0b3d91;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  height: 50px;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #f4f4f4;
}

.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  background: url("../images/dna-hero.png") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.8em;
  margin: 10px 0;
}

.hero-text h3 {
  font-size: 1.4em;
  margin: 10px 0;
}

.hero-text p {
  font-size: 1em;
  margin: 8px 0;
}

.divider {
  overflow: hidden;
  line-height: 0;
}

.news {
  padding: 20px;
  background: #f4f4f4;
  cursor: pointer;
}

.news-card {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  transition: box-shadow 0.3s;
}

.news-card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.arrow {
  font-size: 1.2em;
  color: #0b3d91;
}

.medical-news {
  padding: 20px;
  background: #e0f7fa;
}

.news-slider {
  overflow: hidden;
  white-space: nowrap;
  animation: slide 12s linear infinite;
}

.news-slider .slide {
  display: inline-block;
  margin-right: 50px;
  font-size: 1.1em;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 20px;
  }
  .hero-text h1 {
    font-size: 1.8em;
  }
  .hero-text h2 {
    font-size: 1.4em;
  }
  .hero-text h3 {
    font-size: 1.2em;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: #0b3d91;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    z-index: 99;
  }

  nav ul.show {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }
}

/* ABOUT PAGE */

.about-hero {
  background: url("../images/dna-banner.jpg") center center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.4);
  z-index:1;
}

.about-hero h1, .about-hero p {
  position: relative;
  z-index:2;
}

/* Timeline */
.timeline {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  position: relative;
}

.timeline-item {
  background: rgba(255,255,255,0.9);
  color: #003366;
  margin: 10px auto;
  padding: 15px;
  border-left: 3px solid #0b3d91;
  max-width: 600px;
  text-align: left;
  border-radius: 4px;
}

.timeline-item h3 {
  color: #0b3d91;
}

/* Values Section */
.values-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.values-cards .card {
  background: rgba(255,255,255,0.95);
  color: #003366;
  padding: 20px;
  width: 250px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Key Figures */
.key-figures {
  text-align: center;
  padding: 30px 10px;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.key-figures .figure {
  background: rgba(255,255,255,0.95);
  color: #003366;
  padding: 15px;
  width: 200px;
  border-radius: 8px;
  font-size: 1.2em;
}

/* DNA Divider */
.dna-divider {
  background: url("../images/dna-divider.png") repeat-x center;
  height: 60px;
  background-size: auto 100%;
}

/* Add molecule-divider.png to the bottom of Values & History */
.values-history {
  background: url("../images/dna-hero.png") center/cover no-repeat;
  position: relative;
  color: #fff;
  padding: 60px 20px;
}

.values-history::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.values-history::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: url("../images/molecule-divider.png") repeat-x center;
  background-size: auto 100%;
  z-index: 2;
}

/* ensure the content stays above overlays */
.values-history > * {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 20px auto;
  text-align: center;
}
.careers-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.careers-hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.careers-hero .hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
}

.careers-hero h1 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.culture {
  text-align: center;
  padding: 40px 20px;
  background: #e0f7fa url("../images/dna-divider.png") repeat-x bottom;
}

.culture-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.culture-cards .card {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  width: 220px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.open-positions {
  text-align: center;
  padding: 40px 20px;
  background: #f4f4f4 url("../images/dna-divider.png") repeat-x bottom;
}

.open-positions .cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #0b3d91;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.open-positions .cta-btn:hover {
  background: #003366;
}

@media (max-width: 768px) {
  .careers-hero {
    height: 250px;
  }
  .careers-hero .hero-overlay {
    padding: 10px;
  }
  .culture-cards {
    flex-direction: column;
  }
}
.job-hero {
  background: url("../images/dna-hero.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.job-hero::after {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  z-index:1;
}

.job-hero h1, .job-hero p {
  position: relative;
  z-index:2;
}

.job-listings {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.job-listings table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.job-listings th, .job-listings td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.job-listings th {
  background-color: #0b3d91;
  color: #fff;
}

.apply-btn {
  display: inline-block;
  padding: 6px 12px;
  background-color: #0b3d91;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9em;
}

.apply-btn:hover {
  background-color: #062a6e;
}

.application-hero {
  background: url("../images/dna-banner.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.application-hero::after {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  z-index:1;
}

.application-hero h1, .application-hero p {
  position: relative;
  z-index:2;
}

.application-form-section {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.application-form-section form {
  display: flex;
  flex-direction: column;
}

.application-form-section label {
  margin: 10px 0 5px;
  font-weight: bold;
}

.application-form-section input,
.application-form-section select,
.application-form-section textarea {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.application-form-section .apply-btn {
  margin-top: 20px;
  background: #0b3d91;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
}

.application-form-section .apply-btn:hover {
  background: #062a6e;
}

.onboarding-hero {
  background: url("../images/dna-banner.jpg") center/cover no-repeat;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  position: relative;
}

.onboarding-hero::after {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  z-index:1;
}

.onboarding-hero h1 {
  position: relative;
  z-index:2;
  font-size: 2.5em;
}

.onboarding-info {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.onboarding-info .info-box {
  background: #f4f8fb;
  padding: 20px;
  border-left: 5px solid #0b3d91;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  text-align: left;
}

.verify-btn-container {
  margin: 30px 0;
}

.verify-btn {
  background: #0b3d91;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.verify-btn:hover {
  background: #062d6a;
}


.medical-news {
  padding: 1rem;
  overflow-x: auto;
}

.news-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  scroll-behavior: smooth;
  padding: 1rem 0;
  max-width: 100%;
  box-sizing: border-box;
}

.news-slider::-webkit-scrollbar {
  height: 6px;
}

.news-slider::-webkit-scrollbar-thumb {
  background: #007BFF;
  border-radius: 3px;
}

.medical-news .slide {
  min-width: 250px;
  max-width: 300px;
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 5px;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  box-sizing: border-box;
  text-align: center;
}

.about-hero {
  background: url('../images/about-hero.jpg') center/cover no-repeat;
  text-align: center;
  color: #fff;
  padding: 4rem 1rem;
}

.history {
  background: url('../images/history-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 4rem 1rem;
}

.values {
  background: url('../images/values-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 4rem 1rem;
}

.hero {
  background: url('../images/home-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
}

.hero .hero-text {
  position: relative;
  z-index: 1;
}
#main-nav {
  display: none;
}

#main-nav.open {
  display: block;
}
/* HERO BACKGROUND */
.hero {
  background: url('../images/home-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.hero .hero-text {
  position: relative;
  z-index: 1;
}

/* NAVIGATION */
#menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

#main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}

#main-nav {
  display: block;
}

@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  #main-nav {
    display: none;
  }

  #main-nav.open {
    display: block;
  }

  #main-nav ul {
    flex-direction: column;
    background: #fff;
    padding: 1rem;
  }
}
.key-figures {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
}

.figure {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.figure .icon {
  margin-bottom: 1rem;
  animation: float 2s infinite ease-in-out;
}

.figure .icon img {
  width: 50px;
  height: 50px;
}

.counter {
  font-size: 2rem;
  font-weight: bold;
  color: #00796b;
  display: block;
}

.figure p {
  margin-top: 0.5rem;
  color: #555;
  font-size: 0.9rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.history, .values {
  min-height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}
.history {
  background: url('../images/history-bg.jpg') center/cover no-repeat;
  padding: 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  min-height: 300px;
}

.history::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  z-index:0;
}

.history > *, .history .timeline {
  position: relative;
  z-index:1;
}

.values {
  background: url('../images/values-bg.jpg') center/cover no-repeat;
  padding: 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  min-height: 300px;
}

.values::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  z-index:0;
}

.values > *, .values .values-cards, .values .key-figures {
  position: relative;
  z-index:1;
}
.culture {
  background: url('../images/culture-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
  min-height: 300px;
}

.culture::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.culture > * {
  position: relative;
  z-index: 1;
}

.open-positions {
  background: url('../images/open-positions-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
  min-height: 300px;
}

.open-positions::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.open-positions > * {
  position: relative;
  z-index: 1;
}
.culture .card .icon {
  font-size: 2.5rem;
  color: #00796b;
  margin-bottom: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cta-btn i {
  margin-right: 0.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.our-culture .card .icon {
  font-size: 3rem;
  color: #00796b;
  margin-bottom: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.open-jobs .cta-btn i {
  margin-right: 0.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.our-culture {
  background: url('../images/culture-bg.jpg') center/cover no-repeat;
  /* other styles… */
}

.open-jobs {
  background: url('../images/open-positions-bg.jpg') center/cover no-repeat;
  /* other styles… */
}
.job-hero {
  background: url('../images/job-hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
  min-height: 300px;
}

.job-hero::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0, 0, 0, 0.5); /* optional dark overlay */
  z-index: 0;
}

.job-hero > * {
  position: relative;
  z-index: 1;
}
.onboarding {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.onboarding-container {
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.onboarding-container h1 {
  color: #00796b;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.onboarding-container p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.verify-btn {
  background: #00796b;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.verify-btn i {
  margin-right: 0.5rem;
}

.verify-btn:hover {
  background: #004d40;
}
.reference-code {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.reference-container {
  background: #fff;
  max-width: 400px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.reference-container input {
  padding: 0.5rem;
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.reference-container button {
  background: #00796b;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
}

.reference-container button:hover {
  background: #004d40;
}
/* default: hide nav on small screens */
@media (max-width: 768px) {
  #main-nav {
    display: none;
    position: absolute;
    top: 60px; /* adjust based on your header */
    right: 0;
    width: 200px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 10;
  }

  #main-nav.open {
    display: block;
  }

  #main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  #main-nav li {
    border-bottom: 1px solid #eee;
  }

  #main-nav li a {
    display: block;
    padding: 1rem;
    color: #00796b;
    text-decoration: none;
  }

  #main-nav li a:hover {
    background: #e0f7fa;
  }

  #menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #00796b;
    cursor: pointer;
  }
}

/* hide toggle button on large screens */
@media (min-width: 769px) {
  #menu-toggle {
    display: none;
  }

  #main-nav {
    display: block !important;
  }

  #main-nav ul {
    flex-direction: row;
    gap: 1rem;
  }
}
/* ------------------------------
   MOBILE OPTIMIZATION
   ------------------------------ */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  header {
    position: relative;
    padding: 0.5rem 1rem;
  }

  .logo img {
    max-width: 150px;
    height: auto;
  }

  #menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #00796b;
    cursor: pointer;
    z-index: 20;
  }

  #main-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 10;
    border-radius: 4px;
  }

  #main-nav.open {
    display: block;
  }

  #main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  #main-nav li {
    border-bottom: 1px solid #eee;
  }

  #main-nav li a {
    display: block;
    padding: 1rem;
    color: #00796b;
    text-decoration: none;
  }

  #main-nav li a:hover {
    background: #e0f7fa;
  }

  .hero-text {
    padding: 1rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }

  .news, .medical-news {
    padding: 1rem;
  }

  .news-card, .medical-news > div {
    margin: 0 auto;
    text-align: left;
  }

  .medical-news > div {
    display: flex;
    overflow-x: auto;
  }

  footer {
    padding: 1rem;
    font-size: 14px;
    text-align: center;
  }
}
.application-form-container {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  background-color: #f9f9f9;
}

.application-form-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 600px;
  width: 100%;
}

.application-form-card h2 {
  text-align: center;
  color: #00796b;
  margin-bottom: 0.5rem;
}

.application-form-card p {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00796b;
  outline: none;
  box-shadow: 0 0 4px rgba(0, 121, 107, 0.2);
}

.application-form button {
  background: #00796b;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.application-form button:hover {
  background: #005f56;
}

/* mobile optimization */
@media (max-width: 480px) {
  .application-form-card {
    padding: 1rem;
  }
}
/* OUR HISTORY */
.history {
  background: #f9f9f9;
  padding: 3rem 1rem;
}
.history-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.history-container h2 {
  color: #00796b;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.history-intro {
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.timeline {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #00796b;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.timeline-item {
  margin-bottom: 2rem;
}
.timeline-item h3 {
  color: #00796b;
  margin: 0;
}
.timeline-item p {
  margin: 0;
  color: #555;
}

/* OUR VALUES */
.values {
  background: #fff;
  padding: 3rem 1rem;
}
.values-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.values-container h2 {
  color: #00796b;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.values-intro {
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.values-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.value-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex: 1 1 250px;
  max-width: 250px;
  transition: transform 0.3s ease;
  text-align: center;
}
.value-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}
.value-card h3 {
  color: #00796b;
}
.value-card p {
  color: #555;
}
/* General Styles */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  background-color: #fff;
}

h1, h2, h3 {
  color: #2a6d98;
  margin-top: 0;
}

p {
  margin: 0.5rem 0;
}

a {
  color: #2a6d98;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 50px;
}

#main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

#main-nav li {
  margin-left: 20px;
}

#main-nav a {
  color: #333;
  font-weight: 500;
}

#main-nav a.active {
  color: #2a6d98;
  font-weight: bold;
}

/* Hero Section */
.about-hero {
  color: white;
  text-align: center;
  padding: 100px 20px;
  background-size: cover;
  background-position: center;
}

/* History */
.history {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.timeline-item {
  background: #f4f6f8;
  padding: 20px;
  border-left: 4px solid #2a6d98;
  border-radius: 4px;
}

/* Values */
.values {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.values-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.value-card {
  flex: 1 1 250px;
  text-align: center;
  padding: 20px;
  background: #f4f6f8;
  border-radius: 8px;
}

.value-card h3 {
  margin: 10px 0;
}

.value-card p {
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: #f9f9f9;
  color: #000;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

footer .contact p {
  margin: 0.2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  #main-nav ul {
    flex-direction: column;
  }
  #main-nav li {
    margin: 10px 0;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .values-cards {
    flex-direction: column;
  }
}
.timeline-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.value-card lord-icon {
  transition: transform 0.3s ease;
}

.value-card:hover lord-icon {
  transform: scale(1.1);
}
/* Careers Page Enhancements */

/* Culture cards */
.culture-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.card {
  background: #f4f6f8;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 220px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.card lord-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

/* CTA button for Open Positions */
.open-jobs .cta-btn {
  background: #2a6d98;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.open-jobs .cta-btn:hover {
  background: #1e4f73;
}

/* Careers Video Hero adjustments */
.careers-hero video {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  max-width: 90%;
  padding: 10px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.hero-overlay h1 {
  font-size: 1.8rem;
}
.hero-overlay p {
  font-size: 1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .culture-cards {
    flex-direction: column;
  }
  .hero-overlay h1 {
    font-size: 1.4rem;
  }
  .hero-overlay p {
    font-size: 0.9rem;
  }
}
/* Careers Page Enhancements */

/* Culture cards */
.culture-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.card {
  background: #f4f6f8;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 220px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.card lord-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

/* CTA button for Open Positions */
.open-jobs .cta-btn {
  background: #2a6d98;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.open-jobs .cta-btn:hover {
  background: #1e4f73;
}

/* Careers Video Hero adjustments */
.careers-hero {
  position: relative;
}
.careers-hero video {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 90%;
  padding: 10px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.hero-overlay h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.hero-overlay p {
  font-size: 1.1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .culture-cards {
    flex-direction: column;
  }
  .hero-overlay h1 {
    font-size: 1.6rem;
  }
  .hero-overlay p {
    font-size: 0.95rem;
  }
}
.careers-hero {
  position: relative;
  width: 100%;
  height: 400px; /* fixed height to ensure there's space */
  overflow: hidden;
}

.careers-hero video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 90%;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  padding: 0 1rem;
}

.hero-overlay h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .careers-hero {
    height: 250px;
  }
  .hero-overlay h1 {
    font-size: 1.4rem;
  }
  .hero-overlay p {
    font-size: 0.9rem;
  }
}

/* --- Careers Page Enhancements --- */

.careers-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.careers-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  padding: 1rem;
}

.hero-overlay h1 {
  font-size: 2rem;
  margin: 0 0 1rem;
}

.hero-overlay p {
  font-size: 1.1rem;
  margin: 0;
}

/* Culture cards */
.culture-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.card {
  background: #f4f6f8;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 220px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card lord-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

/* Open Positions CTA button */
.open-jobs .cta-btn {
  background: #2a6d98;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.open-jobs .cta-btn:hover {
  background: #1e4f73;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .careers-hero {
    height: 250px;
  }

  .hero-overlay h1 {
    font-size: 1.4rem;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .culture-cards {
    flex-direction: column;
  }
}
footer {
  background-color: #0b3d91;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

button {
  animation: pulse 1.5s ease-in-out 1;
}

button:hover {
  animation: bounce 0.3s ease;
}

@keyframes bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
