
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
  color: #111;
}

/* TOP BAR */
/* =========================
   TOP BAR — DESKTOP
========================= */
.top-bar {
  background-color: #0f7d39;
  color: #ffffff;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  font-size: 14px;
}

/* LEFT CONTENT */
.top-left {
  display: grid;
  grid-auto-flow: column;
  gap: 18px;
  align-items: center;
}

/* RIGHT CONTENT */
.top-right {
  justify-self: end;
  white-space: nowrap;
  font-weight: bolder;
}
.whatsapp-float {
  position: fixed;
  bottom: 55px;
  right: 75px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  z-index: 2000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* =========================
   MOBILE & TABLET
========================= */
@media (max-width: 768px) {
  .top-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 8px;
  }

  /* phone + email stay in ONE ROW */
  .top-left {
    grid-auto-flow: column;
    justify-content: center;
    justify-items: center;
    gap: 14px;
  }

  .top-right {
    justify-self: center;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
     .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 24px;
    bottom: 18px;
    right: 18px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .top-bar {
    padding: 10px 12px;
    font-size: 12px;
  }

  .top-left span {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 6px;
  }

  .top-right {
    font-size: 11px;
  }
}

/* =========================
   VERY SMALL DEVICES
========================= */
@media (max-width: 360px) {
  .top-bar {
    font-size: 10px;
  }
}

/* =========================
   MOBILE (≤ 600px)
========================= */
@media (max-width: 600px) {
  .top-bar {
    padding: 10px 12px;
    font-size: 12px;
    grid-template-columns: 1fr; /* single column */
    row-gap: 8px;
  }

  .top-left {
    grid-template-columns: 1fr; /* stack phone & email vertically */
    justify-items: center;
    gap: 6px;
  }

  .top-right {
    font-size: 11px;
    justify-self: center;
  }
}

/* =========================
   VERY SMALL DEVICES (≤ 360px)
========================= */
@media (max-width: 360px) {
  .top-bar {
    font-size: 8px;
    padding: 8px;
    gap: 8px;
  }

  .top-left span {
    font-size: 8px;
  }

  .top-right {
    font-size: 8px;
  }
}
/* HEADER */
.header {
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img {
   width: 70px;
   height: 70px;
   margin-left: 5px;
  }

.logo-title {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, #E1B352, #7c5a0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-subtitle {
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(90deg, #b39148, #5b5b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.navbar a:not(.btn):hover {
  color: #0f7d39;
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fafafa;
  min-width: 180px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
}
.dropdown-menu a {
  padding: 10px 14px;
  white-space: nowrap;
}
.nav-dropdown.active .dropdown-menu {
  display: flex;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn,
.btn:visited,
.btn:active {
  color: #fff;
}

.btn-dark {
  background: #000;

}

.btn-green {
  background: #0f7d39;
}

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  color: #333;
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}



/* MOBILE MENU */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-icon span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 4px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .menu-icon { display: flex; }
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    display: none;
    padding: 15px;
  }
  .navbar.active { display: flex; }
  .nav-dropdown.active .dropdown-menu {
    position: static;
    box-shadow: none;
  }
}

/* logo responsive */
/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 992px) {
  .logo img {
    width: 75px;
  }

  .logo-title {
    font-size: 23px;
  }

  .logo-subtitle {
    font-size: 10px;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 400px) {
  .logo {
    gap: 4px;
  }

   .logo img {
    width: 50px;
    height: 45px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    font-size: 8px;
  }
}
/* header and top bar logo design end */

/* work aborad section design */
/* WORK ABROAD SECTION */
/* WORK ABROAD – COMPACT VERSION */
.work-abroad-section {
  background-color: #0f7d39;
  padding: 45px 15px; /* reduced */
  font-family: "Segoe UI", sans-serif;
}

.work-abroad-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 420px; /* tighter form */
  gap: 30px;
  align-items: center;
}

