*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* bg-gradient-to-br from-[#026660] to-[#0086B3] */

:root {
    --primary-color: #026660;
    --secondary-color: #0086B3;
    --primary-light: #038a82;
    --secondary-light: #1a9bc7;
    --primary-dark: #014a47;
    --secondary-dark: #006a8a;
    --accent-color: #00b3d6;
    --text-dark: #1a2a49;
    --text-light: #ffffff;
    --bg-light: #f8fcfc;
    --bg-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --bg-gradient-light: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}
.theme-bg-gradient{
  background: var(--bg-gradient);
}
.theme-text-gradient {
    /* font-size: 72px; */
    background: linear-gradient(to right, #026660, #0086B3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* .theme-text-gradient{
  color: var(--bg-gradient);
} */
.theme-bg-gradient-s{
  background: var(--bg-gradient);
}
.theme-bg-hover:hover{
  background: var(--bg-gradient);
  color: white;
}
.theme-bg-gradient:hover{
  background: var(--bg-gradient-light);
}
.theme-bg-color{
    background-color: #026660;
}
.theme-text-color{
    color: #026660;
}
.theme-border-gradient{
  border-image: linear-gradient(to right, #026660 0%, #0086B3 100%) 1;
  border-radius: 5px; /* this doesn't work */
  border-width: 4px;
  border-style: solid;
  padding: 5px;
}
.staffing-two{
  background: var(--bg-gradient-light);
}
.staffing-three{
  background: linear-gradient(to right, #3FB3AC, #52BFE1 );
}

.fade {
      transition: background-image 0.8s ease-in-out;
    }
.swiper-button-next, .swiper-button-prev {
    color: #1f3c88; 
}

/* upper header section */

.header {
  background-color: #ffffff; 
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.header-logo-main {
  width: 100%;

  margin-left: auto;
  margin-right: auto;

  padding-left: 1.5rem;
  padding-right: 1.5rem;

  /* padding-top: 0.75rem;
  padding-bottom: 0.75rem; */

  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .header-logo-main {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.header-logo-div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.img-header-logo {
  width: 12rem;   
  height: 4rem;  
  display: block;
  object-fit: contain; 

}

.header-logo-text {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: #026660;
}

.header-button-div {
  display: flex; 
  align-items: center;
  gap: 0.75rem;
}

.sign-in-button {
  border: 1px solid #1a2a49;
  border-radius: 9999px;     
  padding-left: 1rem;        
  padding-right: 1rem;
  padding-top: 0.25rem;     
  padding-bottom: 0.25rem;
  font-size: 0.875rem;      
  line-height: 1.25rem;
  white-space: nowrap; 
  transition: all 0.3s ease; 
}

@media (min-width: 768px) {
  .sign-in-button {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.sign-in-button:hover {
  /* background-color: #026660; */
  color: #ffffff;
  border: 1px solid #026660;
}

.register-button {
  border: 1px solid #026660;
  background-color: #026660;
  color: #ffffff;
  border-radius: 9999px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .register-button {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.register-button:hover {
  background-color: #045d5b;  /* hover:bg-[#045d5b] */
  /* transform: translateY(-5px); */
}



/* contact us css */

.clip-shape {
  clip-path: polygon(100% 0, 100% 100%, 0 70%, 0 30%);
}

/* register hide  */

.hide{
    display: none;
}

/* register page jobs section css  */

/* Jobs Section */
.jobs-section {
  background: linear-gradient(135deg, #f7fafa, #ffffff);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  /* text-align: center; */
}

.jobs-container {
  max-width: 800px;
}

/* Title */
.jobs-container h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0071b8;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Paragraph */
.jobs-container p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Button */
.btn-primary {
  display: inline-block;
  background: #0071b8;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  .dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.5rem;
    width: 600px;
    height: 300px;
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 30;
    background: #fff;
    overflow: hidden;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
    font-size: 1.1rem;
  }


/* faq section page  */
/* Page-level wrapper */
.faq-page {
  background-color: #f9f9f9;  /* Optional: background for page */
  padding: 60px 0;
}

/* FAQ container */
.faq-page .faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Heading */
.faq-page h2 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}

/* FAQ block styles */
.faq-page .faq {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-page .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
}

.faq-page .faq-question span {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 16px;
  color: #444;
  padding: 0;
}

.faq-page .faq.active .faq-answer {
  max-height: 500px;
  padding: 10px 0;
}

.faq-page .faq.active .faq-question span {
  transform: rotate(45deg);
}
