body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

header {
  background: darkgreen;
  color: white;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
  height: 50px; /* Adjust as needed */
  width: auto;  /* Keeps aspect ratio */
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px; /* Rounded corners */
  border: 2px solid #eee; /* Optional subtle border */
  padding: 2px; /* Optional padding inside border */
  background-color: #fff; /* Optional background */
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00c897;
}

.dropdown-menu {
  display: none;
  position: absolute;
  min-width: 220px; 
  background: black;
  border-radius: 10px;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
  list-style: none;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}
.hero {
  background-color: #f6f8f6;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Side: Text Section */
.text {
  flex: 1;
  max-width: 600px;
  padding: 20px;
}

.text h1 {
  font-size: 2.5rem;
  color: #003300;
  font-weight: bold;
  margin-bottom: 20px;
}

.text p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

/* Optional text entrance animation */
.line {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1s ease-out forwards;
}

.line:nth-child(1) { animation-delay: 0.2s; }
.line:nth-child(2) { animation-delay: 0.8s; }
.line:nth-child(3) { animation-delay: 1.4s; }

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Right Side: Image Section */
.image-group {
  position: relative;
  width: 300px;
  height: 250px;
  flex-shrink: 0;
}

.image-group img {
  position: absolute;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

/* Central large image */
.image-group img:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* Bottom-left small image */
.image-group img:nth-child(1) {
  width: 100px;
  height: 100px;
  bottom: 0;
  left: 10%;
  z-index: 2;
}

/* Bottom-right small image */
.image-group img:nth-child(2) {
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 10%;
  z-index: 2;
}

.image-group img:hover {
  transform: scale(1.05);
}

/* Ticker Text */
.hero-slider {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background-color: transparent;
  padding: 10px 0;
}

.hero-slide-text {
  display: inline-block;
  padding-left: 100%;
  animation: hero-slide 25s linear infinite;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}

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


.latest-update-bar {
  display: flex;
  align-items: center;
  background-color: #5a9d82;
  color: white;
  font-weight: bold;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}

.latest-label {
  background-color: darkgreen;
  padding: 10px 15px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  border-right: 2px solid white;
}

.latest-label span {
  font-size: 1.2rem;
  transform: rotate(90deg); /* right-facing arrow */
}

.latest-slider {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.latest-text {
  display: inline-block;
  padding-left: 100%;
  animation: slide-latest 20s linear infinite;
}

.latest-slider:hover .latest-text {
  animation-play-state: paused;
}

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


@media screen and (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    }

  .text, .image-group {
    padding: 10px;
    }

  .image-group img {
    position: static;
    width: 80%;
    height: auto;
    margin: 10px auto;
      }
    }

.vacancy-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  min-height: auto;
  margin-bottom: 20px;
}

.vacancy-card {
  background: white;
  border-left: 6px solid rgb(2, 2, 18);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  width: 100%;
}

/* Animated Vacancy Title */
.vacancy-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.zoom-animate {
  animation: zoomInOut 2.5s ease-in-out infinite;
}

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

.vacancy-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.vacancy-divider .line {
  width: 60px;
  height: 2px;
  background-color: lightgreen;
  margin: 0 10px;
}

.vacancy-divider .icon {
  font-size: 20px;
}

.vacancy-message {
  font-size: 1.1rem;
  color: #333e4c;
  margin-bottom: 12px;
}

/* Button Styling */
.vacancy-button {
  background-color: darkgreen;
  color: white;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.vacancy-button:hover {
  background-color: seagreen;
}

.vacancy-note {
  color: #6c757d;
  font-style: italic;
  font-size: 0.95rem;
}

.contact-section {
  background-color: darkgreen;
  color: rgb(11, 196, 168);
  padding: 40px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

.contact-card {
  flex: 1;
  min-width: 280px;
  margin: 20px;
   background: linear-gradient(135deg, #e8fdf5, #d9f2ff); /* Soft gradient background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.contact-card h3 {
  color: #191502;
  margin-bottom: 15px;
}

.contact-card a {
  color: #00BFFF;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}


footer {
  background: linear-gradient(135deg, #e8fdf5, #d9f2ff); /* Soft gradient background */
  color: rgb(11, 196, 168);
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}





/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
  }
}
@media (max-width: 600px) {
  .logo img {
    height: 40px;
  }
}
