* {
  margin: 0;
  padding: 0;
  outline: 0;
}

body {
  font-family: "Poppins", sans-serif;
}

/* General Styles for the Banner Section */
.banner {
  background: url('./images/bg-3.png') no-repeat center center/cover;
  /* Background image for the banner */
  position: relative;
  height: 100vh;
  /* Full-screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: bold;
  /* font-family: 'Arial', sans-serif; */
  line-height: 100%;
  font-size: 3rem;
  color: #333;
  margin-bottom: .5rem;
}

.banner .subtitle {
  font-family: "Poppins", sans-serif;

  margin-top: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 35px;
  line-height: 100%;

  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

.banner p {
  font-family: "Poppins", sans-serif;
  /* margin-top: 30px; */
  margin-bottom: 30px;
  font-weight: 300;
  color: #fff;
  font-size: 1.8rem;
  line-height: 120%;
}

.banner .btn {
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: white;
  border: 1px solid black;
  padding: 14px 40px;
  border-radius: 4px;
  font-weight:bold;
}

.banner .btn:hover {
  background-color: #FF9500 ; /* Darker blue on hover */
  color: #f0f0f0; /* Slightly lighter text on hover */
 
}

/* Image Styling */
.banner img {
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.banner img:hover {
  transform: scale(1.05);
  /* Zoom effect on hover */
}

/* Card Styles */
.banner .card {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner .card:hover {
  transform: scale(1.1);
  /* Slight zoom on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.banner .card-title {
  font-size: 1.25rem;
}

.banner .card-text {
  font-size: 0.875rem;
  color: #777;
}

/* Icons */
.banner .icon svg {
  color: #FF9500;
  /* Default icon color */
  transition: transform 0.3s ease;
}

.banner .card:hover .icon svg {
  transform: scale(1.2);
  /* Icon zoom effect on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 991px) {
  .banner img {
    width: 100%;
    height: auto;
  }

  .banner .card {
    width: 160px;
    padding: 1rem;
    margin-bottom: 1rem;
    /* Add spacing for better layout */
  }

  .banner h1 {
    font-size: 2rem;
  }

  .banner p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .banner img {

    flex-direction: column;
    align-items: center;
  }

  .banner .row {
    flex-direction: column;
    align-items: center;
  }

  .banner .col-lg-6 {
    text-align: center;
  }

  .banner .card {
    display: none;
    /* Hide cards on smaller screens */
  }

  .banner h1 {
    font-size: 1.8rem;
  }

  .banner p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .banner .card {
    display: none;
    /* Ensure cards are hidden on very small screens */
  }

  .banner h1 {
    font-size: 1.5rem;
  }

  .banner p {
    font-size: 0.75rem;
  }
}



/* login-page */
.login-page{
  background: url('../images/bg-3.png');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-page .page-container{
  width: 500px;
  height: 450px;
}
.login-page .page-container .login-card{
  width: 100%;
  height: 100%;
  padding: 25px;
  border-radius: 10px;
  background: #fff;

}
.login-page .page-container .useraccountwrap{
    max-width: 600px;
    margin: 0 auto;
}
.login-page .page-container .userccount {
	padding: 50px 50px 20px;
	border-radius: 10px;
	border-bottom: 3px solid #0b469f;
	box-shadow: 0px 6px 12px rgb(0 0 0 / 5%);
}
.login-page .page-container .whitebg{
    background: #fff;
}
.login-page .page-container .userccount p {
	text-align: center;
	line-height: 24px;
	color: #999;
}
.login-page .page-container .userccount h5 {
	font-size: 30px;
	color: #555;
	font-weight: 700;
	margin-bottom: 30px;
}
.login-page .page-container .userccount .btn{
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
}
.login-page .page-container .socialLogin {
	padding-top: 10px;
	padding-bottom: 30px;
    display: flex;
    align-items: center;
}
.login-page .page-container .socialLogin a {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 40px;
	height: 40px;
	color: #fff;
	font-size: 20px;
	margin: 0 5px;
	line-height: 36px;
    border-radius: 50%;
}
.login-page .page-container .socialLogin a.fb {
	background: #3b5998;
    text-align: center;
}
.login-page .page-container .socialLogin a.gp {
	background: #dd4b39;
}
.login-page .page-container .socialLogin a.gm {
	background: #00aced;
    text-align: center;
}
.login-page .page-container .newuser {
	text-align: center;
	color: #666;
	font-size: 18px;
}
.login-page .page-container .newuser a {
	font-weight: 600;
}
.login-page .page-container .userbtns .nav-tabs  {
	border-bottom: none;
	margin-bottom: 0;
}
.login-page .page-container .userbtns .nav-tabs >li {
	width: 50%;
	margin-bottom: 0;
}
.login-page .page-container .userbtns .nav-tabs >li a {
	border: none;
	border-radius:5px 5px 0 0;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: #222;
	padding: 15px 30px;

}
.login-page .page-container .userbtns .nav-tabs >li a:hover, .userbtns .nav-tabs >li a.active {
	background: #0b469f;
	border: none;
	color: #fff;
}
.login-page .page-container .userbtns .nav-tabs >li.active a:after {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #0b469f;
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	margin-left: -5px;
}
.btn-brand {
    background: #0b469f !important;
    border-color: #0b469f !important;
    color: #fff !important;
}

.btn-brand:hover {
    background: #0b469f !important;
    border-color: #0b469f !important;
    color: #fff !important;
}

@media screen and (max-width: 600px) {
    .login-page .page-container {
        width: 380px;
    }
    .login-page .page-container .userccount {
        padding: 25px 20px 20px;
    }
}


@media screen and (max-width: 420px) {
    .login-page .page-container {
        width: 340px;
    }
}
















a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

ol,
ul {
  list-style-type: none;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* ========= <!-- Offer Section Start--> ========= */
.what-amigo {
  background-color: #F8F9FC;
  padding-top: 40px;
  padding-bottom: 40px;
}

.what-amigo h2 {
  color: #000;
  font-size: 2.5rem;
  font-weight: bold;
}

.what-amigo p {
  font-size: 1.125rem;
  color: #555;
  padding: 2% 20%;
}

.what-amigo .row {
  display: flex;
  justify-content: space-between;
}

.what-amigo .card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.what-amigo .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.what-amigo img {
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.what-amigo h5 {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}

.what-amigo .col-md-2 {
  flex: 1;
}

.what-amigo .card p {
  margin-bottom: 0;
}

/* ========= <!-- Offer Section End--> ========= */
/* ========= <!-- Why Amigo Start --> ========= */
.why-amigo {
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.why-amigo h2 {
  color: #000;
  font-size: 2.5rem;
  font-weight: bold;
}

.why-amigo p {
  font-size: 1.125rem;
  color: #555;
  padding: 2% 20%;
}

.why-amigo .row {
  display: flex;
  justify-content: space-between;
}

.why-amigo .card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-amigo img {
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.why-amigo h5 {
  font-size: 2.00rem;
  color: #333;
  font-weight: bold;
  padding-bottom: 1.00rem;
  padding-top: 0.5rem;
}

.why-amigo ul {
  list-style-type: none;
  padding: 0;
}

.why-amigo ul li {
  font-size: 1rem;
  color: #555;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.bullet-icon {
  width: 25px;
  height: 25px;
  background-color: #EFEBFD;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  color: #1D45B9;
  text-align: center;
  line-height: 25px;
  font-size: 12px;
}

.why-amigo .col-md-4 {
  flex: 1;
}

.why-amigo .card p {
  margin-bottom: 0;
}

/* ========= <!-- Why Amigo End --> ========= */
/* ========= <!-- How AMIGO Works Section Strat --> ========= */
.how-amigo h2 {
  padding: 20px 0;
  font-size: 2.5rem;
}

.how-amigo p {
line-height: 1.3;
}

.how-amigo .card {
  height: auto;
}

.how-amigo .card h5 {
  padding: 20px 0;
}

.how-amigo .circle-number {
  width: 40px;
  height: 40px;
  background-color: #37539A;
  color: #fff;
  border-radius: 50%;
  margin: 25px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

svg line {
  stroke: #37539A;
  stroke-width: 2;
  stroke-dasharray: 5, 5;
  marker-end: url(#arrowhead);
}

svg defs marker#arrowhead {
  fill: #37539A;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.section-paragraph {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2rem;
  text-align: center;
}

/* ========= <!-- How AMIGO Works Section End --> ========= */
/* ========= <!-- Our Resource Section Start --> ========= */
:root {
  --primary-color: #1D45B9;
  --text-color: #555;
  --bg-color: #f9f9f9;
  --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.our-resources {
  padding: 50px 20px;
}

.our-resources-heading {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
  font-weight: bold;
  text-align: center;
}

.our-resources-description {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 30px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.our-resources-card {
  background: var(--bg-color);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  text-align: center;
  padding: 20px 40px;
  height: auto;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-resources-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.our-resources-card img { 
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-top: 10px;
  font-weight: bold;
}

.view-all-button {
  margin-top: 40px;
}

.view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  background: none;
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}

.view-all:hover .circle-icon {
  background: var(--primary-color);
  color: #fff;
}

.view-all .circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  transition: background 0.3s ease, color 0.3s ease;
}

.view-all .circle-icon {
  transition: transform 0.5s ease;
}

.view-all:hover .circle-icon {
  transform: scale(1.2);
}

.second-row {
  max-height: 0;
  /* Start with height collapsed */
  overflow: hidden;
  /* Prevent content overflow */
  opacity: 0;
  /* Hide content initially */
  transition: max-height 2s ease, opacity 1s ease;
  /* Add smooth transitions */
}

.second-row.show {
  max-height: 500px;
  /* Set to the actual content height */
  opacity: 1;
  /* Make content visible */
}



/* ========= <!-- Our Resource Section End --> ========= */


/* ========= <!-- Hire Section Start --> ========= */

.search-section {
  background-color: var(--primary-color);
  border-radius: 25px;
  padding: 50px 50px 0 50px;
  color: #fff;
}

.section-header {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.section-description {
  font-size: 1rem;
  margin-bottom: 30px;
}

.search-section .search-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-section.input-group {
  flex: 1;
}

.search-section .search-input {
  padding-left: 30px;
  /* Add space for the icon */
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 class=%22bi bi-search%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0%22/%3E%3C/svg%3E');
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.search-section .work-select {
  padding-left: 30px;
  /* Add space for the icon */
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 fill=%22currentColor%22 class=%22bi bi-briefcase-fill%22 viewBox=%220 0 16 16%22%3E%3Cpath d=%22M6.5 1A1.5 1.5 0 0 0 5 2.5V3H1.5A1.5 1.5 0 0 0 0 4.5v1.384l7.614 2.03a1.5 1.5 0 0 0 .772 0L16 5.884V4.5A1.5 1.5 0 0 0 14.5 3H11v-.5A1.5 1.5 0 0 0 9.5 1zm0 1h3a.5.5 0 0 1 .5.5V3H6v-.5a.5.5 0 0 1 .5-.5%22/%3E%3Cpath d=%22M0 12.5A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5V6.85L8.129 8.947a.5.5 0 0 1-.258 0L0 6.85z%22/%3E%3C/svg%3E');
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 16px;
}


.search-section .work-select option {
  padding-left: 30px;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 8px 25px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}


/* ========= <!-- Our Resource Section End --> ========= */


/* ========= <!-- For Nav Bar --> ========= */


/* ========= <!-- Industries Section Start --> ========= */
.industry-item {
  background-color: #F0F0F6;
  border-radius: 8px;
  /* transition: background-color 0.3s ease, color 0.3s ease; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-item .icon svg {
  transition: fill 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.industry-item:hover .icon svg {
  fill: rgb(8, 0, 0);
}

.industry-item .title {
  color: black;
  font-size: 1rem;
}

.industry-item:hover .title {
  color: rgb(15, 0, 0);
}



/* ========= <!-- Industries Section End --> ========= */



/* =========  <!-- Testimonial Section Start --> ========= */


.testimonials-section .stars svg {
  margin-right: 2px;
}

.testimonials-section .testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
}

.testimonials-section .client-info strong {
  font-size: 1rem;
}

.testimonials-section .client-info .text-muted {
  font-size: 0.9rem;
}

.swiper-pagination-bullet {
  background-color: #1D45B9;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background-color: #FFD700; 
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #1D45B9;
}
.swiper-container .swiper-pagination {
  position: relative !important; 
  text-align: center;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 8px;
  border-radius: 4px;
  background-color: #000;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
}
.testimonial-slider .swiper-pagination {
  position: relative !important;
  margin-top: 50px;
}

/* =========  <!-- Testimonial Section End --> ========= */

/* =========      <!-- Trusted Company Strat --> ========= */

.trusted-companies-section img {
  max-height: 100px; 
  object-fit: contain;
}




/* =========      <!-- Trusted Company End --> ========= */
/* =========      <!-- Blog part Strat --> ========= */

.card-img-top{
  padding: 15px;
}
.blog-image {
  padding: 15px;
  object-fit: cover; 
  height: 200px;
}

.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.read-more-link svg {
  margin-left: 5px;
}



/* =========      <!-- Blog part End --> ========= */

/* =========      <!-- Newsletter part Start --> ========= */

.job-notifications-section {
  background-color: #343C3F;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-paragraph {
  font-size: 1rem;
  line-height: 1.6;
}
.row.align-items-center {
  display: flex;
  align-items: center;
}


.newsletter-form-container form {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  width: 100%;
}

.newsletter-form-container .form-control {
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  width: 80%; 
}

.newsletter-form-container .btn-primary {
  border-radius: 5px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  width: 20%; /* The button takes up 20% of the width */
}

.newsletter-form-container .btn-primary:hover {
  background-color: #0056b3;
}

/* =========      <!-- Newsletter part End --> ========= */


/* =========      <!-- Footer part Start --> ========= */

.footer {
  background-color: #2E3538;
  color: #fff;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-links a i {
  margin-right: 8px;
}

.footer-links a:hover {
  color: #FFD700;
}

.footer-paragraph {
  font-size: 14px;
  line-height: 1.8;
}

.contact-list li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.contact-list i {
  margin-right: 8px;
  font-size: 18px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #FFD700;
}
.copyright-section {
  border-top: 1px solid #d3d3d3; 
  background-color: #2E3538;    
  color: #ffffff;             
  padding: 25px 0;            
}

.copyright-section p {
  margin: 0;
  font-size: 14px;             
  font-family: 'Arial', sans-serif;
}

/* =========      <!-- Footer part End --> ========= */



.worker-community {
  background-color: #F8F9FC; /* Section Background */
}

.worker-community h1 {
  font-size: 2.5rem;
  color: #000;
}

.worker-community p {
  color: #6c757d; /* Secondary text color */
  font-size: 1rem;
}

.worker-community .btn-primary {
  background-color: #007bff; /* Button background */
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.worker-community .btn-primary svg {
  fill: #fff;
}

.worker-community .card {
  background-color: #fff; /* Card background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  border-radius: 8px;
}

.worker-community .card .icon svg {
  color: #6c757d; /* Icon color */
}




/* =========      <!-- About Page --> ========= */
/* =========      <!-- Abot banner part sTART --> ========= */

.about-banner {
  background: url('./images/bg.jpg') no-repeat center center/cover;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-banner h1 {
  font-size: 3rem;
}

.breadcrumb {
  font-size: 1rem;
}

.breadcrumb span {
  display: flex;
  align-items: center;
}

i {
  vertical-align: middle; /* Ensure Bootstrap icons align with text */
}

.core-value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}








/* =========      <!-- Abot banner part End --> ========= */


/* =========      <!-- Reg part Start --> ========= */
/* General Styles */
.hero {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.hero .form-box {
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero .button-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

/* Toggle Button Styling */
.hero .toggle-btn {
  padding: 10px 25px;
  cursor: pointer;
  background-color: #fff; /* Default background: white */
  border: 2px solid #007BFF;
  font-weight: bold;
  border-radius: 8px;
  font-size: 16px;
  color: #007BFF;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease-in-out;
}

.hero .toggle-btn:hover {
  background-color: #007BFF;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.hero .toggle-btn.active {
  background-color: #007BFF; /* Active button: blue */
  color: #fff;
  border-color: #007BFF;
  box-shadow: none;
}

.hero .toggle-btn.inactive {
  background-color: #fff; /* Inactive button: white */
  color: #007BFF;
  border-color: #007BFF;
}

.hero .input-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.hero .input-group label {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  padding-top: 15px;
}

.hero .input-field, select.input-field {
  width: 100%;
  padding: 5px 0;
  font-size: 14px;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  outline: none;
  color: #333;
  transition: all 0.3s ease-in-out;
}

.hero .input-field:focus, select.input-field:focus {
  border-bottom: 2px solid #007BFF;
}

/* Submit Button Styling */
.hero .submit-btn {
  margin-top: 15px;
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  background: #007BFF;
  border: none;
  border-radius: 8px!important;
  color: white;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.hero .submit-btn:hover {
  background: #0056b3;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
  transform: scale(1.03);
}

.hero small {
  font-size: 13px;
  color: #666;
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero .form-box {
    width: 95%;
    margin: 0 auto;
    padding: 20px;
  }

  .hero .toggle-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .hero .input-field {
    font-size: 13px;
  }

  .hero .submit-btn {
    font-size: 14px;
    padding: 10px 12px;
  }
  .hero .object-cover {
    display: none;
  }
}





/* Recent Hirring section  */

.recent-hiring {
  background-image: url('https://blujobs.in/wp-content/uploads/2023/03/a381065e-section-bg-8.png');
  background-size: cover;
  padding: 50px 0;
}

.recent-hiring .section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.recent-hiring .section-paragraph {
  font-size: 1rem;
  color: #666;
  padding-bottom: 20px;
}

.recent-hiring .card {
  position: relative;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 6px 9px 17px 4px rgba(0, 0, 0, 0.5) !important;
  padding: 20px;
}

.recent-hiring .job-image {
  position: absolute;
  top: 0%;
  left: 5%;
  width: 200px;
  height: 70px;
  transform: translateY(-50%);
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.recent-hiring .full-time-badge {
  position: absolute;
  top: 10%;
  right: 10%;
  padding: 5px 10px;
}

.recent-hiring .btn {
  display: inline-flex;
  align-items: center;
}

.recent-hiring .btn .bi {
  margin-right: 5px;
}

.recent-hiring .text-end {
  text-align: right;
}

.recent-hiring .card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.recent-hiring .card-content p {
  margin: 0;
}

/* Mobile-First Enhancements */
@media (max-width: 576px) {
  .recent-hiring .section-heading {
    font-size: 2rem;
  }

  .recent-hiring .section-paragraph {
    font-size: 0.9rem;
  }

  .recent-hiring .job-image {
    top: 0%;
    left: 5%;
    width: 80px;
    height: 80px;
  }

  .recent-hiring .full-time-badge {
    top: 5%;
    right: 5%;
  }

  .recent-hiring .card {
    padding: 15px;
    margin-bottom: 20px;
  }



  .recent-hiring .card-content p {
    margin-bottom: 10px; /* Add spacing between paragraph and button */
  }

  .recent-hiring .btn {
    width: 100%; /* Full-width button on mobile */
    justify-content: center;
  }
}




/* Featured jobs */
.featured-jobs {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.featured-jobs .section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.featured-jobs .section-paragraph {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.job-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.job-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.job-info {
  flex: 1;
}

.job-info h4 {
  font-size: 1rem;
  font-weight: 400;
  color: #37539A;
  margin-bottom: 5px;
}

.job-info ul {
  list-style-type: disc;
  margin: 0;
  padding-left: 20px;
  color: #666;
}

.job-info ul li {
  font-size: 0.9rem;
}
.jobs-banner{
  height: 200px;
}


/* Filter Section */


.filter-box {
  background-color: #f2f6fd;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.filter-heading {
  font-size: .75rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.filter-box .form-select {
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: .75rem;
}

.filter-box .form-select:focus {
  outline: none;
  box-shadow: none; 
}


/* search Job  */
.jobimg {
	float: left;
	width: 70px;
	margin-right: 15px;}
.jobimg img{border-radius: 10px; margin-right: 15px;}
.jobimg {
    /* float: none; */
    margin: 0 auto;
    margin-bottom: 10px;
  }
.jobimg img {
    max-width: 100%;
    height: auto;}

  .topstatinfo__jobs{
      display: flex;
      align-items: center;
      gap: 1rem;
  }
  .topstatinfo__jobs a{
      border: 1px solid #000;
      padding: 5px 10px;
      border-radius: 4px;
  }
  .topstatinfo__jobs a:hover{
      background: #003087;
      color: #fff;
      transition: .3s;
  }
  .topstatinfo__jobs .active{
      background: #003087;
      color: #fff;
  }

  .searchList {
    background-color: #F2F6FD;
    border-radius: 10px;
    list-style: none;
    margin-bottom: 30px;
    padding: 0px;
  }
  .searchList > li {
    background: #fcfdff;
      border-radius: 10px;
      -webkit-transition: all 0.4s ease 0s;
      -moz-transition: all 0.4s ease 0s;
      -ms-transition: all 0.4s ease 0s;
      -o-transition: all 0.4s ease 0s;
      transition: all 0.4s ease 0s;
      border: 1px solid #eee;
      padding: 22px 18px;
      margin-bottom: 15px;
  
  }

  .searchList:hover {
    box-shadow: 0px 10px 20px -5px rgba(0,0,0,0.1);
    border-bottom-color:#0b469f;
   
  }

  .searchList li .companyName {
    margin: 10px 0;
    color: #969595;
  }
  .searchList li .companyName a {
    color: #969595;
  }
  .searchList li a:hover {
    color: #333;
  }

  .jobActionArea{
    display: flex;
    align-items: center;
    gap: 5px;
}

.searchList li .companyName {
	margin: 10px 0;
	color: #969595;
}

.searchList li .location {
	color: #000;
}
.searchList li .location span {
	color: #333;
}
.searchList > li h3 a {
	font-size: 18px;
	font-weight: 600;
	color: #000;
}

.relatedJobs .searchList li .companyName{margin-bottom: 0; margin-top: 5px;}


.searchList li .listbtn a {
	background: #fff;
	display: block;
	border-radius: 40px;
	width: 100%;
	color: #0b469f;
	text-transform: uppercase;
	font-weight: 500;
	padding: 7px 10px;
	text-align: center;
	border: 1px solid #0b469f;
    font-size: 12px;
}
.searchList li .listbtn a:hover {
	background: #0b469f;
	color: #fff;
	text-decoration: none;
}
.searchList li p {
	line-height: 22px;
	color: #333;
	margin: 10px 0 0 0;
}
.searchList li .cateinfo {
	color: #0b469f;
	margin: 10px 0;
}
.searchList li .minsalary {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	margin-top: 25px;
	color: #17d27c;
}
.searchList li .minsalary span {
	color: #999;
	font-weight: 400;
}



  .partTime {
    background: #f8a60c;
    color: #fff;
    font-size: 13px;
    display: inline-block;
    padding: 4px 6px;
    border-radius: 3px;
  }
  .fulltime {
    background: #6ACA00;
    color: #fff;
    font-size: 13px;
    display: inline-block;
    padding: 4px 6px;
    border-radius: 3px;
  }
  
  label.fulltime[title="Part Time"] {
    background: #f8a60c;
  }
  label.fulltime[title="Freelance"] {
    background: #ff0000;
  }
  label.fulltime[title="Contract"] {
    background: #0C86F8;
  }
  label.fulltime[title="Internship"] {
    background: #9B54F4;
  }
  label.fulltime[title="First Shift (Day)"] {
    background: #AFCB59;
  }
  label.partTime[title="First Shift (Day)"] {
    background: #AFCB59;
  }
  label.partTime[title="Second Shift (Afternoon)"] {
    background: #688CD5;
  }
  label.partTime[title="Third Shift (Night)"] {
    background: #EF7D7D;
  }
  label.partTime[title="Rotating"] {
    background: #B09EEB;
  }
  .freelance {
    background: #ff0000;
    color: #fff;
    font-size: 13px;
    display: inline-block;
    padding: 4px 6px;
  }

  .savedJobsArea a{
    border-radius: 50%;
}



/* Job details  */
.jobPagetitle .jobinfo {
  padding: 0 0 30px 0;
}
.jobPagetitle .jobinfo h2 {
  font-size: 24px;
  color: #444;
}
.jobmainreq {
  border-radius: 0 0 5px 5px;
}

.jobPagetitle .jobinfo .ptext {
  color: #999;
  margin: 12px 0;
}
.jobPagetitle .jobinfo .salary {
  font-size: 16px;
  font-weight: 700;
  color: #888;
}
.jobPagetitle .jobinfo .salary strong {
  color: #000;
}

.jobButtons {
  padding: 20px 25px;
}
.jobButtons.applybox {
  text-align: right;
  border-top: none;
  background: #fff;
  border-radius: 5px;
  padding: 0;
  margin-top: 15px;
}
.jobButtons a {
  margin-right: 10px;
  color: #17d27c;
  font-weight: 600;
  padding: 10px 30px;
  font-size: 14px;
  border-radius: 40px;
  border: 1px solid #17d27c;
}
.jobButtons a.report {
  color: #e01010;
  border-color: #e01010;
}
.jobButtons a.apply {
  background: #17d27c;
  color: #fff;
  font-size: 18px;
  margin-right: 0;
}
.jobButtons .jbexpire {
  background: #ff7c69;
  color: #fff;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: not-allowed;
}
.jobButtons a:hover {
  background: #17d27c;
  color: #fff;
  border-color: #000;
}
.jobButtons a.report:hover {
  color: #fff;
  background: #e01010;
}
.jobButtons a.apply.applied {
  background: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}
.userlinkstp.applybox {
  text-align: center;
  border-top: none;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
}
.complete-btn {
  color: red !important;
  padding: 10px !important;
  border: 1px solid #002c6e !important;
  transition: 0.5s !important;
}
.complete-btn:hover {
  background: #002c6e !important;
  color: #ffffff !important;
  transition: 0.5s !important;
}
.userlinkstp a.apply {
  background: #17d27c;
  color: #fff;
  font-size: 18px;
}

.job-header {
  background: #fff;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0px 20px 25px rgb(0, 0, 0, 0.05);
  border: 1px solid #eee;
}
.job-header.nomrg {
  margin-bottom: 0;
}
.job-header .jobinfo {
  padding: 20px;
}


.job-header .contentbox h3 i,
.jobdetail h3 i,
.companyinfo h3 i {
    color: #ccc;
    margin-right: 5px;
    font-size: 20px;
}
.jobdetail .table-bordered {
  border: none;
  margin-bottom: 0;
}
.jobdetail .table-bordered td {
  border: none;
  border-top: 1px solid #ddd;
}
.jobdetail {
  padding: 35px;
}
.jobdetail iframe {
  width: 100%;
  height: 250px;
  border: none;
}
.jobdetail h3 {
  font-size: 18px;
  color: #0b469f;
  font-weight: 700;
}
.jbdetail {
  margin-top: 20px;
}
.jbdetail li {
  margin-bottom: 20px;
  color: #908f8f;
}
.jbdetail li a {
  display: block;
  color: #0b469f;
  font-weight: 600;
}
.jbdetail li span {
  display: block;
  color: #000;
  font-weight: 600;
}
.jbdetail li span.permanent {
  color: #17d27c;
}
.jbdetail li span.contract {
  color: #0b469f;
}
.jbdetail li span.freelance {
  color: #f07200;
  background: none;
  padding: 0;
}

.job-header .contentbox {
  padding: 35px;
}
.job-header .contentbox h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0b469f;
  margin-bottom: 10px;
}
.job-header .contentbox p {
  line-height: 24px;
  color: #555;
  margin-top: 20px;
  margin-bottom: 0;
}
.job-header .contentbox p strong {
  font-weight: 700;
}
.job-header .contentbox p em {
  font-style: italic;
}
.job-header .contentbox p u {
  text-decoration: underline;
}

.companyinfo {
  margin-bottom: 30px;
  background: #f9f9ff;
  padding: 30px;
  border-radius: 15px;
}
.companyinfo h3 {
  margin-bottom: 30px;
  color: #0b469f;
  font-size: 24px;
}
.companyinfo .companylogo {
  width: 100px;
  background: #fff;
  display: inline-block;
  margin-bottom: 10px;
  float: left;
  margin-right: 15px;
}
.companyinfo .companylogo img {
  display: block;
  border-radius: 15px;
  width: 100px;
  background: #fff;
  margin-bottom: 10px;
  margin-right: 15px;
}
.companyinfo .ptext {
  color: #17d27c;
  padding: 7px 0;
}
.companyinfo .title a {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.companyinfo .opening a {
  color: #0b469f;
}
.companyoverview {
  text-align: left;
}
.companyoverview p {
  color: #555;
  margin-bottom: 0;
}
.opening-jobs-btn {
  background: transparent;
  margin: 0;
  padding: 0;
  color: #003087;
  border: none;
}
.opening-jobs-btn:hover {
  text-decoration: underline;
}

.user-dropdown .btn-log-in {
  background: transparent;
  padding: 10px 15px;
  display: inline-block;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  text-transform: capitalize;
  border: none;
}

/* apply job section  */
.company-sec {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.company-sec .img {
  width: 160px;
}
.company-sec .text {
  flex: 2;
}
.company-sec .text h3 {
  font-size: 20px;
  margin-bottom: 10px !important;
  font-weight: 600;
}
.company-sec .text h3 span {
  font-weight: normal !important;
}