/* LEFT CONTENT */
.work-abroad-left {
  color: #ffffff;
  animation: workFadeLeft 0.8s ease forwards;
  -webkit-animation: workFadeLeft 0.8s ease forwards;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work-abroad-left h1 {
  font-size:44px; /* reduced */
  margin-bottom: 12px;
}

.work-abroad-desc {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.work-abroad-list {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}

.work-abroad-list li {
  font-size: 20px;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.work-abroad-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
}

.work-abroad-cta {
  font-size: 18px;
  font-weight: 600;
}

/* FORM */
.work-abroad-form-box {
  background: #ffffff;
  padding: 20px;
  /*reduced*/border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  animation: workFadeRight 0.8s ease forwards;
  -webkit-animation: workFadeRight 0.8s ease forwards;
}

.work-abroad-form-box h2 {
  font-size: 20px;
  text-align: center;
  color: #0f7d39;
  margin-bottom: 14px;
}

.work-abroad-form input,
.work-abroad-form select {
  width: 100%;
  padding: 9px;
  /*smallerinputs*/margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.work-abroad-form button {
  width: 100%;
  padding: 10px;
  background-color: #0f7d39;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.file-label {
  font-size: 11px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #333;
}
.work-abroad-form button:hover {
  background-color: #0c6630;
}

.work-abroad-status {
  margin-top: 8px;
  font-size: 13px;
  text-align: center;
}
/* MESSAGE BOX */
.work-abroad-message {
  width: 100%;
  height: 80px;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  resize: none;
}

.work-abroad-message:focus {
  outline: none;
  border-color: #0f7d39;
}

/* ANIMATIONS */
@keyframes workFadeLeft {
  from { transform: translateX(-40px); opacity: 0; -webkit-transform: translateX(-40px); -moz-transform: translateX(-40px); -ms-transform: translateX(-40px); -o-transform: translateX(-40px); }
  to { transform: translateX(0); opacity: 1; -webkit-transform: translateX(0); -moz-transform: translateX(0); -ms-transform: translateX(0); -o-transform: translateX(0); }
}

@keyframes workFadeRight {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .work-abroad-container {
    grid-template-columns: 1fr;
  }

  .work-abroad-left h1 {
    font-size: 28px;
  }
}

/* work popup*/
.work-popup-box button {
  background: linear-gradient(135deg, #0f7d39, #16a34a);
  color: #ffffff;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(15, 125, 57, 0.3);
  margin-top: 5px;
}

/* Hover Effect */
.work-popup-box button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 125, 57, 0.45);
}

/* Click Effect */
.work-popup-box button:active {
  transform: scale(0.96);
  box-shadow: 0 4px 10px rgba(15, 125, 57, 0.3);
}
.work-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 999;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.work-popup.active {
  visibility: visible;
  opacity: 1;
}

.work-popup-box {
  background: #fff;
  width: 330px;
  padding: 45px 30px 30px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.work-check {
  width: 65px;
  height: 65px;
  background: #0f7d39;
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform:;
  -moz-transform:;
  -ms-transform:;
  -o-transform:;
}
/* work abroad section end */

/* latesi vacancy section design  */

/* Section */
.vacancy-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header {
  margin-bottom: 40px;
  position: relative;
}

.section-header h2 {
  color: #0f7d39;
  font-size: 32px;
}

.section-header p {
  color: #555;
  margin-top: 6px;
}

.view-link {
  position: absolute;
  right: 0;
  top: 10px;
  color: #0f7d39;
  text-decoration: none;
  font-weight: 600;
}

/* Grid */
.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Card */
.vacancy-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.vacancy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.vacancy-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* Content */
.card-content {
  padding: 18px;
}

.card-content h3 {
  color: #0f7d39;
  margin-bottom: 12px;
  font-size: 18px;
}

.card-content ul {
  list-style: none;
  font-size: 14px;
  color: #444;
}

.card-content ul li {
  margin-bottom: 6px;
}

.card-content button {
  margin-top: 14px;
  width: 100%;
  padding: 10px;
  background: #0f7d39;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.card-content button:hover {
  background: #0c6330;
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* footer section */
.footer {
  background-color: #0f7d39;
  color: #fff;
  padding-top: 60px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 30px;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}
.footer-col ul li a{
  list-style: none;
  text-decoration: none;
  color: #fff;
}

.footer-col ul li span {
  font-weight: bold;
}

.footer-col ul li:hover {
  opacity: 0.8;
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.social-icons a:hover {
  background: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* copyright section design  */
/* ===============================
   COPYRIGHT SECTION
================================= */
#copyright-section {
  background-color: #0d6f32; /* slightly darker than footer */
  padding: 15px 20px;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.copyright-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.copyright-left {
  text-align: left;
  font-size: 14px;
}

.copyright-center {
  text-align: center;
}

.copyright-center img {
  height: 60px;
  width: 100px;
  border-radius: 6px;
  background: #fff;
  padding: 5px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.copyright-right {
  text-align: right;
  font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .copyright-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .copyright-left,
  .copyright-right {
    text-align: center;
  }

  .copyright-center img {
    height: 40px;
    width: auto;
  }
}

/* copyright section design end */
/* footer section end */