.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 90%;
  height: 90px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo img {
  height: 80px;
}
.navbar-content {
  display: flex;
  align-items: center;
  gap: 5px;
}

.buttons-container {
  position: absolute;
  right: 10%;
  top: 10%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center; /* Center align if needed */
  margin-top: 20px;
}

.buttons-container {
  display: flex;
  gap: 15px; /* Spacing between buttons */
  align-items: center;
  margin-top: 20px;
}

.nav-links {
  display: flex;
  gap: 40px;
  border-right: 2px solid rgba(0, 0, 0, 0.534);
  padding-right: 20px;
  text-align: center !important;

}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a.active {
  color: #ff4b26;
}

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

.call-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s;
}

.call-button:hover {
  transform: scale(1.05);
}

.call-button img {
  height: 20px;
}
.search-button {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s;
}

.search-button:hover {
  transform: scale(1.05);
}

.search-button img {
  height: 20px;
}

.call-button span {
  font-weight: 500;
}

/* Mobile menu button (hidden by default) */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.jobo-contact-details {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  position: relative;
  padding-top: 40px;
}
.jobo-container-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  width: 55%;
  margin: 20px 60px;
  padding: 100px 80px;
  padding-right: 15%;
  /* background: linear-gradient(rgba(255, 120, 52, 0.1), rgba(255, 120, 52, 0.7)); */
  background-color: #f6f5f5;
  background-size: cover;
  margin-bottom: 10px;
  margin-left: -20%;
  
}

.contact-detail {
  position: absolute;
  top: 20%;
  right: 14%;
  width: 30%;
  background-color: white;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.052);
  padding: 40px;
}

/* Media queries for responsiveness */
@media screen and (max-width: 1024px) {
  .navbar {
    padding: 0 30px;
  }

  .nav-links {
    gap: 20px;
  }
}

@media screen and (max-width: 900px) {
  .jobo-container {
    width: 100%;
  }
.jobo-contact-item {
margin-left: 20px !important; 
}
  .jobo-container-form {
    gap: 40px;
    width: 100%;
    margin : 0 auto !important;
  }

  .jobo-contact-form h2 {
    margin-top: 20px;
    margin-left: 20px;
  }

  .contact-detail {
    position: relative;
    top: 20%;
    right: 0;
padding : 30px 0;
    width: 100%;
  }
  .jobo-form {
    padding: 20px 20px;
  }

  .navbar {
    height: auto;
    min-height: 80px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .navbar-content {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    padding: 100px 20px 30px;
    transition: left 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-content.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    border-right: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.534);
    padding-right: 0;
    padding-bottom: 20px;
    width: 100%;
    gap: 20px;
    align-items: center;
  }

  .call-button,
  .search-button {
    margin-top: 10px;
  }

  /* Hamburger to X animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Adjust dropdown for mobile */
  .dropdown {
    position: static;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 20px;
    margin-top: 10px;
    width: 100%;
  }

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

@media screen and (max-width: 600px) {
  .navbar {
    top: 10px;
    padding: 0 20px;
    height: 70px;
  }

  .logo img {
    height: 60px;
  }
}

@media screen and (max-width: 400px) {
  .navbar {
    width: 95%;
  }
}

/* New CSS for dropdown */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
  background: #f9f9f9;
  color: #ff4b26;
}
/* Hero Section Styles */
.banner-wrapper {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
  position: relative;
}

.dropdown-menu a:hover {
  background: #f9f9f9;
  color: #ff4b26;
}

/* New styles for nested dropdown */
.sub-dropdown {
  position: relative;
}

.sub-dropdown > a::after {
  content: "►";
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.sub-dropdown:hover .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile adjustments for nested dropdown */
@media screen and (max-width: 900px) {
  .sub-dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 20px;
    margin-top: 10px;
    width: 100%;
  }

  .sub-dropdown:hover .sub-dropdown-menu,
  .sub-dropdown.active .sub-dropdown-menu {
    display: block;
  }

  .sub-dropdown > a::after {
    right: 0;
  }
}
.jobo-contact-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.jobo-contact-page {
  background-color: #f8f9fa;
  color: #2d3436;
}

.jobo-container {
  margin: 0 10px;
  /* padding: 50px 20px; */
}

.jobo-contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.jobo-contact-info {
  margin-top: 40px;
  flex: 1;
  min-width: 300px;
}

.jobo-contact-form {
  /* flex: 1.5; */
  /* min-width: 300px; */
  width: 100%;
  margin-bottom: 40px;
}
.jobo-contact-form h2 {
  color: #2d3436;
}

.jobo-heading {
  font-size: 42px;
  margin-bottom: 40px;
  color: #2d3436;
  position: relative;
  margin-top: 50px;
}

.jobo-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background-color: #ff7834;
}

.jobo-address {
  margin-bottom: 10px;
  line-height: 1.6;
}

.jobo-contact-item {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 18px;
  background-color: white;
  padding: 10px;
  border-radius: 12px;
  width: 100%;
  height: fit-content;
  /* min-height: 150px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.119); */
}
.contact-text-container {
  display: flex;
  flex-direction: column;
  gap: 4px;

  color: #2d3436;
}

.contact-text-container p {
  color: #f05f23;
  font-weight: 600;
}
.contact-text-container strong {
  font-weight: 600;
  font-size: 18px;
  color: #2d3436;
}
.contact-text {
  font-size: 16px;
  font-weight: 500;
  color: #2d3436c8;
  width: 70%;
  /* background-color: red; */
}
.jobo-icon {
  width: 45px;
  height: 45px;
  border: 1px solid #ff7834;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  transition: color 1 ease;
}

.jobo-social-icons-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.jobo-social-icons {
  margin-top: 20px;
  margin-left: 20px;
}
.jobo-social-icons h2 {
  color: #2d3436;
}

.jobo-social-icons-container .social-icon {
  width: 45px;
  height: 45px;
  /* border: 1px solid #ff7834; */
  background-color: #ff7834;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  transition: color 1 ease;
}

.jobo-icon:hover {
  background-color: #ff7834;
  color: white;
}
.jobo-icon:hover ~ .jobo-icon svg {
  color: white;
}
.jobo-form-input,
.jobo-form-textarea {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background-color: white;
  margin-bottom: 20px;
  border: 1px solid #2d34369d;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.jobo-form-input:focus,
.jobo-form-textarea:focus {
  outline: none;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.jobo-contact-form h2 {
  margin-bottom: 20px;
}

.jobo-form-textarea {
  height: 150px;
  resize: none;
}

.jobo-submit-btn {
  background-color: #ff7834;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.jobo-submit-btn:hover {
  background-color: #f05f23;
  transform: translateY(-2px);
}

.jobo-arrow-icon {
  margin-left: 10px;
}

.jobo-map-container {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.jobo-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.hero {
  height: 25vw;
}
@media (max-width: 768px) {
  .hero {
    height: 18vh;
  }
  .jobo-contact-wrapper {
    flex-direction: column;
  }
  .jobo-contact-details {
    flex-direction: column;
    gap: 20px;
    padding-top:20px;
    width : 100% !important;
  }

  .jobo-contact-form {
    width: 100%;
  }
  .jobo-container-form {
    flex-direction: column;
    gap: 40px;
    padding: 0;
    margin: 20px 0;
  }
  .jobo-map-container {
    width: 100%;
    margin-right: -50px;
  }
  .jobo-heading {
    font-size: 32px;
  }
    .jobo-container-form {
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    margin: 0px 10px!important;
    padding: 60px 10px;
    padding-right: 15%;
    /* background: linear-gradient(rgba(255, 120, 52, 0.1), rgba(255, 120, 52, 0.7)); */
    background-color: #f6f5f5;
    background-size: cover;
    margin-bottom: 10px;
    margin-left: 0%;
}
  
}
@media(max-width:900px){
    .jobo-contact-details {
    flex-direction: column;
    gap: 20px;
    padding-top:20px;
  }
  .jobo-container-form {
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    margin: 20px 60px;
    padding: 60px 30px;
    padding-right: 15%;
    /* background: linear-gradient(rgba(255, 120, 52, 0.1), rgba(255, 120, 52, 0.7)); */
    background-color: #f6f5f5;
    background-size: cover;
    margin-bottom: 10px;
    margin-left: 0%;
}
  
  
}

@media (max-width: 999px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 0px !important;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 21.5vw;
  }
}

@media (min-width: 1200px) and (max-width: 1350px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 25.5vw;
  }
}
@media (min-width: 1351px) and (max-width: 1460px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 22.5vw;
  }
}
@media (max-width: 500px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 0vw;
  }
}
@media (min-width: 1700px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 0px;
  }
}
